/* NEW THEME SETTINGS (Dark & Gold) */
:root {
    --theme-dark: #090C11;
    --theme-dark-alt: #12151C;
    --theme-gold: #D4AF37;
    --theme-gold-hover: #C5A028;
    --text-light: #F8FAFC;
    --text-gray-light: #94A3B8;
}

/* TOP BAR */
.top-bar {
    background: var(--theme-dark-alt);
    color: var(--text-light);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray-light);
}
.top-bar-item i {
    color: var(--theme-gold);
}
.top-bar-social a {
    color: var(--text-gray-light);
    margin-left: 12px;
    transition: color 0.3s;
}
.top-bar-social a:hover {
    color: var(--theme-gold);
}

/* HEADER OVERRIDE */
.header-inner {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}
header {
    background: var(--theme-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.nav-menu > li > a {
    color: var(--text-light) !important;
    font-weight: 500;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--theme-gold) !important;
}
.btn-header-action {
    background: var(--theme-gold) !important;
    color: var(--theme-dark) !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
}
.btn-header-action:hover {
    background: var(--theme-gold-hover) !important;
}

/* HERO SECTION */
.hero-new {
    position: relative;
    padding: 120px 0 160px; /* Leave space at bottom for overlapping widget */
    background: var(--theme-dark) url('../img/hero-bg-new.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(9,12,17,0.95) 0%, rgba(9,12,17,0.6) 50%, rgba(9,12,17,0.3) 100%);
}
.hero-new-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}
.hero-new-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-new-title span {
    color: var(--theme-gold);
}
.hero-new-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}
.hero-features {
    display: flex;
    gap: 30px;
}
.hero-feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}
.hero-feat-item i {
    font-size: 24px;
    color: var(--theme-gold);
}

/* OVERLAPPING WIDGET */
.top-silhouette-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 950px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%), url('../img/bg_kizkulesi_photo.webp') center center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}
.booking-widget-overlay {
    position: relative;
    margin-top: 300px; /* Space from header */
    margin-bottom: 20px;
    z-index: 10;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 15px 40px rgba(7, 27, 58, 0.08);
    border: 1px solid rgba(7, 27, 58, 0.05);
}
.widget-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0px;
}
.widget-tab {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    bottom: -1px;
}
.widget-tab.active, .widget-tab:hover {
    color: var(--theme-dark);
    border-bottom: 3px solid var(--theme-gold);
}
.widget-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}
.w-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.w-field label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.w-input-wrap {
    position: relative;
}
.w-input-wrap input, .w-input-wrap select {
    width: 100%;
    background: #ffffff !important;
    border: 1px solid #94a3b8 !important;
    color: #000000 !important;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}
.w-input-wrap input:focus, .w-input-wrap select:focus {
    border-color: var(--theme-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.w-input-wrap input::placeholder {
    color: #475569 !important;
}
.w-input-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-gold);
    font-size: 16px;
    pointer-events: none;
}
.btn-widget {
    background: var(--theme-gold);
    color: var(--theme-dark);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    height: 48px;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-widget:hover {
    background: var(--theme-gold-hover);
    transform: translateY(-2px);
}

/* WHITE CARDS SECTION */
.service-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
    padding-bottom: 60px;
}
.s-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.s-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.s-card img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}
.s-card i.main-icon {
    font-size: 40px;
    color: var(--theme-dark);
}
.s-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 4px;
}
.s-card-info p {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 8px;
    line-height: 1.4;
}
.s-card-info a {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* POPULAR TOURS */
.tours-section {
    padding: 60px 0;
    background: #F8FAFC;
}
.section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-outline {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-dark);
    border: 1px solid #CBD5E1;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline:hover {
    background: var(--theme-dark);
    color: #fff;
}
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.t-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.t-card-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.t-card-body {
    padding: 20px;
}
.t-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 12px;
}
.t-card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #64748B;
    margin-bottom: 16px;
}
.t-card-meta i {
    color: #94A3B8;
}
.t-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}
.t-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme-dark);
    text-align: right;
}
.t-card-price span {
    display: block;
    font-size: 11px;
    color: #94A3B8;
    font-weight: 500;
}

