



    /* ✅ Global Font Overrides */
        h1, h2 { font-family: 'Merriweather', serif !important; } /* Headings */
        h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif !important; } /* Sub-headings */ 
        body, p, a, li, input, textarea { font-family: 'Nunito', sans-serif !important; } /* Paragraphs/Body */
        h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    line-height: inherit;
}

/* =====================================================
   MODAL Z-INDEX
===================================================== */
.modal { z-index: 9999 !important; }
.modal-backdrop { z-index: 9998 !important; }

/* =====================================================
   HEADER TOP BAR
===================================================== */
.header-top {
    background: rgba(5,2,22,0.96) !important;
    border-bottom: 1px solid rgba(160,100,255,0.22) !important;
    padding: 7px 0 !important;
    position: relative;
    z-index: 100;
}
.header-top::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,transparent,rgba(192,132,252,0.5),transparent);
    pointer-events: none;
}
.header-top .row { align-items: center !important; --bs-gutter-y: 0; }

.header-links ul {
    margin: 0 !important; padding: 0 !important;
    display: flex; align-items: center;
    list-style: none; gap: 20px; flex-wrap: wrap;
}
.header-links li {
    display: inline-flex; align-items: center;
    gap: 8px; font-size: 13px; line-height: 1 !important;
    font-family: 'Nunito',sans-serif; font-weight: 600;
    color: rgba(210,200,255,0.82);
}
.header-links li a { color: rgba(210,200,255,0.82); text-decoration: none; transition: color 0.3s; }
.header-links li a:hover { color: #c084fc; }
.header-links li img { display: inline-block; vertical-align: middle; filter: brightness(0) invert(1) opacity(0.7); }

.header-social {
    display: flex; align-items: center;
    justify-content: flex-end; gap: 8px; flex-wrap: wrap;
}
.header-social .social-title {
    font-size: 12px; font-weight: 700;
    color: rgba(200,180,255,0.65);
    text-transform: uppercase; letter-spacing: 0.5px; margin-right: 2px;
}
.header-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(120,60,255,0.15);
    border: 1px solid rgba(160,100,255,0.30);
    transition: all 0.3s ease; position: relative; overflow: hidden; line-height: 1;
}
.header-social a::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg,rgba(255,255,255,0.12) 0%,transparent 100%);
    border-radius: 50% 50% 0 0; pointer-events: none;
}
.header-social a:hover {
    background: rgba(140,80,255,0.30);
    border-color: rgba(192,132,252,0.60);
    box-shadow: 0 0 12px rgba(192,132,252,0.35);
}
.header-social a img { filter: brightness(0) invert(1) opacity(0.75); position: relative; z-index: 1; }
.header-social a:hover img { filter: brightness(0) invert(1) opacity(1); }

/* =====================================================
   STICKY NAV
===================================================== */
.sticky-wrapper { position: sticky; top: 0; z-index: 999; }

.menu-area {
    background: rgba(5,2,22,0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(160,100,255,0.25) !important;
    position: relative;
}
.menu-area::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,transparent,rgba(192,132,252,0.6),rgba(99,102,241,0.4),transparent);
    pointer-events: none;
}
.menu-area .container {
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    min-height: 92px; flex-wrap: nowrap;
}

.header-logo { flex-shrink: 0; }
.header-logo img { width: 180px !important; height: auto; display: block; }

/* =====================================================
   DESKTOP NAV
===================================================== */
.main-menu ul { margin: 0 !important; padding: 0 !important; }
.main-menu > ul { list-style: none; display: flex; align-items: center; gap: 2px; }
.main-menu > ul > li { position: relative; }

.main-menu > ul > li > a {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 10px 13px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700; font-size: 15px;
    color: rgba(220,210,255,0.90) !important;
    text-decoration: none; border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.28s ease; white-space: nowrap;
}
.main-menu > ul > li > a:hover {
    color: #fff !important;
    background: rgba(120,70,255,0.18);
    border-color: rgba(160,100,255,0.40);
    box-shadow: 0 0 16px rgba(150,80,255,0.25),inset 0 1px 0 rgba(255,255,255,0.10);
}
.main-menu > ul > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block; width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(192,132,252,0.80);
    margin-left: 2px; transition: transform 0.25s ease;
}
.main-menu > ul > li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }

/* =====================================================
   DESKTOP DROPDOWN
===================================================== */
.main-menu .sub-menu {
    position: absolute;
    /*top: calc(100% + 10px);*/
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    list-style: none; margin: 0; padding: 8px 0;
    min-width: 240px; border-radius: 16px;
    opacity: 0; pointer-events: none;
    transition: all 0.28s cubic-bezier(0.175,0.885,0.32,1.275);
    z-index: 1000;
    background: rgba(8,4,35,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(160,100,255,0.35);
    box-shadow: 0 0 20px rgba(150,80,255,0.40),0 0 50px rgba(130,60,240,0.20),0 20px 60px rgba(0,0,0,0.70),inset 0 1px 0 rgba(255,255,255,0.08);
}
.main-menu .sub-menu::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 35%;
    background: linear-gradient(180deg,rgba(255,255,255,0.05) 0%,transparent 100%);
    border-radius: 16px 16px 0 0; pointer-events: none;
}
.main-menu .sub-menu::after {
    content: '';
    position: absolute; top: -6px; left: 50%;
    width: 10px; height: 10px;
    background: rgba(10,5,40,0.96);
    border-left: 1px solid rgba(160,100,255,0.35);
    border-top: 1px solid rgba(160,100,255,0.35);
    transform: translateX(-50%) rotate(45deg);
}
.main-menu > ul > li:hover > .sub-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.main-menu .sub-menu li { position: relative; }
.main-menu .sub-menu li + li { border-top: 1px solid rgba(160,100,255,0.10); }
.main-menu .sub-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 20px;
    font-family: 'Nunito',sans-serif;
    font-size: 13.5px; font-weight: 600;
    color: rgba(210,200,255,0.85) !important;
    text-decoration: none; transition: all 0.22s ease;
    position: relative; z-index: 1;
}
.main-menu .sub-menu li a::before {
    content: '';
    position: absolute; left: 0; top: 10%; bottom: 10%;
    width: 2px; border-radius: 0 2px 2px 0;
    background: linear-gradient(180deg,#c084fc,#818cf8);
    opacity: 0; transition: opacity 0.22s;
}
.main-menu .sub-menu li a:hover { color: #fff !important; background: rgba(120,70,255,0.18); padding-left: 26px; }
.main-menu .sub-menu li a:hover::before { opacity: 1; }

/* =====================================================
   CTA BUTTON
===================================================== */
.header-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 50px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700; font-size: 13px; color: #fff;
    text-decoration: none; cursor: pointer;
    border: 1.5px solid rgba(160,100,255,0.70);
    background: radial-gradient(circle at 35% 28%,rgba(185,172,255,0.50) 0%,rgba(122,102,255,0.55) 35%,rgba(78,58,228,0.88) 100%);
    box-shadow: 0 0 22px rgba(120,80,255,0.40),inset 0 1.5px 0 rgba(255,255,255,0.30);
    position: relative; overflow: hidden;
    transition: all 0.30s ease; white-space: nowrap; flex-shrink: 0;
}
.header-cta-btn::before {
    content: '';
    position: absolute; top: 0; left: 8%; right: 8%; height: 50%;
    background: linear-gradient(180deg,rgba(255,255,255,0.28) 0%,transparent 100%);
    border-radius: 50px 50px 0 0; pointer-events: none;
}
.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 38px rgba(140,100,255,0.65),inset 0 1.5px 0 rgba(255,255,255,0.40);
    border-color: rgba(200,160,255,0.90); color: #fff;
}
.header-cta-btn .cta-arrow-circle {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; transition: transform 0.28s; position: relative; z-index: 1;
}
.header-cta-btn:hover .cta-arrow-circle { transform: translateX(3px); }

/* =====================================================
   HAMBURGER BUTTON
===================================================== */
.th-menu-toggle {
    background: rgba(120,60,255,0.15) !important;
    border: 1px solid rgba(160,100,255,0.35) !important;
    border-radius: 10px !important;
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.28s; flex-shrink: 0; padding: 0;
}
.th-menu-toggle:hover {
    background: rgba(140,80,255,0.28) !important;
    border-color: rgba(192,132,252,0.55) !important;
    box-shadow: 0 0 14px rgba(160,90,255,0.30);
}
.th-menu-toggle img { filter: brightness(0) invert(1) opacity(0.85); }

.header-button { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* =====================================================
   MOBILE DRAWER OVERLAY
===================================================== */
.th-menu-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.60); z-index: 99998;
    backdrop-filter: blur(3px);
}
.th-menu-overlay.active { display: block; }

