/* 
 * Force Urbania & Tempo Traveller Rental Portal — Odisha Nature Travel Edition
 * Palette: Forest Green · Warm Brown · Terracotta · Golden Amber · Cream
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
    /* Backgrounds */
    --bg-pure: #FEFCF7;
    --bg-light: #F2F7EE;
    --bg-section: #F7F3EE;
    --bg-dark: #1A2E1C;
    --bg-card: rgba(255, 255, 255, 0.82);

    /* Primary — Forest Green */
    --primary: #2D6A4F;
    --primary-light: #52B788;
    --primary-grad: linear-gradient(135deg, #52B788 0%, #2D6A4F 100%);
    --primary-glow: rgba(45, 106, 79, 0.15);

    /* Accent — Warm Brown / Terracotta */
    --accent: #8B4513;
    --accent-light: #C4622D;
    --accent-grad: linear-gradient(135deg, #E8834D 0%, #8B4513 100%);
    --accent-glow: rgba(139, 69, 19, 0.12);

    /* Gold highlight */
    --gold: #D4A017;
    --gold-grad: linear-gradient(135deg, #F0C840 0%, #D4A017 100%);

    /* Text */
    --text-main: #1A2D1B;
    --text-muted: #5C6B5A;
    --text-light: #8A9B88;

    /* Borders & Glass */
    --border-light: #D9E8D5;
    --border-glass: rgba(45, 106, 79, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Legacy aliases */
    --secondary: #1A2E1C;
    --secondary-grad: linear-gradient(135deg, #2D4A33, #1A2E1C);
    --glow-effect: 0 12px 30px rgba(45, 106, 79, 0.10);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Light Theme Settings */
body {
    background-color: var(--bg-pure) !important;
    color: var(--text-main) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Account for fixed main header only (~96px) */
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-main) !important;
    font-weight: 700;
}

.highlight {
    color: var(--primary) !important;
}
.highlight-gold {
    color: var(--gold) !important;
}
.highlight-accent {
    color: var(--accent) !important;
}
.highlight-earth {
    color: var(--accent-light) !important;
}

/* Glassmorphism / Luxury Cards Classes */
.glassmorphic {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(26, 46, 28, 0.08);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Header & Top Bar Navigation */
.upper-head {
    background: var(--bg-light) !important;
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}
.upper-head .contact-info p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    display: inline-block;
    margin-right: 20px;
    font-weight: 500;
}
.upper-head .contact-info a {
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}
.upper-head .contact-info a:hover {
    color: var(--primary);
    text-decoration: none;
}
.upper-head .social-links-top a {
    color: var(--text-muted);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}
.upper-head .social-links-top a:hover {
    color: var(--primary);
}

/* ── Header base styles — ALWAYS FIXED at top ── */
#header.stricky,
#header.site-header {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(5, 11, 33, 0.04);
    transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.35s ease;
}

#header.stricky-fixed,
#header.site-header.stricky-fixed {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 25px rgba(5, 11, 33, 0.08) !important;
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

#header.header-hidden { transform: translateY(-100%); }

/* header-inner flex layout — logo left, nav center/right, toggle right */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: block;
    line-height: 1;
}

.logo img {
    height: 68px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.08));
}

.logo img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.12)) brightness(1.04);
}

#header.stricky-fixed .logo img,
#header.site-header.stricky-fixed .logo img {
    height: 56px;
}

/* ── Hamburger Toggle Button ── */
.menu-toggle-btn {
    display: none;
    background: var(--bg-light);
    border: 1.5px solid var(--border-light);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 1001;
    position: relative;
}

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

/* ── Nav Holder — desktop default ── */
.nav-holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

/* ── Mobile: show toggle, hide desktop nav ── */
@media (max-width: 991px) {
    .menu-toggle-btn {
        display: flex !important;
    }
    .logo img {
        height: 52px;
    }
    #header .logo,
    #header.site-header .logo {
        margin-top: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 46px;
    }
}

.nav-holder .nav > li > a {
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 15px;
    transition: var(--transition);
    position: relative;
}

.nav-holder .nav > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-holder .nav > li > a:hover::after,
.nav-holder .nav > li.active > a::after {
    width: calc(100% - 30px);
}

.nav-holder .nav > li > a:hover,
.nav-holder .nav > li.active > a {
    color: var(--primary) !important;
    background: transparent !important;
}

