/* =====================================================
   INDIGENOUS-INSPIRED THEME - RESET & BASE
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Earth Tones - Inspired by Natural Landscapes (More Saturated) */
    --primary-earth: #1f1410;
    --secondary-earth: #2d1e16;
    --accent-earth: #3d2618;
    
    /* Indigenous Orange Palette - Warm & Natural (More Saturated) */
    --primary-orange: #e86b2e;
    --secondary-orange: #f39450;
    --light-orange: #ffa872;
    --dark-orange: #c75520;
    --pale-orange: #ffd4b3;
    
    /* Complementary Natural Colors (More Saturated) */
    --clay-red: #b84d32;
    --sage-green: #7a9168;
    --stone-gray: #8a7568;
    --warm-cream: #fff8f0;
    --sand: #f5e5d0;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #faf7f2;
    --medium-gray: #8a7d70;
    --dark-gray: #3d2f25;
    
    /* Natural Gradients (More Saturated) */
    --gradient-primary: linear-gradient(135deg, #e86b2e 0%, #f39450 100%);
    --gradient-earth: linear-gradient(135deg, #1f1410 0%, #2d1e16 100%);
    --gradient-subtle: linear-gradient(135deg, #fff8f0 0%, #f5e5d0 100%);
    
    /* Subtle Effects */
    --shadow-sm: 0 2px 8px rgba(31, 20, 16, 0.2);
    --shadow-md: 0 4px 20px rgba(31, 20, 16, 0.25);
    --shadow-lg: 0 10px 40px rgba(31, 20, 16, 0.3);
    --shadow-xl: 0 20px 60px rgba(31, 20, 16, 0.35);
    --shadow-orange: 0 8px 32px rgba(232, 107, 46, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--warm-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   MODERN BUTTONS WITH INDIGENOUS TOUCH
===================================================== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern span,
.btn-modern i {
    position: relative;
    z-index: 1;
}

.btn-primary-modern {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 119, 61, 0.3);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--primary-earth);
    border-color: var(--primary-orange);
}

.btn-secondary-modern:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-modern:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-light-modern {
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--sand);
}

.btn-light-modern:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-small {
    padding: 12px 24px;
    font-size: 14px;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* =====================================================
   HERO SECTION - INDIGENOUS INSPIRED
===================================================== */
.hero-section-modern {
    position: relative;
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(245, 237, 228, 0.85) 0%, rgba(232, 220, 200, 0.75) 100%),
        url('/redesign_v/images_v/highway.webp') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding: 20px 0 80px;
    overflow: hidden;
}

.hero-section-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(212, 119, 61, 0.03) 40px, rgba(212, 119, 61, 0.03) 42px),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(212, 119, 61, 0.03) 40px, rgba(212, 119, 61, 0.03) 42px);
    pointer-events: none;
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 119, 61, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 88, 66, 0.08) 0%, transparent 50%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 119, 61, 0.12);
    border: 2px solid rgba(212, 119, 61, 0.25);
    border-radius: 6px;
    color: var(--dark-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-title-modern {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-earth);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.highlight-text {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 119, 61, 0.2);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s backwards;
}

.hero-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--sand);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================================
   SECTION HEADERS
===================================================== */
.section-header-modern {
    text-align: start;
    margin-bottom: 10px;
}

.section-header-modern.centered {
    max-width: 900px;
}

.section-label-modern {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 119, 61, 0.12);
    color: var(--dark-orange);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 2px solid rgba(212, 119, 61, 0.2);
}

.section-title-modern {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-earth);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 600px;
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section-modern {
    padding: 80px 0;
    background: var(--sand);
    position: relative;
}

.services-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 119, 61, 0.3), transparent);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-modern {
    position: relative;
    background: var(--warm-cream);
    border-radius: 12px;
    padding: 40px;
    border: 2px solid rgba(212, 119, 61, 0.15);
    transition: var(--transition-slow);
    text-decoration: none;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern.featured {
    background: var(--gradient-subtle);
    border-color: var(--primary-orange);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-modern img {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    filter: brightness(0) saturate(100%) invert(37%) sepia(45%) saturate(1027%) hue-rotate(337deg) brightness(90%) contrast(90%);
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0.15;
    transition: var(--transition);
}

.service-card-modern:hover .icon-bg {
    opacity: 0.25;
    transform: rotate(8deg) scale(1.1);
}

.service-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 16px;
}

.service-card-modern p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    font-weight: 600;
    transition: var(--transition);
}

.service-card-modern:hover .service-link {
    gap: 15px;
}

.service-link i {
    transition: var(--transition);
}

.service-card-modern:hover .service-link i {
    transform: translateX(5px);
}

