/* ==========================================================================
   CAB TRAVELS CORE STYLESHEET
   Aesthetic: Premium Dark Glassmorphism with Gold Accents
   ========================================================================== */

:root {
    --bg-main: #ffffff;
    /* Pure white background */
    --bg-card: rgba(248, 249, 250, 0.9);
    /* Premium card light */
    --bg-card-hover: rgba(255, 255, 255, 1);
    --bg-input: #f1f5f9;
    --bg-header: rgba(255, 255, 255, 0.85);

    --primary: #0ea5e9;
    /* Sky Blue */
    --primary-hover: #0284c7;
    --primary-glow: rgba(14, 165, 233, 0.2);

    --red-accent: #ef4444;
    /* Accent Red */
    --red-accent-hover: #dc2626;
    --red-accent-glow: rgba(239, 68, 68, 0.2);

    --secondary: #f1f5f9;
    /* Light slate */
    --secondary-hover: #e2e8f0;

    --whatsapp: #22c55e;
    --whatsapp-hover: #16a34a;
    --whatsapp-glow: rgba(34, 197, 94, 0.15);

    --text-primary: #0f172a;
    /* Dark Slate for clear readability */
    --text-secondary: #abb2bb;
    /* Slate Gray */
    --text-muted: #94a3b8;

    --border-color: rgba(0, 0, 0, 0.08);
    --border-focus: rgba(14, 165, 233, 0.5);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(12px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.03) 0%, transparent 40%);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

.text-gold {
    color: var(--primary);
}

.text-red {
    color: #ef4444;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-book-wa {
    background-color: var(--whatsapp);
    color: #ffffff;
    font-size: 1.05rem;
    padding: 16px 24px;
    box-shadow: 0 4px 14px var(--whatsapp-glow);
}

.btn-book-wa:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.brand-logo-img {
    height: 46px;
    width: auto;
    max-width: 55px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-fast);
}

.logo:hover .brand-logo-img {
    transform: scale(1.08);
}

.logo-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.4)),
        url('hero_bg.jpg');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(255, 255, 255, 0.65) 75%, rgba(255, 255, 255, 1) 100%);
}