/* Dropdown Menu Style */
.nav-holder .nav > li.has-submenu {
    position: relative;
}
.nav-holder .nav > li.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    min-width: 220px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 15px 35px rgba(5, 11, 33, 0.08);
    z-index: 1100;
}
.nav-holder .nav > li.has-submenu:hover .submenu {
    display: block;
    animation: fadeIn 0.3s ease;
}
.nav-holder .nav > li.has-submenu .submenu li a {
    color: var(--text-main);
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-holder .nav > li.has-submenu .submenu li a:hover {
    color: var(--primary);
    background: rgba(45, 106, 79, 0.05);
    text-decoration: none;
}

/* Premium Booking Section Styling */
.urbania-booking-section {
    background: var(--bg-pure);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.urbania-booking-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(45, 106, 79, 0.03);
    filter: blur(100px);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.urbania-booking-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.04);
    filter: blur(120px);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.booking-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.booking-header h2 {
    font-weight: 800;
    font-size: 38px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.booking-header h2 .highlight {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.header-divider {
    width: 50px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.booking-main-row {
    position: relative;
    z-index: 2;
}

.booking-card {
    padding: 40px;
    height: 100%;
}

/* Tabs */
.booking-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.booking-tabs .tab-btn {
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 14px 20px;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-tabs .tab-btn:hover {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

.booking-tabs .tab-btn.active {
    background: var(--primary-grad);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
}

/* Form Styles */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
    display: block;
}

.form-field {
    margin-bottom: 24px;
    text-align: left;
    position: relative;
}

.form-field label {
    display: block;
    color: var(--text-main);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field label i {
    color: var(--primary);
    margin-right: 6px;
}

.form-field .form-control {
    background: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-main) !important;
    border-radius: 12px !important;
    height: 48px;
    font-size: 14px;
    padding: 10px 16px;
    transition: var(--transition) !important;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(5, 11, 33, 0.01);
}

select.form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AF863F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
    cursor: pointer;
}

.form-field .form-control::placeholder {
    color: #94a3b8;
}

.form-field .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.15) !important;
    outline: none;
}

/* Seating grid */
.seating-selector-card {
    display: flex;
    flex-direction: column;
}

.seating-selector-card .card-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.seating-selector-card h4 {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 6px;
}

.seating-selector-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 0;
}

.selected-vehicle-banner {
    background: rgba(45, 106, 79, 0.05);
    border: 1px solid rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 12px 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.seating-layout-wrapper {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.front-indicator {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 8px;
    border-radius: 10px;
    width: 100%;
    max-width: 240px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(5,11,33,0.02);
}

.front-indicator::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--border-light);
    border-top: 2px solid var(--border-light);
    transform: rotate(45deg);
    top: -7px;
    left: calc(50% - 6px);
    background: #ffffff;
}

.cabin-floorplan {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 240px;
    margin-bottom: 25px;
}

.seat-item {
    aspect-ratio: 1/1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    transition: var(--transition);
    user-select: none;
}

.seat-item.driver {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.seat-item.driver i {
    font-size: 14px;
    margin-bottom: 2px;
}

.seat-item.passenger {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(5,11,33,0.03);
}

.seat-item.passenger:hover {
    background: rgba(45, 106, 79, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.seat-item.passenger.selected {
    background: var(--primary-grad);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
    transform: scale(1.05);
}

.seat-item.aisle-space {
    background: transparent;
    border: none;
    cursor: default;
    pointer-events: none;
}

.seating-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.legend-box {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
}

.legend-box.driver {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.legend-box.available {
    background: #ffffff;
    border: 1px solid var(--border-light);
}

.legend-box.selected {
    background: var(--primary-grad);
    border: 1px solid var(--primary);
}

.legend-box.aisle {
    border: 1px dashed var(--border-light);
}

.seating-details-footer {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 25px;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    text-align: left;
}

.seating-detail-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seating-detail-item .label {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.seating-detail-item .val {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
}

/* Submit Button Custom */
.btn-booking-submit {
    background: var(--primary-grad) !important;
    border: none !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    padding: 15px 24px !important;
    border-radius: 14px !important;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

/* Calculator specific */
.trip-type-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.trip-type-btn {
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

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

.trip-type-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(45, 106, 79, 0.05);
}

.help-text {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: -12px;
    margin-bottom: 18px;
    text-align: left;
}

.fare-result-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.fare-row span:last-child {
    color: var(--text-main);
    font-weight: 700;
}

.fare-divider {
    height: 1px;
    background: var(--border-light);
    margin: 12px 0;
}

.fare-row.total {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.fare-row.total span:last-child {
    color: var(--primary);
    font-size: 22px;
}

.fare-terms {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 0;
    text-align: left;
}

.btn-calc-book {
    background: var(--bg-pure);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-calc-book:hover {
    background: var(--primary-grad);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.15);
}

/* Info Section / Feature Grid styling */
.urbania-info-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(5, 11, 33, 0.02);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 106, 79, 0.15);
    box-shadow: 0 15px 35px rgba(5, 11, 33, 0.05);
}

.info-card .icon-box {
    width: 56px;
    height: 56px;
    background: rgba(45, 106, 79, 0.05);
    border: 1px solid rgba(45, 106, 79, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Fleet Models Grid */
.premium-fleet-section {
    padding: 100px 0;
    background: var(--bg-pure);
}

.fleet-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 40px;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(5, 11, 33, 0.02);
}

.fleet-card:hover {
    border-color: rgba(45, 106, 79, 0.2);
    box-shadow: 0 20px 45px rgba(5, 11, 33, 0.06);
    transform: translateY(-5px);
}

.fleet-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
}

.fleet-image-wrap img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

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

.fleet-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-grad);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.fleet-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.fleet-spec-item {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.fleet-spec-item i {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 6px;
    display: block;
}

.fleet-spec-item span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.fleet-spec-item strong {
    font-size: 13px;
    color: var(--text-main);
    display: block;
    margin-top: 2px;
}

/* Compare Matrix */
.compare-container {
    margin-top: 80px;
    border-top: 1px solid var(--border-light);
    padding-top: 60px;
}

.compare-container h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.compare-table-wrap {
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(5,11,33,0.02);
}

.compare-table {
    margin-bottom: 0;
    background: #ffffff;
}

.compare-table th {
    background: var(--bg-light) !important;
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-light) !important;
    padding: 18px 20px !important;
}

.compare-table td {
    color: var(--text-muted) !important;
    padding: 16px 20px !important;
    border-top: 1px solid var(--border-light) !important;
    font-size: 14px;
    vertical-align: middle !important;
}

.compare-table tr:hover td {
    background: rgba(45, 106, 79, 0.02) !important;
}

.compare-table .highlight-col {
    color: var(--primary) !important;
    font-weight: 700;
}

/* FAQ Accordion */
.faq-container {
    margin-top: 80px;
    border-top: 1px solid var(--border-light);
    padding-top: 60px;
    text-align: left;
}

.faq-container h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(45, 106, 79, 0.15);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--text-main);
    user-select: none;
}

.faq-question i {
    font-size: 12px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-light);
}

.faq-answer p {
    padding: 20px 24px;
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium Testimonials Section */
.clients-says {
    background: var(--bg-light) !important;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.clients-says .sec-title h2 {
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 32px !important;
    margin-bottom: 10px;
}

.clients-says .sec-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.clients-says .tagline {
    color: var(--text-muted) !important;
    font-size: 15px !important;
    margin-top: 5px;
    display: block;
}

.clients-says-content {
    margin-top: 50px;
}

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(5,11,33,0.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 106, 79, 0.15);
    box-shadow: 0 15px 35px rgba(5, 11, 33, 0.05);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: left;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    text-align: left;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.testimonial-meta {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.testimonial-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #10b981;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.testimonial-badge i {
    font-size: 12px;
}

.booking-ref-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-family: monospace;
    border: 1px solid var(--border-light);
}

/* Footer Section — Legacy (kept for compatibility but scoped away from .adv-footer) */
footer#footer:not(.adv-footer) {
    background: #ffffff !important;
    border-top: 1px solid var(--border-light);
    padding: 85px 0 45px 0;
}

footer:not(.adv-footer) .footer-widget h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer:not(.adv-footer) .footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

footer:not(.adv-footer) .footer-widget p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

footer:not(.adv-footer) .footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer:not(.adv-footer) .footer-widget ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

footer:not(.adv-footer) .footer-widget ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

footer:not(.adv-footer) .footer-widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
    text-decoration: none;
}

footer:not(.adv-footer) .footer-widget ul li span.fa {
    color: var(--primary);
    margin-right: 10px;
    width: 15px;
}

/* Floating Call & WhatsApp Buttons */
.phone-call {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 40px;
    left: 40px;
    background-color: var(--primary);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.phone-call:hover {
    transform: scale(1.08);
}
.float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition);
}
.float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* Custom Hero Section */
.custom-hero {
    min-height: 85vh;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(45, 106, 79, 0.06), transparent 55%), linear-gradient(135deg, #ffffff, #F4F9F1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px 0;
    overflow: hidden;
}

/* Luxury floating star badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.04);
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--primary);
    font-size: 10px;
}

.custom-hero-content {
    text-align: left;
}

.custom-hero-content h1.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--secondary); /* Onyx black */
}

.custom-hero-content h1.hero-title .highlight {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-hero-content p.hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary); /* Bronze Gold */
    margin-bottom: 20px;
}

.custom-hero-content p.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 35px;
    line-height: 1.75;
}

