@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & GLOBAL CSS TOKENS
   ========================================== */
:root {
    /* Color Palette (Premium Pure White & Warm Corporate Slate Theme) */
    --bg-cosmic: #ffffff;       /* Pure White Background Canvas */
    --bg-space: #f8fafc;        /* Soft Cool Light Metallic Page Backdrop */
    --glass-bg: rgba(255, 255, 255, 0.82); /* Frosty Translucent Glass */
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-bg-solid: rgba(255, 255, 255, 0.98);
    
    /* Brand specific variables (high contrast yellow & blue) */
    --ig-yellow: #ffb61c;       /* Exact Warm Taxi Yellow-Gold */
    --ig-orange: #ffb61c;       /* Consistent Warm Yellow-Gold */
    --ig-pink: #05548d;         /* Exact Royal Corporate Blue */
    --ig-purple: #034371;       /* Rich Deep Royal Blue */
    
    --grad-primary: linear-gradient(135deg, var(--ig-yellow) 0%, #ffd066 100%);
    --grad-cool: linear-gradient(135deg, var(--ig-pink) 0%, var(--ig-purple) 100%);
    --grad-glow: radial-gradient(circle, rgba(255, 182, 28, 0.12) 0%, rgba(5, 84, 141, 0.03) 50%, transparent 100%);
    
    /* Typography & Text (Slate Scale for Crisp Readability on White) */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --text-white: #0f172a;      /* Deep Slate 900 for inverted dark text headers */
    --text-silver: #334155;     /* Slate 700 for body text copy */
    --text-muted: #64748b;      /* Slate 500 for captions and helper text */
    --text-dim: #94a3b8;        /* Slate 400 for disabled states and light borders */
    
    /* Borders & Accents */
    --border-glass: rgba(5, 84, 141, 0.12); /* Subtle corporate blue border tint */
    --border-glass-active: rgba(255, 182, 28, 0.45);
    --accent-glow: 0 8px 30px rgba(255, 182, 28, 0.18);
    --card-glow: 0 12px 40px -10px rgba(5, 84, 141, 0.08); /* Premium light drop-shadow */
    
    /* System Statuses */
    --status-pending: #d97706;  /* Darkened for contrast on white bg */
    --status-approved: #059669; /* Darkened for contrast on white bg */
    --status-completed: #2563eb;/* Darkened for contrast on white bg */
    --status-cancelled: #dc2626;/* Darkened for contrast on white bg */
}

/* ==========================================
   BASE & SMOOTH SCROLL ARCHITECTURE
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-cosmic);
    background-image: radial-gradient(rgba(0, 78, 137, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: auto; /* Lenis handles smoothing */
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cosmic);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--ig-yellow), var(--ig-pink));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--ig-orange), var(--ig-purple));
}

/* Custom Selection */
::selection {
    background: var(--ig-pink);
    color: #fff;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--ig-pink);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--ig-orange);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
}

/* Active interactive states for cursor */
.custom-cursor.active {
    width: 45px;
    height: 45px;
    border-color: var(--ig-yellow);
    background-color: rgba(253, 184, 19, 0.08);
}

/* ==========================================
   KINETIC MOTION: FLOATING BUBBLES
   ========================================== */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--grad-primary);
    filter: blur(50px);
    opacity: 0.08;
    mix-blend-mode: multiply;
}

