/* ═══════════════════════════════════════
   NAV STYLES
   ═══════════════════════════════════════ */

/* Hide scrollbar but keep scroll functionality */
/* html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
} */

body {
  /* font-family: var(--font) !important; */
  background: #F4F6FA;
}

/* ── CONTACTS IN NAV ── */
.nav-contacts {
  background: #eab69d40;
  border-radius: 6px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 6px;
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-contact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
}

.nav-contacts a {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  font-weight: 500;
  white-space: nowrap;
}

.nav-contacts a:hover {
  color: var(--orange-light);
}

.nav-contacts i {
  font-size: 10px;
  color: var(--orange);
}

.nav-contacts-sep {
  color: #ccc;
  font-size: 12px;
  font-weight: 300;
}

.nav-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── HEADER / TOP NAV (fixed) ── */
header {
  background: transparent;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: auto;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.header-scrolled {
  background: var(--bg-white);
  box-shadow: 0 4px 24px rgba(26, 43, 74, 0.32);
}

.nav-inner {
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Plus Jakarta Sans', 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.logo-main span {
  color: var(--orange);
}

.logo-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.logo-tagline {
  font-size: 8px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

/* Hover bridge - invisible area prevents submenu closing */
nav>ul>li {
  padding-bottom: 14px;
  margin-bottom: -14px;
}

nav ul li>a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

nav ul li>a:hover {
  color: var(--orange);
}

nav ul li>a .fa-chevron-down {
  font-size: 10px;
  opacity: 0.6;
}

/* ── SUBMENU (all levels) ── */
nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.18);
  padding: 4px;
  min-width: 150px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: visibility 0s 0.2s, opacity 0.18s, transform 0.18s;
  z-index: 200;
}

/* Level 1: show on top-level li hover */
nav>ul>li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: visibility 0s 0s, opacity 0.18s, transform 0.18s;
}

/* Level 2+: show on parent li hover inside submenu */
nav ul li .submenu li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: visibility 0s 0s, opacity 0.18s, transform 0.18s;
}

nav ul li .submenu li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0 14px;
  border-radius: 6px;
  display: block;
  white-space: nowrap;
  line-height: 36px;
  min-height: 36px;
}

nav ul li .submenu li a:hover {
  background: #F3F5F8;
  color: var(--orange);
}

nav ul li .submenu li a.active {
  font-weight: 700;
  color: var(--orange);
}

/* ── NESTED SUBMENU ── */
nav ul li .submenu li {
  position: relative;
}

nav ul li .submenu>li {
  padding-right: 0;
  margin-right: 0;
}

nav ul li .submenu li>.submenu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  width: 16px;
  height: 100%;
  pointer-events: all;
}

nav ul li .submenu li .submenu {
  left: 100%;
  top: -4px;
  padding: 4px;
  margin-left: 16px;
  min-width: 150px;
}

/* Nested submenu items */
nav ul li .submenu li .submenu li a {
  padding: 0 12px;
  font-size: 12.5px;
  line-height: 34px;
  min-height: 34px;
}

.nav-arrow-right {
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.5;
}

.nav-btns {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-btns-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* 
.search-advance-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy-dark);
  background: transparent;
  border: 1.5px solid var(--navy-dark);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.search-advance-btn:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.search-advance-btn i {
  font-size: 16px;
  transition: transform 0.2s;
} */

/* .search-advance-btn:hover i {
  transform: translateX(3px);
} */

.btn-pay {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, transform 0.1s;
}

.btn-pay:hover {
  background: #D4650F;
  transform: translateY(-0.4px);
}

.btn-pay i {
  font-size: 12px;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.search-advance-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  background: transparent;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.search-advance-btn:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--orange);
}

.search-advance-btn i {
  font-size: 16px;
  transition: transform 0.2s;
}

/* .search-advance-btn:hover i {
  transform: translateX(3px);
} */

.btn-login {
  background: var(--navy-dark);
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, transform 0.1s;
}

.btn-login:hover {
  background: #0A1628;
  transform: translateY(-0.4px);
}

.btn-login i {
  font-size: 12px;
}

/* ── NAV TOGGLE (hamburger) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  gap: 4px;
  padding: 6px;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.nav-toggle:hover {
  border-color: var(--orange);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile-only nav items */