.custom-hero-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.custom-hero-content .btn-primary {
    background: var(--primary-grad);
    border: 1px solid var(--primary);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.25);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-hero-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(45, 106, 79, 0.35);
    background: var(--secondary);
    border-color: var(--secondary);
}

.custom-hero-content .btn-secondary {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(5, 11, 33, 0.01);
}

.custom-hero-content .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Floating Vehicle Image Wrapper */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.12), transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.floating-vehicle {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(45, 106, 79, 0.15));
    animation: floatVehicle 6s ease-in-out infinite;
}

@keyframes floatVehicle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Premium page banner styling for subpages */
.subpage-banner {
    position: relative;
    padding: 140px 0 110px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

/* Semi-transparent dark overlay to ensure readability on any background image */
.subpage-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 35, 20, 0.85) 0%, rgba(5, 15, 8, 0.92) 100%),
                radial-gradient(circle at top right, rgba(212, 160, 23, 0.2), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Keep content above the overlay */
.subpage-banner .container {
    position: relative;
    z-index: 2;
}

.subpage-banner h1 {
    font-size: clamp(34px, 5vw, 50px) !important;
    font-weight: 900;
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: capitalize;
    font-family: 'Outfit', sans-serif;
}

.subpage-banner h1 .highlight {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subpage-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 650px;
    margin: 0 auto 25px auto !important;
    line-height: 1.6;
}

/* Advanced Breadcrumbs Pill */
.banner-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13.5px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.banner-breadcrumbs a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: var(--transition);
}

.banner-breadcrumbs a:hover {
    color: var(--gold) !important;
}

.banner-breadcrumbs i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
}

.banner-breadcrumbs span {
    color: var(--gold) !important;
    font-weight: 600;
}

/* Wave Transition at Banner Bottom */
.banner-wave-bottom {
    position: absolute;
    bottom: -1px; /* Align to prevent thin pixel gap/bleeding */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.banner-wave-bottom svg {
    display: block;
    width: 100%;
    height: 45px;
}

/* Premium Sections */
.premium-section {
    padding: 100px 0;
    background: var(--bg-pure);
}

.premium-text-block {
    text-align: left;
}

.premium-text-block h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.premium-text-block p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

.premium-stat-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.premium-stat-item {
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(5,11,33,0.01);
}

.premium-stat-item h4 {
    color: var(--primary) !important;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
}

.premium-stat-item span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tour packages section */
.package-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(5,11,33,0.02);
}

.package-card:hover {
    border-color: rgba(45, 106, 79, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(5,11,33,0.05);
}

.package-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-transform: uppercase;
}

.package-content {
    padding: 30px;
    text-align: left;
}

.package-content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

.package-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    height: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.package-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.package-price span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-package {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-package:hover {
    background: var(--primary-grad);
    color: #ffffff;
    border-color: var(--primary);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.15);
}

/* Contact Info list style */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact-info-list li {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info-list li .icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(45, 106, 79, 0.05);
    border: 1px solid rgba(45, 106, 79, 0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-list li .text-wrap h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
}

.contact-info-list li .text-wrap p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* Premium Card Wrap for Places & Packages */
.premium-card-wrap {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 4px 20px rgba(5,11,33,0.01);
}
.premium-card-wrap:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 106, 79, 0.15);
    box-shadow: 0 15px 35px rgba(5,11,33,0.05);
}
.premium-card-wrap .fleet-image-wrap {
    margin-bottom: 0;
    border-radius: 0;
}
.premium-card-wrap img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.premium-card-content {
    padding: 24px;
    text-align: left;
}
.premium-card-content h4 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.premium-card-content p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-premium-book {
    display: inline-block;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    text-decoration: none !important;
}
.premium-card-wrap:hover .btn-premium-book {
    background: var(--primary-grad);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.15);
}

/* Advanced Glassmorphic Hero with Inline Booking */
.custom-hero-advanced {
    min-height: 90vh;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(45, 106, 79, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.06) 0%, transparent 45%),
                linear-gradient(135deg, #ffffff 0%, #F4F9F1 50%, #F4F9F1 100%); /* Elegant Warm Gradient with subtle amethyst touch */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px 0;
    overflow: hidden;
}

.hero-left-content {
    margin-bottom: 30px;
}

.hero-title-advanced {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color: var(--secondary); /* Onyx Black */
    text-transform: capitalize;
}

.hero-title-advanced .highlight-gold {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-advanced {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 35px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
}

.benefit-item i {
    color: #22c55e;
    font-size: 16px;
}

/* Glassmorphic Form Card */
.glassmorphic-booking-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(45, 106, 79, 0.15);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.08);
    transition: var(--transition);
}

.glassmorphic-booking-card:hover {
    border-color: rgba(45, 106, 79, 0.3);
    box-shadow: 0 25px 60px rgba(45, 106, 79, 0.12);
}

.card-head-simple {
    text-align: center;
    margin-bottom: 25px;
}

.card-head-simple h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-head-simple h3 i {
    color: var(--primary);
}

.card-head-simple p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
}

/* Form Helper Layouts */
.row-simple {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.col-simple {
    flex: 1;
    min-width: 0; /* Prevents overflow */
}

.form-group-simple {
    margin-bottom: 20px;
}

.form-group-simple label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-simple label i {
    color: var(--primary);
    margin-right: 4px;
}

.form-group-simple .form-control {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-main) !important;
    border-radius: 12px !important;
    height: 48px;
    font-size: 14px;
    padding: 10px 16px;
    transition: var(--transition) !important;
}

.form-group-simple .form-control:focus {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.15) !important;
}

.btn-simple-submit {
    width: 100%;
    background: var(--primary-grad);
    border: 1px solid var(--primary);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 0;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-simple-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(45, 106, 79, 0.3);
    background: var(--secondary);
    border-color: var(--secondary);
}

