/* ============================================
   TaxiGo - Main Stylesheet
   Color Scheme: Red (#e53935), Blue (#1565c0), White (#ffffff)
   ============================================ */

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red: #e53935;
    --red-dark: #b71c1c;
    --red-light: #ff6f60;
    --blue: #1565c0;
    --blue-dark: #003c8f;
    --blue-light: #5e92f3;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --dark: #1a1a2e;
    --text-gray: #555;
    --border: #e0e0e0;
    --shadow: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

.text-red { color: var(--red) !important; }
.text-blue { color: var(--blue) !important; }
.red-bg { background: var(--red) !important; }
.blue-bg { background: var(--blue) !important; }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span {
    margin-right: 20px;
}
.top-bar-left span i {
    color: var(--red);
    margin-right: 5px;
}
.top-bar-right a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    font-size: 14px;
    transition: var(--transition);
}
.top-bar-right a:hover { color: var(--red); }

/* ===== Site Header ===== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

/* Logo */
.logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo .logo-icon, .footer-logo .logo-icon {
    width: 46px;
    height: 46px;
    background: var(--red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}
.logo-tagline { font-size: 10px; color: var(--text-gray); font-weight: 500; letter-spacing: 0.5px; }

/* Navigation */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    display: block;
    padding: 10px 16px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li.active > a {
    color: var(--red);
    background: rgba(229,57,53,0.08);
}

/* Dropdown */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--red);
    z-index: 100;
}
.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .dropdown li a {
    padding: 10px 20px;
    border-radius: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav .dropdown li a i { color: var(--red); width: 16px; }
.main-nav .dropdown li a:hover { background: var(--light-gray); color: var(--red); }

/* Header CTA */
.header-cta { display: flex; gap: 10px; flex-shrink: 0; }
.btn-call-header {
    padding: 9px 18px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-call-header:hover { background: var(--blue); color: white; }
.btn-book-header {
    padding: 9px 20px;
    background: var(--red);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-book-header:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Section Styles ===== */
section { padding: 80px 0; }
.section-header { margin-bottom: 50px; }
.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-header p { font-size: 16px; color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.section-badge {
    display: inline-block;
    background: rgba(229,57,53,0.1);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(229,57,53,0.2);
}

/* ===== Hero Section ===== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(229,57,53,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(21,101,192,0.2) 0%, transparent 60%);
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 0 60px; }

.hero-text { color: white; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229,57,53,0.2);
    border: 1px solid rgba(229,57,53,0.4);
    color: #ff8a80;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-badge i { color: var(--red-light); }
.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-text h1 .text-red { color: var(--red-light); }
.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--red-light);
    line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 4px; }

/* ===== Booking Card ===== */
.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    margin-left: 20px;
}
.booking-tabs {
    display: flex;
    background: var(--dark);
}
.tab-btn {
    flex: 1;
    padding: 16px 8px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border-bottom: 3px solid transparent;
}
.tab-btn i { font-size: 16px; }
.tab-btn:hover { color: white; background: rgba(255,255,255,0.05); }
.tab-btn.active {
    color: white;
    background: var(--red);
    border-bottom-color: var(--red-light);
}
.tab-content { display: none; padding: 24px; }
.tab-content.active { display: block; }

.tab-content .form-group { margin-bottom: 16px; }
.tab-content .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tab-content .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    background: var(--light-gray);
}
.tab-content .form-control:focus {
    outline: none;
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}
.form-row { display: flex; gap: 12px; }
.form-group.half { flex: 1; }

.btn-book-now {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    margin-top: 5px;
}
.btn-book-now:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,57,53,0.4);
}

/* ===== Services Section ===== */
.section-services {
    background: var(--light-gray);
}
.services-grid { margin-top: 10px; }
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 35px 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
    border-bottom: 4px solid var(--blue);
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}
.service-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; }
.service-link {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover { color: var(--red-dark); gap: 10px; }

/* ===== Fleet Section ===== */
.section-fleet { background: white; }
.fleet-grid { margin-top: 10px; }
.fleet-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    background: white;
    position: relative;
    border: 2px solid var(--border);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--red); }