/* Glow effects in background */
.glowing-orb {
    position: fixed;
    width: 500px;
    height: 500px;
    background: var(--grad-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.orb-1 { top: -100px; right: -100px; }
.orb-2 { bottom: -150px; left: -150px; }

/* ==========================================
   GLASSMORPHISM PRIMES & UTILITIES
   ========================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--card-glow);
    transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-panel:hover {
    border-color: var(--border-glass-active);
    background-color: var(--glass-bg-hover);
}

.glass-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

/* ==========================================
   TYPOGRAPHY & ACCENT ELEMENTS
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-silver);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

/* ==========================================
   HEADER / NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s, background-color 0.4s, border-bottom 0.4s;
}

.navbar.shrunk {
    padding: 0.8rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.6rem;
}

.logo img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 2px solid var(--ig-yellow);
    box-shadow: 0 0 15px rgba(255, 200, 55, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-silver);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--ig-pink);
}

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

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

.nav-cta {
    padding: 10px 24px;
    border-radius: 30px;
    background: var(--grad-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--accent-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 182, 28, 0.45);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================
   HERO / SPLASH SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 180px 5% 100px 5%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-silver);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 16px 36px;
    border-radius: 40px;
    background: var(--grad-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: var(--accent-glow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 182, 28, 0.45);
}

.btn-secondary {
    padding: 16px 36px;
    border-radius: 40px;
    background: #ffffff;
    border: 1.5px solid var(--border-glass);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 31, 59, 0.03);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--ig-pink);
    color: var(--ig-pink);
    background: rgba(0, 80, 157, 0.02);
    box-shadow: 0 8px 24px rgba(0, 31, 59, 0.06);
}

/* Floating Glass Booking Panel (Hero Right) */
.hero-booking-panel {
    padding: 40px;
}

.hero-booking-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

/* ==========================================
   STATISTICS PANEL (GSAP COUNTER)
   ========================================== */
.stats-section {
    position: relative;
    padding: 60px 5%;
    z-index: 2;
}

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

.stat-card {
    text-align: center;
    padding: 35px 20px;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-silver);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   SERVICES SECTIONS
   ========================================== */
.services-section {
    position: relative;
    padding: 120px 5%;
    z-index: 2;
}

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

.service-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* Enable 3D depth for tilt */
}

/* Gradient line accent on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--grad-primary);
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 128, 8, 0.1);
    border: 1px solid rgba(255, 128, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ig-orange);
    margin-bottom: 25px;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-silver);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ig-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================
   FLEET / VEHICLE LIST SECTIONS
   ========================================== */
.fleet-section {
    position: relative;
    padding: 120px 5%;
    z-index: 2;
}

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

.fleet-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.fleet-img-wrap {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #070c1d;
}

.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.1);
}

.fleet-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grad-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-details {
    padding: 30px;
}

.fleet-details h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.fleet-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs i {
    color: var(--ig-orange);
}

.fleet-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-val span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ==========================================
   DYNAMIC BOOKING ENGINE (FORM COMPONENT)
   ========================================== */
.booking-form-wrap {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-silver);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 41px;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s;
}

.form-control {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px 18px 12px 48px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus {
    border-color: var(--ig-pink);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 80, 157, 0.12);
}

.form-control:focus + i {
    color: var(--ig-pink);
}

/* Styling native date and time pickers */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0);
    cursor: pointer;
}

/* Select element resetting */
select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
}

/* Custom File Upload Styling */
.file-upload-container {
    border: 1px dashed var(--border-glass);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.file-upload-container:hover {
    border-color: var(--ig-pink);
    background: rgba(0, 80, 157, 0.03);
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    font-size: 0.9rem;
    color: var(--text-silver);
}

.file-upload-text i {
    display: block;
    font-size: 2rem;
    color: var(--ig-pink);
    margin-bottom: 8px;
    position: static;
    pointer-events: none;
}

.file-upload-text span {
    font-weight: 600;
    color: var(--text-white);
}

.file-feedback {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: var(--grad-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--accent-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 128, 8, 0.45);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* AJAX Form Message States */
.form-response-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 12px;
}

.form-response-alert.success {
    display: flex;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-response-alert.error {
    display: flex;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Validation feedback styles */
.form-control.invalid {
    border-color: var(--status-cancelled) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1) !important;
}

.error-feedback {
    color: var(--status-cancelled);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

/* ==========================================
   TESTIMONIALS & TRUST SECTIONS
   ========================================== */
.testimonials-section {
    position: relative;
    padding: 120px 5%;
    z-index: 2;
}

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

.testimonial-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.rating-stars {
    color: var(--ig-yellow);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-silver);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid var(--ig-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-head);
    color: #fff;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   FOOTER COMPONENT
   ========================================== */
.footer {
    position: relative;
    padding: 80px 5% 40px 5%;
    background: var(--bg-space);
    border-top: 1px solid var(--border-glass);
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 20px 0 25px 0;
    max-width: 320px;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(5, 84, 141, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-silver);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #fff;
    background: var(--grad-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 128, 8, 0.3);
}

.footer-nav h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-nav h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--grad-primary);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-nav a:hover {
    color: var(--ig-orange);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--ig-orange);
    margin-top: 3px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--text-muted);
}

/* ==========================================
   SECURE ADMIN PANEL (STYLING SUITE)
   ========================================== */