/* STATS BOTTOM BAR */
.stats-bar {
    background: var(--theme-dark-alt);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-align: left;
}
.stat-item i {
    font-size: 28px;
    color: var(--theme-gold);
}
.stat-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.stat-info p {
}
.btn-widget {
    background: var(--theme-gold);
    color: var(--theme-dark);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    height: 48px;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-widget:hover {
    background: var(--theme-gold-hover);
    transform: translateY(-2px);
}

/* WHITE CARDS SECTION */
.service-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
    padding-bottom: 60px;
}
.s-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.s-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.s-card img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}
.s-card i.main-icon {
    font-size: 40px;
    color: var(--theme-dark);
}
.s-card-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 4px;
}
.s-card-info p {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 8px;
    line-height: 1.4;
}
.s-card-info a {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* POPULAR TOURS */
.tours-section {
    padding: 60px 0;
    background: #F8FAFC;
}
.section-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-outline {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-dark);
    border: 1px solid #CBD5E1;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline:hover {
    background: var(--theme-dark);
    color: #fff;
}
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.t-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.t-card-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.t-card-body {
    padding: 20px;
}
.t-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 12px;
}
.t-card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #64748B;
    margin-bottom: 16px;
}
.t-card-meta i {
    color: #94A3B8;
}
.t-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}
.t-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme-dark);
    text-align: right;
}
.t-card-price span {
    display: block;
    font-size: 11px;
    color: #94A3B8;
    font-weight: 500;
}

/* STATS BOTTOM BAR */
.stats-bar {
    background: var(--theme-dark-alt);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-align: left;
}
.stat-item i {
    font-size: 28px;
    color: var(--theme-gold);
}
.stat-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.stat-info p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Desktop Hidden Elements for Mobile UI */
.mobile-category-grid, .mobile-call-btn, .booking-form-title, .mobile-bottom-nav, .form-swap-btn {
    display: none;
}

