/* 
 * Dev Tour and Travels - Main Stylesheet
 * Brand Accent Color: #f5a623 (Golden Amber from Logo)
 * Brand Dark Color:   #1a2236 (Navy Blue from Logo)
 * Brand Background Tones: Clean White & Deep Navy
 */

:root {
    --color-primary: #f5a623;
    --color-primary-hover: #d4900f;
    --color-primary-light: rgba(245, 166, 35, 0.10);
    --color-dark: #1a2236;
    --color-dark-light: #1e2a40;
    --color-bg-warm: #fafbfd;
    --color-bg-gray: #f4f6fa;
    --color-muted: #6b7280;
    --color-border: #e4e8f0;
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-nav: 'Outfit', sans-serif;
    --transition-base: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
html {
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.Outfit-font {
    font-family: var(--font-headings);
    font-weight: 700;
}

.fs-7 {
    font-size: 0.9rem;
}

.fs-8 {
    font-size: 0.8rem;
}

.fs-9 {
    font-size: 0.72rem;
}

.uppercase {
    text-transform: uppercase;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.fw-extrabold {
    font-weight: 800;
}

.opacity-90 {
    opacity: 0.9;
}

/* Custom Buttons & Hover Effects */
.btn-accent {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: #ffffff;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.3125rem 0.9375rem rgba(237, 96, 16, 0.4);
}

.btn-outline-accent {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.3125rem 0.9375rem rgba(237, 96, 16, 0.2);
}

.text-accent {
    color: var(--color-primary) !important;
}

.bg-light-accent {
    background-color: var(--color-primary-light);
}

.bg-accent {
    background-color: var(--color-primary) !important;
}

/* Transitions */
.transition {
    transition: var(--transition-base);
}

.hover-grow:hover {
    transform: scale(1.02);
}

.hover-float:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.08) !important;
}

.hover-accent:hover {
    color: var(--color-primary) !important;
}

/* Heading Decorative Line */
.heading-line {
    width: 3.75rem;
    height: 0.25rem;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* Helper Utilities */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ═══════════════════════════════════════════════
   COMPACT TOPBAR (DARK BG) & WHITE BACKGROUND NAVBAR
   ═══════════════════════════════════════════════ */

/* 1. Compact Top Bar (Dark Background) */
.compact-topbar {
    background: #101626;
    background: linear-gradient(90deg, #0e1322 0%, #1a2236 50%, #0e1322 100%);
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
    padding: 0.28rem 0;
    font-size: 0.74rem;
}

.compact-top-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
}

.compact-top-link:hover {
    color: #f5a623;
}

.compact-top-tag {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-left: 0.6rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.compact-top-location {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.compact-top-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
}

.compact-top-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #4ade80 !important;
    padding: 0.16rem 0.65rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.compact-top-wa:hover {
    background: #25d366;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
}

/* 2. Compact White Navbar */
.compact-navbar-wrap {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.compact-brand-logo {
    object-fit: contain;
    transition: transform 0.25s ease;
}

.navbar-brand:hover .compact-brand-logo {
    transform: scale(1.04);
}

.compact-brand-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a2236;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.compact-brand-sub {
    font-size: 0.58rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Nav Links (Clean Consistent Text Color with Modern Indicator) */
.compact-nav-link {
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 0.84rem;
    color: #1a2236 !important;
    letter-spacing: 0.04em;
    padding: 0.6rem 0.95rem !important;
    border-radius: 0;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    transition: opacity 0.2s ease;
}

.compact-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.5rem);
    height: 3px;
    background: linear-gradient(135deg, #f5a623 0%, #e67e22 100%);
    border-radius: 4px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.compact-nav-link:hover {
    color: #1a2236 !important;
    background: transparent !important;
    opacity: 0.8;
}

.compact-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.compact-nav-link.active {
    color: #1a2236 !important;
    background: transparent !important;
    font-weight: 700;
}

.compact-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu (Clean White Card) */
.compact-dropdown-menu {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    min-width: 275px;
    padding: 0.5rem !important;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08) !important;
    animation: compactDropdownFade 0.2s ease;
}

@keyframes compactDropdownFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.compact-dd-item {
    border-radius: 0.5rem;
    padding: 0.45rem 0.65rem !important;
    transition: all 0.18s ease;
}

.compact-dd-item:hover {
    background: #f8fafc !important;
    transform: translateX(3px);
}

.compact-dd-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.compact-dd-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: #1a2236;
    line-height: 1.2;
}

.compact-dd-desc {
    font-size: 0.68rem;
    color: #64748b;
    margin-top: 1px;
}

/* Compact Book Now Button */
.compact-book-btn {
    background: linear-gradient(135deg, #f5a623 0%, #d4900f 100%);
    color: #1a2236 !important;
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.42rem 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.compact-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.48);
    color: #1a2236 !important;
}

/* Custom Mobile Toggler */
.compact-toggler {
    width: 36px;
    height: 36px;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    padding: 0;
}

.compact-offcanvas {
    background: #ffffff !important;
    color: #1a2236 !important;
}

/* ═══════════════════════════════════════════════
   HERO — SPLIT LAYOUT (Left Text | Right Form Card)
   ═══════════════════════════════════════════════ */

.hero-new-section {
    position: relative;
    overflow: hidden;
    background-color: #0f1426;
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Layer 1: Animated Background Image (Cinematic Ken Burns Effect) */
.hero-bg-layer {
    position: absolute;
    inset: -30px;
    background-image: url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    animation: hero-kenburns 22s ease-in-out infinite alternate;
    z-index: 1;
    filter: brightness(0.92) contrast(1.05);
}

@keyframes hero-kenburns {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    50% {
        transform: scale(1.07) translate(-10px, -6px);
    }

    100% {
        transform: scale(1.03) translate(8px, 4px);
    }
}

/* Layer 2: Deep Navy Cinematic Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(15, 20, 38, 0.94) 0%,
            rgba(18, 25, 48, 0.88) 38%,
            rgba(20, 28, 52, 0.70) 65%,
            rgba(15, 20, 38, 0.55) 100%),
        radial-gradient(circle at 80% 85%,
            rgba(245, 166, 35, 0.22) 0%,
            transparent 55%);
    z-index: 2;
    pointer-events: none;
}

/* Layer 3: Floating Ambient Glow Orbs */
.hero-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 3;
    animation: hero-glow-drift 10s ease-in-out infinite alternate;
}

.hero-glow-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.28) 0%, transparent 70%);
    top: 10%;
    left: -5%;
}

.hero-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
    bottom: -10%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes hero-glow-drift {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.12);
    }

    100% {
        transform: translateY(15px) scale(0.95);
    }
}

/* Layer 4: Interactive / Floating Stardust Canvas */
.hero-stardust-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