@media (max-width: 991px) {
    .custom-hero-advanced {
        padding: 100px 0 60px 0;
    }
    
    .hero-title-advanced {
        font-size: 40px;
        text-align: center;
    }
    
    .hero-desc-advanced {
        text-align: center;
        margin: 0 auto 30px auto;
    }
    
    .hero-benefits {
        align-items: center;
        margin-bottom: 40px;
    }
    
    .glassmorphic-booking-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .row-simple {
        flex-direction: column;
        gap: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   ODISHA NATURE TRAVEL HERO — Full CSS
════════════════════════════════════════════════════════ */

.odisha-hero {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(82, 183, 136, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(139, 69, 19, 0.12) 0%, transparent 40%),
        linear-gradient(150deg, #1A2E1C 0%, #2D5016 35%, #3A6B22 60%, #1E3A0F 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

/* Background decorative layer */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 70%, rgba(82, 183, 136, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 90% 20%, rgba(212, 160, 23, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

/* Leaf overlay — subtle texture */
.hero-leaf-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2352B788' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 350px; height: 350px;
    top: -80px; left: -80px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.15), transparent 70%);
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 280px; height: 280px;
    bottom: 80px; right: -60px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.12), transparent 70%);
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 200px; height: 200px;
    top: 40%; left: 45%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
    animation-delay: 5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Container */
.hero-container {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Grid layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* ── LEFT SIDE ── */
.hero-left {
    color: #ffffff;
}

/* Location badge */
.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #52B788;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Headline */
.hero-headline {
    font-family: 'Playfair Display', serif !important;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 22px;
    color: #ffffff;
}

.headline-accent {
    color: #F0C840; /* Golden Amber */
    font-style: italic;
}

.headline-green {
    background: linear-gradient(135deg, #52B788, #95D5B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tagline */
.hero-tagline {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 32px;
}

/* Feature pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 100px;
    transition: var(--transition);
}

.hero-pill:hover {
    background: rgba(82, 183, 136, 0.25);
    border-color: rgba(82, 183, 136, 0.5);
    transform: translateY(-2px);
}

.hero-pill i {
    color: #95D5B2;
    font-size: 13px;
}

/* Odisha destination chips */
.odisha-dest-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.dest-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 69, 19, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(196, 98, 45, 0.35);
    color: #FFCCAA;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 10px;
    transition: var(--transition);
}

.dest-chip:hover {
    background: rgba(196, 98, 45, 0.35);
    transform: translateY(-2px);
}

.dest-chip i {
    color: #F0C840;
    font-size: 14px;
}

/* Trust row */
.hero-trust-row {
    display: flex;
    gap: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 70px;
}

.trust-item strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #F0C840;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ── RIGHT SIDE: Glass Booking Card ── */
.hero-right {
    display: flex;
    align-items: center;
}

.glass-booking-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Card header */
.glass-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.glass-header-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-grad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(45, 106, 79, 0.3);
}

.glass-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.2 !important;
}

.glass-card-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.glass-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin-bottom: 22px;
}

/* Form rows */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 0;
}

/* Form groups */
.form-group-g {
    margin-bottom: 16px;
}

.form-label-g {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.form-label-g i {
    color: var(--primary);
    margin-right: 4px;
}

/* Form inputs */
.form-input-g {
    width: 100%;
    height: 46px;
    background: rgba(242, 247, 238, 0.7) !important;
    border: 1.5px solid var(--border-light) !important;
    border-radius: 11px !important;
    color: var(--text-main) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    padding: 0 14px !important;
    transition: var(--transition) !important;
    outline: none !important;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

select.form-input-g {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 15px !important;
    padding-right: 38px !important;
    cursor: pointer;
}

.form-input-g:focus {
    border-color: var(--primary) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.12) !important;
}

.form-input-g::placeholder {
    color: #aab8a7;
}

/* Error messages */
.form-err {
    display: block;
    font-size: 11.5px;
    color: #dc2626;
    margin-top: 4px;
    min-height: 16px;
}

/* Submit button */
.glass-submit-btn {
    width: 100%;
    background: var(--primary-grad);
    border: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 16px 0;
    border-radius: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.30);
    transition: var(--transition);
    margin-top: 6px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.glass-submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.glass-submit-btn:hover::before {
    left: 100%;
}

.glass-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(45, 106, 79, 0.4);
}

.glass-submit-btn:active {
    transform: translateY(-1px);
}

/* Alt contact row */
.glass-alt-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.glass-call-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.glass-call-link:hover {
    color: var(--primary);
}

/* Bottom wave */
.hero-wave {
    position: relative;
    z-index: 2;
    margin-top: auto;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-grid {
        gap: 40px;
    }
    .hero-headline {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: 42px;
        text-align: center;
    }

    .hero-location-badge,
    .hero-tagline,
    .hero-pills,
    .odisha-dest-strip,
    .hero-trust-row {
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-tagline {
        max-width: 560px;
    }

    .hero-right {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 34px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .glass-booking-card {
        padding: 24px 18px;
    }

    .hero-trust-row {
        gap: 10px;
        padding: 14px 16px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        min-width: 60px;
    }

}

/* ══════════════════════════════════════════════════════════
   FULL-SCREEN PHOTO HERO SLIDER  — Complete CSS
══════════════════════════════════════════════════════════ */

.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-width: 320px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ── Slides ── */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    animation: none;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.06); }
}

/* Gradient overlay on every slide */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 30, 15, 0.80) 0%,
        rgba(26, 46, 28, 0.65) 40%,
        rgba(0, 0, 0, 0.30) 100%
    );
}

/* Bottom caption badge */
.slide-caption {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.slide-caption p {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    margin: 6px 0 0 0;
    letter-spacing: 0.5px;
}

/* ── Slider Nav: Dots ── */
.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hdot.active {
    background: #F0C840;
    transform: scale(1.3);
    border-radius: 5px;
    width: 22px;
}

/* ── Arrows ── */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: rgba(45, 106, 79, 0.6);
    border-color: rgba(82,183,136,0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* ── Content overlay ── */
.hero-content-overlay {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: clamp(30px, 5vw, 60px);
    padding-bottom: 80px;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr min(440px, 40vw);
    gap: clamp(25px, 4vw, 50px);
    align-items: center;
    width: 100%;
    min-width: 0;
}

/* ── LEFT TEXT BLOCK ── */
.hero-text-block {
    color: #fff;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.95);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 26px;
}

.live-dot {
    width: 7px; height: 7px;
    background: #52B788;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-main-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(32px, 4.5vw, 60px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: -1.5px;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.title-gold {
    color: #F0C840 !important;
    font-style: italic;
    -webkit-text-fill-color: #F0C840 !important;
}

.title-green {
    background: linear-gradient(135deg, #52B788, #95D5B2) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-main-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 28px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

/* Feature pills */
.hero-feat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.feat-pill:hover {
    background: rgba(82,183,136,0.25);
    border-color: rgba(82,183,136,0.5);
    transform: translateY(-2px);
}

.feat-pill i { color: #95D5B2; }

/* Destination chips */
.hero-dest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 32px;
}

.h-dest-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(139, 69, 19, 0.30);
    border: 1px solid rgba(196, 98, 45, 0.40);
    color: #FFCCAA;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.h-dest-chip:hover {
    background: rgba(196,98,45,0.40);
    transform: translateY(-2px);
}

.h-dest-chip i { color: #F0C840; font-size: 13px; }

/* Trust stats bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px 22px;
    max-width: 440px;
    flex-wrap: wrap;
    gap: 12px;
}

.hstat {
    text-align: center;
    flex: 1;
    min-width: 60px;
}

.hstat strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #F0C840;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 3px;
}

.hstat span {
    font-size: 10px;
    color: rgba(255,255,255,0.60);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hstat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ── RIGHT: FORM BLOCK ── */
.hero-form-block {
    align-self: center;
}

.hform-inner {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 26px;
    padding: 30px 28px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.30),
        0 2px 8px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.75);
}

/* Form header */
.hform-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
}

.hform-icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--primary-grad);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(45,106,79,0.30);
}

.hform-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--text-main) !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.2 !important;
}

.hform-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.hform-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin-bottom: 18px;
}

/* Form layout */
.hform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hform-group {
    margin-bottom: 13px;
}