.th-menu-wrapper {
    position: fixed; top: 0; left: 0;
    width: 300px; height: 100%; z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    overflow-y: auto;
}
.th-menu-wrapper.th-body-visible { transform: translateX(0); }

.th-menu-area {
    background: rgba(6,3,28,0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(160,100,255,0.30) !important;
    height: 100%; padding: 24px 16px;
    box-shadow: 4px 0 40px rgba(100,40,255,0.25);
    position: relative;
    overflow-y: scroll;
}

.th-menu-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(200,60,60,0.18) !important;
    border: 1px solid rgba(255,100,100,0.30) !important;
    border-radius: 10px !important;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}

.mobile-logo {
    padding-bottom: 20px; border-bottom: 1px solid rgba(160,100,255,0.18); }
.mobile-logo img { width: 160px !important; }

/* =====================================================
   MOBILE NAV MENU — FIXED DROPDOWN
===================================================== */
.th-mobile-menu > ul {
    list-style: none; padding: 0; margin: 16px 0 0 0;
    display: flex; flex-direction: column; gap: 2px;
}

/* Parent item wrapper */
.th-mobile-menu > ul > li { position: relative; }

/* Top-level link */
.th-mobile-menu > ul > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700; font-size: 14px;
    color: rgba(220,210,255,0.90) !important;
    text-decoration: none !important;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.22s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.th-mobile-menu > ul > li > a:hover,
.th-mobile-menu > ul > li > a:active {
    background: rgba(120,70,255,0.18);
    border-color: rgba(160,100,255,0.32);
    color: #fff !important;
    padding-left: 20px;
}

/* Caret icon for parent items */
.th-mobile-menu .menu-item-has-children > a .mobile-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    border-radius: 6px;
    background: rgba(160,100,255,0.15);
    border: 1px solid rgba(160,100,255,0.25);
}
.th-mobile-menu .menu-item-has-children > a .mobile-caret::after {
    content: '';
    display: block; width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(192,132,252,0.90);
}
.th-mobile-menu .menu-item-has-children.open > a .mobile-caret {
    transform: rotate(180deg);
    background: rgba(192,132,252,0.20);
    border-color: rgba(192,132,252,0.50);
}



/* =====================================================
   FIX 1: MOBILE SUB-MENU — height animation approach
   display:none had issues on some mobile browsers
===================================================== */
.th-mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    border-left: 2px solid rgba(160,100,255,0.35);
    margin-left: 14px;
}
.th-mobile-menu .menu-item-has-children.open > .sub-menu {
    max-height: 600px; /* enough for all items */
    padding: 4px 0 6px 0;
    margin-top: 10px;
}
.th-mobile-menu .sub-menu li a {
    display: block !important;
    padding: 9px 12px !important;
    font-family: 'Nunito',sans-serif;
    font-size: 13px; font-weight: 600;
    color: rgba(200,185,255,0.85) !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.20s;
    -webkit-tap-highlight-color: transparent;
}
.th-mobile-menu .sub-menu li a:hover,
.th-mobile-menu .sub-menu li a:active {
    background: rgba(120,70,255,0.18);
    color: #fff !important;
    padding-left: 18px !important;
}

/* =====================================================
   CONTACT MODAL
===================================================== */
#contactModal.modal {
    background: rgba(0,0,0,0.65) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
