/* ========================================
   BOLT-STYLE MODERN DESIGN
   Clean, Minimal, Professional
   ======================================== */

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

:root {
    /* Blue Theme */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    
    /* Neutrals */
    --black: #000000;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Others */
    --success: #10b981;
    --warning: #f59e0b;
    --gold: #fbbf24;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   MODERN HEADER - BOLT STYLE
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    padding: 10px 18px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    padding: 10px 16px;
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.lang-switch:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-header-primary {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-header-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-900);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-container {
        height: 64px;
    }
}

/* ========================================
   HERO SECTION - BOLT STYLE
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 22px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-primary-large {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary-large {
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary-large:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--gray-900);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 100;
    border: 2px solid var(--gray-100);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card-1 {
    top: 10%;
    right: 3%;
}

.floating-card-2 {
    bottom: 10%;
    left: 7%;
    animation-delay: 1.5s;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .hero-description {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 100px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 17px;
    }
}

/* ========================================
   CARDS
   ======================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.card-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.card-price-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.card-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 15px;
}

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

.card-features i {
    color: var(--success);
    font-size: 18px;
}

.btn-card {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-card:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   FAQ - BOLT STYLE
   ======================================== */

.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gray-200);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

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

.testimonial {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
    margin-bottom: 2px;
}

.author-location {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
}

.btn-cta-white {
    background: white;
    color: var(--primary);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 36px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta {
        justify-content: center;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   FOOTER - BOLT STYLE
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-100);
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    font-weight: 600;
}

.footer-contact-item:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Footer SEO */
.footer-seo {
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-seo-content h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.footer-seo-content p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--gray-500);
}

.footer-seo-content strong {
    color: var(--gray-400);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    font-size: 14px;
}

.footer-bottom-left p {
    color: var(--gray-500);
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-right a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.footer-bottom-right a:hover {
    color: var(--primary);
}

.footer-bottom-right .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.scroll-to-top.show {
    display: flex;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   ROUTE CARDS - PRICE CARDS
   ======================================== */

.route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.route-card:hover::before {
    transform: scaleY(1);
}

.route-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.route-card-zip {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.route-card-city {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
}

.route-card-price-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-card-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

/* ========================================
   BOOKING PAGE - FULL STYLE FROM STYLE-RED (ADAPTED TO BLUE)
   ======================================== */

.booking-form-container {
    padding: 60px 20px 80px;
    background: var(--gray-50);
    width: 100%;
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 40px 16px 60px;
    }
}

.booking-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .booking-form {
        padding: 32px 24px;
        border-radius: 16px;
    }
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--primary-lighter);
}

@media (max-width: 768px) {
    .form-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
}

.form-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 24px;
    }
}

.form-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 768px) {
    .form-subtitle {
        font-size: 14px;
    }
}

/* ========================================
   DIRECTION SELECTOR
   ======================================== */

.direction-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .direction-selector {
        gap: 16px;
        margin-bottom: 32px;
    }
}

.direction-card {
    background: white;
    border: 3px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .direction-card {
        padding: 24px 16px;
        border-radius: 12px;
    }
}

.direction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.direction-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.direction-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-lighter) 0%, white 100%);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.direction-card.selected::before {
    transform: scaleX(1);
}

.direction-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .direction-card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }
}

.direction-card.selected .direction-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.direction-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .direction-card-title {
        font-size: 16px;
    }
}

.direction-card-subtitle {
    font-size: 14px;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .direction-card-subtitle {
        font-size: 13px;
    }
}

.selected-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

@media (max-width: 768px) {
    .selected-check {
        width: 24px;
        height: 24px;
        font-size: 12px;
        top: 12px;
        right: 12px;
    }
}

.direction-card.selected .selected-check {
    display: flex;
}

/* ========================================
   FORM SECTIONS
   ======================================== */

.form-section {
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .form-section {
        margin-bottom: 28px;
    }
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.section-title i {
    color: var(--primary);
    font-size: 22px;
}

@media (max-width: 768px) {
    .section-title i {
        font-size: 20px;
    }
}

/* ========================================
   FORM ELEMENTS
   ======================================== */

.form-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        gap: 16px;
        margin-bottom: 16px;
    }
}

.form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

