/* =====================================================
   FONTS
   ===================================================== */
@font-face {
  font-family: "GeneralSans-Regular";
  src: url("/assets/static_files/fonts/GeneralSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "GeneralSans-Medium";
  src: url("/assets/static_files/fonts/GeneralSans-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "GeneralSans";
  /* Added as generic too */
  src: url("/assets/static_files/fonts/GeneralSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Nocturnal-ExtraLight";
  src: url("/assets/static_files/fonts/Nocturnal-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Nocturnal-Light";
  src: url("/assets/static_files/fonts/Nocturnal-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Nocturnal-SemiBold";
  src: url("/assets/static_files/fonts/Nocturnal-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Nocturnal";
  /* Generic entry */
  src: url("/assets/static_files/fonts/Nocturnal-Light.ttf") format("truetype");
}

/* More Forceful Global Font */
* {
  font-family: inherit;
}

body {
  font-family: "GeneralSans-Regular", "GeneralSans", sans-serif !important;
}

p,
li,
input,
button,
textarea,
select,
label {
  font-family: "GeneralSans-Regular", "GeneralSans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: "Nocturnal-Light", "Nocturnal", "GeneralSans-Medium", sans-serif !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}


/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: #000;
}

:root {
  --primary: #8f4555;
  /* Frontend Gold */
  --primary-dark: #8f4555;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --surface: #ffffff;
  --surface-hover: #f8f9fc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e5e7ef;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-md: 12px;
  --radius-xl: 20px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  /* Ensure smooth transitions on resize/scroll */
}

@media (min-width: 769px) {

  /* Include Tablets */
  .header {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 40px);
    max-width: calc(100vw - 40px);
    background: rgba(17, 15, 15, 0.4);
    margin: 8px 0;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    transition: width 0.4s ease, border-radius 0.4s ease, background 0.4s ease;
  }
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 45px;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 1%;
  margin-left: auto;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.2px;
  transition: 0.3s;
  font-family: "GeneralSans-Medium", "sans-serif";
}

.nav a:hover {
  opacity: 0.7;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 24px;
}

.book-btn {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 8px 22px;
  border-radius: 40px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  transition: color .35s ease;
  z-index: 1;
}

/* White fill layer */
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: -1;
}

.book-btn span {
  /*font-size: 16px;*/
  font-family: "GeneralSans-Medium", sans-serif;
}

/* Hover */
.book-btn:hover {
  color: #000;
}

.book-btn:hover::before {
  transform: scaleX(1);
}

.menu-toggle {
  width: 28px;
  height: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  transition: 0.35s ease;
}



/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: #0a0a0a;
  padding: 40px;
  transition: 0.45s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.close-btn {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 40px;
  transition: 0.3s;
}

.close-btn:hover {
  opacity: 0.7;
}

.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  opacity: 0.7;
  transform: translateX(6px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/* =====================================================
   FOOTER STYLES
   ===================================================== */
.footer {
  background: #000;
  color: #fff;
  padding-top: 0;
}

.footer-top {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.download-brochure-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 14px 45px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.download-brochure-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.footer-main {
  background: #000;
  padding: 80px 0 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-description {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 17px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  padding-left: 0px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i {
  width: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

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


.footer-office h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
}

.footer-office p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.office-hours {
  margin-top: 12px;
  font-size: 12px !important;
}

.footer-map {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-bottom {
  border-top: 1px solid #8f4555;
  padding: 20px 50px;
  background-color: #000000 !important;
  margin: 0 auto;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #ffffff !important;
}

.footer-legal span {
  color: #ccc !important;
  font-weight: 500;
}


/* =====================================================
   MEDIA QUERIES - HEADER
   ===================================================== */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

}

@media (max-width: 768px) {
  .header-inner {
    padding: 15px 20px;
    ;
  }
  .header-right {
      gap:10px;
  }

  .logo img {
    height: 20px;
  }

  .book-btn {
    padding: 4px 20px;
    font-size: 10px;
    gap: 10px;
  }
}

/* =====================================================
   PREMIUM MOBILE SIDEBAR (Redesigned)
   ===================================================== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-logo img {
  height: 45px;
}

.close-sidebar {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.close-sidebar:hover {
  transform: rotate(90deg);
  color: #ffffff;
}

.sidebar-content-wrapper {
  flex: 1;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 40px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 161, 74, 0.4) transparent;
}

.sidebar-content-wrapper::-webkit-scrollbar {
  width: 4px;
}

.sidebar-content-wrapper::-webkit-scrollbar-thumb {
  background: rgba(201, 161, 74, 0.4);
  border-radius: 10px;
}

.menu-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(50px);
}

.menu-view.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.menu-view.exit {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50px);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Increased for premium spacing */
  padding-bottom: 50px;
  /* Space at end of scroll */
}

.sidebar-link {
  font-size: 14px;
  font-weight: 500;
  color: #fff !important;
  /* Force true white */
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1.5;
  padding: 5px 0;
}

.sidebar-link:hover {
  color: #ffffff !important;
  transform: translateX(10px);
}

.sidebar-link span {
  font-size: 16px;
  opacity: 0.7;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.back-link:hover {
  color: #ffffff;
}

.sub-menu-title {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.sidebar-link.sub {
  font-size: 14px;
}

.sidebar-footer {
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #ffffff;
  border: 1px solid white;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 30px;

  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color .35s ease;
  font-size: 14px;
}

/* Fill layer */
.sidebar-book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: -1;
}

/* Hover */
.sidebar-book-btn:hover {
  color: #000000;/
}

.sidebar-book-btn:hover::before {
  transform: scaleX(1);
}

.sidebar-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.sidebar-socials a {
  color: #fff;
  font-size: 18px;
  opacity: 0.6;
  transition: 0.3s;
}

.sidebar-socials a:hover {
  opacity: 1;
  color: #8b4040;
  transform: translateY(-5px);
}

.sidebar-contact {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.sidebar-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .mobile-sidebar {
    max-width: 100%;
  }

  .sidebar-header {
    padding: 20px 25px;
  }

  .sidebar-logo img {
    height: 35px;
  }

  .sidebar-content-wrapper,
  .menu-view {
    padding: 0 25px;
  }

  .sidebar-footer {
    padding: 25px;
  }

  .sidebar-link {
    font-size: 18px;
    gap: 10px;
  }

  .sidebar-link.sub {
    font-size: 18px;
  }

  .sidebar-socials {
    gap: 15px;
    margin-bottom: 20px;
  }

  .sidebar-book-btn {
    padding: 12px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* Tablet refinement */
@media (min-width: 481px) and (max-width: 1024px) {
  .mobile-sidebar {
    max-width: 350px;
  }

  .sidebar-link {
    font-size: 20px;
  }
}

/* =====================================================
   MEDIA QUERIES - FOOTER
   ===================================================== */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-map {
    grid-column: 1 / -1;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 40px 20px;
  }

  .download-brochure-btn {
    padding: 12px 35px;
    font-size: 12px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-container {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-map {
    grid-column: 1;
    height: 220px;
  }

  .footer-bottom {
    padding: 30px 20px;
    background-color: #fff !important;
    border-top: 1px solid #8f4555;
    padding: 20px 50px;
    background-color: #000000 !important;
    margin: 0 auto;
  }

  .footer-bottom .container {
    flex-direction: column !important;
    gap: 15px;
    text-align: center;
    align-items: center !important;
  }

  .footer-legal {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-legal span {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 30px 15px;
  }

  .download-brochure-btn {
    padding: 10px 30px;
    font-size: 11px;
  }

  .footer-logo img {
    height: 38px;
  }

  .footer-description {
    font-size: 12px;
  }

  .footer-social a {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .footer-heading {
    font-size: 13px;
  }

  .footer-links li a,
  .footer-contact li,
  .footer-office p {
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-legal {
    font-size: 11px;
  }
}


/* ===== Overlay ===== */
.srvbv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
  z-index: 999999;
}

.srvbv-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ===== Modal ===== */
.srvbv-modal {
  background: #ffffff;
  width: 92%;
  max-width: 460px;
  padding: 34px 32px 32px;
  position: relative;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.12);
  /* resting state — above screen */
  transform: translateY(-140px);
  opacity: 0;
  will-change: transform, opacity;
}

/* OPEN */
.srvbv-modal.drop-in {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform .9s cubic-bezier(.16, 1, .3, 1),
    opacity .55s ease;
}

/* CLOSE */
.srvbv-modal.drop-out {
  transform: translateY(-140px);
  opacity: 0;
  transition:
    transform .5s cubic-bezier(.55, 0, 1, .45),
    opacity .35s ease;
}


/* ===== Header row ===== */
.srvbv-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.srvbv-header-text {
  flex: 1;
}

/* ===== Close Button ===== */
.srvbv-close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #444;
  line-height: 1;
  margin-top: 2px;
  transition: background .25s, color .25s;
}

.srvbv-close:hover {
  background: #040001;
  color: #fff;
}

/* ===== Eyebrow / Title / Subtitle ===== */
.srvbv-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8f4555;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.srvbv-header-text h2 {
  font-size: 24px;
  margin: 0 0 5px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}

.srvbv-header-text p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ===== Form Fields ===== */
.srvbv-field {
  margin-bottom: 12px;
}

.srvbv-field input,
.srvbv-field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #e4e4e4;
  background: #fafafa;
  font-size: 14px;
  color: #222;
  transition: .3s;
  outline: none;
  box-sizing: border-box;
}

.srvbv-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #0a0002 50%),
    linear-gradient(135deg, #000000 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  background-color: #fafafa;
  cursor: pointer;
}

.srvbv-field input:focus,
.srvbv-field select:focus {
  border-color: #c4bfbf;
  background: #fff;
}

/* ===== Submit — RIGHT aligned, auto width ===== */
.srvbv-form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.srvbv-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 35px;
  border-radius: 40px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: transform .3s, box-shadow .3s;
}

.srvbv-submit:hover {
  transform: translateY(-2px);
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
  .srvbv-modal {
    padding: 28px 20px 24px;
  }

  .srvbv-header-text h2 {
    font-size: 20px;
  }

  .srvbv-field input,
  .srvbv-field select {
    padding: 12px;
  }

  .srvbv-form-footer {
    justify-content: stretch;
  }

  .srvbv-submit {
    width: 100%;
    justify-content: center;
  }
}


/* custom alert and etc */

/* PRELOADER STYLES */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 140px;
  /* Slightly larger */
  z-index: 2;
  opacity: 0;
  transform: scale(0.9);
  filter: drop-shadow(0 0 20px rgba(201, 161, 74, 0.1));
}

.loader-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Stealth edge */
  border-top: 2px solid #ffffff;
  /* Premium white tip */
  border-right: 2px solid #ffffff;
  /* Gold accent */
  border-radius: 50%;
  z-index: 1;
}

#ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(201, 161, 74, 0.2);
  z-index: 9999;
  display: none;
}

#ajax-loader .bar {
  width: 0%;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(201, 161, 74, 0.5);
}

/* ===== Custom Alert Toasts - Synced ===== */
.app-alert-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000000;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  pointer-events: none;
}

@media (max-width: 576px) {
  .app-alert-container {
    bottom: 1rem;
    right: 0;
    left: 0;
    padding: 0 1rem;
    max-width: 100%;
    align-items: center;
  }

  .app-alert {
    width: 100%;
    transform: translateY(120%);
  }

  .app-alert.show {
    transform: translateY(0);
  }

  .app-alert.hiding {
    transform: translateY(120%);
  }
}

.app-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid transparent;
  transform: translateX(120%);
  opacity: 0;
  transition: all var(--transition-normal);
  pointer-events: all;
  position: relative;
  overflow: hidden;
}

.app-alert.show {
  transform: translateX(0);
  opacity: 1;
}

.app-alert.hiding {
  transform: translateX(120%);
  opacity: 0;
}

.app-alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.app-alert-body {
  flex: 1;
  min-width: 0;
}

.app-alert-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.app-alert-msg {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.app-alert-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  font-size: 1.25rem;
  line-height: 1;
  transition: color 0.2s;
}

.app-alert-close:hover {
  color: var(--text-primary);
}

.app-alert-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  transition: width linear;
}

.app-alert.success {
  border-left-color: var(--success);
}

.app-alert.success .app-alert-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.app-alert.success .app-alert-title {
  color: var(--success);
}

.app-alert.success .app-alert-progress {
  background: var(--success);
}

.app-alert.error {
  border-left-color: var(--danger);
}

.app-alert.error .app-alert-icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.app-alert.error .app-alert-title {
  color: var(--danger);
}

.app-alert.error .app-alert-progress {
  background: var(--danger);
}

.app-alert.warning {
  border-left-color: var(--warning);
}

.app-alert.warning .app-alert-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.app-alert.warning .app-alert-title {
  color: var(--warning);
}

.app-alert.warning .app-alert-progress {
  background: var(--warning);
}

/* ===== Custom Confirm Dialog - Synced ===== */
.app-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.app-confirm-overlay.show {
  opacity: 1;
  visibility: visible;
}

.app-confirm-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-confirm-overlay.show .app-confirm-box {
  transform: scale(1);
}

.app-confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.app-confirm-icon.danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.app-confirm-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.app-confirm-message {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.app-confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.app-confirm-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 120px;
}

.btn-confirm-cancel {
  background: #f1f5f9;
  color: #475569;
  border: none;
}

.btn-confirm-cancel:hover {
  background: #e2e8f0;
}

.btn-confirm-ok {
  background: var(--danger);
  color: #fff;
  border: none;
}

.btn-confirm-ok:hover {
  background: #dc2626;
  color: #fff;
}

/* ===== Loader Overlay - Synced ===== */
.app-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgb(255 255 255 / 0%);
  backdrop-filter: blur(10px);
  z-index: 999999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.app-loader-overlay.show {
  opacity: 1;
  visibility: visible;
}

.app-loader-spinner {
  text-align: center;
}

.loader-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1rem;
}

.loader-dots span {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: dotLoader 1.4s infinite ease-in-out both;
}

.loader-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loader-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes dotLoader {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1.0);
    opacity: 1;
  }
}

