/* intl-tel-input overrides */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

.iti {
    width: 100% !important;
}

.iti__flag-container {
    z-index: 5;
}

.iti__selected-flag {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px 0 0 12px !important;
    padding: 0 12px 0 15px !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #ffffff !important;
    font-weight: 600;
    margin-left: 8px;
}

.iti__country-list {
    background-color: #121212 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
    overflow-x: hidden;
    width: 300px;
}

.iti__country {
    padding: 10px 15px !important;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.iti__country-name,
.iti__dial-code {
    color: #ffffff !important;
}

.iti__search-input {
    background-color: #050505 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 10px !important;
    margin: 8px !important;
    width: calc(100% - 16px) !important;
    border-radius: 8px !important;
    outline: none !important;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Adjust input padding to make room for flag/dial code */
.iti input {
    padding-left: 100px !important;
}

/* Ensure the input takes full width of .iti container */
.iti--full-width {
    width: 100%;
}

/* Global Premium Theme Styles */
body,
html,
#wrapper {
    overflow-y: visible !important;
    min-height: 100vh;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.form-control,
.form-select {
    background-color: var(--glass-bg) !important;
    color: #ffffff !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    padding: 12px 18px;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.15) !important;
    outline: none !important;
}

/* Force dropdown options visibility */
select option {
    background-color: #121212 !important;
    color: #ffffff !important;
}

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

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-select option,
.form-select optgroup {
    background-color: #121212 !important;
    color: #ffffff !important;
    padding: 10px !important;
}

.form-select optgroup {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.btn-main {
    border-radius: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s !important;
    position: relative;
    overflow: hidden;
}

.btn-main.btn-loading {
    color: transparent !important;
    pointer-events: none;
}

.btn-main.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3) !important;
}

/* Premium Remove Button */
.btn-remove-premium {
    background: rgba(220, 53, 69, 0.8) !important;
    color: #ffffff !important;
    border: 1px solid rgba(220, 53, 69, 0.4) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-align: center;
    display: inline-block;
}

.btn-remove-premium:hover {
    background: rgba(220, 53, 69, 1) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3) !important;
}

.btn-remove-premium:active {
    transform: translateY(0) !important;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2) !important;
}

/* Premium Lettering */
.uppercase-tracking {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Custom Scrollbar for premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--bg-dark-2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Glassmorphism Containers */
.card-brand-solid,
.bg-blur {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.hero-service-link {
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.hero-service-link:hover {
    background: rgba(253, 223, 47, 0.1) !important;
    border-color: #FDDF2F !important;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(253, 223, 47, 0.1);
}

.hero-service-link h5 {
    transition: color 0.4s ease;
}

.hero-service-link:hover h5 {
    color: #FDDF2F !important;
}

.section-header {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Premium Tables */
.table-premium {
    background: rgba(10, 10, 10, 0.45) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    overflow: hidden;
    border-collapse: separate !important;
}

.table-premium th {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.table-premium td {
    padding: 14px 20px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    vertical-align: middle;
}

/* --- Premium Language Switcher (Take 2) --- */

/* Root container — must match #mainmenu li layout (float:left, display:inline) */
#mainmenu li.custom-lang-wrap {
    float: left !important;
    display: inline !important;
    position: relative;
    padding: 0 !important;
    margin: 0 0 0 15px !important;
    vertical-align: middle !important;
    top: 17px;
}

/* The Trigger Pill */
.lang-selector-trigger {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    outline: none !important;
    position: relative;
    z-index: 10;
}

/* Explicitly kill inheriting lines and icons from style.css */
#mainmenu li.custom-lang-wrap:before,
#mainmenu li.custom-lang-wrap:after,
.custom-lang-wrap li:before,
.lang-selector-trigger:before,
.lang-selector-trigger span:before,
.lang-selector-trigger:after {
    display: none !important;
    content: none !important;
}

.lang-selector-trigger:hover,
.lang-selector-trigger.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lang-selector-trigger .flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.lang-selector-trigger .lang-label {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lang-selector-trigger i.chevron {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}

.lang-selector-trigger.active i.chevron {
    transform: rotate(180deg);
}

/* Premium Glass Dropdown */
.lang-custom-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-width: 180px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9;
}

.lang-custom-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Individual Dropdown Item */
.lang-opt-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

/* CRITICAL: Override #mainmenu li ul { visibility: hidden; opacity: 0 } from style.css */
#mainmenu .custom-lang-wrap .lang-custom-dropdown ul,
#mainmenu li.custom-lang-wrap ul {
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Kill inheriting borders/lines in list items */
#mainmenu .lang-custom-dropdown li {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    float: none !important;
}

#mainmenu .lang-custom-dropdown li a {
    border: none !important;
    margin: 0 !important;
    display: flex !important;
    /* Changed to flex for alignment */
    width: 100% !important;
    background: transparent !important;
    text-align: left;
}

#mainmenu .lang-custom-dropdown li a:before,
#mainmenu .lang-custom-dropdown li a span:before {
    display: none !important;
}

.lang-opt-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color) !important;
    padding-left: 20px;
}