/* Layer 5: Shooting Star Streak Animation */
.hero-shooting-star {
    position: absolute;
    top: 18%;
    left: 45%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(245, 166, 35, 0.6), transparent);
    border-radius: 999px;
    filter: drop-shadow(0 0 6px #f5a623);
    transform: rotate(-32deg) translateX(-150px);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    animation: shootingStar 9s ease-in-out infinite;
}

@keyframes shootingStar {

    0%,
    75% {
        opacity: 0;
        transform: rotate(-32deg) translateX(-100px);
    }

    78% {
        opacity: 1;
    }

    82% {
        opacity: 0;
        transform: rotate(-32deg) translateX(400px);
    }

    100% {
        opacity: 0;
        transform: rotate(-32deg) translateX(400px);
    }
}

/* Legacy classes kept for compatibility */
.hero-video-bg {
    display: none;
}

.hero-video-overlay {
    display: none;
}

.bg-dark-hero {
    background-color: #1a2236;
}

/* ── MIN HEIGHT helper ─────────────────────────── */

/* ── BADGE PILL ────────────────────────────────── */
.hero-badge-pill {
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.45);
    color: #f5a623;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.hero-badge-pill i {
    font-size: 0.85rem;
}

/* ── HEADING ───────────────────────────────────── */
.hero-main-heading {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-accent-text {
    color: #f5a623;
    font-style: italic;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #ffd066 0%, #f5a623 50%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

/* ── SUBTEXT ───────────────────────────────────── */
.hero-subtext {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* ── CTA BUTTONS ───────────────────────────────── */
.hero-cta-primary {
    background: linear-gradient(135deg, #f5a623 0%, #e67e22 100%);
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.72rem 1.65rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-cta-primary i {
    font-size: 0.9rem;
    color: #ffffff;
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #f7b733 0%, #ea8a26 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
    color: #ffffff !important;
}

.hero-cta-secondary {
    background: rgba(21, 28, 46, 0.85);
    color: #ffffff !important;
    border: 1.5px solid rgba(245, 166, 35, 0.4);
    padding: 0.72rem 1.65rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-cta-secondary i {
    color: #f5a623;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: #f5a623;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.25);
    color: #ffffff !important;
}

.hero-cta-secondary:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* ── TRUST BADGES ROW ──────────────────────────── */
.hero-trust-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
}

/* ═══════════════════════════════════════════════
   HERO FLOATING FORM CARD
   ═══════════════════════════════════════════════ */

.hero-form-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.85rem 1.75rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 4px 20px rgba(245, 166, 35, 0.1);
    width: 100%;
    max-width: 535px;
    position: relative;
}

/* Amber accent strip on top of the card */
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #d4900f);
    border-radius: 0 0 4px 4px;
}

/* Card Header */
.hero-form-card-header h4 {
    font-size: 1.15rem;
    color: #1a2236;
}

/* Icon ring */
.hero-form-icon-ring {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5a623, #d4900f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}

/* ── SERVICE TABS (inside card) ────────────────── */
.hero-service-tabs {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.65rem;
    margin-bottom: 1.25rem !important;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-service-tabs::-webkit-scrollbar {
    display: none;
}

.hero-tab {
    flex: 1 1 0;
    min-width: 0;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    padding: 0.45rem 0.4rem;
    font-size: 0.74rem;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.hero-tab i {
    font-size: 0.72rem;
}

.hero-tab:hover {
    border-color: #f5a623;
    color: #f5a623;
    background: rgba(245, 166, 35, 0.07);
}

.hero-tab.active {
    background: linear-gradient(135deg, #f5a623, #d4900f);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

/* ── FORM LABELS ───────────────────────────────── */
.hero-form-label {
    font-size: 0.67rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}

/* ── FORM INPUTS ───────────────────────────────── */
.hero-form-input {
    border: 1.5px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    padding: 0.55rem 0.85rem !important;
    font-size: 0.875rem !important;
    color: #1a2236 !important;
    background-color: #f9fafc !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    font-weight: 500 !important;
}

.hero-form-input::placeholder {
    color: #b0b7c3 !important;
    font-weight: 400 !important;
}

.hero-form-input:focus {
    border-color: #f5a623 !important;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12) !important;
    background-color: #ffffff !important;
    outline: none !important;
}

/* ── SUBMIT BUTTON ─────────────────────────────── */
.hero-form-submit {
    background: linear-gradient(135deg, #f5a623 0%, #d4900f 100%);
    color: #1a2236;
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    border-radius: 0.625rem;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.50);
}



/* Rotated Premium Label */
.vertical-premium-label {
    position: absolute;
    left: 1.25rem;
    top: 55%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    z-index: 5;
}

.vertical-premium-label span {
    font-size: 0.7rem;
    letter-spacing: 0.375rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    border-left: 2px solid var(--color-primary);
    padding-left: 0.625rem;
    text-transform: uppercase;
}

/* Booking Widget Tabbed Container */
#booking-form {
    scroll-margin-top: 80px;
}

/* ─── Hero Booking Widget (Refined Modern Design) ────────── */
.booking-outer-wrapper {
    background: linear-gradient(145deg, #151c2e 0%, #1a2236 100%);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 18px;
    box-shadow: 0 25px 50px -12px rgba(10, 15, 30, 0.55), 0 0 25px rgba(245, 166, 35, 0.08);
}

.booking-tabs-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
    width: 100%;
}

.btn-booking-tab {
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.55rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
    line-height: 1.15;
    text-align: center;
}

.btn-booking-tab i {
    font-size: 0.92rem;
    color: #f5a623;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-booking-tab span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.71rem;
    letter-spacing: -0.1px;
}

.btn-booking-tab:hover:not(.active) {
    background: rgba(245, 166, 35, 0.15);
    color: #ffffff;
    border-color: rgba(245, 166, 35, 0.35);
    transform: translateY(-1px);
}

.btn-booking-tab:hover:not(.active) i {
    color: #ffffff;
    transform: scale(1.1);
}

.btn-booking-tab.active {
    background: linear-gradient(135deg, #f5a623 0%, #e67e22 100%);
    color: #ffffff;
    border-color: #f5a623;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
    font-weight: 700;
}

.btn-booking-tab.active i {
    color: #ffffff;
}

.booking-form-box {
    border-radius: 14px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Service badge in booking form header */
.active-trip-badge-label {
    background-color: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Form controls inside booking form box */
.booking-form-box .form-control,
.booking-form-box .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.65rem 0.95rem;
    font-size: 0.88rem;
    color: #1e293b;
    font-weight: 500;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.booking-form-box .form-control:focus,
.booking-form-box .form-select:focus {
    border-color: #f5a623 !important;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18) !important;
    outline: none;
}

.border-light-grey {
    border-color: #e2e8f0 !important;
}

/* Clean Minimalist Find Vehicle Button */
.btn-find-vehicle {
    background-color: #1a2236;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.6rem;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-find-vehicle i {
    font-size: 0.82rem;
}

.btn-find-vehicle:hover {
    background-color: #f5a623;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}



/* Benefits Section */
.bg-light {
    background-color: var(--color-bg-warm) !important;
}

.benefit-card {
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

/* Fleet Cards */
.fleet-card {
    transition: var(--transition-base);
}

.fleet-image-wrapper {
    overflow: hidden;
    background-color: var(--color-bg-gray);
    aspect-ratio: 16/11;
    display: flex;
    align-items: center;
}

.fleet-img {
    transition: var(--transition-base);
    object-fit: contain;
    height: 100%;
}

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

.fleet-specs span {
    border-right: 1px solid var(--color-border);
    padding-right: 0.5rem;
    flex: 1;
    text-align: center;
}

.fleet-specs span:last-child {
    border-right: none;
    padding-right: 0;
}

/* Service / Package Cards */
.package-card {
    transition: var(--transition-base);
}

#packages-slider .fleet-img {
    object-fit: cover;
    width: 100%;
}

/* How It Works Steps */
.step-icon {
    transition: var(--transition-base);
}

/* Testimonial slider */
.testimonial-slider .slick-dots {
    bottom: -2.5rem;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 0.625rem;
    color: var(--color-primary);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--color-primary);
}

/* FAQ Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

.accordion-item {
    border-color: var(--color-border);
}

/* Footer Styling */
footer {
    background-color: var(--color-dark) !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2.1875rem;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: var(--color-primary);
    padding-left: 0.3125rem;
}

.social-icon {
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.twitter {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0A66C2;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-0.1875rem);
    filter: brightness(1.18);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.newsletter-form input {
    color: #ffffff !important;
}

.newsletter-form input::placeholder {
    color: #888888;
}

.newsletter-form input:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

/* Top bar font-size */
.top-bar-info {
    font-size: 0.85rem;
}

/* Footer Contrast & Legibility Overrides */
footer,
footer p,
footer span:not(.text-accent):not(.badge),
footer li,
footer .text-muted {
    color: #c4c4c4 !important;
}

footer .footer-brand h4 {
    color: #ffffff !important;
}

footer .footer-links li a {
    color: #c4c4c4 !important;
}

footer .footer-links li a:hover {
    color: var(--color-primary) !important;
    text-decoration: none;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15) !important;
    opacity: 0.3;
}

footer .list-inline-item a {
    color: #a0a0a0 !important;
    text-decoration: none;
    transition: var(--transition-base);
}

footer .list-inline-item a:hover {
    color: var(--color-primary) !important;
}

footer .footer-heading {
    color: #ffffff !important;
}

/* Select2 Custom Theme overrides */
.select2-container--default .select2-selection--single {
    border: 1px solid #eaeaea !important;
    height: 2.6875rem !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--color-primary) !important;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333333 !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding-left: 0.75rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 2.5625rem !important;
    right: 0.5rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #333333 transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #333333 transparent !important;
}

.select2-dropdown {
    border: 1px solid #eaeaea !important;
    border-radius: 0 0 0.5rem 0.5rem !important;
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f7f6f5 !important;
    color: var(--color-primary) !important;
    font-weight: 600;
}

.select2-results__option {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem !important;
}




/* Custom Header Navbar Dropdowns */
.navbar-nav .dropdown-menu {
    border-radius: 0.75rem;
    padding: 0.625rem 0;
    margin-top: 0.625rem !important;
    background-color: #ffffff;
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item {
    font-family: var(--font-nav);
    font-weight: 500;
    color: #4a4a4a;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(245, 166, 35, 0.07);
    color: var(--color-primary);
    padding-left: 1.5rem;
}

/* Prevent Header Book a Cab Button from Wrapping */
.header .btn {
    font-family: var(--font-nav);
    white-space: nowrap;
}

/* Responsive Scaling for Small Desktop / Tablet Landscape Screens */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-brand .fs-4 {
        font-size: 1.2rem !important;
    }

    .navbar-brand .fs-8 {
        font-size: 0.7rem !important;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem !important;
    }

    .header .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem;
    }
}

/* Fleet Slider & Dark Theme Layout */
.bg-dark-fleet {
    background-color: #111827 !important;
    position: relative;
    z-index: 1;
}

.bg-dark-card {
    background-color: #1e2a40 !important;
    border: 1px solid rgba(245, 166, 35, 0.12) !important;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.25) !important;
}

.bg-dark-card .fleet-image-wrapper {
    background-color: #151e30 !important;
}

/* Fleet Showcase Slider Cards */
.bg-dark-fleet {
    background-color: #0f1426;
}

.fleet-showcase-card {
    background: #151c2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.fleet-showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.fleet-showcase-img-wrap {
    height: 210px;
    background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.96) 0%, rgba(220, 226, 235, 0.92) 100%);
    border-bottom: 2px solid rgba(245, 166, 35, 0.45);
    overflow: hidden;
}

.fleet-showcase-img {
    max-height: 180px;
    max-width: 92%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

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

.fleet-showcase-tag {
    background: rgba(15, 20, 38, 0.88) !important;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.05em;
}

.fleet-showcase-specs {
    grid-template-columns: repeat(2, 1fr);
}

.fleet-spec-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fleet-spec-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.25);
}

.fleet-spec-icon {
    width: 30px;
    height: 30px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.fleet-spec-lbl {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 500;
}

.fleet-spec-val {
    display: block;
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

/* Custom Slick Arrows for Fleet Slider */
.fleet-slider {
    position: relative;
    padding-bottom: 0;
}

.fleet-slider .slick-prev,
.fleet-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.125rem;
    height: 3.125rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.fleet-slider .slick-prev:hover,
.fleet-slider .slick-next:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0.3125rem 0.9375rem rgba(237, 96, 16, 0.4);
}

.fleet-slider .slick-prev {
    left: -1.5rem;
}

.fleet-slider .slick-next {
    right: -1.5rem;
}

@media (max-width: 1399px) {
    .fleet-slider .slick-prev {
        left: 0rem;
    }

    .fleet-slider .slick-next {
        right: 0rem;
    }
}

@media (max-width: 767px) {

    .fleet-slider .slick-prev,
    .fleet-slider .slick-next {
        display: none !important;
    }
}

.fleet-slider .fleet-card {
    margin-bottom: 0 !important;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 0 !important;
}

.why-choose-item {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.why-choose-item:hover {
    background-color: #ffffff;
    border-color: rgba(237, 96, 16, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transform: translateY(-0.125rem);
}

.why-choose-item .why-choose-icon-box {
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon-box {
    background-color: var(--color-primary) !important;
}

.why-choose-item:hover .why-choose-icon-box i {
    color: #ffffff !important;
}

/* Graphic styles matching mockup */
.why-choose-graphic {
    min-height: 28rem;
}



/* Light Backdrop Behind Car */
.why-choose-graphic .light-backdrop-bg {
    width: 80%;
    height: 85%;
    background-color: #ebf5fa;
    right: 4.5rem;
    top: 7.5%;
    z-index: 1;
}

/* Car Image sizing */
.why-choose-car-img {
    width: 100%;
    max-width: 95%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 1rem 1.5rem rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
    border-radius: 1rem;
}

.why-choose-graphic:hover .why-choose-car-img {
    transform: scale(1.03) translateY(-0.3125rem);
}

/* Help Badge placement */
.why-choose-graphic .need-help-badge {
    bottom: 0rem;
    left: 2rem;
    min-width: 15rem;
}

.why-choose-graphic .need-help-badge a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.why-choose-graphic .need-help-badge a:hover {
    color: var(--color-primary) !important;
}

@media (max-width: 991px) {
    .why-choose-graphic {
        min-height: 22rem;
        margin-top: 3rem;
    }

    .why-choose-graphic .orange-bar-bg {
        right: 1rem;
    }

    .why-choose-graphic .light-backdrop-bg {
        right: 3rem;
    }

    .why-choose-graphic .need-help-badge {
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Road Running Car Animation */
.road-animation-container {
    height: 70px;
    margin-top: 4rem;
    background: #fafafa;
    border-top: 1px solid #f1ece8;
    border-bottom: 4px solid var(--color-primary);
    display: flex;
    align-items: flex-end;
    padding-bottom: 8px;
}

/* Dark footer variant — no margin, dark asphalt bg */
.road-animation-container.footer-road {
    margin-top: 0;
    background: #1a1a1a;
    border-top: none;
    border-bottom: none;
}

.road-track {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #333333;
}

.road-lane-line {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #ffffff, #ffffff 12px, transparent 12px, transparent 24px);
}

.anim-car {
    position: absolute;
    bottom: 11px;
    /* adjusted for wheels to sit right on top of track at larger scale */
    width: 100px;
    /* increased size for better visibility */
    animation: driveCar 15s linear infinite;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.12));
}

.anim-car-img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes driveCar {
    0% {
        left: -110px;
        /* adjusted for wider car to start fully off-screen */
        transform: scaleX(1);
        /* Moving right */
    }

    47% {
        left: calc(100% + 10px);
        transform: scaleX(1);
    }

    48% {
        left: calc(100% + 10px);
        transform: scaleX(-1);
        /* Flip facing left */
    }

    49% {
        left: 100%;
        transform: scaleX(-1);
    }

    97% {
        left: -110px;
        /* adjusted to exit fully off-screen */
        transform: scaleX(-1);
        /* Moving left */
    }

    98% {
        left: -110px;
        transform: scaleX(1);
        /* Flip facing right */
    }

    100% {
        left: -110px;
        transform: scaleX(1);
    }
}

/* ==========================================================================
   Nationwide Coverage Ticker Section
   ========================================================================== */

.nationwide-ticker-section {
    background: #ffffff;
    padding: 2.5rem 0 0;
    overflow: hidden;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

/* Header row: icons + NATIONWIDE COVERAGE label */
.nationwide-ticker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.nationwide-ticker-icon {
    color: var(--color-primary);
    font-size: 1rem;
}

.nationwide-ticker-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    font-family: var(--font-headings);
}

/* Title row */
.nationwide-ticker-title-row {
    text-align: center;
    margin-bottom: 1.5rem;
}

.nationwide-ticker-title {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

/* Ticker track wrapper — masks overflow with gradient fade edges */
.nationwide-ticker-track-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0.75rem 0 1.5rem;
}

/* Fade mask on left & right edges */
.nationwide-ticker-track-wrapper::before,
.nationwide-ticker-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.nationwide-ticker-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.nationwide-ticker-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* The scrolling track — uses CSS animation */
.nationwide-ticker-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: max-content;
    animation: tickerScroll 60s linear infinite;
    will-change: transform;
}

.nationwide-ticker-track:hover {
    animation-play-state: paused;
}

/* Individual city pill */
.ticker-city-pill {
    display: inline-flex;
    align-items: center;
    background: #1a1a2e;
    color: #ffffff;
    font-family: var(--font-headings);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 0;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: default;
}

.ticker-city-pill:hover {
    background: var(--color-primary);
    color: #ffffff;
}

/* City pill accent variant — every 5th pill gets a yellow highlight */
.ticker-city-pill:nth-child(5n) {
    background: var(--color-primary);
    color: #ffffff;
}

.ticker-city-pill:nth-child(5n):hover {
    background: #1a1a2e;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .nationwide-ticker-title {
        font-size: 1.4rem;
    }

    .nationwide-ticker-track {
        animation-duration: 45s;
    }

    .ticker-city-pill {
        font-size: 0.75rem;
        padding: 0.38rem 0.85rem;
    }
}

/* ==========================================================================
   Booking Page Styles
   ========================================================================== */

.booking-steps .step.completed {
    color: var(--secondary-color);
}

.icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.bg-accent-subtle {
    background-color: rgba(255, 107, 0, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.custom-floating>.form-control {
    border-color: #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: none;
    font-size: 0.9rem;
}

.custom-floating>.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.1);
}

.custom-floating>label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Custom Payment Radio Cards */
.payment-option-label {
    margin-bottom: 0;
}

.payment-option-label input[type="radio"] {
    display: none;
}

.payment-option-card {
    border-color: #e5e7eb !important;
    background-color: #fff;
}

.payment-option-card:hover {
    background-color: #f8f9fa;
}

.payment-option-label input[type="radio"]:checked+.payment-option-card {
    border-color: var(--color-primary) !important;
    background-color: rgba(255, 107, 0, 0.03);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.radio-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ced4da;
    margin: 0 auto;
    position: relative;
    transition: all 0.2s ease;
}

.payment-option-label input[type="radio"]:checked+.payment-option-card .radio-indicator {
    border-color: var(--color-primary);
}

.payment-option-label input[type="radio"]:checked+.payment-option-card .radio-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

/* Booking Sidebar Pills */
.custom-pills .nav-link {
    color: #6c757d;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.custom-pills .nav-link:hover {
    background-color: #f8f9fa;
}

.custom-pills .nav-link.active {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--color-primary);
}

.booking-summary-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

/* =============================================
   MOBILE STICKY CHECKOUT
   ============================================= */
@media (max-width: 991.98px) {
    .booking-page {
        padding-bottom: 90px !important;
        /* Avoid footer overlap */
    }

    .mobile-sticky-checkout {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
        padding: 15px 20px !important;
        z-index: 9999;
        /* Increased to ensure it's above all overlays/headers */
        display: flex;
        align-items: center;
        gap: 20px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }

    .mobile-sticky-checkout .mobile-checkout-price {
        flex-shrink: 0;
    }

    .mobile-sticky-checkout .btn {
        flex-grow: 1;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .mobile-sticky-checkout .checkout-secure-text {
        display: none !important;
    }
}

/* =============================================
   TESTIMONIALS SECTION — REDESIGNED
   ============================================= */
.testimonials-section {
    background: #ffffff;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(237, 96, 16, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Label Badge (shared between testi & FAQ) */
.testi-label-badge {
    background: linear-gradient(135deg, rgba(237, 96, 16, 0.12), rgba(237, 96, 16, 0.06));
    color: var(--color-primary);
    border: 1px solid rgba(237, 96, 16, 0.25);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ─── Google-Review Style Cards ─── */
.gr-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 1.25rem 1.4rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 1px 6px rgba(60, 64, 67, 0.08), 0 2px 8px rgba(60, 64, 67, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
}

.gr-card:hover {
    box-shadow: 0 4px 18px rgba(60, 64, 67, 0.15), 0 6px 20px rgba(60, 64, 67, 0.1);
    transform: translateY(-3px);
}

/* Top row: Avatar + Name + Google icon */
.gr-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.gr-avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-headings);
    letter-spacing: 0.5px;
}

.gr-info {
    flex: 1;
    min-width: 0;
}

.gr-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #202124;
    font-family: var(--font-headings);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gr-designation {
    font-size: 0.72rem;
    color: #5f6368;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gr-google-logo {
    flex-shrink: 0;
    opacity: 0.85;
}

/* Stars + date row */
.gr-stars-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.gr-stars i {
    color: #fbbc04;
    font-size: 0.82rem;
    margin-right: 1px;
}

.gr-date {
    font-size: 0.72rem;
    color: #9aa0a6;
}

/* Review text */
.gr-text {
    font-size: 0.88rem;
    color: #3c4043;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer: tag + helpful */
.gr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f3f4;
    padding-top: 0.75rem;
    margin-top: auto;
}

.gr-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(237, 96, 16, 0.07);
    border: 1px solid rgba(237, 96, 16, 0.18);
    border-radius: 50px;
    padding: 0.2rem 0.65rem;
}

.gr-helpful {
    font-size: 0.72rem;
    color: #5f6368;
    cursor: pointer;
    transition: color 0.2s ease;
}

.gr-helpful:hover {
    color: var(--color-primary);
}


/* =============================================
   FAQ SECTION — REDESIGNED
   ============================================= */
.faq-section {
    background: #f8f7f5;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 96, 16, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Modern FAQ Accordion */
.faq-accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:has(.faq-btn[aria-expanded="true"]) {
    border-color: rgba(237, 96, 16, 0.3);
    box-shadow: 0 4px 20px rgba(237, 96, 16, 0.1);
}

.faq-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.25s ease;
}

.faq-btn:hover {
    background: rgba(237, 96, 16, 0.03);
}

/* Icon Badge */
.faq-icon-wrap {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(237, 96, 16, 0.12), rgba(237, 96, 16, 0.06));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-btn[aria-expanded="true"] .faq-icon-wrap {
    background: linear-gradient(135deg, var(--color-primary), #ff7a2e);
    color: #ffffff;
}

.faq-question {
    flex: 1;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-family: var(--font-headings);
    line-height: 1.45;
}

/* Chevron */
.faq-chevron {
    color: #aaa;
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* Answer Body */
.faq-answer {
    padding: 0 1.25rem 1.25rem 4.65rem;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.75;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.9rem;
}

/* FAQ Concierge Help Card */
.faq-concierge-card {
    border-color: #eef2f6 !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-concierge-card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1) !important;
}

.faq-concierge-avatar {
    width: 48px;
    height: 48px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.faq-contact-trigger {
    background: #ffffff;
    border-color: #eef2f6 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-contact-trigger:hover {
    border-color: rgba(245, 166, 35, 0.5) !important;
    background: #fffdfa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.faq-trigger-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.faq-contact-trigger:hover .faq-trigger-icon {
    transform: scale(1.08);
}

.trigger-arrow {
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-contact-trigger:hover .trigger-arrow {
    color: var(--color-primary) !important;
    transform: translateX(3px);
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testi-divider-v {
        display: none;
    }

    .testi-rating-bar {
        gap: 1.5rem;
    }

    .faq-cta-panel {
        position: static;
        margin-top: 1rem;
    }
}

/* =============================================
   TESTIMONIAL SLIDER — SLICK OVERRIDES
   ============================================= */
.testi-slider-wrap {
    padding: 0.5rem 3.5rem 3rem;
    position: relative;
}

/* Slick dots */
.testi-slider-wrap .slick-dots {
    bottom: 0;
}

.testi-slider-wrap .slick-dots li button::before {
    font-size: 0.5625rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.testi-slider-wrap .slick-dots li.slick-active button::before {
    opacity: 1;
    color: var(--color-primary);
}

/* Slick prev/next arrows — left & right sides */
.testi-slick-prev,
.testi-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 2px solid rgba(237, 96, 16, 0.3);
    background: #ffffff;
    color: var(--color-primary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.testi-slick-prev {
    left: 0;
}

.testi-slick-next {
    right: 0;
}

.testi-slick-prev:hover,
.testi-slick-next:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(237, 96, 16, 0.35);
}

/* Equal height slides */
.testi-slider-wrap .slick-track {
    display: flex !important;
}

.testi-slider-wrap .slick-slide {
    height: inherit !important;
}

.testi-slider-wrap .slick-slide>div {
    height: 100%;
}

.testi-slider-wrap .gr-card {
    height: 100%;
}

@media (max-width: 768px) {
    .testi-slider-wrap {
        padding: 0.5rem 2.5rem 3rem;
    }
}


/* =============================================
   SEO TAXI SERVICES LINKS SECTION
   ============================================= */

.seo-links-section {
    background: #ffffff;
    padding: 4rem 0 4.5rem;
    position: relative;
}

/* Subtle top orange rule removed for clean seamless transition */
.seo-links-section::before {
    display: none;
}

/* Header */
.seo-links-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(237, 96, 16, 0.08);
    border: 1px solid rgba(237, 96, 16, 0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.seo-links-title {
    font-family: var(--font-headings);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

.seo-links-accent {
    color: var(--color-primary);
}

.seo-links-sub {
    font-size: 0.9rem;
    color: #888;
    margin: 0 auto;
}

/* 4-column grid */
.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1.5rem;
}

/* Individual group card */
.seo-link-group {
    background: #ffffff;
    border: 1px solid #edeae6;
    border-radius: 0.85rem;
    padding: 1.25rem 1.1rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Orange left accent stripe on group */
.seo-link-group::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), #ff9a50);
    border-radius: 0 2px 2px 0;
}

/* Category label heading */
.seo-group-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(237, 96, 16, 0.2);
}

/* Link list */
.seo-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.seo-link-list li a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.83rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.22s ease, gap 0.22s ease;
}

.seo-link-list li a i {
    font-size: 0.72rem;
    color: var(--color-primary);
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.seo-link-list li a:hover {
    color: var(--color-primary);
    gap: 0.6rem;
}

.seo-link-list li a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1199px) {
    .seo-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .seo-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .seo-links-section {
        padding: 3rem 0 3.5rem;
    }

    .seo-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.top-bar-phone:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.top-bar-phone:hover .top-bar-phone-pulse {
    background-color: #ffffff;
}

.top-bar-phone:hover .top-bar-phone-pulse::after {
    border-color: #ffffff;
}

/* =============================================
   FLOATING ACTION BUTTONS
   ============================================= */

/* Floating WhatsApp (Bottom-Left - Revealed after Hero Section) */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6) translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease;
}

.floating-whatsapp.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    animation: floating-bounce 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Pulse animation rings */
.floating-whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: floating-wa-pulse 2s infinite ease-out;
    pointer-events: none;
    z-index: -1;
}

@keyframes floating-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floating-wa-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Floating Back to Top (Bottom-Right) */
.floating-back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
    z-index: 9999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6) translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease;
}

.floating-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.floating-back-to-top:hover {
    background-color: var(--color-primary-hover);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

.floating-back-to-top:hover {
    background-color: #d14f08;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 96, 16, 0.45);
}

/* =============================================
   PREMIUM MOBILE OFFCANVAS NAVBAR
   ============================================= */
@media (max-width: 991px) {
    #mainNavbarOffcanvas {
        width: 290px;
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    #mainNavbarOffcanvas .offcanvas-header {
        padding: 1.25rem 1.15rem;
        /* Matches body spacing */
        background: #ffffff;
        border-bottom: 1px solid #f3eff9;
    }

    #mainNavbarOffcanvas .offcanvas-body {
        padding: 1.5rem 1.15rem;
        /* Reduced padding for tighter spacing */
        display: flex;
        flex-direction: column;
    }

    /* Link list adjustments for mobile */
    #mainNavbarOffcanvas .navbar-nav {
        margin-top: 0;
        padding-left: 0 !important;
        margin-left: 0 !important;
        box-shadow: none;
        background: transparent;
        gap: 0.25rem;
        align-items: stretch !important;
        /* Stretch to occupy full width */
        text-align: left !important;
    }

    #mainNavbarOffcanvas .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        width: 100% !important;
        text-align: left !important;
    }

    #mainNavbarOffcanvas .nav-link {
        font-size: 0.95rem;
        font-weight: 500 !important;
        /* Not bold, clean medium weight */
        padding: 0.8rem 0 !important;
        color: #222222 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left !important;
    }

    /* Small arrow indicators on mobile list items */
    #mainNavbarOffcanvas .nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        color: var(--color-primary);
        opacity: 0;
        transform: translateX(-5px);
        transition: all 0.3s ease;
        display: inline-block;
        position: static;
        height: auto;
        width: auto;
        background-color: transparent;
    }

    #mainNavbarOffcanvas .nav-link:hover,
    #mainNavbarOffcanvas .nav-link.active {
        color: var(--color-primary) !important;
        padding-left: 0.5rem !important;
    }

    #mainNavbarOffcanvas .nav-link:hover::after,
    #mainNavbarOffcanvas .nav-link.active::after {
        transform: translateX(0);
        opacity: 1;
    }

    /* Offcanvas Footer Content (Contact Info) */
    .offcanvas-meta-info {
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px dashed rgba(0, 0, 0, 0.08);
    }

    .offcanvas-meta-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.8rem;
        color: #555555;
        margin-bottom: 0.85rem;
        font-weight: 600;
    }

    .offcanvas-meta-item i {
        color: var(--color-primary);
        font-size: 0.9rem;
        width: 1.25rem;
        text-align: center;
    }
}