.nav-mobile-only {
  display: none !important;
}

.nav-mobile-search {
  display: none !important;
}

.nav-mobile-btn-wrap {
  display: none !important;
}

.nav-inner .logo {
  width: auto;
}

nav ul.submenu {
  display: block;
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 1180px) {
  .nav-inner {
    gap: 10px;
  }

  .nav-contacts {
    display: none;
  }

  .nav-btns {
    display: flex;
    padding: 2px 0 4px;
  }

  .nav-btns-desktop {
    display: none;
  }

  nav ul li>a {
    padding: 5px 6px;
    font-size: 11px;
  }

  .btn-pay,
  .btn-login {
    padding: 4px 8px;
    font-size: 10px;
    gap: 4px;
  }

  .btn-pay i,
  .btn-login i {
    font-size: 10px;
  }

  .nav-search-inline {
    justify-content: flex-end;
  }

  .nav-search-inline .search-row {
    min-width: 280px;
  }

  .nav-search-inline .search-box {
    max-width: none;
    flex: 0 1 auto;
    min-width: 200px;
  }

  .nav-search-inline .search-input-wrap {
    min-width: 80px;
  }

  .nav-search-inline .search-box .nice-select {
    min-width: 80px;
    padding: 0 6px;
    font-size: 11px;
  }

  .nav-search-inline .search-advance-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 0;
    gap: 0;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-search-inline .search-advance-btn i {
    font-size: 16px;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .nav-search-inline {
    justify-content: flex-end;
  }

  .nav-search-inline .search-row {
    min-width: 220px;
  }

  .nav-search-inline .search-box {
    max-width: none;
    flex: 0 1 auto;
    min-width: 140px;
  }

  .nav-search-inline .search-input-wrap {
    min-width: 60px;
  }

  .nav-search-inline .search-box .nice-select {
    min-width: 70px;
    padding: 0 5px;
    font-size: 10px;
  }

  .nav-search-inline .search-advance-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 0;
    gap: 0;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-search-inline .search-advance-btn i {
    font-size: 16px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 4px 12px;
    gap: 8px;
    min-height: 56px;
  }

  nav ul {
    gap: 0;
  }

  nav ul li>a {
    padding: 6px 8px;
    font-size: 12px;
  }

  .btn-pay,
  .btn-login {
    padding: 5px 10px;
    font-size: 11px;
    gap: 4px;
  }

  .btn-pay i,
  .btn-login i {
    font-size: 11px;
  }

  nav ul li .submenu {
    min-width: 150px;
  }

  nav ul li .submenu li a {
    padding: 0 12px;
    font-size: 12px;
    line-height: 32px;
    min-height: 32px;
  }

  nav ul li .submenu li .submenu {
    left: 100%;
    min-width: 150px;
  }

  nav ul li .submenu li .submenu li a {
    padding: 0 10px;
    font-size: 11.5px;
    line-height: 30px;
    min-height: 30px;
  }
}

/* ── RESPONSIVE NAV (mobile) ── */
@media (max-width: 768px) {
  .nav-contacts {
    display: none;
  }

  .nav-btns,
  .nav-btns-desktop {
    display: none;
  }

  .nav-right-col {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-row nav {
    position: fixed;
    top: 56px;
    left: 12px;
    right: 12px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(26, 43, 74, 0.18);
    padding: 6px 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s, padding 0.25s;
    z-index: 99;
  }

  .nav-row nav.nav-open {
    max-height: 80vh;
    opacity: 1;
    min-height: 50%;
    padding: 8px 8px 20px;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .nav-row nav.nav-open::-webkit-scrollbar {
    display: none;
  }

  .nav-row nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-row nav>ul>li>a {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    justify-content: space-between;
    color: var(--navy-dark);
  }

  .nav-row nav ul li>a:hover {
    background: #F3F5F8;
    color: var(--orange);
  }

  .nav-row nav ul li>a .fa-chevron-down {
    font-size: 10px;
    opacity: 0.4;
  }

  /* Mobile submenus - inline expand instead of absolute */
  nav ul li .submenu {
    position: static;
    top: auto;
    left: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    padding-left: 0;
    margin: 0;
    min-width: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav ul li:hover>.submenu,
  nav ul li .submenu li:hover>.submenu {
    max-height: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  nav ul li.show-sub>.submenu,
  nav ul li .submenu li.show-sub>.submenu {
    max-height: 600px;
    padding: 2px 0 2px 16px;
  }

  .nav-row nav ul li .submenu li a {
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 6px;
    justify-content: flex-start;
  }

  .nav-row nav ul li .submenu li a:hover {
    background: #F3F5F8;
    color: var(--orange);
  }

  .nav-row nav ul li .submenu li .submenu li a {
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    font-size: 12.5px;
    padding: 8px 12px;
    justify-content: flex-start;
  }

  .nav-search-inline {
    display: none !important;
  }

  .nav-mobile-search {
    /* display: block !important; */
    /* padding: 8px 6px 12px; */
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
  }

  .nav-mobile-search .search-box {
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 3px;
    gap: 0;
    flex: 1;
    min-width: 0;
  }

  .nav-mobile-search .search-box .nice-select {
    border: none;
    background: #F3F5F8;
    border-radius: 6px;
    padding: 0 8px;
    height: 32px;
    line-height: 32px;
    font-size: 11px;
    font-weight: 600;
    color: var(--navy-dark);
    min-width: 90px;
    flex-shrink: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
  }

  .nav-mobile-search .search-box .nice-select:after {
    border-bottom: 1.5px solid var(--text-muted);
    border-right: 1.5px solid var(--text-muted);
    width: 5px;
    height: 5px;
    right: 8px;
    margin-top: -4px;
  }

  .nav-mobile-search .search-box .nice-select .current {
    padding-right: 12px;
    display: block;
  }

  .nav-mobile-search .search-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
    margin: 0 2px;
    flex-shrink: 0;
  }

  .nav-mobile-search .search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2px;
  }

  .nav-mobile-search .search-input {
    border: none;
    outline: none;
    width: 100%;
    height: 32px;
    font-size: 12px;
    color: var(--text-dark);
    background: transparent;
  }

  .nav-mobile-search .search-input::placeholder {
    color: #A0ABBF;
    font-size: 11px;
  }

  .nav-mobile-search .search-btn {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-mobile-search .search-btn:hover {
    background: #D4650F;
  }

  .nav-mobile-search .search-btn i {
    color: #fff;
    font-size: 13px;
  }

  .nav-mobile-search .search-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .nav-mobile-search .search-advance-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 0;
    color: var(--orange);
    background: transparent;
    border: 1.5px solid var(--orange);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
  }

  .nav-mobile-search .search-advance-btn:hover {
    color: #fff;
    background: var(--orange);
  }

  .nav-mobile-search .search-advance-btn i {
    font-size: 16px;
    margin: 0;
  }

  .nav-mobile-only {
    display: block !important;
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 6px;
  }

  .nav-mobile-only a {
    color: var(--text-muted) !important;
    font-size: 13px !important;
  }

  .nav-mobile-only a i {
    width: 18px;
    color: var(--orange);
  }

  .nav-row nav ul li.nav-mobile-btn-wrap {
    display: flex !important;
    flex-direction: row;
    gap: 10px;
    padding: 8px 14px 4px;
    list-style: none;
  }

  .nav-row nav ul li.nav-mobile-btn-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex: 1;
  }

  .nav-row nav ul li.nav-mobile-btn-wrap a:first-child {
    background: var(--orange);
    color: #fff !important;
  }

  .nav-row nav ul li.nav-mobile-btn-wrap a:last-child {
    background: var(--navy-dark);
    color: #fff !important;
  }

  .nav-row nav ul li.nav-mobile-btn-wrap a i {
    font-size: 13px;
    width: 16px;
  }
}


/* Floating Btns */

.whatsapp_btn {
  position: fixed;
  bottom: 24px;
  left: 12px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.inquiry_btn {
  position: fixed;
  bottom: 80px;
  right: 5px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.call_btn{
 
    background: #E87722;
    color: #fff;
    position: fixed;
    bottom: 85px;
    left: 12px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 50%;
 

    z-index: 100000;

}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.float-btn:hover, .call_btn:hover {
  transform: scale(1.08);
}

.float-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 26px;
}

.float-whatsapp:hover {
  background: #20BD5A;
  color: #fff;
}

.draw-right-new {
    position: fixed;
    top: 50%;
    right: -75px;
    z-index: 999;
    /* transform: translateY(-50%); */
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    transition-timing-function: ease-in-out;
  
}
.draw-right-new .btn-draw-right {
    color: #fff;
    background: #d97321;
    padding: 10px 12px;
    display: flex;
    text-decoration: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-align: center;
    align-items: center;
}
.draw-right-new span {
    padding: 0 10px;
    position: relative;
    top: -1px;
    opacity: 1;
    color: #fff;
}
.draw-right-new:hover {
    right: 0
}
.float-enquiry {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
  padding: 0 18px;
  font-family: 'Inter', sans-serif;
}

.float-enquiry i {
  font-size: 15px;
}

.float-enquiry:hover {
  background: #D4650F;
  color: #fff;
}

@media (max-width: 600px) {
  .float-btns {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .float-whatsapp {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .float-enquiry {
    height: 36px;
    font-size: 12px;
    padding: 0 14px;
  }
}

/* ── ENQUIRY MODAL ── */
.enq-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  animation: enqFadeIn 0.2s ease-out;
}

@keyframes enqFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.enq-modal {
  background: #0F1E36;
  border-radius: 10px;
  width: 100%;
  max-width: 750px;
  display: grid;
  grid-template-columns: 1fr 0.70fr;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
  animation: enqSlideUp 0.3s ease-out;
  max-height: 92vh;
  overflow: hidden;
}

@keyframes enqSlideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.enq-left {
  background: #0F1E36;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.enq-left::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.enq-title {
  font-size: 21px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}

.enq-title span {
  color: #E87722;
}

.enq-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 20px;
}

.enq-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.enq-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .15s;
}

.enq-contact a:hover {
  color: #fff;
}

.enq-contact a i {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.enq-ic-mail {
  background: rgba(232, 119, 34, 0.18);
  color: #F5A24B !important;
}

.enq-ic-phone {
  background: rgba(30, 139, 62, 0.2);
  color: #4CD87E !important;
}

.enq-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.enq-feat {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.enq-feat i {
  color: #E87722;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

.enq-dots {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 8px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.enq-logo {
  width: 170px;
  height: 92px;
  object-fit: cover;
  object-position: left center;
}

.enq-dot-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.enq-dot-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E87722;
  flex-shrink: 0;
}

.enq-right {
  padding: 18px 20px 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.enq-rhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.enq-rhead h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0F1E36;
  margin: 0;
}

.enq-close {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  transition: background .15s;
}

.enq-close:hover {
  background: #eee;
}

.enq-form-grid {
  gap: 10px;
  flex: 1;
}

.enq-fgroup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.enq-flabel {
  font-size: 10.5px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.enq-fwrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e8e8e8;
  border-radius: 6px;
  transition: border-color .2s;
  background: #fafafa;
}

.enq-fwrap:focus-within {
  border-color: #E87722;
  background: #fff;
}

.enq-ficon {
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.enq-ficon i {
  font-size: 12px;
  color: #bbb;
}

.enq-fwrap:focus-within .enq-ficon i {
  color: #E87722;
}

.enq-fwrap input,
.enq-fwrap select,
.enq-fwrap textarea {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #1a1a1a;
  font-family: inherit;
  outline: none;
  padding: 5px 8px 5px 0;
}

.enq-fwrap textarea {
  resize: none;
}


.enq-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.enq-btn-submit {
  flex: 1;
  background: #E87722;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  height: 38px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}

.enq-btn-submit:hover {
  background: #d06a18;
}

.enq-btn-cancel {
  flex: 1;
  background: #fff;
  color: #666;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  height: 38px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.enq-btn-cancel:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

@media (max-width: 768px) {
  .enq-modal {
    grid-template-columns: 1fr;
    max-height: 96vh;
    max-width: 90%;
    margin: 0 auto;
    overflow: auto;
  }

  .enq-left {
    display: none;
    padding: 20px 18px;
  }

  .enq-right {
    padding: 18px;
    border-radius: 0;
  }

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

  .enq-ffull,
  .enq-captcha-row,
  .enq-btn-row {
    grid-column: 1;
  }
  .search-row {
    flex-wrap: wrap;
  }
}