/* =====================================================
   SCHEDULE SECTION
===================================================== */
.schedule-section-modern {
    padding: 80px 0;
    background: var(--warm-cream);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.schedule-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.route-card {
    background: var(--sand);
    border-radius: 12px;
    padding: 40px;
    border: 2px solid rgba(212, 119, 61, 0.15);
    transition: var(--transition);
}

.route-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 119, 61, 0.15);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.route-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-earth);
}

.route-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 119, 61, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--dark-gray);
    font-size: 20px;
}

.detail-value {
    color: var(--primary-earth);
    font-weight: 600;
    font-size: 20px;
}

.btn-small {
    background: var(--primary-earth);
    font-size: 17px !important;
    color: #fff;
}

.fares-table-modern {
    background: var(--sand);
    border-radius: 12px;
    padding: 50px;
    border: 2px solid rgba(212, 119, 61, 0.15);
}

.fares-table-modern h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 40px;
    text-align: center;
}

.fares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fare-card {
    background: var(--warm-cream);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(212, 119, 61, 0.15);
    transition: var(--transition);
}

.fare-card:hover {
    border-color: var(--primary-orange);
    transform: scale(1.03);
}

.fare-card.highlight {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
}

.fare-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-earth);
    margin-bottom: 20px;
}

.fare-price {
    margin-bottom: 16px;
}

.price-promo {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
}

.price-regular {
    font-size: 20px;
    color: var(--medium-gray);
    text-decoration: line-through;
    display: block;
}

.price-main {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-earth);
}

.price-free {
    font-size: 48px;
    font-weight: 800;
    color: var(--clay-red);
}

.fare-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.fare-card.highlight .fare-label {
    color: rgba(255, 255, 255, 0.9);
}

.fare-card.highlight .fare-type {
    color: var(--white);
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about-section-modern {
    padding: 80px 0;
    background: var(--sand);
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--warm-cream);
}

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.25;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--sand);
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-earth);
}

.about-content-modern .section-label-modern {
    text-align: left;
    margin-bottom: 20px;
}

.about-content-modern .section-title-modern {
    text-align: left;
    margin-bottom: 24px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 50px;
}

.features-modern {
    margin-bottom: 40px;
}

.feature-modern {
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
    padding: 30px;
    background: var(--warm-cream);
    border-radius: 10px;
    border: 2px solid rgba(212, 119, 61, 0.15);
    transition: var(--transition);
}

.feature-modern:hover {
    border-color: var(--primary-orange);
    transform: translateX(8px);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.feature-icon-wrapper img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* =====================================================
   DUAL CTA SECTION
===================================================== */
.dual-cta-section {
    padding: 80px 0;
    background: var(--warm-cream);
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cta-banner {
    position: relative;
    background: var(--sand);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border: 2px solid rgba(212, 119, 61, 0.15);
    transition: var(--transition);
}

.cta-banner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-orange);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    width: 100%;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
}

.cta-banner h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-earth);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.15;
}

.cta-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section-modern {
    padding: 80px 0;
    background: var(--sand);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: end;
}

.faq-sidebar .section-label-modern {
    text-align: left;
}

.faq-sidebar .section-title-modern {
    text-align: left;
    margin-bottom: 24px;
}

.faq-sidebar p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.faq-image-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    border: 3px solid var(--warm-cream);
}

.faq-accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-modern {
    background: var(--warm-cream);
    border-radius: 10px;
    border: 2px solid rgba(212, 119, 61, 0.15);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-modern:hover {
    border-color: var(--primary-orange);
}

.faq-item-modern.active {
    border-color: var(--primary-orange);
}

.faq-question-modern {
    width: 100%;
    padding: 28px 32px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question-modern span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-earth);
}