/* Hero Title - Desktop Single Line styling */
@media (min-width: 992px) {
    .hero-title-nowrap {
        white-space: nowrap;
    }
}

/* Dynamic Form Status Badge */
.form-status-badge {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border: 1px solid rgba(237, 96, 16, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* ── About Company Section ── */
.about-company-section {
    background-color: var(--color-bg-warm);
    position: relative;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.about-visual-wrapper {
    position: relative;
    height: 100%;
    max-height: 480px;
}

.about-image-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100%;
    max-height: 480px;
    border-radius: 1rem;
}

.about-main-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 1rem;
    transition: var(--transition-base);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1);
}

.about-main-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.about-decorative-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(237, 96, 16, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Floating experience badge */
.about-floating-experience {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--color-dark);
    color: #ffffff;
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.about-floating-experience .exp-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-floating-experience .exp-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.about-badge {
    color: var(--color-primary) !important;
}

/* Perk card details */
.perk-card {
    background-color: #ffffff;
    transition: var(--transition-base);
    border: 1px solid var(--color-border) !important;
}

.perk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary) !important;
}

.perk-icon-ring {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .about-floating-experience {
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.75rem 1.25rem;
    }

    .about-floating-experience .exp-number {
        font-size: 1.75rem;
    }
}

/* ── Tourist Places Section ── */
.tourist-places-section {
    background-color: #f8fafc;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5.5rem;
}