.fleet-card.popular { border-color: var(--blue); }
.fleet-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.fleet-badge.popular-badge { background: var(--blue); }
.fleet-img { overflow: hidden; }
.fleet-img img { width: 100%; object-fit: cover; transition: var(--transition); }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-info { padding: 20px; }
.fleet-info h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}
.fleet-features { display: flex; gap: 12px; margin-bottom: 15px; flex-wrap: wrap; }
.fleet-features span { font-size: 12px; color: var(--text-gray); display: flex; align-items: center; gap: 4px; }
.fleet-features span i { color: var(--blue); }
.fleet-price { margin-bottom: 15px; }
.price-from { font-size: 12px; color: var(--text-gray); display: block; }
.price { font-family: 'Oswald', sans-serif; font-size: 22px; color: var(--red); font-weight: 700; }
.btn-fleet {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--red);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-fleet:hover { background: var(--red-dark); color: white; }
.fleet-card.popular .btn-fleet { background: var(--blue); }
.fleet-card.popular .btn-fleet:hover { background: var(--blue-dark); }

/* ===== Why Us Section ===== */
.section-why { background: var(--light-gray); }
.why-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-img-wrap img { border-radius: var(--radius); }
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--red);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(229,57,53,0.4);
}
.exp-number { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; display: block; }
.exp-text { font-size: 12px; opacity: 0.9; }
.why-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 15px;
}
.why-content > p { margin-bottom: 30px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}
.why-text h5 { font-size: 15px; color: var(--dark); margin-bottom: 4px; font-weight: 600; }
.why-text p { font-size: 13px; margin: 0; }

/* ===== Routes Section ===== */
.section-routes { background: var(--dark); }
.section-routes .section-header h2 { color: white; }
.section-routes .section-header p { color: rgba(255,255,255,0.6); }
.section-routes .section-badge { background: rgba(229,57,53,0.3); border-color: rgba(229,57,53,0.5); }
.route-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 25px 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.route-card:hover {
    background: rgba(229,57,53,0.15);
    border-color: rgba(229,57,53,0.4);
    transform: translateY(-4px);
}
.route-cities { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.city-from, .city-to {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.route-arrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--red-light);
}
.route-arrow i { font-size: 18px; }
.route-dist { font-size: 10px; color: rgba(255,255,255,0.5); white-space: nowrap; }
.route-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.route-info span { color: rgba(255,255,255,0.6); font-size: 13px; }
.route-info span i { margin-right: 4px; color: var(--blue-light); }
.route-fare { color: var(--red-light) !important; font-weight: 700; font-size: 16px !important; }
.btn-route {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--red);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-route:hover { background: var(--red-dark); color: white; }

/* ===== Testimonials ===== */
.section-testimonials { background: var(--white); }
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--red);
    margin-bottom: 30px;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: #FFC107; margin-bottom: 15px; font-size: 16px; }
.testimonial-text { color: var(--text-gray); font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 14px; color: var(--dark); }
.author-info span { font-size: 12px; color: var(--text-gray); }

/* ===== CTA Section ===== */
.section-cta { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--blue-dark) 100%); padding: 60px 0; }
.cta-content {}
.section-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: white;
    margin-bottom: 8px;
}
.section-cta p { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; }
.cta-call-btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: var(--red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    margin-right: 12px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.cta-call-btn:hover { background: var(--dark); color: white; }
.cta-book-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    margin-bottom: 10px;
}
.cta-book-btn:hover { background: white; color: var(--red); }

/* ===== PAGE TITLE BANNER ===== */
.page-title-banner {
    padding: 60px 0;
    position: relative;
}
.page-title-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-title-content { position: relative; z-index: 1; }
.page-title-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 70px 0; background: var(--light-gray); }

.contact-form-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}
.form-card-header {
    background: linear-gradient(135deg, var(--red) 0%, var(--blue-dark) 100%);
    padding: 30px 35px;
    color: white;
}
.form-card-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    margin-bottom: 5px;
}
.form-card-header p { margin: 0; opacity: 0.85; font-size: 14px; }

/* Trip Type Tabs */
.trip-tabs {
    display: flex;
    background: var(--dark);
    border-bottom: none;
}
.trip-tab-btn {
    flex: 1;
    padding: 18px 10px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.trip-tab-btn i { font-size: 18px; }
.trip-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--red);
    transition: var(--transition);
}
.trip-tab-btn:hover { color: rgba(255,255,255,0.8); }
.trip-tab-btn.active {
    color: white;
}
.trip-tab-btn.active::after { width: 60%; }

.trip-tab-content { display: none; padding: 30px 35px; }
.trip-tab-content.active { display: block; }

.form-section-title { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--border); }
.form-section-title p { margin: 8px 0 0; font-size: 13px; }