.hform-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.hform-label i { color: var(--primary); margin-right: 4px; }

.hform-input {
    width: 100%;
    height: 44px;
    background: #F2F7EE !important;
    border: 1.5px solid var(--border-light) !important;
    border-radius: 10px !important;
    color: var(--text-main) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13.5px !important;
    padding: 0 13px !important;
    transition: var(--transition) !important;
    outline: none !important;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

select.hform-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 11px center !important;
    background-size: 14px !important;
    padding-right: 32px !important;
}

.hform-input:focus {
    border-color: var(--primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12) !important;
}

.hform-input::placeholder { color: #aab8a7; }

.hform-err {
    display: block;
    font-size: 11px;
    color: #dc2626;
    margin-top: 3px;
    min-height: 14px;
}

/* Submit button */
.hform-submit {
    width: 100%;
    background: var(--primary-grad);
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    padding: 15px 0;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 8px 22px rgba(45,106,79,0.28);
    transition: var(--transition);
    margin-bottom: 13px;
    position: relative;
    overflow: hidden;
}

.hform-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.hform-submit:hover::before { left: 100%; }

.hform-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45,106,79,0.38);
}

/* Alt contact */
.hform-alt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12.5px;
    color: var(--text-muted);
}

.hform-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.hform-call:hover { color: var(--primary); }

/* Bottom wave */
.hero-wave-bottom {
    position: relative;
    z-index: 6;
    margin-top: auto;
    line-height: 0;
}

.hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .hero-content-grid {
        grid-template-columns: 1fr min(400px, 42vw);
        gap: 30px;
    }
    .hero-main-title { font-size: clamp(30px, 4vw, 50px) !important; }
}

@media (max-width: 991px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-content-overlay {
        padding-top: clamp(20px, 5vw, 50px);
        padding-bottom: 60px;
    }
    .hero-slider-section {
        margin-top: -100px;
        padding-top: 100px;
        min-height: calc(100vh - 100px);
    }
    .hero-main-title { font-size: clamp(28px, 6vw, 42px) !important; text-align: center !important; }
    .hero-text-block { display: flex; flex-direction: column; align-items: center; }
    .hero-main-desc { text-align: center; }
    .hero-stats-bar { max-width: 100%; }
    .hero-form-block { max-width: 520px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .hero-main-title { font-size: clamp(24px, 7vw, 34px) !important; }
    .hform-row { grid-template-columns: 1fr; }
    .hform-inner { padding: 20px 14px; }
    .slide-caption { display: none; }
    .hero-arrow { display: none; }
    .hero-stats-bar { padding: 12px 14px; }
    .hstat-sep { display: none; }
    .hero-feat-pills { gap: 7px; }
    .feat-pill { font-size: 12px; padding: 6px 12px; }
    .hero-dest-chips { gap: 7px; }
    .h-dest-chip { font-size: 12px; padding: 6px 11px; }
}

/* ══════════════════════════════════════════════════
   INTEGRATED PREMIUM SLIDER DASHBOARD — CSS
══════════════════════════════════════════════════ */

.slider-control-dashboard {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 100px;
    width: fit-content;
    margin-top: 25px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.sc-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.3s ease;
    padding: 0;
}

.sc-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08);
}

.sc-btn.play-pause {
    width: 36px;
    height: 36px;
    font-size: 12px;
    background: rgba(240, 200, 64, 0.15);
    border-color: rgba(240, 200, 64, 0.35);
    color: #F0C840;
}

.sc-btn.play-pause:hover {
    background: #F0C840;
    border-color: #F0C840;
    color: #1A2E1C;
}

.sc-progress-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-num {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.40);
    letter-spacing: 0.5px;
}

.sc-num.active-num {
    color: #F0C840;
}

.sc-progress-track {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.sc-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #52B788, #F0C840);
    border-radius: 10px;
}

/* Enhanced Ken Burns for active slide */
.hero-slide.active {
    animation: kenBurnsAdv 5s ease-in-out forwards;
}

@keyframes kenBurnsAdv {
    0%   { transform: scale(1.00) translateX(0px); }
    100% { transform: scale(1.07) translateX(-4px); }
}

@media (max-width: 991px) {
    .slider-control-dashboard {
        margin: 25px auto 0 auto;
    }
}

@media (max-width: 480px) {
    .slider-control-dashboard {
        gap: 15px;
        padding: 8px 16px;
    }
    .sc-progress-track {
        width: 80px;
    }
}