.tourist-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.tourist-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.45);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.tourist-image-wrapper {
    position: relative;
    width: 100%;
    height: 13.5rem;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.tourist-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tourist-card:hover .tourist-card-img {
    transform: scale(1.06);
}

/* Card Body Details */
.tourist-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: center;
}

.tourist-card-badge {
    align-self: center;
    background: rgba(245, 166, 35, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(245, 166, 35, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.tourist-card-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a2236;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-align: center;
    transition: var(--transition-base);
}

.tourist-card:hover .tourist-card-title {
    color: #d4900f;
}

.tourist-card-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    text-align: center;
}

.devtour-btn-book-tour {
    background: linear-gradient(135deg, #f5a623 0%, #e67e22 100%);
    border: none;
    color: #ffffff !important;
    font-family: var(--font-headings);
    padding: 0.65rem 1.2rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.devtour-btn-book-tour:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d4900f 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.45);
}

.devtour-btn-book-tour i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.devtour-btn-book-tour:hover i {
    transform: translateX(4px);
}

.tourist-card-btn {
    align-self: center;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.55rem 1.35rem;
    border-radius: 50px;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tourist-card-btn:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(245, 166, 35, 0.35);
}

.tourist-card-btn i {
    font-size: 0.75rem;
    transition: transform 0.28s ease;
}

.tourist-card-btn:hover i {
    transform: translateX(3px);
}

/* Slick slider dots & arrows positioning for tourist-slider */
.tourist-slider {
    position: relative;
}

.tourist-slider .slick-prev,
.tourist-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.tourist-slider .slick-prev:hover,
.tourist-slider .slick-next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(245, 166, 35, 0.3);
}