.admin-login-body {
    background: radial-gradient(circle at 50% 50%, var(--bg-space), var(--bg-cosmic));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-card {
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
}

.admin-login-card h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.admin-login-card p {
    color: var(--text-silver);
    text-align: center;
    margin-bottom: 35px;
}

/* Dashboard Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-cosmic);
}

.admin-sidebar {
    width: 280px;
    background: rgba(3, 7, 18, 0.98);
    border-right: 1px solid var(--border-glass);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 30px;
}

.admin-nav {
    list-style: none;
    flex-grow: 1;
}

.admin-nav li {
    margin-bottom: 10px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--text-silver);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.admin-nav-link:hover, .admin-nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left: 3px solid var(--ig-orange);
}

.admin-nav-link i {
    font-size: 1.2rem;
}

.admin-logout {
    margin-top: auto;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.admin-main {
    flex-grow: 1;
    padding: 40px 50px;
    overflow-y: auto;
    height: 100vh;
    position: relative;
    z-index: 2;
}

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

.admin-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

/* Dashboard Analytics Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.analytics-card {
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.analytics-info h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.analytics-info span {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.analytics-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.analytics-icon.total { background: rgba(127, 0, 255, 0.1); color: var(--ig-purple); }
.analytics-icon.pending { background: rgba(245, 158, 11, 0.1); color: var(--status-pending); }
.analytics-icon.approved { background: rgba(16, 185, 129, 0.1); color: var(--status-approved); }
.analytics-icon.completed { background: rgba(59, 130, 246, 0.1); color: var(--status-completed); }

/* Booking Table Section */
.table-section {
    padding: 35px;
}

.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.table-toolbar h2 {
    font-size: 1.6rem;
}

.toolbar-actions {
    display: flex;
    gap: 15px;
}

/* Responsive Table Styles */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.admin-table th {
    padding: 16px 20px;
    border-bottom: 2px solid var(--border-glass);
    color: var(--text-silver);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-silver);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge.badge-pending { background: rgba(245, 158, 11, 0.1); color: var(--status-pending); }
.badge.badge-pending::before { background: var(--status-pending); }

.badge.badge-approved { background: rgba(16, 185, 129, 0.1); color: var(--status-approved); }
.badge.badge-approved::before { background: var(--status-approved); }

.badge.badge-completed { background: rgba(59, 130, 246, 0.1); color: var(--status-completed); }
.badge.badge-completed::before { background: var(--status-completed); }

.badge.badge-cancelled { background: rgba(239, 68, 68, 0.1); color: var(--status-cancelled); }
.badge.badge-cancelled::before { background: var(--status-cancelled); }

/* Quick detail styling */
.client-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-silver);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--border-glass-active);
}

.btn-icon.btn-view { color: var(--ig-yellow); }
.btn-icon.btn-delete { color: var(--status-cancelled); }

/* Admin modal or overlay actions */
.status-select-btn {
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    background: rgba(3, 7, 18, 0.8);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    outline: none;
    cursor: pointer;
}

/* Link file visual indicator */
.doc-link {
    color: var(--ig-pink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.3s;
}
.doc-link:hover {
    opacity: 0.8;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
}

/* ==========================================
   TRUST PILLARS SECTION
   ========================================== */
.trust-section {
    position: relative;
    padding: 100px 5%;
    z-index: 2;
    background: var(--bg-space);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    padding: 40px 30px;
    text-align: center;
    transform-style: preserve-3d;
}

.trust-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(253, 184, 19, 0.1);
    border: 1px solid rgba(253, 184, 19, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--ig-orange);
    margin: 0 auto 25px auto;
    transition: transform 0.4s ease, background-color 0.4s ease;
    transform: translateZ(30px);
}

.trust-card:hover .trust-icon-box {
    background-color: var(--ig-yellow);
    color: #fff;
    transform: translateZ(45px) rotateY(180deg);
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transform: translateZ(20px);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-silver);
    line-height: 1.5;
    transform: translateZ(10px);
}

/* ==========================================
   SAFETY GUARANTEE & LIVE TRACKER
   ========================================== */
.safety-section {
    position: relative;
    padding: 100px 5%;
    z-index: 2;
}

.safety-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--status-approved);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.safety-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.safety-content p {
    color: var(--text-silver);
    margin-bottom: 30px;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.safety-feat {
    display: flex;
    gap: 20px;
}

.safety-feat i {
    font-size: 1.8rem;
    color: var(--ig-orange);
    margin-top: 5px;
}

.safety-feat h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.safety-feat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Tracker panel style */
.tracker-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.tracker-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tracker-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tracker-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--ig-orange);
    position: relative;
}

.pulse-indicator.green {
    background-color: var(--status-approved);
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.4;
    animation: trackerPulse 2s infinite ease-out;
}