.badge-red {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.badge-blue {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Custom Form Fields */
.form-group-custom { margin-bottom: 20px; }
.form-label-custom {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-input-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    background: var(--light-gray);
    appearance: none;
    -webkit-appearance: none;
}
.form-input-custom:focus {
    outline: none;
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 4px rgba(229,57,53,0.1);
}
select.form-input-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
textarea.form-input-custom { resize: vertical; min-height: 100px; }

.form-submit-wrap { margin-top: 10px; }
.btn-submit-booking {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.btn-submit-booking:hover {
    background: linear-gradient(135deg, var(--red-dark) 0%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,57,53,0.4);
}
.btn-submit-booking.blue {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.btn-submit-booking.blue:hover {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #001a57 100%);
    box-shadow: 0 8px 24px rgba(21,101,192,0.4);
}
.btn-arrow { margin-left: auto; }
.form-note { font-size: 12px; color: var(--text-gray); text-align: center; margin: 0; }
.form-note i { color: var(--blue); margin-right: 4px; }

/* ===== Contact Info Sidebar ===== */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}
.urgent-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    text-align: center;
}
.urgent-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}
.urgent-card h5 { font-size: 18px; color: white; margin-bottom: 5px; }
.urgent-card p { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 20px; }
.btn-call-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: white;
    color: var(--red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.btn-call-big:hover { background: var(--dark); color: white; }
.btn-whatsapp-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}
.btn-whatsapp-big:hover { background: #25D366; border-color: #25D366; color: white; }

.info-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.contact-detail-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.cd-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}
.cd-text { display: flex; flex-direction: column; gap: 3px; }
.cd-text strong { font-size: 13px; color: var(--dark); }
.cd-text span { font-size: 12px; color: var(--text-gray); }

/* Mini Stats */
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.mini-stat {
    text-align: center;
    padding: 15px 10px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
}
.mini-num {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.mini-num.red { color: var(--red); }
.mini-num.blue { color: var(--blue); }
.mini-label { font-size: 11px; color: var(--text-gray); font-weight: 500; }

/* Success / Error */
.alert-success-custom {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 5px solid #4CAF50;
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #2e7d32;
    font-size: 14px;
}
.alert-success-custom i { font-size: 20px; margin-top: 2px; color: #4CAF50; }
.alert-error-custom {
    background: #fde8e8;
    border-left: 5px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--red-dark);
    font-size: 14px;
}
.alert-error-custom i { font-size: 20px; margin-top: 2px; }

/* Map */
.map-section { margin-top: 50px; }
.map-header { margin-bottom: 15px; }
.map-header h4 { font-family: 'Oswald', sans-serif; font-size: 22px; color: var(--dark); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 40px; }
.footer-widget { margin-bottom: 30px; }
.footer-logo .logo-main { color: white; }
.footer-widget > p { font-size: 14px; line-height: 1.8; margin: 15px 0 20px; color: rgba(255,255,255,0.6); }
.footer-contact-items { margin-bottom: 20px; }
.fc-item { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; font-size: 13px; }
.fc-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--red); color: white; transform: translateY(-2px); }
.footer-widget-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    position: relative;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--red);
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-links li a i { font-size: 10px; color: var(--red); }
.footer-links li a:hover { color: var(--red); padding-left: 5px; }
.footer-links.routes li a { gap: 0; justify-content: space-between; }
.footer-links.routes li a::after { content: '→'; color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-links.routes li a:hover::after { color: var(--red); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; color: white; }
.wa-tooltip {
    position: absolute;
    right: 65px;
    background: var(--dark);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(229,57,53,0.4);
    z-index: 998;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-text h1 { font-size: 48px; }
    .booking-card { margin-left: 0; margin-top: 40px; }
    .experience-badge { right: 10px; }
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-cta .btn-call-header { display: none; }
}
@media (max-width: 767px) {
    section { padding: 60px 0; }
    .hero-text h1 { font-size: 38px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 24px; }
    .section-header h2 { font-size: 28px; }
    .trip-tab-content { padding: 20px; }
    .form-card-header { padding: 20px; }
    .top-bar-left span { display: none; }
    .top-bar-left span:first-child { display: inline; }
    .section-cta .text-right { text-align: left !important; margin-top: 20px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .page-title-content h1 { font-size: 28px; }
}
@media (max-width: 480px) {
    .trip-tabs { flex-wrap: wrap; }
    .trip-tab-btn { padding: 12px 6px; font-size: 12px; }
    .hero-text h1 { font-size: 32px; }
}