.tourist-slider .slick-prev {
    left: -1.5rem;
}

.tourist-slider .slick-next {
    right: -1.5rem;
}

.tourist-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    gap: 0.5rem;
}

.tourist-slider .slick-dots li button {
    font-size: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-base);
}

.tourist-slider .slick-dots li.slick-active button {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .tourist-slider .slick-prev {
        left: 0.25rem;
    }

    .tourist-slider .slick-next {
        right: 0.25rem;
    }
}

/* ── Char Dham Yatra Helicopter Banner ── */
.char-dham-promo-card {
    background: linear-gradient(to right, #0c0c0d 0%, rgba(12, 12, 13, 0.88) 45%, rgba(12, 12, 13, 0.2) 100%), url('../images/char_dham_heli.png') no-repeat center right;
    background-size: cover;
    min-height: 15rem;
    position: relative;
    overflow: hidden;
}

.max-w-600 {
    max-width: 37.5rem;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .char-dham-promo-card {
        background: linear-gradient(to top, #0c0c0d 0%, rgba(12, 12, 13, 0.92) 70%, rgba(12, 12, 13, 0.4) 100%), url('../images/char_dham_heli.png') no-repeat center center;
        background-size: cover;
        text-align: center;
        align-items: center;
    }
}

/* ── Premium Cab Grid Listing Page Styles ── */
.bg-light-surface {
    background-color: #f8fafc;
}

.route-header-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 4px solid var(--color-primary);
}

.route-line-anim {
    height: 2px;
}

.line-dashed {
    width: 100%;
    height: 100%;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
}

.car-icon-anim {
    left: 0;
    animation: driveCar 3s infinite linear;
    font-size: 1.25rem;
}

@keyframes driveCar {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.modern-filter-bar {
    border-bottom: 1px solid #e2e8f0;
}

.form-check-custom .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(237, 96, 16, 0.25);
    border-color: rgba(237, 96, 16, 0.5);
}

/* ── Grid Cab Card Styling ── */
.grid-cab-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

.grid-cab-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(237, 96, 16, 0.3);
}

