/* ============================================================
   TRAVELR TAXI & TOURS SERVICES
   Main Stylesheet
   Color Palette: Yellow #FFD400, Black #1a1a1a, Green #22c55e, Red #ef4444, Blue #38bdf8
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}
a { color: #1a1a1a; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #FFD400; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-red { color: #ef4444; }
.text-green { color: #22c55e; }
.text-small { font-size: 0.85rem; color: #666; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 700;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
    border: 2px solid transparent; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-primary { background: #FFD400; color: #1a1a1a; border-color: #FFD400; }
.btn-primary:hover { background: #e6bf00; color: #1a1a1a; border-color: #e6bf00; }
.btn-dark { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.btn-dark:hover { background: #333; color: #FFD400; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-light { background: #fff; color: #1a1a1a; border-color: #fff; }
.btn-light:hover { background: #FFD400; border-color: #FFD400; }
.btn-outline { background: transparent; color: #1a1a1a; border-color: #1a1a1a; }
.btn-outline:hover { background: #1a1a1a; color: #FFD400; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.btn i { font-size: 1.1em; }

/* Pulse glow animation for primary CTA */
.pulse-glow {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.7); }
    50% { box-shadow: 0 0 20px 10px rgba(255, 212, 0, 0.3); }
}

/* === STATUS BADGES === */
.status-badge {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}

/* === FLASH MESSAGES === */
.flash-message {
    padding: 15px 0; position: relative; z-index: 100;
    animation: slideDown 0.3s ease;
}
.flash-message .container { display: flex; justify-content: space-between; align-items: center; }
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error { background: #fee2e2; color: #991b1b; }
.flash-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: inherit; }

.alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 20px; position: relative; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert ul { margin-left: 20px; }

