:root {
    --bg-color: #FFFFFF; /* Pure White */
    --bg-secondary: #FFFFFF; /* Pure White */
    --bg-primary: #FFFFFF; /* White for cards */
    --text-primary: #3C2A21; /* Coffee Bean */
    --text-secondary: #5E4A40; /* Lighter Coffee */
    --accent-color: #A990CB; /* Lavender */
    --accent-hover: #937DB2; /* Darker Lavender */
    --font-main: 'Outfit', sans-serif;
    --border-radius: 16px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader {
    transition: opacity 0.5s ease-in-out;
    background-color: var(--bg-primary); /* Bright standard background */
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.mature-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-primary);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-title {
    color: var(--accent-color);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.loader-vehicle-scene {
    width: 250px;
    height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.loader-car-wrapper {
    position: relative;
    z-index: 2;
    animation: carPark 2.5s ease-in-out forwards;
    mix-blend-mode: multiply;
}

.loader-vehicle-img {
    height: 80px;
    width: auto;
    position: relative;
    animation: vehicleBounce 0.3s alternate cubic-bezier(0.4, 0, 0.2, 1) 5;
    mix-blend-mode: multiply;
}

.loader-treadmill-road {
    position: absolute;
    width: 800px;
    height: 6px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(
        to right,
        var(--accent-color) 0,
        var(--accent-color) 30px,
        transparent 30px,
        transparent 60px
    );
    border-radius: 3px;
    animation: treadmillScroll 1.5s ease-out forwards;
    z-index: 1;
}

.loader-parked-swift,
.loader-parked-brezza {
    position: absolute;
    height: 75px;
    width: auto;
    bottom: 3px;
    z-index: 1;
    opacity: 0;
    mix-blend-mode: multiply;
    animation: signSlideIn 1.5s ease-out forwards;
}

.loader-parked-swift {
    right: -160px;
}

.loader-parked-brezza {
    right: 250px;
}

.loader-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes vehicleBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

@keyframes treadmillScroll {
    0% { background-position: 0 0; }
    100% { background-position: -150px 0; }
}

@keyframes signSlideIn {
    0% { transform: translateX(100px); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes carPark {
    0%, 35% { transform: translateX(0); }
    55% { transform: translateX(75px); }
    75% { transform: translateX(-30px); }
    88% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    height: 90px;
    margin: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 1.5rem;
    z-index: 1000;
}

.logo-container {
    flex: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .header {
        flex-direction: row !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
        margin: 1rem !important;
        top: 1rem !important;
        border-radius: 20px !important;
        height: 70px !important;
    }
    
    .logo-container {
        width: auto !important;
    }
    
    .logo-text {
        font-size: 1.5rem !important;
        text-align: center !important;
    }

    .main-nav {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        padding: 0.5rem 0;
        padding-bottom: env(safe-area-inset-bottom, 0.5rem);
    }
    
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text-secondary);
        font-size: 0.75rem;
        gap: 4px;
        transition: all 0.3s ease;
    }
    
    .bottom-nav-item svg {
        width: 24px;
        height: 24px;
    }
    
    .bottom-nav-item.active {
        color: var(--accent-color);
        font-weight: bold;
    }
    
    body {
        padding-bottom: 70px; 
    }
}

.cars-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.car-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    will-change: transform;
}

/* Prototype Tag */
.prototype-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.sad-bear {
    width: 55px; /* Slightly wider for full body */
    height: 55px;
    mix-blend-mode: multiply;
    animation: sadSigh 4s ease-in-out infinite;
    transform-origin: bottom center; /* Sigh from the ground */
}

.prototype-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.training-section {
    background-color: var(--bg-primary); /* White */
}

.training-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 4rem;
    display: flex;
    align-items: flex-start; /* Allows right column to be sticky */
    gap: 6rem;
}

.training-left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tag-wrapper {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 6px 6px 0 var(--accent-color);
}

.price-tag-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    font-family: 'Balsamiq Sans', 'Comic Sans MS', cursive, sans-serif;
}

.training-cars-img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.training-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 150px; /* Sticks slightly below the header while scrolling */
}