.loader-text {
  color: #ffffffff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.2px;
  background: #000000;
  padding: 12px 35px 14px 35px;
  border-radius: 10px;
}


/* enquiry or download brwoher popup  */

.gen-enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 1s ease;
}

.gen-enquiry-overlay.is-open {
  display: flex;
  opacity: 1;
}

.gen-enquiry-modal {
  background: #fff;
  width: 95%;
  max-width: 500px;
  border-radius: 1px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1s ease;
}

.gen-enquiry-modal.drop-in {
  transform: translateY(0);
  opacity: 1;
}

.gen-enquiry-modal.drop-out {
  transform: translateY(50px);
  opacity: 0;
}

.gen-enquiry-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  transition: 1s;
  line-height: 1;
  padding: 5px;
}

.gen-enquiry-close:hover {
  color: #1a1a1a;
  transform: rotate(90deg);
}

.srvbv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
}

@media (max-width: 480px) {
  .gen-enquiry-modal {
    padding: 30px 20px;
  }

  .srvbv-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* ================= HEADER SEARCH SLIM MODAL ================= */
.header-search-trigger {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search-trigger:hover {
  color: #888;
  transform: scale(1.1);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding-top: 15vh;
  /* Improved vertical alignment */
  backdrop-filter: blur(8px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 90%;
  max-width: 550px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.search-overlay.active .search-container {
  transform: translateY(0) scale(1);
}

.search-overlay-close {
  background: #ffffff00;
  position: absolute;
  top: -35px;
  right: 2px;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  color: #ffffff;
  z-index: 11;
  border-radius: 50%;
  border: 1px solid;
}fv

.search-overlay-close:hover {
  background: #000000;
  color: #ffffff;
}

.search-input-wrapper {
  margin-bottom: 0px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: #bbb;
  font-size: 16px;
  pointer-events: none;
  z-index: 5;
}

#projectSearchInput {
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #000 !important;
  border-radius: 8px;
  padding: 12px 40px 12px 40px;
  font-family: var(--font-ui, sans-serif);
  font-size: 15px;
  color: #111;
  outline: none;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

#projectSearchInput:focus {
  background: #fff;
  border-color: #000 !important;
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  background: #eee;
  border: none;
  color: #666;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 10;
  pointer-events: auto;
  /* Force clickability */
}

.search-clear-btn:hover {
  background: #111;
  color: #fff;
}

.search-results-wrapper {
  max-height: 350px;
  overflow-y: auto;
  margin-top: 15px;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}

/* Hide divider if empty */
.search-results-wrapper:empty {
  border-top: none;
  padding-top: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
  margin-bottom: 4px;
}

.search-result-item:hover {
  background: #f8f8f8;
  transform: translateX(4px);
}

.search-result-img {
  width: 60px;
  height: 42px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-title {
  display: block;
  font-weight: 600;
  color: #111;
  font-size: 15px;
  margin-bottom: 1px;
}

.search-result-meta {
  font-size: 12px;
  color: #888;
}

.search-no-results {
  padding: 15px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.search-scroll-loader {
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #888;
  font-family: var(--font-ui);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

/* Custom Scrollbar for search results */
.search-results-wrapper::-webkit-scrollbar {
  width: 3px;
}

.search-results-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.search-results-wrapper::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}

.search-results-wrapper::-webkit-scrollbar-thumb:hover {
  background: #8f4555;
}

@media (max-width: 768px) {
  .header-search-trigger {
    margin-right: 10px;
  }

  .search-overlay-close {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }

  .search-result-img {
    width: 80px;
    height: 55px;
  }

  .search-result-title {
    font-size: 16px;
  }
}

/*/////////////////////////////////// rera css//////////////////////////////////////////*/

.rera-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.rera-popup.active {
    opacity: 1;
    visibility: visible;
}

.rera-box {
    width: 700px;
    max-width: 90%;
    background: #fff;
    padding: 25px;
    border-radius: 0px;
    text-align: center;

    transform: translateY(30px);
    transition: all 0.4s ease;
}

.rera-popup.active .rera-box {
    transform: translateY(0);
}

.rera-box h2 {
    color: #8f4555;
    margin-bottom: 15px;
}

.rera-content {
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 20px;
}

.rera-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

#agreeBtn {
    background: #8f4555;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#agreeBtn:hover {
    background: #8f4555;
}