.lang-opt-item.active {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color) !important;
}

.lang-opt-item .flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.lang-opt-item .lang-name {
    flex-grow: 1;
}

/* Arrow indicator for dropdown theme */
.lang-custom-dropdown:after {
    content: '';
    position: absolute;
    top: -6px;
    right: 35px;
    width: 12px;
    height: 12px;
    background: rgba(10, 10, 10, 0.85);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.table-premium tr:last-child td {
    border-bottom: none !important;
}

/* Premium Modals */
.modal-content {
    background: rgba(18, 18, 18, 0.9) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6) !important;
}

.modal-header,
.modal-footer {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.modal-header {
    border-bottom: 0 !important;
    padding: 24px 24px 0 !important;
    position: relative;
}

.modal-body {
    padding: 24px !important;
}

.modal-footer {
    border-top: 0 !important;
    padding: 0 24px 24px !important;
}

.modal-title {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.25rem;
}

.modal-title .id-color {
    color: var(--primary-color) !important;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1 !important;
    position: absolute;
    right: 20px;
    top: 25px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-close-white:hover {
    transform: rotate(90deg);
}

/* Specific Modal Overrides to remove default Bootstrap dark borders */
.modal-content.bg-dark,
.modal-content.border-secondary,
.modal-content.border-light {
    background: rgba(18, 18, 18, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-header.border-secondary,
.modal-footer.border-secondary {
    border: none !important;
}

@media (max-width: 991px) {
    .p-comfortable {
        padding: 24px !important;
    }
}

/* 

.btn-main {
    background: var(--brand-primary) !important;
    border: 1px solid var(--brand-primary) !important;
    color: #ffffff !important;
    border-radius: var(--radius-lg) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(var(--brand-primary-rgb), 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-main:hover {
    background: transparent !important;
    color: var(--brand-primary) !important;
    box-shadow: 0 4px 20px rgba(var(--brand-primary-rgb), 0.5) !important;
    transform: translateY(-2px);
}

.btn-main.btn-line {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.id-color,
.subtitle,
.de-marquee-list-1 span,
.de-marquee-list-2 span {
    color: var(--brand-primary) !important;
}

.bg-color,
.bg-color-2 {
    background-color: var(--brand-primary) !important;
}

.text-line {
    border-bottom-color: var(--brand-primary) !important;
}

.step-box i {
    color: var(--brand-primary) !important;
}

.border-brand-opacity {
    border: 1px solid rgba(var(--brand-primary-rgb), 0.3) !important;
} */

@media (max-width: 991px) {

    /* RESET Language Switcher for Mobile Drawer */
    #mainmenu li.custom-lang-wrap {
        top: 0 !important;
        margin: 15px 20px !important;
        display: block !important;
        float: none !important;
        padding: 0 !important;
    }

    .lang-selector-trigger {
        width: calc(100% - 40px);
        justify-content: flex-start;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin: 0 auto;
    }

    .lang-custom-dropdown {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .lang-custom-dropdown.show {
        display: block;
    }

    .lang-custom-dropdown:after {
        display: none;
    }

    /* Mobile Header & Logo spacing */
    header.header-mobile {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    header.header-mobile #logo img {
        max-height: 40px !important;
    }

    /* Mobile Menu Drawer Ergonomics */
    header.header-mobile nav {
        padding-top: 80px !important;
        background: var(--bg-dark-1) !important;
    }

    /* Book Now button in mobile menu */
    header.header-mobile .de-flex-col .btn-main {
        margin: 20px !important;
        display: none !important;
        text-align: center;
        width: calc(100% - 40px) !important;
    }

    /* --- HORIZONTAL SCROLL FOR TABLES & LISTS --- */
    .table-premium,
    .table-responsive,
    .list-wrapper,
    /* .de-flex, */
    table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .table-premium::-webkit-scrollbar,
    table::-webkit-scrollbar,
    .nav-tabs::-webkit-scrollbar,
    .steps-indicator::-webkit-scrollbar {
        height: 4px;
    }

    .table-premium::-webkit-scrollbar-thumb,
    table::-webkit-scrollbar-thumb,
    .nav-tabs::-webkit-scrollbar-thumb,
    .steps-indicator::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
}

/* Gallery Responsiveness */
.gallery-image {
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

@media (max-width: 767px) {
    .gallery-image {
        height: 300px !important;
    }
}

/* =====================================================
   THEME-WIDE MODERN DESIGN SYSTEM
   Premium glassmorphism utilities applied globally
   ===================================================== */

/* --- Card Glass --- */
.card-glass {
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.card-glass:hover {
    border-color: rgba(var(--primary-color-rgb), 0.2) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(var(--primary-color-rgb), 0.05);
}

/* --- Premium Nav Tabs (My List, FAQ) --- */
.nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    gap: 4px;
}

@media (max-width: 991px) {
    .nav-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1px;
        border-bottom: none !important;
    }

    .nav-tabs .nav-item {
        flex: 0 0 auto;
    }

    .nav-tabs .nav-link {
        white-space: nowrap;
    }
}

.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px 12px 0 0 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 10px 20px !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: rgba(var(--primary-color-rgb), 0.15) !important;
    border-color: var(--primary-color) !important;
    border-bottom-color: transparent !important;
    color: var(--primary-color) !important;
    box-shadow: 0 -4px 15px rgba(var(--primary-color-rgb), 0.15);
}

/* --- Premium Alerts --- */
.alert {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 0.9rem;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15) !important;
    border-color: rgba(220, 53, 69, 0.25) !important;
    color: #ff6b7a !important;
}

.alert-success {
    background: rgba(25, 135, 84, 0.15) !important;
    border-color: rgba(25, 135, 84, 0.25) !important;
    color: #6ee7a0 !important;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.12) !important;
    border-color: rgba(255, 193, 7, 0.25) !important;
    color: #ffd54f !important;
}

.alert-info {
    background: rgba(13, 202, 240, 0.12) !important;
    border-color: rgba(13, 202, 240, 0.25) !important;
    color: #67dbf5 !important;
}

/* --- Accordion / FAQ --- */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
}

.accordion-item {
    background: rgba(10, 10, 10, 0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 18px 24px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: rgba(var(--primary-color-rgb), 0.05) !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 24px 18px;
}

/* --- Points Dashboard Cards --- */
.card-points {
    background: rgba(10, 10, 10, 0.7) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-points:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-color-rgb), 0.2) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-color-rgb), 0.1);
}