.grid-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f1f5f9;
}

.grid-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.grid-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.spec-pill {
    background: #f8fafc;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #e2e8f0;
}

.fuel-included-tag {
    background: rgba(237, 96, 16, 0.08);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px dashed rgba(237, 96, 16, 0.3);
}

.line-height-1 {
    line-height: 1;
}

/* Custom Responsive Container */
.dcr-container {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .dcr-container {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}

@media (min-width: 1400px) {
    .dcr-container {
        max-width: 1600px;
    }
}

/* Mega Menu Hover & Styles */
@media all and (min-width: 992px) {
    .navbar .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    .navbar .nav-item.dropdown>.dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 15px;
        position: absolute;
        width: 100%;
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar .position-static {
        position: static !important;
    }
}

.navbar .mega-menu {
    border-top: 3px solid var(--color-primary);
    overflow: hidden;
}

.mega-menu-list a.dropdown-item {
    padding: 0.45rem 1rem 0.45rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.92rem;
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
    background: transparent !important;
}

.mega-menu-list a.dropdown-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0.4rem;
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    color: var(--color-accent);
    font-size: 0.8rem;
    opacity: 0.4;
    transition: all 0.2s ease;
}

.mega-menu-list a.dropdown-item:hover {
    color: var(--color-accent) !important;
    padding-left: 1.8rem;
}

