:root {
    --primary: #4B0082;
    --secondary: #1a1a50;
    --accent: #8A2BE2;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --magic-gradient: linear-gradient(135deg, #4B0082, #8A2BE2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--magic-gradient);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 0, 130, 0.3);
}

/* SEO text for screen readers */
.seo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Styles - General Media Queries */
@media (max-width: 1024px) {
    .magical-card {
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-links {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .fleet-simple-description {
        flex-direction: column;
    }

    .fleet-image-container {
        order: -1;
    }

    .magical-card {
        min-width: 100%;
    }

    .fleet-carousel-container {
        overflow: hidden;
    }


    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .contact-container, .footer-container {
        flex-direction: column;
    }

    .copyright .container {
        flex-direction: column;
    }

    .copyright p:first-child {
        margin-bottom: 10px;
    }

    .magic-movement-container {
        flex-direction: column-reverse;
    }

    .map-wrapper {
        height: 350px;
    }

    .invoke-button {
        width: 100%;
        align-self: center;
    }

    .seo-hero h1 {
        font-size: 2rem;
    }

    .seo-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: none;
    }

    .seo-hero .cta-button {
        display: block;
        margin: 10px auto;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }


    .seo-types h2,
    .seo-locations h2 {
        font-size: 1.5rem;
    }

    .type-card,
    .location {
        padding: 15px;
    }
}