#contactModal .modal-dialog { margin: 40px auto; max-width: 480px; }
#contactModal .modal-content {
    background: rgba(8,4,38,0.97) !important;
    border: 1.5px solid rgba(160,100,255,0.40) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(150,80,255,0.45),0 0 70px rgba(130,60,240,0.22),0 24px 80px rgba(0,0,0,0.80),inset 0 1px 0 rgba(255,255,255,0.08) !important;
    position: relative;
}
#contactModal .modal-content::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 35%;
    background: linear-gradient(180deg,rgba(255,255,255,0.05) 0%,transparent 100%);
    pointer-events: none; z-index: 0; border-radius: 20px 20px 0 0;
}
#contactModal .modal-header {
    background: radial-gradient(circle at 35% 28%,rgba(185,172,255,0.40) 0%,rgba(122,102,255,0.55) 40%,rgba(60,30,180,0.92) 100%) !important;
    border-bottom: 1px solid rgba(160,100,255,0.35) !important;
    padding: 18px 24px !important; position: relative; z-index: 1;
}
#contactModal .modal-title {
    font-family: 'Merriweather',serif !important;
    font-weight: 900 !important; font-size: 22px !important;
    color: #fff !important; text-shadow: 0 0 20px rgba(255,255,255,0.30);
    position: relative; z-index: 1;
}
#contactModal .modal-header .btn-close-modal {
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: 50% !important;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 !important; cursor: pointer; transition: all 0.25s; position: relative; z-index: 1;
}
#contactModal .modal-header .btn-close-modal:hover {
    background: rgba(220,60,60,0.30) !important;
    border-color: rgba(255,100,100,0.50) !important;
    box-shadow: 0 0 12px rgba(220,60,60,0.35);
}
#contactModal .modal-header .btn-close-modal img { filter: brightness(0) invert(1) opacity(0.90); }
#contactModal .modal-body {
    background: transparent !important;
    padding: 28px 28px 24px !important; position: relative; z-index: 1;
}
#contactModal .form-label {
    font-family: 'Montserrat',sans-serif !important;
    font-weight: 700 !important; font-size: 13px !important;
    color: rgba(210,195,255,0.80) !important;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px !important;
}
#contactModal .form-control,
#contactModal .form-select {
    background: rgba(120,70,255,0.08) !important;
    border: 1px solid rgba(160,100,255,0.35) !important;
    border-radius: 12px !important; color: #fff !important;
    font-family: 'Nunito',sans-serif !important;
    font-size: 14px !important; font-weight: 600 !important;
    padding: 12px 16px !important; height: auto !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
    transition: all 0.28s ease !important;
}
#contactModal .form-control::placeholder { color: rgba(180,160,255,0.50) !important; }
#contactModal .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c084fc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 14px !important;
}
#contactModal .form-select option { background: #0c0630 !important; color: #fff !important; }
#contactModal .form-control:focus,
#contactModal .form-select:focus {
    background: rgba(140,80,255,0.14) !important;
    border-color: rgba(192,132,252,0.70) !important;
    box-shadow: 0 0 0 3px rgba(160,100,255,0.18),inset 0 1px 0 rgba(255,255,255,0.08) !important;
    color: #fff !important; outline: none !important;
}
#contactModal .form-text { color: rgba(160,140,255,0.60) !important; font-size: 12px !important; margin-top: 6px !important; }
#contactModal #countryCode { width: auto !important; min-width: 110px; flex-shrink: 0; padding-right: 32px !important; }
#contactModal #popup_form {
    display: inline-flex !important; align-items: center !important; gap: 10px !important;
    padding: 12px 30px !important; border-radius: 50px !important;
    font-family: 'Montserrat',sans-serif !important;
    font-weight: 700 !important; font-size: 14px !important; color: #fff !important;
    cursor: pointer;
    border: 1.5px solid rgba(160,100,255,0.70) !important;
    background: radial-gradient(circle at 35% 28%,rgba(185,172,255,0.50) 0%,rgba(122,102,255,0.55) 35%,rgba(78,58,228,0.90) 100%) !important;
    box-shadow: 0 0 24px rgba(120,80,255,0.45),inset 0 1.5px 0 rgba(255,255,255,0.30) !important;
    position: relative; overflow: hidden; transition: all 0.30s ease !important;
    margin-top: 4px; width: 100%; justify-content: center;
}
#contactModal #popup_form::before {
    content: '';
    position: absolute; top: 0; left: 8%; right: 8%; height: 50%;
    background: linear-gradient(180deg,rgba(255,255,255,0.28) 0%,transparent 100%);
    border-radius: 50px 50px 0 0; pointer-events: none;
}
#contactModal #popup_form:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(140,100,255,0.70),inset 0 1.5px 0 rgba(255,255,255,0.40) !important;
    border-color: rgba(200,160,255,0.90) !important;
}

/* =====================================================
   GET FREE QUOTE POPUP
===================================================== */
#popupContainer {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.60); z-index: 99990;
    backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}
#popupContainer.active { display: flex; }