.mega-menu-list a.dropdown-item:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.mega-menu-column:not(:last-child) {
    border-right: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Text Shadows */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.text-shadow-sm {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   TRIP PLANNING SUPPORT — 15s POPUP
   ========================================================================== */

/* Overlay backdrop */
.tsp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.tsp-overlay.tsp-visible {
    opacity: 1;
    visibility: visible;
}

/* Modal card */
.tsp-modal {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem 1.75rem 1.5rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tsp-overlay.tsp-visible .tsp-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.tsp-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    background: #f1f3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.tsp-close:hover {
    background: #e9ecef;
    color: #111;
}

/* Badge */
.tsp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff3f0;
    border: 1px solid #f5c6bb;
    color: #d44000;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.tsp-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d44000;
    flex-shrink: 0;
    animation: tspPulse 1.5s ease-in-out infinite;
}

@keyframes tspPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}

/* Heading */
.tsp-heading {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

.tsp-heading-accent {
    color: var(--color-primary);
}

/* Subtext */
.tsp-subtext {
    font-size: 0.88rem;
    color: #5a5a6e;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

/* Info card */
.tsp-info-card {
    background: #1a1a2e;
    border-radius: 0.85rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.tsp-info-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: var(--color-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
}

.tsp-info-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.3rem;
    font-family: var(--font-headings);
}

.tsp-info-desc {
    font-size: 0.78rem;
    color: #c8cad8;
    line-height: 1.6;
    margin: 0;
}

/* CTA buttons */
.tsp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 0.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-headings);
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.15s ease;
    margin-bottom: 0.65rem;
}

.tsp-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.tsp-btn-call {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #ffffff;
}

.tsp-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c3e);
    color: #ffffff;
}

/* Dismiss link */
.tsp-dismiss {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    font-size: 0.78rem;
    color: #9a9aaa;
    cursor: pointer;
    padding: 0.4rem 0 0;
    transition: color 0.2s ease;
}

.tsp-dismiss:hover {
    color: #555;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .tsp-modal {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .tsp-heading {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════════
   DEV TOUR & TRAVELS — 5 CORE SERVICES SHOWCASE
   ═══════════════════════════════════════════════ */

.service-badge-pill {
    background: rgba(245, 166, 35, 0.12);
    color: #d97706;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.28rem 0.95rem;
    border-radius: 50px;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.devtour-service-card {
    background: #ffffff;
    border: 1px solid #eef2f6 !important;
    border-radius: 1.25rem !important;
    transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.devtour-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5a623 0%, #d4900f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.devtour-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(245, 166, 35, 0.35) !important;
}

.devtour-service-card:hover::before {
    opacity: 1;
}

.devtour-service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.devtour-service-card:hover .devtour-service-icon-box {
    transform: scale(1.1) rotate(4deg);
}

.bg-amber-subtle {
    background: rgba(245, 166, 35, 0.12);
    color: #d97706;
}

.bg-blue-subtle {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.bg-emerald-subtle {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.bg-purple-subtle {
    background: rgba(168, 85, 247, 0.12);
    color: #9333ea;
}

.bg-pink-subtle {
    background: rgba(236, 72, 153, 0.12);
    color: #db2777;
}

.service-chip {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
}

/* DevTour Service Features Reference Box (3 Squircles + Short Labels) */
.devtour-service-features-box {
    background: #fdfaf3;
    border: 1.5px solid rgba(245, 166, 35, 0.25);
    border-radius: 18px !important;
    transition: all 0.3s ease;
}

.devtour-service-card:hover .devtour-service-features-box {
    background: #ffffff;
    border-color: rgba(245, 166, 35, 0.5);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.12);
}

.devtour-feature-squircle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2px;
}

.devtour-feature-squircle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.28);
    color: #c98008;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.devtour-service-card:hover .devtour-feature-squircle {
    background: #f5a623;
    border-color: #f5a623;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.32);
}