.card-points:hover::before {
    opacity: 1;
}

.card-points h2 {
    color: var(--primary-color);
    font-weight: 800;
}

/* --- Form Labels Enhancement --- */
.form-label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* --- Status Badges (Orders) --- */
.badge-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-status.confirmed {
    background: rgba(25, 135, 84, 0.2);
    color: #6ee7a0;
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.badge-status.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffd54f;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge-status.cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.badge-status.completed {
    background: rgba(13, 202, 240, 0.15);
    color: #67dbf5;
    border: 1px solid rgba(13, 202, 240, 0.3);
}

/* --- OTP Input Enhancement --- */
.otp-digit {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.otp-digit:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.2) !important;
    background: rgba(var(--primary-color-rgb), 0.05) !important;
}

/* --- Footer Enhancement --- */
footer.text-light {
    background: rgba(5, 5, 5, 0.9) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* --- Form Glass Variants --- */
.form-control-glass,
.form-select-glass {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 18px;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    width: 100%;
}

.form-control-glass:focus,
.form-select-glass:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.15) !important;
    outline: none !important;
}

.form-select-glass option,
.form-select-glass optgroup {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    padding: 12px !important;
}

.form-select-glass optgroup {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    background-color: #222222 !important;
}

/* Ensure the dropdown list has a solid background on some browsers */
select.form-select-glass {
    background-color: rgba(10, 10, 10, 0.95) !important;
}

/* --- Linear Steps Indicator --- */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .steps-indicator {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        gap: 0;
    }

    .steps-indicator .step-item {
        flex: 0 0 auto;
        min-width: fit-content;
    }

    .steps-indicator .step-line {
        flex: 0 0 40px !important;
        min-width: 40px !important;
        margin: 0 15px !important;
    }

    .steps-indicator .step-item span {
        white-space: nowrap;
    }
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.4);
}

.step-item span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Subtle Page Load Animation --- */
.container.relative.z-2 {
    animation: fadeInUp 0.6s ease-out;
}

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

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

/* --- Gold Divider --- */
.divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.3), transparent);
    border: none;
    margin: 2rem 0;
}

/* --- Hover Card (shop service cards) --- */
.hover>div {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover:hover>div {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* --- Smooth focus ring for all interactive elements --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(var(--primary-color-rgb), 0.5);
    outline-offset: 2px;
    border-radius: 8px;
}

/* --- Leadership & Brands Responsiveness --- */
@media (max-width: 991px) {
    .card-glass {
        padding: 1.5rem !important;
    }

    .leadership-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1.5rem !important;
    }

    .leadership-row>div {
        flex: 0 0 140px !important;
        width: 140px !important;
    }

    .trusted-brands-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}