.popup-glass-box {
    position: relative; width: 95%; max-width: 440px;
    background: rgba(8,4,38,0.97);
    border: 1.5px solid rgba(160,100,255,0.40);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 0 30px rgba(150,80,255,0.45),0 24px 80px rgba(0,0,0,0.80);
    padding: 0;
}
.popup-glass-header {
    background: radial-gradient(circle at 35% 28%,rgba(185,172,255,0.40) 0%,rgba(122,102,255,0.55) 40%,rgba(60,30,180,0.92) 100%);
    border-bottom: 1px solid rgba(160,100,255,0.35);
    padding: 18px 24px; position: relative;
}
.popup-glass-header h4 {
    font-family: 'Merriweather',serif;
    font-weight: 900; font-size: 20px; color: #fff; margin: 0;
}
.popup-close-btn {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s;
}
.popup-close-btn:hover { background: rgba(220,60,60,0.30); border-color: rgba(255,100,100,0.50); }
.popup-close-btn img { filter: brightness(0) invert(1) opacity(0.90); }
.popup-glass-body { padding: 24px 24px 20px; }

/* =====================================================
   FIX 2: POPUP GLASS FORM FIELDS
   Common styles reused in both modal and popup
===================================================== */
.glass-form-label {
    font-family: 'Montserrat',sans-serif;
    font-weight: 700; font-size: 13px;
    color: rgba(210,195,255,0.80);
    text-transform: uppercase; letter-spacing: 0.5px;
    display: block; margin-bottom: 8px;
}

/* Base style for ALL glass form inputs/selects */
.glass-input,
.glass-select {
    display: block;
    width: 100%;
    background: rgba(30, 15, 80, 0.70) !important;
    border: 1px solid rgba(160,100,255,0.45) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-family: 'Nunito',sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px 16px !important;
    height: auto !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06) !important;
    transition: all 0.28s ease !important;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
.glass-input::placeholder {
    color: rgba(180,160,255,0.55) !important;
}
.glass-input:focus,
.glass-select:focus {
    background: rgba(50, 25, 120, 0.80) !important;
    border-color: rgba(192,132,252,0.75) !important;
    box-shadow: 0 0 0 3px rgba(160,100,255,0.20), inset 0 1px 0 rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* Select specific — custom arrow + option styling */
.glass-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c084fc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 14px !important;
    padding-right: 38px !important;
    cursor: pointer;
}
.glass-select option {
    background-color: #0c0630 !important;
    color: #ffffff !important;
    font-weight: 600;
}
.glass-select option:disabled {
    color: rgba(180,160,255,0.50) !important;
}

/* Country code select — narrower width */
.glass-select-cc {
    width: auto !important;
    min-width: 115px !important;
    flex-shrink: 0;
}

/* Phone row wrapper */
.phone-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.phone-row .glass-input {
    flex: 1;
    min-width: 0;
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */
.sub-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 100%; gap: 12px;
  padding: 13px 26px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 15px;
  color: #fff; text-decoration: none;
  position: relative; overflow: hidden; cursor: pointer;
  border: 1.5px solid rgba(160,100,255,0.7);
  background: radial-gradient(circle at 35% 28%, rgba(185,172,255,0.5) 0%, rgba(122,102,255,0.55) 35%, rgba(78,58,228,0.88) 100%);
  box-shadow: 0 0 30px rgba(120,80,255,0.45), inset 0 1.5px 0 rgba(255,255,255,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-top: 4px;
}
.sub-btn::before {
  content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, transparent 100%);
  border-radius: 50px 50px 0 0; pointer-events: none;
}
.sub-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(140,100,255,0.65), inset 0 1.5px 0 rgba(255,255,255,0.4);
  border-color: rgba(200,160,255,0.9);
  color: #fff; text-decoration: none;
}
.sub-btn .sub-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px;
  transition: transform 0.3s ease;
}
.sub-btn:hover .sub-arrow { transform: translateX(4px); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .main-menu { display: none !important; }
    .header-cta-btn { display: none !important; }
    .menu-area .container { min-height: 64px; }
}
@media (min-width: 992px) {
    .th-menu-toggle.hamburger-btn { display: none !important; }
}
@media (max-width: 767px) {
    /*.header-top { display: none !important; }*/
    .menu-area .container { min-height: 58px; }
    .header-logo img { width: 145px !important; }
    #contactModal .modal-dialog { margin: 16px 12px; max-width: 100%; }
    #contactModal .modal-body { padding: 18px 16px 16px !important; }
    #contactModal .modal-title { font-size: 18px !important; }
    .popup-glass-box { width: calc(100% - 24px); }
}
@media (max-width: 400px) {
    .header-logo img { width: 130px !important; }
    .th-menu-toggle { width: 38px; height: 38px; }
}
@media (max-width: 991px) {
    .header-top .row { justify-content: center !important; text-align: center; }
    .header-social { justify-content: center; margin-top: 8px; }
    .header-links ul { justify-content: center; }
}