.form-label.required::after {
    content: '*';
    color: var(--primary);
    margin-left: 4px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-900);
    background: white;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .form-input,
    .form-select {
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 14px;
    }
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lighter);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:disabled,
.form-select:disabled {
    background: var(--gray-50);
    cursor: not-allowed;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   TOGGLE SWITCH
   ======================================== */

.toggle-group {
    background: var(--primary-lighter);
    border: 2px solid var(--primary-light);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .toggle-group {
        padding: 16px;
        border-radius: 12px;
    }
}

.toggle-group:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.toggle-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

@media (max-width: 768px) {
    .toggle-info {
        gap: 12px;
    }
}

.toggle-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .toggle-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.toggle-text {
    flex: 1;
}

.toggle-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .toggle-text strong {
        font-size: 14px;
    }
}

.toggle-text span {
    font-size: 13px;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .toggle-text span {
        font-size: 12px;
    }
}

.toggle-switch {
    width: 56px;
    height: 32px;
    background: var(--gray-200);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .toggle-switch {
        width: 48px;
        height: 28px;
    }
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .toggle-switch::after {
        width: 20px;
        height: 20px;
    }
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-switch.active::after {
    transform: translateX(24px);
}

@media (max-width: 768px) {
    .toggle-switch.active::after {
        transform: translateX(20px);
    }
}

/* ========================================
   ADDITIONAL ADDRESS SECTIONS
   ======================================== */

.additional-address {
    background: var(--gray-50);
    border-radius: 14px;
    padding: 24px;
    margin-top: 20px;
    border: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .additional-address {
        padding: 20px;
        border-radius: 12px;
        margin-top: 16px;
    }
}

.additional-address-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

@media (max-width: 768px) {
    .additional-address-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

/* ========================================
   PRICE SUMMARY
   ======================================== */

.price-summary {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 28px;
    margin-top: 40px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .price-summary {
        padding: 20px;
        border-radius: 12px;
        margin-top: 32px;
        margin-bottom: 24px;
    }
}

.price-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

@media (max-width: 768px) {
    .price-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
}

.price-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .price-title {
        font-size: 14px;
    }
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .price-item {
        padding: 10px 0;
    }
}

.price-item-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .price-item-label {
        font-size: 14px;
    }
}

.price-item-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 768px) {
    .price-item-value {
        font-size: 16px;
    }
}

.route-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .route-info {
        font-size: 12px;
        padding: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
}

.route-info i {
    color: var(--primary);
}

.route-info strong {
    color: var(--primary);
}

/* ========================================
   SUBMIT SECTION
   ======================================== */

.submit-section {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .submit-section {
        margin-top: 32px;
    }
}