@media (max-width: 991px) {
    /* Header Override for Mobile Layout */
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 0 !important;
    }
    .menu-toggle {
        order: 1 !important;
        display: block !important;
        margin: 0 !important;
        font-size: 22px;
        color: var(--text-light) !important;
    }
    .logo {
        order: 2 !important;
        margin: 0 auto !important;
    }
    .logo img {
        max-height: 48px !important;
        width: auto !important;
    }
    .mobile-call-btn {
        order: 3 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--theme-gold) !important;
        border-radius: 50%;
        text-decoration: none;
        position: relative;
    }
    .mobile-call-btn svg {
        width: 18px;
        height: 18px;
        stroke: var(--theme-gold);
    }
    .mobile-call-badge {
        position: absolute;
        top: -6px;
        right: -6px;
        background: #C99A35;
        color: #fff;
        font-size: 7px;
        font-weight: 800;
        padding: 2px 4px;
        border-radius: 10px;
        border: 1.5px solid var(--theme-dark);
        line-height: 1;
        font-family: sans-serif;
    }
    .nav-menu {
        display: none !important;
    }

    /* Mobile Category Switcher Grid */
    .mobile-category-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }
    .mobile-cat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: #FFFFFF;
        padding: 10px 4px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        border: 1.5px solid rgba(0,0,0,0.03);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-cat-card.active {
        border-color: var(--theme-gold);
        background: #FFFBF0;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.08);
    }
    .cat-icon-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: #ebf3fc;
        color: #0d2b5e;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }
    .mobile-cat-card.active .cat-icon-box {
        background: var(--theme-gold);
        color: #fff;
    }
    .cat-title {
        font-size: 10px;
        font-weight: 800;
        color: #071B3A;
        line-height: 1.2;
        margin-bottom: 2px;
    }
    .cat-sub {
        font-size: 8px;
        color: #94A3B8;
        font-weight: 500;
    }

    /* Booking Widget Mobile Overrides */
    .booking-widget-overlay {
        margin-top: 40px !important;
        padding: 24px 20px !important;
        background: #ffffff !important;
        box-shadow: 0 15px 45px rgba(0,0,0,0.06) !important;
        border-radius: 20px !important;
    }
    .booking-form-title {
        display: flex !important;
        align-items: center;
        gap: 8px;
        font-size: 18px;
        font-weight: 800;
        color: #071B3A;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .widget-tabs {
        display: none !important;
    }
    .widget-form-row {
        flex-direction: column !important;
        align-items: stretch !important;
        position: relative;
        gap: 16px !important;
    }
    .w-field {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Swap Button overlay styling */
    .form-swap-btn {
        display: flex !important;
        width: 32px;
        height: 32px;
        background: #071B3A;
        color: #fff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: 2.5px solid #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        position: absolute;
        right: 20px;
        top: 56px; /* Positioned between Nereden and Nereye */
        z-index: 5;
        transition: transform 0.2s ease;
    }
    .form-swap-btn:active {
        transform: scale(0.9) rotate(180deg);
    }
    .form-swap-btn i {
        font-size: 12px;
        transform: rotate(90deg);
    }

    .widget-form-row {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    .widget-form-row > .w-field {
        width: 100% !important;
    }
    /* Half width fields side-by-side */
    .widget-form-row > .w-field[style*="max-width: 150px"],
    .widget-form-row > .w-field[style*="max-width: 120px"],
    #home_luggage_wrap {
        width: calc(50% - 8px) !important;
        flex: 1 1 calc(50% - 8px) !important;
        max-width: 100% !important;
    }
    .btn-widget {
        width: 100% !important;
        height: 52px !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        background: #091B3A !important;
        border-radius: 12px !important;
        margin-top: 8px !important;
        box-shadow: 0 10px 25px rgba(9, 27, 58, 0.15) !important;
    }

    /* Fixed Bottom Nav Bar Styling */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.06);
        justify-content: space-around;
        align-items: center;
        z-index: 99999;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #94A3B8;
        font-size: 11px;
        font-weight: 600;
        gap: 4px;
        flex: 1;
        transition: all 0.2s ease;
    }
    .mobile-nav-item i {
        font-size: 18px;
    }
    .mobile-nav-item.active {
        color: #C99A35;
    }
    body {
        padding-bottom: 75px !important; /* Leave space for bottom bar */
    }

    /* Horizontal Card Slider for Services */
    .service-cards-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 16px !important;
        padding-bottom: 15px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .service-cards-row > article {
        flex: 0 0 280px !important;
        max-width: 280px !important;
        scroll-snap-align: start;
    }

    .top-silhouette-bg {
        display: none !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    .tour-grid {
        grid-template-columns: 1fr !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .top-bar {
        display: none !important;
    }
}

/* ========================================
   DESKTOP / MOBILE VISIBILITY TOGGLES
========================================= */
#mobile-home-ui   { display: none; }
.desktop-only-hero { display: block; }

@media (max-width: 768px) {
    #mobile-home-ui   { display: block; }
    .desktop-only-hero { display: none !important; }
    /* hide old booking widget remnants just in case */
    .booking-form-title, .form-swap-btn { display: none !important; }
    /* Add bottom padding for fixed nav bar */
    body { padding-bottom: 75px !important; }
}

/* ========================================
   MOBILE HOME UI  (mh-* classes)
   Visible only on screens ≤ 768px
========================================= */

/* ── Wrapper ── */
#mobile-home-ui {
    background: #F0F4F8;
    min-height: 100vh;
    font-family: 'Inter', 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* ── Category Tabs ── */
.mh-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px 16px 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.mh-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 4px 12px;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: all 0.2s ease;
    text-align: center;
}
.mh-tab.active { border-bottom-color: #C99A35; }
.mh-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #EBF3FC;
    color: #071B3A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}
.mh-tab.active .mh-tab-icon {
    background: #C99A35;
    color: #fff;
}
.mh-tab-label {
    font-size: 9px;
    font-weight: 800;
    color: #071B3A;
    line-height: 1.2;
    margin-bottom: 2px;
}
.mh-tab-sub {
    font-size: 8px;
    color: #94A3B8;
    font-weight: 500;
}

/* ── Booking Card ── */
.mh-card {
    background: #fff;
    margin: 16px;
    border-radius: 20px;
    padding: 20px 18px 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}
.mh-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 800;
    color: #071B3A;
    margin-bottom: 18px;
}
.mh-card-title i { color: #C99A35; }

/* Rows */
.mh-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.mh-row-fromto {
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 6px;
}
.mh-field { display: flex; flex-direction: column; gap: 4px; }
.mh-field label {
    font-size: 10px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mh-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}
.mh-input-wrap i {
    padding: 0 10px;
    color: #94A3B8;
    font-size: 13px;
    flex-shrink: 0;
}
.mh-input-wrap input,
.mh-input-wrap select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 10px 11px 0;
    font-size: 12px;
    font-weight: 600;
    color: #071B3A;
    outline: none;
    min-width: 0;
}
.mh-input-wrap input::placeholder { color: #94A3B8; font-weight: 400; }
.mh-input-wrap select { -webkit-appearance: none; appearance: none; }

/* Swap button */
.mh-swap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #071B3A;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
    font-size: 11px;
}
.mh-swap:active { transform: rotate(180deg); }