/* ═══════════════════════════════════════════════════════
   ADVANCED FLEET SECTION — Vehicle Cards
═══════════════════════════════════════════════════════ */
.adv-fleet-section {
    position: relative;
    background: linear-gradient(160deg, #0F1E0F 0%, #1A2E1C 40%, #0D1A0E 100%);
    padding: 80px 0 70px;
    overflow: hidden;
    margin-top: 0;
}
.adv-fleet-bg-deco {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 10% 20%, rgba(82,183,136,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 80%, rgba(240,200,64,0.05) 0%, transparent 45%);
    pointer-events: none;
}
.adv-fleet-header { margin-bottom: 50px; }
.adv-fleet-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(82,183,136,0.12); border: 1px solid rgba(82,183,136,0.25);
    color: #95D5B2; font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.adv-fleet-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px; font-weight: 900; color: #ffffff;
    margin-bottom: 14px; line-height: 1.2;
}
.adv-title-gold { color: #F0C840; font-style: italic; }
.adv-fleet-sub {
    color: rgba(255,255,255,0.65); font-size: 16px;
    max-width: 580px; margin: 0 auto 35px; line-height: 1.7;
}
.fleet-filter-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.fft-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.70); font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 600; padding: 9px 20px;
    border-radius: 100px; cursor: pointer; transition: all 0.3s ease;
}
.fft-btn:hover { background: rgba(82,183,136,0.15); border-color: rgba(82,183,136,0.4); color: #95D5B2; }
.fft-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(45,106,79,0.35); }
.adv-fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.adv-vehicle-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(10px);
}
.adv-vehicle-card:hover {
    transform: translateY(-6px); border-color: rgba(82,183,136,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(82,183,136,0.15);
}
.adv-vehicle-card.hidden { display: none; }
.avc-image-wrap { position: relative; overflow: hidden; height: 200px; background: #111; }
.avc-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.adv-vehicle-card:hover .avc-image-wrap img { transform: scale(1.07); }
.avc-img-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.adv-vehicle-card:hover .avc-img-overlay { opacity: 1; }
.avc-quick-book {
    background: #F0C840; color: #1A2E1C; font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 100px;
    text-decoration: none; display: flex; align-items: center; gap: 7px;
    transform: translateY(10px); transition: all 0.3s ease;
}
.adv-vehicle-card:hover .avc-quick-book { transform: translateY(0); }
.avc-quick-book:hover { background: #fff; }
.avc-badge {
    position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.8px; padding: 4px 12px;
    border-radius: 100px; z-index: 3;
}
.avc-badge.flagship { background: #F0C840; color: #1A2E1C; }
.avc-badge.popular  { background: #52B788; color: #fff; }
.avc-badge.elite    { background: #C4622D; color: #fff; }
.avc-badge.value    { background: #2D6A4F; color: #fff; }
.avc-badge.group    { background: #457B9D; color: #fff; }
.avc-badge.large    { background: #6D4C8C; color: #fff; }
.avc-body { padding: 20px 22px 22px; }
.avc-top-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.avc-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1.3; }
.avc-sub { font-size: 12px; color: rgba(255,255,255,0.50); margin: 0; }
.avc-price-tag { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 900; color: #F0C840; white-space: nowrap; flex-shrink: 0; line-height: 1; }
.avc-price-tag small { font-size: 11px; color: rgba(255,255,255,0.40); font-weight: 500; }
.avc-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.avc-spec {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 7px 9px;
}
.avc-spec i { color: #52B788; font-size: 11px; flex-shrink: 0; }
.avc-spec span { font-size: 11px; color: rgba(255,255,255,0.70); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.avc-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.avc-features span { font-size: 11px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 5px; }
.avc-features i { color: #F0C840; font-size: 10px; }
.avc-footer { display: flex; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.avc-book-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    background: var(--primary-grad); color: #fff; font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 13px; padding: 11px 0; border-radius: 10px;
    text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer;
}
.avc-book-btn:hover { background: linear-gradient(135deg,#1B4332,#2D6A4F); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,106,79,0.35); color: #fff; }
.avc-wa-btn {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3);
    color: #25D366; display: flex; align-items: center; justify-content: center;
    font-size: 18px; text-decoration: none; transition: all 0.3s ease; flex-shrink: 0;
}
.avc-wa-btn:hover { background: #25D366; color: #fff; transform: scale(1.05); }
.adv-fleet-cta { margin-top: 50px; padding: 35px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; }
.adv-fleet-cta p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 18px; }

@media (max-width: 1100px) {
    .adv-fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-fleet-title { font-size: 38px; }
}
@media (max-width: 640px) {
    .adv-fleet-grid { grid-template-columns: 1fr; }
    .adv-fleet-title { font-size: 30px; }
    .avc-specs { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   ADVANCED PREMIUM FOOTER
═══════════════════════════════════════════════════════ */
.adv-footer {
    position: relative;
    background: linear-gradient(160deg, #0A1A0C 0%, #0F1E0F 50%, #060F07 100%);
    color: rgba(255,255,255,0.80);
    padding-bottom: 0;
}
.footer-wave-top { line-height: 0; }
.footer-wave-top svg { display: block; width: 100%; height: 60px; }
.adv-footer-grid {
    display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr 1.5fr;
    gap: 40px; padding: 60px 0 50px;
}
.afg-map-col {
    display: flex;
    flex-direction: column;
}
.footer-map-wrap {
    width: 100%;
    margin-top: 5px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.footer-map-wrap:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(82, 183, 136, 0.2);
}
.af-logo { height: 55px; width: auto; margin-bottom: 18px; filter: brightness(1.1); }
.af-about { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.60); margin-bottom: 22px; }
.af-social-row { display: flex; gap: 10px; margin-bottom: 20px; }
.af-social {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: all 0.3s ease;
}
.af-social:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.af-social.wa:hover { background: #25D366; border-color: #25D366; }
.af-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.af-trust-badges span {
    display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700;
    color: #95D5B2; background: rgba(82,183,136,0.10); border: 1px solid rgba(82,183,136,0.20);
    padding: 5px 11px; border-radius: 100px;
}
.af-col-title {
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800;
    color: #F0C840; text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.af-col-title i { font-size: 12px; }
.af-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.af-links a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.60); text-decoration: none; font-size: 13.5px; transition: all 0.25s ease; }
.af-links a i { font-size: 10px; color: #52B788; transition: transform 0.25s ease; }
.af-links a:hover { color: #fff; padding-left: 4px; }
.af-links a:hover i { transform: translateX(3px); }
.af-contact-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 14px; }
.af-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.af-contact-icon {
    width: 32px; height: 32px; border-radius: 8px; background: rgba(82,183,136,0.12);
    border: 1px solid rgba(82,183,136,0.20); display: flex; align-items: center;
    justify-content: center; color: #52B788; font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.af-contact-icon.green, .af-contact-icon.wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.2); color: #25D366; }
.af-contact-list span, .af-contact-list a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; line-height: 1.6; transition: color 0.25s; }
.af-contact-list a:hover { color: #95D5B2; }
.af-hours { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 10px 14px; border-radius: 10px; }
.af-hours i { color: #F0C840; }
.adv-footer-bottom { background: rgba(0,0,0,0.40); border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.afb-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.afb-copy { font-size: 12.5px; color: rgba(255,255,255,0.40); }
.afb-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.afb-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); padding: 4px 12px; border-radius: 100px; }

@media (max-width: 1100px) { 
    .adv-footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; } 
    .afg-map-col { grid-column: span 2; }
}
@media (max-width: 640px) {
    .adv-footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0 30px; }
    .afg-map-col { grid-column: span 1; }
    .afb-inner { flex-direction: column; text-align: center; }
    .afb-badges { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   DARK SECTION TEXT OVERRIDES
   Fix: Global h1-h6 color:var(--text-main)!important was making
   headings invisible on dark fleet & footer backgrounds.
═══════════════════════════════════════════════════════════════ */

/* ── Fleet Section ── */
.adv-fleet-section h1,
.adv-fleet-section h2,
.adv-fleet-section h3,
.adv-fleet-section h4,
.adv-fleet-section h5,
.adv-fleet-section h6 {
    color: #ffffff !important;
}
.adv-fleet-section p,
.adv-fleet-section span:not(.avc-badge),
.adv-fleet-section li {
    color: rgba(255,255,255,0.70);
}
.adv-fleet-section .adv-fleet-title {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif !important;
}
.adv-fleet-section .adv-title-gold {
    color: #F0C840 !important;
}
.adv-fleet-section .adv-fleet-sub {
    color: rgba(255,255,255,0.65) !important;
}
.adv-fleet-section .adv-fleet-badge {
    color: #95D5B2 !important;
    background: rgba(82,183,136,0.14) !important;
}
.adv-fleet-section .fft-btn {
    color: rgba(255,255,255,0.75) !important;
}
.adv-fleet-section .fft-btn.active {
    color: #ffffff !important;
}
.adv-fleet-section .avc-title {
    color: #ffffff !important;
}
.adv-fleet-section .avc-sub {
    color: rgba(255,255,255,0.55) !important;
}
.adv-fleet-section .avc-price-tag {
    color: #F0C840 !important;
}
.adv-fleet-section .avc-spec span {
    color: rgba(255,255,255,0.75) !important;
}
.adv-fleet-section .avc-features span {
    color: rgba(255,255,255,0.70) !important;
}
.adv-fleet-section .adv-fleet-cta p {
    color: rgba(255,255,255,0.70) !important;
}

/* ── Footer ── */
.adv-footer h1,
.adv-footer h2,
.adv-footer h3,
.adv-footer h4,
.adv-footer h5,
.adv-footer h6 {
    color: #ffffff !important;
}
.adv-footer .af-col-title {
    color: #F0C840 !important;
}
.adv-footer p,
.adv-footer span,
.adv-footer li {
    color: rgba(255,255,255,0.65);
}
.adv-footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.adv-footer a:hover {
    color: #95D5B2;
}
.adv-footer .af-about {
    color: rgba(255,255,255,0.62) !important;
}
.adv-footer .afb-copy {
    color: rgba(255,255,255,0.42) !important;
}
.adv-footer .af-trust-badges span {
    color: #95D5B2 !important;
}
.adv-footer .afb-badge {
    color: rgba(255,255,255,0.50) !important;
}

/* ── Live dot animation ── */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #52B788;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(82,183,136,0.6); }
    50%       { box-shadow: 0 0 0 5px rgba(82,183,136,0); }
}


/* Fleet Section Wave */
.fleet-wave-top {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 2;
    margin-bottom: 50px;
}
.fleet-wave-top svg {
    display: block;
    width: 100%;
    height: 120px;
}
@media (max-width: 767px) {
    .fleet-wave-top svg { height: 60px; }
    .fleet-wave-top { margin-bottom: 30px; }
}
.fleet-wave-top svg {
    display: block;
    width: 100%;
    height: 120px;
}

@media (max-width: 767px) {
    .fleet-wave-top svg {
        height: 50px;
    }
    .fleet-wave-top {
        margin-bottom: 30px;
    }
}

/* Bottom wave - overlays hero section bottom, transitions to fleet section */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}
.hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}
@media (max-width: 767px) {
    .hero-wave-bottom svg { height: 50px; }
}

/* Hero section wave bottom */

/* ================================================================
   ADVANCED NAVIGATION — Announce Bar, Top Bar, Mega Menu (v3)
   ================================================================ */

/* Announce Bar — scrolls with page (not fixed) */
.announce-bar {
    background: var(--primary-grad);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 1001;
}
.announce-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.announce-inner span { color: rgba(255,255,255,0.9); }
.announce-inner i { color: var(--gold); margin-right: 5px; }
.announce-cta {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff !important;
    padding: 4px 16px;
    border-radius: 30px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.announce-cta:hover {
    background: rgba(255,255,255,0.25);
    color: #ffffff !important;
}

/* New Top Contact Bar — scrolls with page */
.upper-head { 
    background: var(--bg-light) !important; 
    border-bottom: 1px solid var(--border-light); 
    padding: 9px 0;
    position: relative;
    z-index: 999;
}
.uh-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.uh-contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.uh-contact a { color: var(--text-muted); font-size: 12.5px; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.uh-contact a i { color: var(--primary); font-size: 11px; }
.uh-contact a:hover { color: var(--primary); }
.uh-right { display: flex; align-items: center; gap: 15px; }
.uh-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--primary); background: rgba(45,106,79,0.08); padding: 4px 12px; border-radius: 30px; border: 1px solid rgba(45,106,79,0.15); }
.uh-social { display: flex; gap: 10px; }
.uh-social a { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-pure); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 12px; transition: var(--transition); }
.uh-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-1px); }

/* Main Header — FIXED at top (below announce+upperhead on scroll, at top after scroll past them) */
.site-header { 
    background: #ffffff !important; 
    padding: 0 !important; 
    z-index: 1000; 
    transition: var(--transition); 
    border-bottom: 1px solid var(--border-light);
    position: sticky !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.site-header.stricky { position: sticky !important; top: 0; box-shadow: 0 4px 25px rgba(5,15,8,0.04); }
.site-header.stricky-fixed { position: fixed !important; top: 0; left: 0; width: 100%; background: rgba(255,255,255,0.97) !important; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 8px 32px rgba(5,15,8,0.08); }
.site-header.header-hidden { transform: translateY(-100%); }
@keyframes headerSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }

/* Logo in header */
.site-header .logo img { height: 72px !important; max-height: 72px !important; width: auto !important; transition: var(--transition); filter: drop-shadow(0 3px 8px rgba(0,0,0,0.06)); }
.site-header .logo img:hover { transform: scale(1.04); filter: drop-shadow(0 5px 14px rgba(0,0,0,0.10)); }
.site-header.stricky-fixed .logo img { height: 58px !important; }

/* Desktop Nav */
.nav-holder .nav { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }
.nav-holder .nav > li > a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-holder .nav > li > a i { font-size: 12px; opacity: 0.8; }
.nav-holder .nav > li > a .sub-arrow { font-size: 9px; margin-left: 2px; transition: transform 0.25s ease; }
.nav-holder .nav > li:hover > a .sub-arrow { transform: rotate(180deg); }
.nav-holder .nav > li > a:hover,
.nav-holder .nav > li.active > a {
    color: var(--primary) !important;
    background: rgba(45,106,79,0.07);
    text-decoration: none;
}

/* CTA Book button in nav */
.nav-holder .nav .nav-cta a.btn-nav-book {
    background: var(--primary-grad);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(45,106,79,0.25);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.nav-holder .nav .nav-cta a.btn-nav-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,106,79,0.35);
    color: #ffffff !important;
}

/* ── Premium Navigation Phone Button ── */
.nav-phone-premium {
    display: none !important; /* Hidden on desktop main navbar per request */
    list-style: none;
    margin-right: 6px;
}
.btn-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(45,106,79,0.05);
    border: 1px solid rgba(45,106,79,0.12);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-nav-phone i {
    font-size: 14px;
    color: var(--primary);
    background: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(45,106,79,0.15);
    transition: all 0.3s ease;
}
.phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.phone-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 700;
}
.phone-main-number {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.3s ease;
}
.btn-nav-phone:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45,106,79,0.2);
}
.btn-nav-phone:hover i {
    transform: rotate(15deg) scale(1.15);
    color: var(--primary);
}
.btn-nav-phone:hover .phone-main-number {
    color: #ffffff !important;
}
.btn-nav-phone:hover .phone-subtitle {
    color: rgba(255,255,255,0.75) !important;
}

/* Pulse Dot Animation for Support Status */
.phone-pulse-dot {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
}
.phone-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(34,197,94,0.6);
    animation: phone-dot-pulse 1.8s infinite ease-in-out;
}
@keyframes phone-dot-pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Mobile-only nav elements hidden on desktop */
.mobile-nav-contact {
    display: none !important;
}

/* ── Mobile/Tablet Header Phone Number Text ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* MEGA Dropdown */
.nav-holder .nav > li.has-submenu { position: relative; }
.mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 20px;
    width: 340px;
    box-shadow: 0 20px 50px rgba(5,15,8,0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1100;
}
/* hover bridge */
.mega-dropdown::before { content: ''; position: absolute; top: -12px; left: 0; width: 100%; height: 12px; }
.nav-holder .nav > li.has-submenu:hover .mega-dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.mega-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 12px 8px; border-radius: 12px;
    text-align: center; text-decoration: none;
    color: var(--text-main); font-size: 12.5px; font-weight: 600;
    transition: var(--transition); border: 1px solid transparent;
}
.mega-item i { font-size: 18px; color: var(--primary); transition: var(--transition); }
.mega-item:hover {
    background: var(--bg-light); border-color: var(--border-light);
    color: var(--primary); transform: translateY(-2px);
}
.mega-item:hover i { transform: scale(1.15); }

/* ── Mobile hamburger button ── */
.menu-toggle-btn {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    width: 44px; height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.menu-toggle-btn:hover { background: var(--primary-grad); color: #ffffff; border-color: var(--primary); }

/* ── Mobile menu overlay ── */
.mobile-menu-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5, 20, 8, 0.55);
    /* NO backdrop-filter here — it creates a stacking context that blurs the drawer */
    z-index: 9990;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mobile-menu-overlay.active { display: block; opacity: 1; }

/* ── Scroll-reveal ── */
.reveal-init { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-init.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   PREMIUM FLOATING ACTION BUTTON (FAB) CLUSTER
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   ── PREMIUM FLOATING ACTION BUTTON CLUSTER (Desktop & Mobile)
   ═══════════════════════════════════════════════════════════════ */

/* Container — fixed, bottom-right, always visible on scroll */
.fab-cluster {
    position: fixed;
    bottom: 28px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 999990;
    /* Hidden off-screen until user scrolls */
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fab-cluster.fab-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Each FAB row: label (hidden by default) + icon */
.fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ── Label tooltip (desktop hover reveal only) ── */
.fab-label {
    display: none; /* takes no space by default */
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    color: #ffffff;
    background: rgba(10, 18, 12, 0.92);
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    /* No backdrop-filter — it renders visually even at opacity:0 */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
@media (hover: hover) and (min-width: 768px) {
    .fab-label {
        display: block;
    }
    .fab-item:hover .fab-label {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Icon circle (shared base) ── */
.fab-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.fab-item:hover .fab-icon {
    transform: translateY(-5px) scale(1.1);
}

/* ── WhatsApp (bright green — matches image) ── */
.fab-whatsapp .fab-icon {
    background: linear-gradient(135deg, #25D366 0%, #1aad55 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.fab-whatsapp .fab-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: fab-pulse 2.5s ease-out infinite;
    pointer-events: none;
}
.fab-whatsapp:hover .fab-icon {
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
}

/* ── Call Now (orange/amber — matches image) ── */
.fab-call .fab-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}
.fab-call .fab-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.4);
    animation: fab-pulse 2.5s ease-out infinite 0.6s;
    pointer-events: none;
}
.fab-call:hover .fab-icon {
    box-shadow: 0 14px 36px rgba(249, 115, 22, 0.6);
}

/* ── Callback (amber/brown) ── */
.fab-callback .fab-icon {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(180, 83, 9, 0.38);
}
.fab-callback .fab-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(180, 83, 9, 0.35);
    animation: fab-pulse 2.5s ease-out infinite 1.2s;
    pointer-events: none;
}
.fab-callback:hover .fab-icon {
    box-shadow: 0 14px 32px rgba(180, 83, 9, 0.5);
}

/* ── Back to Top (dark navy — matches image) ── */
.fab-top {
    cursor: pointer;
    /* Hidden until user scrolls down — JS reveals it */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fab-top .fab-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.fab-top:hover .fab-icon {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
}
.fab-top:hover .fab-icon i {
    animation: chevron-bounce 0.7s ease-in-out infinite;
}

/* ── Animations ── */
@keyframes fab-pulse {
    0%   { transform: scale(1);    opacity: 0.65; }
    70%  { transform: scale(1.45); opacity: 0; }
    100% { transform: scale(1.45); opacity: 0; }
}
@keyframes chevron-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

/* ── Stagger entrance animation for each button ── */
.fab-item:nth-child(1) { transition-delay: 0ms; }
.fab-item:nth-child(2) { transition-delay: 60ms; }
.fab-item:nth-child(3) { transition-delay: 120ms; }
.fab-item:nth-child(4) { transition-delay: 180ms; }

/* ── Mobile: clean icon-only, no sticky bar offset needed ── */
@media (max-width: 767px) {
    .fab-cluster {
        bottom: 20px !important;
        right: 14px !important;
        gap: 11px !important;
    }
    .fab-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 19px !important;
    }
    .fab-top .fab-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
    /* Icons only on mobile — no label space consumed */
    .fab-label {
        display: none !important;
    }
}

/* Legacy: hide old back-to-top and float elements */
#back-to-top { display: none !important; }
.float, .float-call { display: none !important; }
.mobile-nav-contact { display: none !important; }



/* ═══════════════════════════════════════════════════════════
   ── PREMIUM CALLBACK MODAL
   ═══════════════════════════════════════════════════════════ */
.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px 20px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.callback-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Blurred full-screen overlay */
.callback-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 10, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

/* Modal card */
.callback-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(160deg, #0a1f0e 0%, #0d2b13 100%);
    border: 1px solid rgba(240, 200, 64, 0.18);
    border-radius: 22px;
    padding: 32px 28px 28px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.callback-modal.active .callback-modal-content {
    transform: translateY(0) scale(1);
}

/* Close button */
.callback-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}
.callback-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Header section */
.callback-modal-header {
    text-align: center;
    margin-bottom: 22px;
}
.callback-header-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c840 0%, #c8962a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0a1f0e;
    box-shadow: 0 6px 20px rgba(240, 200, 64, 0.35);
}
.callback-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.callback-modal-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* Form groups */
.callback-modal-form .form-group-custom {
    margin-bottom: 14px;
}
.callback-modal-form .form-group-custom label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(240, 200, 64, 0.85);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.callback-modal-form .form-group-custom label i {
    margin-right: 6px;
    font-size: 11px;
}
.callback-modal-form .form-group-custom input,
.callback-modal-form .form-group-custom select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.callback-modal-form .form-group-custom input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.callback-modal-form .form-group-custom input:focus,
.callback-modal-form .form-group-custom select:focus {
    border-color: rgba(240, 200, 64, 0.5);
    background: rgba(255, 255, 255, 0.09);
}
.callback-modal-form .form-group-custom select option {
    background: #0d2b13;
    color: #ffffff;
}

/* Submit button */
.callback-submit-btn {
    width: 100%;
    padding: 13px 20px;
    margin-top: 6px;
    background: linear-gradient(135deg, #f0c840 0%, #c8962a 100%);
    color: #0a1a07;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(240, 200, 64, 0.3);
}
.callback-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240, 200, 64, 0.45);
}
.callback-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Response messages */
.callback-form-response {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.callback-form-response.success {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}
.callback-form-response.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Mobile modal: full width bottom sheet */
@media (max-width: 480px) {
    .callback-modal {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }
    .callback-modal-content {
        max-width: 100%;
        border-radius: 22px 22px 0 0;
        padding: 28px 20px 32px;
    }
}