/* === TOP BAR === */
.top-bar {
    background: #1a1a1a; color: #fff; padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-link { color: #ccc; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.top-link:hover { color: #FFD400; }
.top-link i { color: #FFD400; }
.whatsapp-link i { color: #25D366; }

/* === NAVIGATION === */
.main-nav {
    background: #FFD400; padding: 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 4px solid #1a1a1a;
}
.main-nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 60px; padding: 5px 0; transition: transform 0.3s; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu a {
    padding: 20px 15px; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 0.9rem; color: #1a1a1a;
    text-transform: uppercase; letter-spacing: 0.5px;
    position: relative; transition: all 0.3s;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0;
    height: 4px; background: #1a1a1a; transition: all 0.3s; transform: translateX(-50%);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 80%; }
.nav-menu a:hover { color: #1a1a1a; background: rgba(0,0,0,0.05); }
.nav-cta {
    background: #1a1a1a !important; color: #FFD400 !important;
    border-radius: 50px !important; padding: 12px 24px !important;
    margin-left: 10px;
}
.nav-cta:hover { background: #333 !important; }
.nav-cta::after { display: none !important; }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 10px; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 28px; height: 3px; background: #1a1a1a; border-radius: 3px; transition: all 0.3s; }

/* === HERO SECTION === */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255, 212, 0, 0.03) 40px,
        rgba(255, 212, 0, 0.03) 80px
    );
}
.hero-particles {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    padding: 40px 0;
}
.hero-text { color: #fff; }
.hero-logo {
    max-width: 280px; margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(255, 212, 0, 0.5));
}
.hero h1 {
    font-size: 3rem; font-weight: 900; margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD400, #ffec80);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-tagline {
    font-size: 1.5rem; color: #38bdf8; font-weight: 700;
    font-family: 'Montserrat', sans-serif; margin-bottom: 10px;
}
.hero-sub { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 15px; }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a {
    color: #FFD400; font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Hero Booking Widget */
.hero-booking-widget {
    background: #fff; border-radius: 20px; padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-top: 5px solid #FFD400;
}
.hero-booking-widget h3 {
    color: #1a1a1a; font-size: 1.3rem; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.hero-booking-widget h3 i { color: #FFD400; }

/* === FORMS === */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-weight: 600; margin-bottom: 6px;
    font-size: 0.9rem; color: #333;
}
.form-group label i { margin-right: 5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb;
    border-radius: 10px; font-size: 1rem; font-family: 'Open Sans', sans-serif;
    transition: all 0.3s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #FFD400; outline: none;
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.15);
}
.form-row { display: flex; gap: 20px; }
.form-group.half { flex: 1; }
.form-group.third { flex: 1; }
.form-hint { font-size: 0.85rem; color: #666; margin-top: 5px; }
.form-buttons { display: flex; gap: 15px; margin-top: 20px; }

/* === TICKER BAR === */
.ticker-bar {
    background: #FFD400; padding: 12px 0; overflow: hidden;
    border-top: 3px solid #1a1a1a; border-bottom: 3px solid #1a1a1a;
}
.ticker-content {
    display: flex; gap: 40px; white-space: nowrap;
    animation: ticker 20s linear infinite;
}
.ticker-content span {
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 0.95rem; text-transform: uppercase; color: #1a1a1a;
    display: flex; align-items: center; gap: 8px;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header.light { color: #fff; }
.section-header.light .section-subtitle { color: #ccc; }
.section-title {
    font-size: 2.5rem; margin-bottom: 15px;
    position: relative; display: inline-block;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: #FFD400; margin: 15px auto 0; border-radius: 2px;
}
.section-subtitle { font-size: 1.1rem; color: #666; }

/* === PAGE HERO (inner pages) === */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 60px 0; text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255, 212, 0, 0.1);
}
.page-hero h1 {
    font-size: 2.8rem; margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD400, #ffec80);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p { color: #ccc; font-size: 1.1rem; }

/* === DARK SECTION === */
.dark-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
}

/* === SERVICES GRID === */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff; border-radius: 20px; padding: 40px 30px;
    text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 4px solid transparent;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: #FFD400; transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); border-bottom-color: #FFD400; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #FFD400, #ffec80);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 2rem; color: #1a1a1a;
    transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }

/* === FEATURES GRID (Why Choose Us) === */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.feature-item {
    padding: 30px; border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 212, 0, 0.15);
    transition: all 0.4s; position: relative;
}
.feature-item:hover {
    background: rgba(255, 212, 0, 0.1);
    border-color: #FFD400;
    transform: translateY(-5px);
}
.feature-number {
    position: absolute; top: 15px; right: 20px;
    font-size: 3rem; font-weight: 900; color: rgba(255, 212, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
}
.feature-icon {
    width: 60px; height: 60px; border-radius: 15px;
    background: #FFD400; display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; color: #1a1a1a;
    margin-bottom: 15px;
}
.feature-item h3 { color: #FFD400; margin-bottom: 8px; }
.feature-item p { color: #ccc; font-size: 0.95rem; }

/* === FLEET PREVIEW === */
.fleet-categories {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.fleet-cat-card {
    background: #fff; border-radius: 20px; padding: 40px;
    text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s; border: 2px solid #f0f0f0;
}
.fleet-cat-card:hover { border-color: #FFD400; transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.fleet-cat-icon { font-size: 3rem; color: #FFD400; margin-bottom: 15px; }
.fleet-count { font-size: 1.8rem; font-weight: 900; color: #FFD400; font-family: 'Montserrat', sans-serif; }

/* === FLEET PAGE === */
.fleet-stats-bar {
    display: flex; justify-content: center; gap: 40px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.fleet-stat {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.1rem; font-weight: 600;
}
.fleet-stat i { color: #FFD400; font-size: 1.5rem; }
.fleet-stat strong { font-size: 1.3rem; color: #FFD400; }
.fleet-filters {
    display: flex; justify-content: center; gap: 10px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px; border-radius: 50px; font-weight: 700;
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
    border: 2px solid #e5e7eb; color: #666; transition: all 0.3s;
    text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
    background: #FFD400; border-color: #FFD400; color: #1a1a1a;
}
.fleet-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.vehicle-card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: all 0.4s;
}
.vehicle-card:hover { transform: translateY(-8px); box-shadow: 0 15px 50px rgba(0,0,0,0.15); }
.vehicle-image { position: relative; height: 200px; background: #f5f5f5; overflow: hidden; }
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 4rem; color: #ddd;
    background: linear-gradient(135deg, #f5f5f5, #eee);
}
.vehicle-type-badge {
    position: absolute; top: 15px; right: 15px;
    background: #FFD400; color: #1a1a1a; padding: 5px 15px;
    border-radius: 20px; font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase;
}
.vehicle-info { padding: 20px; }
.vehicle-info h3 { font-size: 1.1rem; margin-bottom: 10px; }
.vehicle-details { display: flex; gap: 15px; margin-bottom: 15px; font-size: 0.9rem; color: #666; }
.vehicle-details span { display: flex; align-items: center; gap: 5px; }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, #FFD400, #ffec80);
    padding: 60px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; left: -10%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -50%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 15px; color: #1a1a1a; }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; color: #333; }
.cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* === TESTIMONIALS === */
.testimonials-section { background: #f9fafb; }
.testimonials-slider {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #fff; border-radius: 15px; padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s; border-left: 4px solid #FFD400;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.testimonial-stars { margin-bottom: 15px; color: #f59e0b; font-size: 1.1rem; }
.testimonial-stars .empty { color: #ddd; }
.testimonial-text { font-style: italic; color: #555; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { font-size: 2.5rem; color: #FFD400; }
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: 0.85rem; color: #888; }
.testimonial-date { font-size: 0.8rem; color: #aaa; margin-top: 10px; }

.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px; margin-bottom: 60px;
}
.testimonial-card-full {
    background: #fff; border-radius: 15px; padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-left: 4px solid #FFD400;
}

/* === REVIEW FORM === */
.review-form-section {
    background: #f9fafb; border-radius: 20px; padding: 40px;
    max-width: 700px; margin: 0 auto;
}
.review-form-section h2 { text-align: center; margin-bottom: 30px; }
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 5px; }
.star-rating input { display: none; }
.star-rating label { cursor: pointer; font-size: 1.8rem; color: #ddd; transition: color 0.2s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: #f59e0b; }

/* === PRICING PAGE === */
.pricing-intro { text-align: center; max-width: 700px; margin: 0 auto 50px; font-size: 1.1rem; color: #555; }
.pricing-section { margin-bottom: 60px; }
.pricing-section h2 { font-size: 1.8rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.pricing-section h2 i { color: #FFD400; }
.pricing-desc { color: #666; margin-bottom: 25px; }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { background: #1a1a1a; color: #FFD400; padding: 15px; text-align: left; font-family: 'Montserrat', sans-serif; }
.pricing-table td { padding: 15px; border-bottom: 1px solid #eee; }
.pricing-table tr:hover { background: #fffde7; }
.pricing-table i.fa-arrow-right { color: #FFD400; margin: 0 8px; }
.price-cell { font-weight: 800; color: #1a1a1a; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; }

.pricing-cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.pricing-card {
    background: #fff; border-radius: 15px; padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); text-align: center;
    border: 2px solid #eee; transition: all 0.3s;
}
.pricing-card:hover { border-color: #FFD400; transform: translateY(-5px); }
.pricing-card.featured { border-color: #FFD400; background: #fffde7; }
.pricing-card h3 { margin-bottom: 20px; }
.pricing-details { margin-bottom: 20px; }
.pricing-detail-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
.pricing-big-price { font-size: 2.5rem; font-weight: 900; color: #1a1a1a; font-family: 'Montserrat', sans-serif; margin-bottom: 20px; }
.pricing-big-price span { font-size: 1rem; color: #666; font-weight: 400; }
.pricing-features { text-align: left; margin-bottom: 20px; }
.pricing-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.pricing-features i { color: #22c55e; }

/* Fare Calculator */
.fare-calculator { max-width: 700px; margin: 0 auto; }
.fare-result {
    text-align: center; margin-top: 30px; padding: 30px;
    background: #fffde7; border-radius: 15px; border: 2px solid #FFD400;
}
.fare-amount { font-size: 3rem; font-weight: 900; color: #1a1a1a; font-family: 'Montserrat', sans-serif; }
.fare-note { color: #666; margin: 10px 0 20px; }

/* === SERVICES DETAIL === */
.services-detail-grid { display: flex; flex-direction: column; gap: 40px; }
.service-detail-card {
    display: flex; gap: 40px; background: #fff; border-radius: 20px;
    padding: 40px; box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    border-left: 5px solid #FFD400; transition: all 0.3s;
}
.service-detail-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.service-detail-icon { font-size: 3rem; color: #FFD400; flex-shrink: 0; padding-top: 5px; }
.service-detail-content h2 { margin-bottom: 15px; }
.service-detail-content p { color: #555; margin-bottom: 15px; line-height: 1.7; }
.service-features { margin-bottom: 20px; }
.service-features li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.service-features i { color: #22c55e; }
.destination-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.destination-tags span {
    background: #fffde7; border: 1px solid #FFD400; padding: 5px 15px;
    border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}

/* === FAQ === */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 40px; }
.faq-category h2 { font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.faq-category h2 i { color: #FFD400; }
.faq-item { margin-bottom: 10px; border: 1px solid #eee; border-radius: 12px; overflow: hidden; }
.faq-question {
    width: 100%; padding: 18px 20px; background: #fff;
    border: none; text-align: left; font-size: 1rem;
    font-weight: 700; font-family: 'Montserrat', sans-serif;
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; transition: all 0.3s;
}
.faq-question:hover { background: #fffde7; }
.faq-question i { transition: transform 0.3s; color: #FFD400; }
.faq-question.active i { transform: rotate(180deg); }
.faq-question.active { background: #FFD400; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-answer.open { padding: 20px; max-height: 500px; }
.faq-answer p { color: #555; margin-bottom: 10px; }
.faq-answer ul { margin-left: 20px; margin-bottom: 10px; }
.faq-answer li { padding: 3px 0; list-style: disc; color: #555; }
.faq-cta { text-align: center; margin-top: 50px; padding: 40px; background: #f9fafb; border-radius: 20px; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { margin-bottom: 15px; }
.contact-cards { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
.contact-card {
    display: flex; align-items: center; gap: 15px; padding: 20px;
    background: #f9fafb; border-radius: 12px; transition: all 0.3s;
    border: 2px solid transparent;
}
.contact-card:hover { border-color: #FFD400; background: #fffde7; transform: translateX(5px); }
.contact-card.whatsapp:hover { border-color: #25D366; background: #f0fdf4; }
.contact-card-icon { width: 50px; height: 50px; border-radius: 12px; background: #FFD400; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #1a1a1a; flex-shrink: 0; }
.contact-card.whatsapp .contact-card-icon { background: #25D366; color: #fff; }
.contact-card h3 { font-size: 0.95rem; margin-bottom: 3px; }
.contact-card p { color: #666; font-size: 0.9rem; }
.contact-hours { margin-top: 25px; }
.contact-hours h3 { margin-bottom: 10px; }
.contact-hours table { width: 100%; }
.contact-hours td { padding: 8px 0; border-bottom: 1px solid #eee; }
.contact-hours td:last-child { text-align: right; font-weight: 600; }
.contact-form-wrap h2 { margin-bottom: 25px; }

/* === ABOUT PAGE === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: #555; margin-bottom: 15px; line-height: 1.7; }
.about-image img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card { text-align: center; padding: 30px; }
.mission-icon { font-size: 3rem; color: #FFD400; margin-bottom: 15px; }
.mission-card h3 { color: #FFD400; margin-bottom: 10px; }
.mission-card p { color: #ccc; }

/* Stats Section */
.stats-section { background: #FFD400; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { padding: 20px; }
.stat-number { font-size: 3.5rem; font-weight: 900; font-family: 'Montserrat', sans-serif; color: #1a1a1a; }
.stat-label { font-size: 1.1rem; font-weight: 700; color: #333; text-transform: uppercase; }

/* === BOOKING PAGE === */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.booking-form { background: #fff; border-radius: 20px; padding: 35px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); }
.booking-step h2 { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.step-number {
    width: 40px; height: 40px; border-radius: 50%; background: #FFD400;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #1a1a1a;
}
.booking-sidebar { position: sticky; top: 100px; }
.booking-summary-card {
    background: #1a1a1a; color: #fff; border-radius: 20px; padding: 30px;
    margin-bottom: 20px;
}
.booking-summary-card h3 { color: #FFD400; margin-bottom: 20px; }
.summary-items { margin-bottom: 15px; }
.summary-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.summary-item span { color: #999; }
.summary-divider { height: 2px; background: #FFD400; margin: 15px 0; }
.summary-price { display: flex; justify-content: space-between; font-size: 1.2rem; }
.summary-price span { color: #999; }
.summary-price strong { color: #FFD400; font-size: 1.4rem; }
.summary-note { font-size: 0.8rem; color: #666; margin-top: 10px; }
.booking-help-card { background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); text-align: center; }
.booking-help-card h4 { margin-bottom: 10px; }
.booking-help-card p { color: #666; margin-bottom: 15px; font-size: 0.9rem; }
.booking-help-card .btn { margin-bottom: 10px; }

/* Booking Confirmation */
.booking-confirmation { text-align: center; max-width: 600px; margin: 0 auto; padding: 40px; }
.confirmation-icon { font-size: 5rem; color: #22c55e; margin-bottom: 20px; animation: scaleIn 0.5s ease; }
.booking-ref { font-size: 2rem; font-weight: 900; font-family: 'Montserrat', sans-serif; color: #FFD400; background: #1a1a1a; padding: 15px 30px; border-radius: 10px; display: inline-block; margin: 15px 0; }
.booking-price { font-size: 1.3rem; margin-bottom: 20px; }
.confirmation-actions { display: flex; justify-content: center; gap: 15px; margin-top: 20px; flex-wrap: wrap; }

/* === AUTH === */
.auth-container { max-width: 500px; margin: 0 auto; }
.auth-tabs { display: flex; margin-bottom: 30px; border-radius: 50px; overflow: hidden; border: 2px solid #1a1a1a; }
.auth-tab {
    flex: 1; padding: 15px; text-align: center; font-weight: 700;
    font-family: 'Montserrat', sans-serif; cursor: pointer;
    background: #fff; border: none; font-size: 1rem; transition: all 0.3s;
}
.auth-tab.active { background: #FFD400; }
.auth-note { text-align: center; margin-top: 20px; color: #666; }

/* === ACCOUNT PAGE === */
.account-grid { display: grid; grid-template-columns: 300px 1fr; gap: 40px; }
.account-card { background: #fff; border-radius: 20px; padding: 30px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06); }
.account-avatar { font-size: 4rem; color: #FFD400; margin-bottom: 15px; }
.account-card h3 { margin-bottom: 5px; }
.account-card p { color: #666; font-size: 0.9rem; }
.account-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.empty-state { text-align: center; padding: 60px 20px; color: #999; }
.empty-state i { font-size: 4rem; margin-bottom: 20px; color: #ddd; }
.bookings-list { display: flex; flex-direction: column; gap: 15px; }
.booking-card-horizontal {
    background: #fff; border-radius: 15px; padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06); border-left: 4px solid #FFD400;
}
.booking-card-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.booking-card-header .booking-ref { font-weight: 800; font-family: 'Montserrat', sans-serif; }
.booking-route { margin-bottom: 10px; }
.booking-route div { padding: 3px 0; }
.booking-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.9rem; color: #666; }
.booking-meta span { display: flex; align-items: center; gap: 5px; }

/* === FOOTER === */
.site-footer { background: #1a1a1a; color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { max-width: 180px; margin-bottom: 15px; }
.footer-tagline { color: #38bdf8; font-weight: 700; margin-bottom: 10px; }
.site-footer h4 { color: #FFD400; margin-bottom: 20px; font-size: 1.1rem; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul li a { color: #ccc; }
.site-footer ul li a:hover { color: #FFD400; padding-left: 5px; }
.site-footer ul li i { color: #FFD400; margin-right: 8px; width: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); display: flex;
    align-items: center; justify-content: center; color: #fff;
    transition: all 0.3s;
}
.footer-social a:hover { background: #FFD400; color: #1a1a1a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.9rem; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 65px; height: 65px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex;
    align-items: center; justify-content: center; font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s; animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
.whatsapp-tooltip {
    position: absolute; right: 80px; background: #1a1a1a; color: #fff;
    padding: 8px 16px; border-radius: 8px; font-size: 0.85rem;
    white-space: nowrap; opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1); }
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    width: 50px; height: 50px; border-radius: 50%;
    background: #1a1a1a; color: #FFD400; border: 2px solid #FFD400;
    display: none; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; transition: all 0.3s;
}
.back-to-top:hover { background: #FFD400; color: #1a1a1a; }
.back-to-top.visible { display: flex; }

/* === ANIMATIONS === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-8px); } }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-booking-widget { max-width: 500px; margin: 0 auto; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left, .top-bar-right { flex-wrap: wrap; gap: 10px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: #FFD400; flex-direction: column; padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 12px 15px; }
    .nav-menu a::after { display: none; }
    .nav-cta { margin: 10px 0 0; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .hero-tagline { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .page-hero h1 { font-size: 2rem; }
    .cta-content h2 { font-size: 1.8rem; }
    .form-row { flex-direction: column; gap: 0; }
    .service-detail-card { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .fleet-stats-bar { flex-direction: column; align-items: center; }
    .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-logo { max-width: 200px; }
    .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
    .section { padding: 50px 0; }
    .stat-number { font-size: 2.5rem; }
}