.faq-icon-modern {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon-modern i {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.faq-item-modern.active .faq-icon-modern {
    transform: rotate(45deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 300px;
}

.faq-answer-modern p {
    padding: 0 32px 28px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section-modern {
    padding: 80px 0;
    background: var(--warm-cream);
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-card-modern {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--sand);
    border-radius: 10px;
    border: 2px solid rgba(212, 119, 61, 0.15);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card-modern:hover {
    border-color: var(--primary-orange);
    transform: translateX(8px);
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-form-modern {
    background: var(--sand);
    border-radius: 12px;
    padding: 50px;
    border: 2px solid rgba(212, 119, 61, 0.15);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 5px;
}

.form-group-modern {
    margin-bottom: 5px;
}

.form-group-modern label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-earth);
    margin-bottom: 12px;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--warm-cream);
    border: 2px solid rgba(212, 119, 61, 0.15);
    border-radius: 8px;
    font-size: 15px;
    color: var(--primary-earth);
    font-family: inherit;
    transition: var(--transition);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: var(--medium-gray);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(212, 119, 61, 0.1);
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 140px;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Desktop Large */
@media (max-width: 1400px) {
    .hero-title-modern {
        font-size: 56px;
    }
    
    .section-title-modern {
        font-size: 42px;
    }
}

/* Laptop */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 60px;
    }
    
    .hero-title-modern {
        font-size: 48px;
    }
    
    .hero-subtitle-modern {
        font-size: 18px;
    }
    
    .about-grid-modern,
    .faq-layout,
    .contact-grid-modern {
        gap: 60px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid-modern,
    .dual-cta-grid,
    .faq-layout,
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title-modern {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .hero-image {
        order: -1;
    }

    .section-title-modern {
        font-size: 36px;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-header {
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
    }
    
    .schedule-cards {
        grid-template-columns: 1fr;
    }
    
    .fares-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-main img {
        height: 450px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .cta-banner-image {
        opacity: 0.1;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section-modern {
        padding: 25px 0 60px;
        min-height: auto;
        background-attachment: scroll !important;
        background-size: cover;
        background-position: calc(95%) center; 
    }
    
    .hero-title-modern {
        font-size: 36px;
    }
    
    .hero-subtitle-modern {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title-modern {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-card-modern {
        padding: 30px;
    }
    
    .route-card {
        padding: 30px;
    }
    
    .fares-table-modern {
        padding: 30px;
    }
    
    .fares-table-modern h3 {
        font-size: 28px;
    }
    
    .about-image-main img {
        height: 350px;
    }
    
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px;
    }
    
    .badge-number {
        font-size: 36px;
    }
    
    .feature-modern {
        padding: 25px;
    }
    
    .cta-banner {
        min-height: 350px;
    }
    
    .cta-banner-content {
        padding: 40px 30px;
    }
    
    .cta-banner h3 {
        font-size: 28px;
    }
    
    .contact-form-modern {
        padding: 35px;
    }
    .btn-small {
        font-size: 13px !important;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section-modern {
        padding: 25px 0 40px;
    }
    
    .hero-title-modern {
        font-size: 28px;
    }
    
    .hero-subtitle-modern {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-header-modern {
        margin-bottom: 10px;
    }
    
    .section-label-modern {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .section-title-modern {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .btn-modern {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .service-card-modern {
        padding: 25px;
    }
    
    .service-card-modern h3 {
        font-size: 20px;
    }
    
    .service-card-modern p {
        font-size: 14px;
    }
    
    .route-card {
        padding: 25px;
    }
    
    .route-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .route-header h3 {
        font-size: 20px;
    }
    
    .detail-row {
        padding: 12px 0;
    }
    
    .detail-label,
    .detail-value {
        font-size: 14px;
    }
    
    .fares-table-modern {
        padding: 25px;
    }
    
    .fares-table-modern h3 {
        font-size: 24px;
    }
    
    .fare-card {
        padding: 30px 25px;
    }
    
    .price-promo,
    .price-main,
    .price-free {
        font-size: 36px;
    }
    
    .about-image-main img {
        height: 280px;
    }
    
    .experience-badge {
        padding: 16px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .feature-modern {
        flex-direction: column;
        padding: 20px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-content h4 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .cta-banner {
        min-height: 300px;
    }
    
    .cta-banner-content {
        padding: 30px 25px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .cta-banner h3 {
        font-size: 24px;
    }
    
    .cta-banner p {
        font-size: 14px;
    }
    
    .faq-question-modern {
        padding: 20px 24px;
    }
    
    .faq-question-modern span {
        font-size: 16px;
    }
    
    .faq-icon-modern {
        width: 32px;
        height: 32px;
    }
    
    .faq-answer-modern p {
        padding: 0 24px 20px;
        font-size: 14px;
    }
    
    .contact-card-modern {
        padding: 20px;
    }
    
    .contact-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-details h4 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .contact-form-modern {
        padding: 25px;
    }
    
    .form-group-modern input,
    .form-group-modern textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    .btn-small {
        font-size: 13px !important;
    }
}

/* =====================================================
   SCROLLBAR - EARTH TONES
===================================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--sand);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* =====================================================
   SELECTION COLOR
===================================================== */
::selection {
    background: var(--primary-orange);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--white);
}

/* =====================================================
   ACCESSIBILITY
===================================================== */
.btn-modern:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* =====================================================
   PRINT STYLES
===================================================== */
@media print {
    .hero-section-modern,
    .hero-stats,
    .btn-modern {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .section-title-modern,
    .service-card-modern h3,
    .route-header h3 {
        color: black;
    }
}

/* =====================================================
   HERO SLIDER
===================================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(230px, 35vw, 600px);
    border-radius: 12px;
    overflow: hidden;
}

.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
}

.faq-image-modern {
    width: 100%;
    height: clamp(230px, 35vw, 600px);
    object-fit: cover;
    display: block;
}