@keyframes trackerPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.tracker-info {
    flex-grow: 1;
}

.tracker-info strong {
    font-size: 0.88rem;
    display: block;
}

.tracker-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.tracker-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==========================================
   FAQ ACCORDIONS
   ========================================== */
.faq-section {
    position: relative;
    padding: 100px 5%;
    z-index: 2;
    background: var(--bg-space);
}

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

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-trigger h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--ig-orange);
    transition: transform 0.4s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
    padding: 0 30px;
}

.faq-content p {
    color: var(--text-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 24px;
}

/* Active FAQ Item state */
.faq-item.active {
    border-color: var(--border-glass-active);
    background-color: var(--glass-bg-hover);
}

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

.faq-item.active .faq-content {
    padding: 0 30px;
}

/* ==========================================
   INTERACTIVE 3D PARALLAX OVERLAYS
   ========================================== */
.service-card, .fleet-card, .stat-card, .trust-card, .hero-booking-panel, .safety-container, .faq-item {
    transform-style: preserve-3d;
}

.service-icon, .fleet-img-wrap, .stat-number, .trust-icon-box, .pulse-indicator {
    transform: translateZ(35px);
    transform-style: preserve-3d;
}

.service-card h3, .fleet-details h3, .stat-label, .trust-card h3, .safety-content h2, .faq-trigger h3 {
    transform: translateZ(20px);
}

.service-card p, .fleet-specs, .trust-card p, .safety-content p, .tracker-desc {
    transform: translateZ(10px);
}

/* Premium iOS Switcher Tabs */
.service-tabs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(15, 23, 42, 0.04);
    border: 1.5px solid rgba(15, 23, 42, 0.04);
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.service-tab-btn {
    border: none;
    background: none;
    padding: 10px 15px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--text-silver);
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-tab-btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.service-tab-btn:hover {
    color: var(--ig-pink);
}

.service-tab-btn:hover i {
    transform: scale(1.15);
}

.service-tab-btn.active {
    background: #ffffff;
    color: var(--ig-pink);
    box-shadow: 0 4px 15px rgba(0, 80, 157, 0.1), 
                0 0 1px rgba(0, 80, 157, 0.08);
}

/* Hero Trust Badge Capsule */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 184, 19, 0.08);
    border: 1px solid rgba(253, 184, 19, 0.18);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    animation: floatingTrustBadge 3s ease-in-out infinite;
}

.badge-stars {
    color: var(--ig-yellow);
    display: flex;
    gap: 3px;
}

@keyframes floatingTrustBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* ==========================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .services-grid, .fleet-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-booking-panel {
        max-width: 600px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .safety-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .custom-cursor, .custom-cursor-dot {
        display: none !important;
    }
    .navbar {
        padding: 1.2rem 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 30px;
        border-bottom: 1px solid var(--border-glass);
        gap: 20px;
        align-items: center;
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .services-grid, .fleet-grid, .testimonials-grid, .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .safety-container {
        padding: 30px 20px;
    }
    .safety-content h2 {
        font-size: 2rem;
    }
    .faq-trigger {
        padding: 18px 20px;
    }
    .faq-trigger h3 {
        font-size: 1rem;
    }
    .faq-content {
        padding: 0 20px;
    }
    .faq-content p {
        font-size: 0.9rem;
        padding-bottom: 18px;
    }
    .faq-item.active .faq-content {
        padding: 0 20px;
    }
    .admin-layout {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }
    .admin-main {
        padding: 30px 20px;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================
   EXTRA MOBILE RESPONSIVENESS ADAPTATIONS (480PX)
   ========================================== */
@media (max-width: 480px) {
    .service-tabs-container {
        grid-template-columns: 1fr; /* Stack buttons gracefully to prevent text-clipping */
        gap: 6px;
        border-radius: 16px;
        background: rgba(15, 23, 42, 0.03);
    }
    .service-tab-btn {
        padding: 12px;
        font-size: 0.85rem;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }
    .service-tab-btn.active {
        box-shadow: 0 4px 10px rgba(5, 84, 141, 0.08);
    }
    .hero-content h1 {
        font-size: 2.1rem !important;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    .hero-booking-panel {
        padding: 24px 16px !important;
        border-radius: 16px;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    .safety-container {
        padding: 24px 16px !important;
    }
    .safety-content h2 {
        font-size: 1.7rem !important;
    }
    .footer {
        padding: 60px 20px 30px 20px !important;
    }
    .footer-grid {
        gap: 30px !important;
    }
}