/* Submit */
.mh-submit {
    width: 100%;
    padding: 15px;
    background: #071B3A;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    box-shadow: 0 8px 20px rgba(7,27,58,0.25);
    transition: background 0.2s ease;
}
.mh-submit:active { background: #0D2A5C; }

/* ── Trust Badges ── */
.mh-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    margin: 0 16px 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.mh-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 4px;
    border-right: 1px solid #F1F5F9;
    gap: 6px;
}
.mh-badge:last-child { border-right: none; }
.mh-badge i {
    font-size: 18px;
    color: #C99A35;
}
.mh-badge span {
    font-size: 9px;
    font-weight: 700;
    color: #334155;
    line-height: 1.35;
}

/* ── Section Header ── */
.mh-services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 12px;
}
.mh-section-title {
    font-size: 16px;
    font-weight: 800;
    color: #071B3A;
    margin: 0;
}
.mh-all-link {
    font-size: 12px;
    font-weight: 700;
    color: #C99A35;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Services Horizontal Scroll ── */
.mh-services-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 16px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.mh-services-scroll::-webkit-scrollbar { display: none; }
.mh-service-card {
    flex: 0 0 150px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    scroll-snap-align: start;
}
.mh-service-card > a { display: block; }
.mh-service-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}
.mh-service-info {
    padding: 10px;
}
.mh-service-title {
    font-size: 12px;
    font-weight: 800;
    color: #071B3A;
    margin-bottom: 4px;
    line-height: 1.2;
}
.mh-service-sub {
    font-size: 10px;
    color: #94A3B8;
    line-height: 1.3;
    margin-bottom: 8px;
}
.mh-service-link {
    font-size: 11px;
    font-weight: 700;
    color: #C99A35;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── WhatsApp CTA ── */
.mh-wa-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #071B3A;
    margin: 0 16px 24px;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(7,27,58,0.2);
}
.mh-wa-icon {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}
.mh-wa-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.mh-wa-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}
.mh-wa-btn {
    margin-left: auto;
    background: #C99A35;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* ── Fixed Bottom Navigation ── */
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.07);
        justify-content: space-around;
        align-items: center;
        z-index: 99999;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #94A3B8;
        font-size: 10px;
        font-weight: 700;
        gap: 4px;
        flex: 1;
        transition: color 0.2s ease;
    }
    .mobile-nav-item i { font-size: 18px; }
    .mobile-nav-item.active,
    .mobile-nav-item:hover { color: #C99A35; }

    /* Mobile call button in header */
    .mobile-call-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 7px 12px !important;
        background: linear-gradient(135deg, #C99A35, #D4AF37) !important;
        color: #fff !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        border: none !important;
        gap: 6px !important;
        order: 3;
        margin-right: 15% !important;
        box-shadow: 0 4px 10px rgba(201, 154, 53, 0.4) !important;
    }
    .mobile-call-btn i { font-size: 14px; color: #fff !important; }
    .mobile-call-badge { display: none !important; }
    .nav-menu { display: none !important; }
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
    }
    .menu-toggle { order: 1 !important; }
    .logo { order: 2 !important; margin: 0 auto !important; }
    .logo img { max-height: 44px !important; width: auto !important; }
    .nav-menu { z-index: 999999 !important; }
    .dropdown-item.mobile-open .dropdown-menu-custom {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