.submit-text {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .submit-text {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

.submit-text a {
    color: var(--primary);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 18px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .submit-button {
        padding: 16px 24px;
        font-size: 16px;
    }
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* ========================================
   INFO SECTION
   ======================================== */

.info-section {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .info-section {
        margin-top: 40px;
    }
}

.info-content {
    display: grid;
    gap: 20px;
}

.info-item {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .info-item {
        padding: 20px;
        border-radius: 12px;
    }
}

.info-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-item.success {
    border-left-color: var(--success);
}

.info-item.warning {
    border-left-color: var(--warning);
}

.info-item.danger {
    border-left-color: var(--danger);
}

.info-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .info-item h4 {
        font-size: 15px;
    }
}

.info-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 8px 0;
}

@media (max-width: 768px) {
    .info-item p {
        font-size: 13px;
    }
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-item p strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* ========================================
   HERO - IMPROVED MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 60px !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
        padding: 0 20px !important;
    }
    
    .hero h1 {
        font-size: 52px !important;
    }
    
    .hero-description {
        font-size: 19px !important;
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 48px !important;
    }
    
    .hero-content {
        padding: 0 16px !important;
        gap: 40px !important;
    }
    
    .hero-badge {
        font-size: 12px !important;
        padding: 7px 16px !important;
    }
    
    .hero h1 {
        font-size: 42px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-description {
        font-size: 18px !important;
        margin-bottom: 32px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 40px !important;
    }
    
    .btn-hero {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
    }
    
    .hero-stats {
        gap: 24px !important;
        justify-content: space-between !important;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 40px !important;
    }
    
    .hero-content {
        padding: 0 12px !important;
        gap: 32px !important;
    }
    
    .hero-badge {
        font-size: 11px !important;
        padding: 6px 14px !important;
        margin-bottom: 24px !important;
    }
    
    .hero h1 {
        font-size: 36px !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.5px !important;
    }
    
    .hero-description {
        font-size: 17px !important;
        margin-bottom: 28px !important;
    }
    
    .btn-hero {
        padding: 15px 20px !important;
        font-size: 15px !important;
    }
    
    .hero-stats {
        flex-direction: row !important;
        gap: 16px !important;
        padding-top: 24px !important;
    }
    
    .stat {
        flex: 1;
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
}

/* ========================================
   RESPONSIVE IMPROVEMENTS - MOBILE FIRST
   ======================================== */

/* Prevent horizontal scroll on mobile */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    padding-top: 70px;
}

@media (max-width: 1024px) {
    body {
        padding-top: 64px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
}

/* Responsive container */
.section-container,
.container {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .section-container,
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .section-container,
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive text - INCREASED FOR BETTER READABILITY */
@media (max-width: 768px) {
    h1 {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 30px !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }
    
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 26px !important;
    }
    
    h3 {
        font-size: 22px !important;
    }
    
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* Responsive grids */
.cards-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive buttons */
@media (max-width: 480px) {
    .btn,
    .btn-header-primary,
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a,
    .cta-buttons a {
        width: 100%;
    }
}

/* ========================================
   MOBILE HEADER & NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1024px) {
    .header-container {
        height: 64px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
        padding: 0 12px;
        gap: 12px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 15px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .logo span {
        display: none;
    }
}

/* Desktop Navigation */
.nav-menu {
    display: none;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    padding: 8px 0;
    display: block;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.lang-switch:hover {
    background: var(--primary-lighter);
    border-color: var(--primary);
}

@media (max-width: 480px) {
    .lang-switch {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* Header Primary Button */
.btn-header-primary {
    display: none;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-header-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .btn-header-primary {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    .btn-header-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-toggle:hover {
    background: var(--primary-lighter);
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-toggle {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

@media (max-width: 480px) {
    .mobile-menu {
        max-width: 85%;
    }
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, white 100%);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--primary-lighter);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-nav {
    list-style: none;
    padding: 24px 20px;
    margin: 0;
    flex: 1;
}

.mobile-menu-nav a {
    color: var(--gray-900);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-menu-nav a:hover {
    background: var(--primary-lighter);
    color: var(--primary);
    transform: translateX(4px);
}

.mobile-menu-cta {
    padding: 20px;
    border-top: 2px solid var(--gray-200);
}

.mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-menu-cta a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE FOOTER - DARK PREMIUM STYLE
   ======================================== */

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 80px 20px 32px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 16px 28px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 12px 24px;
        margin-top: 48px;
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
}

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .footer-section h3,
    .footer-section h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    padding-left: 0;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 8px;
}

@media (max-width: 768px) {
    .footer-section p,
    .footer-section a {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 32px;
        font-size: 13px;
    }
}

.footer-bottom p {
    margin: 0;
}

/* WhatsApp button */
.whatsapp-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 998;
    font-size: 28px;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 16px;
        left: 16px;
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}

/* Scroll to top button */
.scroll-top, .scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
    z-index: 998;
}

.scroll-top.visible, .scroll-to-top.show {
    display: flex;
}

.scroll-top:hover, .scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .scroll-top, .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .scroll-top, .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

.d-none {
    display: none !important;
}

.bg-gray {
    background: var(--gray-50);
}

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

.mt-3 {
    margin-top: 20px !important;
}

@media (max-width: 768px) {
    .mt-3 {
        margin-top: 16px !important;
    }
}

strong {
    font-weight: 700;
    color: var(--gray-900);
}

/* Return Trip Animation */
.return-trip-info {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

/* Animations */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease;
}

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

.animate-slide-up {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GRADIENT TEXT
   ======================================== */

.gradient-text-red {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 50%, #bfdbfe 100%);
    width: 100%;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 60px 16px 40px;
    }
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .page-hero::before {
        width: 300px;
        height: 300px;
    }
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--gray-900);
    line-height: 1.2;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 28px;
    }
}

.page-hero p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero p {
        font-size: 16px;
    }
}

/* ========================================
   BUTTONS - Additional Styles
   ======================================== */

.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 8px;
    }
}

.btn-primary,
.btn-red-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover,
.btn-red-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline,
.btn-red-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover,
.btn-red-outline:hover {
    background: var(--primary-lighter);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========================================
   CTA BOX
   ======================================== */

.cta-box,
.cta-box-red {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #bfdbfe 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cta-box,
    .cta-box-red {
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        text-align: center;
        border-radius: 16px;
    }
}

.cta-icon,
.cta-icon-red {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-icon,
    .cta-icon-red {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
}

.cta-content,
.cta-content-red {
    flex: 1;
}

.cta-content h3,
.cta-content-red h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .cta-content-red h3 {
        font-size: 20px;
    }
}

.cta-content p,
.cta-content-red p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-content p,
    .cta-content-red p {
        font-size: 14px;
    }
}

/* ========================================
   MODAL / NOTIFICATIONS
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@media (max-width: 768px) {
    .modal-content {
        border-radius: 16px;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-header {
        padding: 20px 20px 16px;
    }
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

@media (max-width: 768px) {
    .modal-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

@media (max-width: 768px) {
    .modal-title {
        font-size: 18px;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .modal-close {
        top: 16px;
        right: 16px;
        width: 28px;
        height: 28px;
    }
}

.modal-close:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.modal-body {
    padding: 24px;
}

@media (max-width: 768px) {
    .modal-body {
        padding: 20px;
    }
}

.modal-message {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-message {
        font-size: 14px;
    }
}

.modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .modal-footer {
        padding: 12px 20px 20px;
    }
}

.modal-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .modal-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.modal-btn-primary {
    background: var(--primary);
    color: white;
}

.modal-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* ========================================
   RED THEME ADDITIONS FOR PRICE PAGES
   ======================================== */

/* Red Color Variables */
:root {
    --red-primary: #ef4444;
    --red-secondary: #dc2626;
    --red-light: #fee2e2;
    --red-lighter: #fef2f2;
    --border-color: #e5e7eb;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --bg-secondary: #f9fafb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header,
.section-header-red {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .section-header,
    .section-header-red {
        margin-bottom: 40px;
    }
}

.section-label,
.section-label-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-label,
    .section-label-red {
        font-size: 11px;
        padding: 6px 16px;
    }
}

.section-title,
.section-title-red {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title,
    .section-title-red {
        font-size: 28px;
        margin-bottom: 12px;
    }
}

.section-description,
.section-description-red {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-description,
    .section-description-red {
        font-size: 14px;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-red {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Accordion - Red Theme */
.faq-container,
.faq-container-red {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item,
.faq-item-red {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .faq-item,
    .faq-item-red {
        border-radius: 12px;
        margin-bottom: 12px;
    }
}

.faq-item.active,
.faq-item-red.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question,
.faq-question-red {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .faq-question,
    .faq-question-red {
        padding: 20px;
        font-size: 15px;
        gap: 12px;
    }
}

.faq-question:hover,
.faq-question-red:hover {
    color: var(--primary);
}

.faq-icon,
.faq-icon-red {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .faq-icon,
    .faq-icon-red {
        width: 28px;
        height: 28px;
    }
}

.faq-item.active .faq-icon,
.faq-item-red.active .faq-icon-red {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer,
.faq-answer-red {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer-red p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-answer p,
    .faq-answer-red p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* CTA Box - Red Theme */
.cta-box-red {
    background: linear-gradient(135deg, var(--red-lighter) 0%, var(--red-light) 100%);
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--red-light);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .cta-box-red {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }
}

.cta-icon-red {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--red-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .cta-icon-red {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}

.cta-content-red {
    flex: 1;
}

.cta-content-red h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .cta-content-red h3 {
        font-size: 20px;
    }
}

.cta-content-red p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-content-red p {
        font-size: 14px;
    }
}

/* Pricing Section Subtitle */
.pricing-section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: -12px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .pricing-section-subtitle {
        font-size: 14px;
    }
}

/* Buttons - Red Theme */
.btn-red-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-red-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-red-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: var(--red-primary);
    border: 2px solid var(--red-primary);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-red-outline:hover {
    background: var(--red-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

@media (max-width: 768px) {
    .btn-red-primary,
    .btn-red-outline {
        width: 100%;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
}