.hero-gridcontainer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.82);
    /* Glass panel protecting the text */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.hero-subtitle {
    color: #1e293b;
    /* Highly readable dark slate */
    font-size: 1.15rem;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    /* Solid white card for pop contrast */
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Booking Widget */
.hero-widget {
    background-color: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.hero-widget:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.widget-header {
    background-color: #f1f5f9;
    /* Light slate background */
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.widget-header h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.widget-header p {
    color: #475569;
    /* Dark grey for high contrast readability */
    font-size: 0.85rem;
}

.booking-form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trip-type-tabs {
    display: flex;
    background-color: #e2e8f0;
    /* Light slate gray */
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: #475569;
    /* Clear grey text for legibility */
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 0;
    border-radius: calc(var(--radius-md) - 2px);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    /* Premium white text on sky blue */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    width: 100%;
}

.booking-form input,
.booking-form select {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
}

.booking-form input::placeholder {
    color: var(--text-muted);
}

.btn-location-pin {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    padding: 4px;
}

.btn-location-pin:hover {
    color: var(--primary);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Colors & Helpers */
.hidden {
    display: none !important;
}

.hourly-only {
    display: none !important;
}

.hourly-only.active-hourly {
    display: flex !important;
}

.text-emerald { color: #10b981 !important; }
.text-rose { color: #ef4444 !important; }
.text-amber { color: #f59e0b !important; }
.text-sky { color: #0284c7 !important; }

/* Locations Card Wrapper & Multiple Stops */
.locations-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    position: relative;
}

.location-form-group {
    position: relative;
}

.stops-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stop-form-group {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    animation: fadeInSlide 0.25s ease-out forwards;
}

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

.stop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.stop-header label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.btn-remove-stop {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.btn-remove-stop:hover {
    color: #ef4444;
    background-color: #fee2e2;
}

/* Location Toolbar (Add Stop & Swap Route) */
.location-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px dashed #e2e8f0;
}

.btn-toolbar-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-toolbar-action:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: #f0f9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.15);
}

.btn-toolbar-action:active {
    transform: translateY(0);
}

.btn-toolbar-action.swapping i {
    animation: spinSwap 0.4s ease;
}

@keyframes spinSwap {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}

/* Autocomplete Dropdown list */
.autocomplete-suggestions-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 240px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    font-size: 0.88rem;
    color: #1e293b;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f0f9ff;
    color: var(--primary);
}

/* Vehicle Grid Selection */
.vehicle-selection-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 10px;
    margin-bottom: -10px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vehicle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    user-select: none;
}

.vehicle-card input[type="radio"] {
    display: none;
}

.vehicle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vehicle-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.vehicle-specs {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.vehicle-bata {
    font-size: 0.70rem;
    color: #475569;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.vehicle-bata i {
    font-size: 0.65rem;
    color: #0284c7;
}

.vehicle-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.vehicle-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.04);
}

.vehicle-card.active {
    border-color: var(--primary);
    background-color: rgba(14, 165, 233, 0.05);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.08);
}

/* Fare display box */
.fare-display {
    background-color: #f8fafc;
    /* Very light slate background for high contrast */
    border: 1px solid rgba(14, 165, 233, 0.15);
    /* Sky blue border to highlight fare area */
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #475569;
    /* Darker grey text for excellent contrast */
}

.fare-row strong {
    color: var(--text-primary);
}

.fare-row.total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 4px;
    font-size: 1rem;
    color: var(--text-primary);
}

.fare-row.total-row strong {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Map Section */
.section-map {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

#route-map {
    height: 500px;
    width: 100%;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

/* Map View Switcher Controls (Satellite, 3D Terrain, Streets, Dark Mode) */
.map-view-switcher {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.map-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: #334155;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.map-view-btn i {
    font-size: 0.85rem;
}

.map-view-btn:hover {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
}

.map-view-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.4);
}

@media (max-width: 768px) {
    .map-view-switcher {
        top: 10px;
        right: 10px;
        left: 10px;
        overflow-x: auto;
        border-radius: 12px;
        justify-content: flex-start;
        padding: 4px;
    }
    .map-view-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

.map-legend {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.legend-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.marker-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.marker-green {
    background-color: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.marker-red {
    background-color: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* Leaflet Map overrides to match theme style */
.leaflet-container {
    background-color: #f1f5f9 !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid var(--border-color) !important;
}

.leaflet-bar a:hover {
    background-color: #f1f5f9 !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid var(--border-color);
}

/* Native Advertisement & Offers Section */
.section-promotions {
    padding: 80px 0;
    background-color: var(--bg-main);
}

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

.promo-card {
    background-color: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-color: var(--bg-card-hover);
}

.promo-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    color: #000000;
}

.promo-badge-blue {
    background-color: #3b82f6;
    color: #ffffff;
}

.promo-badge-purple {
    background-color: #8b5cf6;
    color: #ffffff;
}

.promo-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.promo-card h3 {
    font-size: 1.35rem;
}

.promo-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 0.9rem;
}

.promo-code {
    color: var(--text-secondary);
}

.promo-action-btn {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-action-btn:hover {
    color: #ffffff;
}

/* Services section */
.section-services {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.service-box {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-normal);
}

.service-box:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Testimonials Section */
.section-testimonials {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--red-accent);
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
}

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

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.client-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.client-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Popular Destinations Gallery */
.section-destinations {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.destinations-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 4px 30px 4px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.destinations-grid::-webkit-scrollbar {
    height: 6px;
}

.destinations-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: var(--radius-full);
}

.destinations-grid::-webkit-scrollbar-thumb {
    background: rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
}

.destinations-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.dest-card {
    flex: 0 0 350px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.dest-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: var(--shadow-md);
}

.dest-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.dest-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--red-accent);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.dest-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.dest-body h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.dest-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

.btn-book-dest {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: none;
    font-weight: 600;
}

.btn-book-dest:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Stats Counter Section */
.section-stats {
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    color: #ffffff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.section-faq {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(0, 0, 0, 0.015);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Expand transition height */
}

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer Section */
.footer {
    background-color: #0f172a;
    /* Slate Dark background for high quality footer contrast */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 80px;
}

.footer a {
    color: #f7f7f7;
}

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

.footer h4 {
    color: #ffffff;
}

.footer-contact p {
    color: #fdfdfd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    color: #000000;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FLOATING SIDE SOCIAL ICONS (WhatsApp, Instagram, Facebook) */
.floating-social-sidebar {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.social-circle.wa-circle {
    background-color: #25D366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.social-circle.insta-circle {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.4);
}

.social-circle.fb-circle {
    background-color: #1877F2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.social-circle:hover {
    transform: scale(1.15) translateX(-4px);
}

.social-circle.wa-circle:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.social-circle.insta-circle:hover {
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.6);
}

.social-circle.fb-circle:hover {
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
}

.social-circle:active {
    transform: scale(0.95);
}



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

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .badge,
    .hero-features {
        justify-content: center;
        align-self: center;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .promo-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        height: calc(100vh - 70px);
        gap: 0;
        transition: var(--transition-slow);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .btn-phone {
        display: none;
        /* Hide top phone on mobile layout to save space */
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .booking-form {
        padding: 20px;
    }

    .promo-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .hero-animated-car-box {
        bottom: 2%;
        right: 0%;
        width: 90vw;
        opacity: 0.85;
    }

    .floating-social-sidebar {
        right: 12px;
        gap: 10px;
    }

    .social-circle {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delayed {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-left {
    opacity: 0;
    animation: slideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}