.devtour-feature-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a2236;
    display: block;
    line-height: 1.2;
    margin-top: 5px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* DevTour Service Action Button */
.devtour-btn-know-more {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #1a2236;
    font-family: var(--font-headings);
    padding: 0.65rem 1.2rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.devtour-btn-know-more:hover {
    background: #1a2236;
    color: #ffffff !important;
    border-color: #1a2236;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 34, 54, 0.22);
}

.devtour-btn-know-more i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.devtour-btn-know-more:hover i {
    transform: translateX(4px);
}

.devtour-service-card:hover .devtour-btn-know-more {
    background: #1a2236;
    color: #ffffff !important;
    border-color: #1a2236;
    box-shadow: 0 4px 14px rgba(26, 34, 54, 0.2);
}

.devtour-service-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1a2236;
    font-family: var(--font-headings);
    padding: 0.6rem 1.2rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Services Slider Grid & Image Styling */
.services-slider .slick-track {
    display: flex !important;
}

.services-slider .slick-slide {
    height: auto;
    display: flex;
}

.services-slider .slick-slide>div {
    width: 100%;
    display: flex;
    height: 100%;
}

.devtour-service-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0f1426;
}

.devtour-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.devtour-service-card:hover .devtour-service-img {
    transform: scale(1.08);
}

.service-chip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(16, 22, 38, 0.88);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, 0.45);
    backdrop-filter: blur(8px);
    padding: 0.32rem 0.85rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Services Slider Navigation Arrows */
.services-slick-prev,
.services-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
    color: #1a2236;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.services-slick-prev {
    left: -20px;
}

.services-slick-next {
    right: -20px;
}

.services-slick-prev:hover,
.services-slick-next:hover {
    background: #f5a623;
    color: #1a2236;
    border-color: #f5a623;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Hide Services Slider Dots */
#services-slider .slick-dots {
    display: none !important;
}

/* ═══════════════════════════════════════════════
   DEV TOUR & TRAVELS — COMPANY PROFILE & LEGACY
   ═══════════════════════════════════════════════ */

.devtour-about-section {
    background: #ffffff;
    position: relative;
}

.devtour-about-visual {
    position: relative;
    padding-bottom: 2.5rem;
}

.devtour-about-main-frame {
    border-radius: 1.5rem;
    position: relative;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    background: #0f1426;
}

.devtour-about-main-img {
    transition: transform 0.6s ease;
}

.devtour-about-main-frame:hover .devtour-about-main-img {
    transform: scale(1.03);
}

.devtour-about-inset-frame {
    position: absolute;
    bottom: 0px;
    right: -15px;
    width: 48%;
    border-radius: 1.25rem;
    border: 4px solid #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    z-index: 2;
    background: #0f1426;
    transition: transform 0.3s ease;
}

.devtour-about-inset-frame:hover {
    transform: translateY(-4px);
}

.devtour-experience-card {
    position: absolute;
    bottom: 25px;
    left: -10px;
    z-index: 3;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 1.2rem;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s ease;
}

.devtour-experience-card:hover {
    transform: translateY(-4px);
}

.devtour-exp-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.devtour-pillar-item {
    transition: all 0.28s ease;
    border: 1px solid #eef2f6 !important;
}

.devtour-pillar-item:hover {
    border-color: rgba(245, 166, 35, 0.45) !important;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.devtour-pillar-icon {
    width: 32px;
    flex-shrink: 0;
}

/* =============================================
   PURE CSS CONTINUOUS 2-ROW MARQUEE DIRECTORY
   ============================================= */
.devtour-routes-section {
    background: #ffffff;
}

.devtour-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.devtour-marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.devtour-marquee-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    will-change: transform;
}

.devtour-marquee-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.devtour-marquee-left {
    animation: marqueeSlideLeft 125s linear infinite;
}

.devtour-marquee-right {
    animation: marqueeSlideRight 135s linear infinite;
}

.devtour-marquee-container:hover .devtour-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeSlideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@keyframes marqueeSlideRight {
    0% {
        transform: translateX(calc(-50% - 0.5rem));
    }

    100% {
        transform: translateX(0);
    }
}

.devtour-route-pill-card {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 1.25rem;
    background: #ffffff;
    border: 1px solid #eef2f6 !important;
    border-radius: 0.85rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    white-space: nowrap;
    min-width: 270px;
    max-width: 320px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.devtour-route-pill-card:hover {
    border-color: rgba(245, 166, 35, 0.5) !important;
    background: #fffdfa !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.route-pill-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.route-pill-name {
    color: #1e293b;
    transition: color 0.2s ease;
}

.devtour-route-pill-card:hover .route-pill-name {
    color: var(--color-primary);
}

.route-pill-arrow {
    transition: all 0.25s ease;
    opacity: 0.4;
}

.devtour-route-pill-card:hover .route-pill-arrow {
    color: var(--color-primary) !important;
    opacity: 1;
    transform: translateX(3px);
}

/* =============================================
   DEV TOUR & TRAVELS LUXURY FOOTER
   ============================================= */
.devtour-footer {
    background-color: #0b132b;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.devtour-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.4), transparent);
}

.footer-cta-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 23, 42, 0.4);
}

.footer-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(245, 166, 35, 0.07) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.footer-cta-icon-box {
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.2);
}

.footer-main-content {
    background: #0b132b;
}

.footer-col-title {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 0.65rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-nav-links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav-links li a i {
    font-size: 0.65rem;
    color: var(--color-primary);
    opacity: 0.6;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-nav-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-nav-links li a:hover i {
    opacity: 1;
    color: var(--color-primary);
    transform: translateX(2px);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
}

.footer-bottom-strip {
    background: #080e1f;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.06) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.07) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hover-accent {
    transition: color 0.2s ease;
}

.hover-accent:hover {
    color: var(--color-primary) !important;
}

.hover-white {
    transition: color 0.2s ease;
}

.hover-white:hover {
    color: #ffffff !important;
}

/* =============================================
   GOOGLE PLACES AUTOCOMPLETE DROPDOWN STYLING
   ============================================= */
.pac-container {
    z-index: 999999 !important;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16), 0 2px 6px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    margin-top: 4px;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    padding: 0.35rem 0;
}

.pac-item {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #475569;
    cursor: pointer;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s ease;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover,
.pac-item-selected {
    background-color: #fffdfa !important;
    color: #1e293b;
}

.pac-icon {
    margin-top: 0;
    margin-right: 0.25rem;
}

.pac-item-query {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
}

.pac-matched {
    color: var(--color-primary);
    font-weight: 800;
}