.letter-content {
    background-color: var(--bg-primary);
    padding: 3rem 0;
    border-left: 5px solid var(--accent-color);
    padding-left: 3rem;
    position: relative;
}

.letter-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.letter-body {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    opacity: 0.9;
}

/* Location Section */
.location-section {
    padding: 6rem 4rem;
    background-color: var(--bg-primary); /* White */
    text-align: center;
}

.location-header {
    margin-bottom: 3rem;
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(169, 144, 203, 0.1);
}

.location-info {
    text-align: left;
}

.location-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.location-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.15rem;
}

.location-map {
    width: 100%;
}

.location-map iframe {
    border-radius: 12px;
    width: 100%;
    display: block;
}

/* Process Section */
.process-section {
    padding: 6rem 4rem;
    background-color: var(--bg-secondary);
    text-align: center;
}

.process-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(169, 144, 203, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(169, 144, 203, 0.1);
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}



/* Pricing Section */
.pricing-section {
    padding: 6rem 4rem;
    background-color: var(--bg-color);
    text-align: center;
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(169, 144, 203, 0.15);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(169, 144, 203, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.plan-btn.featured-btn {
    background-color: var(--accent-color);
    color: white;
}

.plan-btn.featured-btn:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 4rem;
    background-color: var(--bg-secondary);
    background-image: var(--paper-texture);
    text-align: center;
}

.reviews-header {
    margin-bottom: 4rem;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: left;
    position: relative;
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #fbbf24; /* Golden yellow */
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.reviewer-course {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 8rem 4rem;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-primary-btn, .cta-secondary-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary-btn {
    background-color: white;
    color: var(--accent-color);
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Footer Section */
.footer {
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 4rem 4rem 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-desc {
    color: var(--bg-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}


@media (max-width: 1024px) {
    .header {
        padding: 1rem 2rem;
    }
    .car-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 1.5rem;
        gap: 1rem;
        align-items: center; /* Centers items cross-axis */
    }

    .logo-container, .cars-container, .cta-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo-text {
        text-align: center;
        font-size: 2.2rem;
    }

    .cars-container {
        order: 2;
        margin-top: 0;
    }

    .car-img {
        height: auto;
        width: 180px; /* Make cars noticeably larger on mobile */
    }
    
    .prototype-container {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        padding: 6rem 1.5rem 3rem 1.5rem; /* Better top padding */
    }

    .hero-content {
        margin-bottom: 3rem;
        text-align: center; /* Fix the left-alignment issue from desktop */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 3.5rem; /* A good size but now it can center properly */
        line-height: 1.1;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 2.5rem auto; /* Center it */
        max-width: 90%;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .process-section, .pricing-section, .reviews-section, .cta-section {
        padding: 4rem 2rem;
    }

    .footer-container {
        padding: 0 2rem 3rem 2rem;
    }
}

/* Footer Transition Section */
.footer-transition {
    padding: 8rem 2rem;
    background-color: var(--bg-primary);
    text-align: center;
}

.transition-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}


@media (max-width: 1024px) {
    .header {
        padding: 1rem 2rem;
    }
    .car-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 1.5rem;
        gap: 1rem;
        align-items: center; /* Centers items cross-axis */
    }

    .logo-container, .cars-container, .cta-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo-text {
        text-align: center;
        font-size: 2.2rem;
    }

    .cars-container {
        order: 2;
        margin-top: 0;
    }

    .car-img {
        height: auto;
        width: 180px; /* Make cars noticeably larger on mobile */
    }
    
    .prototype-container {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        padding: 6rem 1.5rem 3rem 1.5rem; /* Better top padding */
    }

    .hero-content {
        margin-bottom: 3rem;
        text-align: center; /* Fix the left-alignment issue from desktop */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 3.5rem; /* A good size but now it can center properly */
        line-height: 1.1;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 2.5rem auto; /* Center it */
        max-width: 90%;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .process-section, .pricing-section, .reviews-section, .cta-section {
        padding: 4rem 2rem;
    }

    .footer-container {
        padding: 0 2rem 3rem 2rem;
    }
}

/* Footer Transition Section */
.footer-transition {
    padding: 8rem 4rem;
    background-color: var(--bg-primary);
}

.transition-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.transition-left {
    flex: 1;
    text-align: left;
}

.transition-title {
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.safety-letter-box {
    background-color: var(--bg-primary);
    padding: 2.5rem;
    border-left: 5px solid var(--accent-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 2.5rem;
}

.letter-subtitle {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.safety-letter-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.safety-letter-box p:last-child {
    margin-bottom: 0;
}

.transition-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.vehicle-icons-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .transition-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    .transition-left {
        text-align: center;
    }
    .safety-letter-box {
        text-align: left;
    }
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-color);
    color: var(--bg-primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(169, 144, 203, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Lead Capture Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(60, 42, 33, 0.7); /* Dark semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-primary); /* White */
    padding: 2.5rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.lead-form label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.lead-form input,
.lead-form select {
    padding: 1rem;
    border: 2px solid rgba(60, 42, 33, 0.1);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: transparent;
    transition: all 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(169, 144, 203, 0.1);
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(169, 144, 203, 0.4);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Locator Page Styles */
.locator-main {
    padding-top: 100px;
    background-color: var(--bg-primary);
    min-height: 100vh;
}

.locations-page-section {
    padding: 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.location-card-info {
    padding: 2.5rem;
    background-color: white;
}

.location-card-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.location-card-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.directions-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 144, 203, 0.4);
}

.location-card-map {
    height: 400px;
    width: 100%;
    background-color: #f1f5f9;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .locations-page-section {
        padding: 2rem;
    }
}



/* Stats Section */
.stats-section {
    background-color: white;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 80px;
        height: 2px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
    overflow: hidden;
    background-color: #f8fafc;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 100px);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Image left (larger), text right */
    align-items: center;
    padding: 0 6rem;
    gap: 4rem;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-image {
    order: 1; /* Image left */
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.slide.active .slide-image {
    transform: translateX(0);
    opacity: 1;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.slide-content {
    order: 2; /* Text right */
    max-width: 600px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--accent-color); /* Lavender color */
    letter-spacing: -1px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.kannada-font {
    font-family: 'Anek Kannada', 'Noto Sans Kannada', sans-serif;
}

.hero-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(169, 144, 203, 0.3);
}

.hero-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 144, 203, 0.5);
}

@media (max-width: 1024px) {
    .slide {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        gap: 2rem;
        text-align: center;
    }
    
    .slide-image {
        order: 2; /* Stack image below text on mobile */
    }
    
    .slide-content {
        order: 1;
        margin: 0 auto;
    }
}

/* Custom Hero Styles matching Screenshot */
.hero-slider-section {
    background-color: #f1f3f8; /* Faint lavender/grey */
}

.dark-blue-btn {
    background-color: #1e1b4b !important;
    border-radius: 4px !important; /* Squarer button in screenshot */
    padding: 1rem 3rem !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
    box-shadow: none !important;
    margin-top: 1rem;
}

.dark-blue-btn:hover {
    background-color: #312e81 !important;
    transform: none !important;
}

.line-dot {
    width: 35px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background-color: #94a3b8 !important;
}

.line-dot.active {
    background-color: #1e1b4b !important;
    transform: none !important;
}

.slider-arrows-right .slider-arrow {
    background: transparent !important;
    color: #1e1b4b !important;
    box-shadow: none !important;
    font-size: 1.5rem !important;
}

.slider-arrows-right .slider-arrow:hover {
    color: #4338ca !important;
    background: transparent !important;
}}



/* About Us Page */
.about-hero-section {
    padding: 8rem 4rem 4rem 4rem;
    background-color: var(--bg-secondary);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-title .highlight {
    color: var(--accent-color);
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-content-section {
    padding: 6rem 4rem;
    background-color: var(--bg-primary);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text-content {
    flex: 1.5;
}

.content-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.content-body {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-locations-wrapper {
    flex: 1;
    position: sticky;
    top: 100px;
}

.about-locations-box {
    background-color: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(169, 144, 203, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.locations-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.locations-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.loc-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.loc-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.loc-icon {
    font-size: 2rem;
}

.loc-details h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.loc-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }
    .about-locations-wrapper {
        position: static;
        width: 100%;
    }
}

/* =========================================
   Blog Page Styles
   ========================================= */

.blog-main {
    padding-top: 100px;
    background-color: var(--bg-primary);
}

.blog-hero-section {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #f0ebf8 100%);
    text-align: center;
    border-bottom: 1px solid rgba(169, 144, 203, 0.2);
}

.blog-grid-section {
    padding: 4rem;
    background-color: var(--bg-secondary);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 91, 149, 0.15);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 4rem 2rem;
    }
    .blog-grid-section {
        padding: 2rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 10%;
    background-color: var(--bg-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(169, 144, 203, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(169, 144, 203, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
}

.pricing-card.popular:hover {
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.highlight-row {
    background: rgba(169, 144, 203, 0.1);
    padding: 1rem !important;
    border-radius: 10px;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    /* Hero Section (Reverted to Slider) */
    .hero-slider-section {
        height: auto;
        min-height: calc(100vh - 140px);
        overflow: hidden; 
        display: flex;
    }

    .slider-container {
        height: auto;
        flex: 1;
    }

    .slide {
        display: none !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1rem 1.5rem;
        padding-bottom: 5rem;
        min-height: calc(100vh - 140px);
        background-color: #f0f8ff; /* Light blue background resembling sky in generated image */
    }

    .slide.active {
        display: flex !important;
        position: relative !important;
    }
    
    /* Hide Kannada on Mobile */
    .kannada-font {
        display: none !important;
    }

    .slide-content {
        order: 1;
        padding: 0;
        text-align: center;
        margin-bottom: 1rem;
        z-index: 2;
        width: 100%;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .slide-title .thin-text {
        font-size: 3rem !important;
        font-weight: 900 !important;
        text-transform: uppercase;
        color: #0b1f38 !important; /* Dark navy */
        letter-spacing: -1px;
        line-height: 1;
        text-shadow: 0 4px 15px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.8);
    }

    .slide-title .bold-text {
        font-size: 3.5rem !important;
        font-weight: 900 !important;
        color: #0255a3 !important; /* Bright blue */
        letter-spacing: -2px;
        line-height: 1;
        margin-top: 0.5rem;
        display: block;
        text-shadow: 0 4px 15px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.8);
    }

    .slide-title .sub-text {
        display: none !important; /* Hide sub-text on mobile to match image */
    }

    .slide-image {
        position: absolute !important; 
        top: 50%;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 150%;
        max-width: 700px;
        z-index: 1;
        opacity: 0.4;
    }
    
    .slide.active .slide-image {
        transform: translate(-50%, -50%) !important;
    }

    .slider-nav {
        padding: 0 1.5rem !important;
        position: absolute;
        bottom: 1rem;
        left: 0;
        width: 100%;
        z-index: 10;
        display: flex;
        justify-content: space-between !important;
        align-items: center;
    }
    
    .slider-arrows-right {
        gap: 0.5rem !important;
    }

    /* Training Section */
    .training-container {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .training-left {
        width: 100%;
    }

    .training-right {
        position: relative !important; /* Disable sticky */
        top: 0 !important;
        width: 100%;
    }

    .letter-content {
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 5px solid var(--accent-color);
        text-align: center;
    }

    .letter-heading {
        font-size: 2.5rem;
    }

    /* Process Section */
    .process-section {
        padding: 3rem 1.5rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    /* Location Section */
    .location-section {
        padding: 3rem 1.5rem;
    }

    .location-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .location-map iframe {
        height: 300px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
}

/* ==========================================================================
   Antigravity Magic Features
   ========================================================================== */

/* Custom Cursor */
body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active input,
body.custom-cursor-active .btn {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.custom-cursor-active .cursor-dot,
body.custom-cursor-active .cursor-outline {
    opacity: 1;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* Journey Line */
.journey-line-container {
    position: fixed;
    top: 0;
    left: 30px;
    width: 4px;
    height: 100vh;
    background: rgba(139, 92, 246, 0.1);
    z-index: 100;
    pointer-events: none;
    display: none;
}

@media (min-width: 1024px) {
    .journey-line-container {
        display: block;
    }
}

.journey-line {
    width: 100%;
    height: 0%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.journey-car {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--accent-color);
}


