/* ==========================================================================
   VAINAVI CELESTIUM — PREMIUM THEME
   Design language derived from Vainavi-Celestium E-Brochure:
   deep midnight-navy textured canvases, gold serif display type with star
   accents, gold hairline frames, gold triangle separators, icy watercolor
   light sections. Loaded after all legacy CSS — overrides by cascade.
   ========================================================================== */

/* ----------------------------------------------------------------------
   0. Fonts
---------------------------------------------------------------------- */
@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Book.woff2") format("woff2"),
    url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Bold.woff2") format("woff2"),
    url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Light.woff2") format("woff2"),
    url("../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------------
   1. Tokens
---------------------------------------------------------------------- */
:root {
  --cel-navy-950: #050a1e;
  --cel-navy-900: #081029;
  --cel-navy-800: #0c1638;
  --cel-navy-700: #12204e;
  --cel-royal: #1a2c66;
  --cel-blue: #27408f;

  --cel-gold: #c9a24b;
  --cel-gold-light: #e9d6a0;
  --cel-gold-deep: #9a7a2e;
  --cel-gold-grad: linear-gradient(
    115deg,
    #a5813a 0%,
    #d9bc6d 25%,
    #f3e5b5 50%,
    #d9bc6d 75%,
    #a5813a 100%
  );

  --cel-ice: #eff5fb;
  --cel-ice-2: #e1ebf6;
  --cel-ink: #16233f;
  --cel-ink-soft: #43506b;

  --cel-serif: "Cormorant Garamond", "Times New Roman", serif;
  --cel-sans: "Gotham", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --cel-shadow-soft: 0 18px 45px rgba(5, 10, 30, 0.16);
  --cel-shadow-gold: 0 10px 30px rgba(201, 162, 75, 0.22);
  --cel-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Textures (inline SVG turbulence — mimics the brochure's mottled canvas) */
:root {
  --cel-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  --cel-cloud: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------------
   2. Global resets on top of legacy CSS
---------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  background: var(--cel-navy-950) !important;
}

body {
  font-family: var(--cel-sans) !important;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cel-ink);
  background-color: var(--cel-navy-900) !important;
  letter-spacing: 0.01em;
}

section[id],
#contact {
  scroll-margin-top: 84px;
}

p,
li,
a,
button,
input,
textarea,
select,
label,
span {
  font-family: inherit;
}

::selection {
  background: var(--cel-gold);
  color: var(--cel-navy-900);
}

img {
  max-width: 100%;
}

/* Dark canvas — brochure navy texture */
.cel-dark {
  position: relative;
  background:
    radial-gradient(
      120% 90% at 15% 0%,
      rgba(45, 75, 165, 0.35) 0%,
      rgba(45, 75, 165, 0) 55%
    ),
    radial-gradient(
      110% 90% at 88% 100%,
      rgba(38, 62, 140, 0.3) 0%,
      rgba(38, 62, 140, 0) 55%
    ),
    linear-gradient(160deg, #0d1840 0%, #081029 48%, #0a1233 100%) !important;
  color: #e8edf7;
}

.cel-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cel-noise);
  opacity: 0.5;
  pointer-events: none;
}

.cel-dark > * {
  position: relative;
  z-index: 1;
}

/* Light canvas — brochure icy watercolor */
.cel-ice {
  position: relative;
  background:
    radial-gradient(
      90% 70% at 80% 10%,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(165deg, #f2f7fc 0%, #e3edf7 55%, #edf4fa 100%) !important;
  color: var(--cel-ink);
}

.cel-ice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cel-cloud);
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cel-ice > * {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------------
   3. Section headers — serif + gold star divider
---------------------------------------------------------------------- */
.cel-sec-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
  padding: 0 12px;
}

.cel-kicker {
  display: inline-block;
  font-family: var(--cel-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cel-gold);
  margin-bottom: 14px;
}

.cel-ice .cel-kicker {
  color: var(--cel-gold-deep);
}

.section-title,
.cel-title {
  font-family: var(--cel-serif) !important;
  font-weight: 600;
  font-size: 42px !important;
  line-height: 1.15;
  letter-spacing: 0.04em !important;
  color: var(--cel-ink);
  margin: 0;
  text-align: center;
}

.cel-dark .section-title,
.cel-dark .cel-title,
.cel-dark h1.section-title,
.cel-dark h2.section-title {
  color: #f4f7fd;
}

.cel-dark .section-title span,
.section-title span {
  color: var(--cel-gold) !important;
  font-style: italic;
}

/* gold star divider:  ───── ✦ ───── */
.cel-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  width: min(340px, 70%);
}

.cel-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 75, 0) 0%,
    rgba(201, 162, 75, 0.9) 100%
  );
}

.cel-divider .line:last-child {
  background: linear-gradient(
    90deg,
    rgba(201, 162, 75, 0.9) 0%,
    rgba(201, 162, 75, 0) 100%
  );
}

.cel-divider .star {
  color: var(--cel-gold);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(233, 214, 160, 0.8);
}

/* ----------------------------------------------------------------------
   4. Header / navigation
---------------------------------------------------------------------- */
header,
header.normal-header {
  height: 72px;
  padding: 14px 0;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 32, 0.96) 0%,
    rgba(8, 16, 41, 0.88) 100%
  ) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(201, 162, 75, 0.35),
    0 12px 30px rgba(4, 8, 24, 0.45);
}

.logo-wrapper > a,
.logo-wrapper > a > img {
  width: 128px;
  margin-top: 0px;
}

.nav-wrapper {
  padding-top: 10px;
}

nav.nav-links a {
  font-family: var(--cel-sans) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dde5f2 !important;
  margin: 0 16px;
  padding: 6px 2px;
  position: relative;
  background: transparent;
  transition: color 0.3s var(--cel-ease);
}

nav.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--cel-gold);
  transition: all 0.35s var(--cel-ease);
  transform: translateX(-50%);
}

nav.nav-links a:hover,
nav.nav-links a:focus {
  color: var(--cel-gold-light) !important;
}

nav.nav-links a:hover::after {
  width: 100%;
}

/* premium hamburger — gold-framed square, staggered gold lines, morphs to ✕ */
.burger-menu {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 162, 75, 0.55);
  outline: 1px solid rgba(201, 162, 75, 0.22);
  outline-offset: 3px;
  border-radius: 10px;
  background: radial-gradient(
    120% 120% at 30% 20%,
    rgba(39, 64, 143, 0.35) 0%,
    rgba(6, 11, 32, 0.6) 100%
  );
  box-shadow: 0 6px 18px rgba(4, 8, 24, 0.45);
  cursor: pointer;
  transition: all 0.35s var(--cel-ease);
  z-index: 1002;
}

.burger-menu:hover,
body.cel-nav-open .burger-menu {
  background: var(--cel-gold-grad);
  background-size: 220% auto;
  border-color: var(--cel-gold-light);
  box-shadow:
    0 6px 18px rgba(4, 8, 24, 0.45),
    var(--cel-shadow-gold);
}

.cel-burger {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.cel-burger span {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b8944a 0%, #f3e5b5 55%, #d9bc6d 100%);
  box-shadow: 0 0 6px rgba(233, 214, 160, 0.35);
  transition: all 0.45s var(--cel-ease);
}

.cel-burger span:nth-child(1) {
  top: 0;
  width: 100%;
}

.cel-burger span:nth-child(2) {
  top: 6px;
  width: 68%;
}

.cel-burger span:nth-child(3) {
  top: 12px;
  width: 100%;
}

.burger-menu:hover .cel-burger span {
  width: 100%;
  background: #081029;
  box-shadow: none;
}

/* morph to a refined ✕ while the menu is open */
body.cel-nav-open .cel-burger span {
  background: #081029;
  box-shadow: none;
}

body.cel-nav-open .cel-burger span:nth-child(1) {
  top: 6px;
  width: 100%;
  transform: rotate(45deg);
}

body.cel-nav-open .cel-burger span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

body.cel-nav-open .cel-burger span:nth-child(3) {
  top: 6px;
  width: 100%;
  transform: rotate(-45deg);
}

/* offcanvas full-screen menu (tablet & mobile) — overlays the header too */
@media all and (max-width: 1024px) {
  /* tidy mobile header: logo and burger vertically centred */
  header,
  header.normal-header {
    height: 64px;
    padding: 0;
  }

  header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
  }

  header .container-fluid .col-md-1 {
    float: none;
    width: auto;
    padding: 0;
  }

  header .container-fluid .col-md-10 {
    float: none;
    width: auto;
    padding: 0;
    flex: 1;
  }

  .logo-wrapper {
    left: 0 !important;
    float: none !important;
  }

  .logo-wrapper > a,
  .logo-wrapper > a > img {
    width: 116px;
    margin: 0;
  }

  .burger-menu {
    display: flex !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: 40px;
    height: 40px;
  }

  section[id],
  #contact {
    scroll-margin-top: 74px;
  }

  .nav-wrapper {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100vh;
    height: 100dvh;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(
        120% 90% at 15% 0%,
        rgba(45, 75, 165, 0.35) 0%,
        rgba(45, 75, 165, 0) 55%
      ),
      linear-gradient(160deg, #0d1840 0%, #081029 55%, #0a1233 100%) !important;
    box-shadow: none;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.55s var(--cel-ease),
      visibility 0.55s;
    overflow-y: auto;
    z-index: 1000;
  }

  body.cel-nav-open .nav-wrapper {
    transform: translateX(0);
    visibility: visible;
  }

  body.cel-nav-open {
    overflow: hidden;
  }

  /* keep the close control above the overlay */
  body.cel-nav-open .burger-menu {
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    z-index: 1002;
  }

  .nav-wrapper nav.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 30px 24px;
  }

  /* brand mark atop the offcanvas menu */
  .nav-wrapper nav.nav-links::before {
    content: "";
    display: block;
    width: 148px;
    height: 42px;
    margin: 0 auto 6px;
    background: url(../images/logo/Logo.png) no-repeat center / contain;
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.45s var(--cel-ease) 0.08s,
      transform 0.45s var(--cel-ease) 0.08s;
  }

  .nav-wrapper nav.nav-links::after {
    content: "✦";
    display: block;
    color: var(--cel-gold);
    font-size: 13px;
    margin-top: 26px;
    opacity: 0;
    transition: opacity 0.45s var(--cel-ease) 0.5s;
    text-shadow: 0 0 12px rgba(233, 214, 160, 0.8);
  }

  body.cel-nav-open nav.nav-links::before {
    opacity: 1;
    transform: none;
  }

  body.cel-nav-open nav.nav-links::after {
    opacity: 1;
  }

  nav.nav-links a {
    background: transparent !important;
    display: block;
    width: min(420px, 86%);
    margin: 0;
    padding: 17px 0;
    font-size: 14px;
    letter-spacing: 0.34em;
    text-align: center;
    border-bottom: 1px solid rgba(201, 162, 75, 0.18);
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.45s var(--cel-ease),
      transform 0.45s var(--cel-ease),
      color 0.3s;
  }

  nav.nav-links a:last-child {
    border-bottom: none;
  }

  body.cel-nav-open nav.nav-links a {
    opacity: 1;
    transform: none;
  }

  body.cel-nav-open nav.nav-links a:nth-child(1) {
    transition-delay: 0.12s;
  }
  body.cel-nav-open nav.nav-links a:nth-child(2) {
    transition-delay: 0.18s;
  }
  body.cel-nav-open nav.nav-links a:nth-child(3) {
    transition-delay: 0.24s;
  }
  body.cel-nav-open nav.nav-links a:nth-child(4) {
    transition-delay: 0.3s;
  }
  body.cel-nav-open nav.nav-links a:nth-child(5) {
    transition-delay: 0.36s;
  }
  body.cel-nav-open nav.nav-links a:nth-child(6) {
    transition-delay: 0.42s;
  }
}

/* ----------------------------------------------------------------------
   5. Hero
---------------------------------------------------------------------- */
#home {
  background: var(--cel-navy-900);
}

#home .carousel {
  position: relative;
}

#home .carousel-inner .item img {
  width: 100%;
  display: block;
}

/* cinematic bottom fade into the navy strip */
#home .carousel-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 41, 0) 0%,
    rgba(8, 16, 41, 0.55) 70%,
    rgba(8, 16, 41, 0.82) 100%
  );
  pointer-events: none;
  z-index: 2;
}

#home .carousel-control {
  width: 8%;
  background: none !important;
  opacity: 1;
  z-index: 3;
}

#home .carousel-control span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(233, 214, 160, 0.75);
  outline: 1px solid rgba(201, 162, 75, 0.3);
  outline-offset: 3px;
  background: rgba(8, 16, 41, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(4, 8, 24, 0.55);
  text-shadow: none;
  transition: all 0.35s var(--cel-ease);
}

#home .carousel-control.left span {
  left: 26px;
}
#home .carousel-control.right span {
  right: 26px;
}

/* premium chevrons instead of the legacy arrow images */
#home .carousel-control span img {
  display: none;
}

#home .carousel-control span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  color: var(--cel-gold-light);
  transition: color 0.35s var(--cel-ease);
}

#home .carousel-control.left span::before {
  content: "\f053" !important;
}
#home .carousel-control.right span::before {
  content: "\f054" !important;
}

#home .carousel-control:hover span {
  background: var(--cel-gold-grad);
  background-size: 220% auto;
  border-color: var(--cel-gold-light);
  box-shadow:
    0 12px 30px rgba(4, 8, 24, 0.55),
    var(--cel-shadow-gold);
}

#home .carousel-control:hover span::before {
  color: #081029;
}

/* gold ribbon under the hero — brochure cover facts */
.cel-hero-strip {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(201, 162, 75, 0.16) 0%,
      rgba(201, 162, 75, 0.02) 18%,
      rgba(201, 162, 75, 0.02) 82%,
      rgba(201, 162, 75, 0.16) 100%
    ),
    linear-gradient(180deg, #0b1434 0%, #081029 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.4);
  border-bottom: 1px solid rgba(201, 162, 75, 0.4);
  padding: 16px 20px;
  z-index: 4;
}

.cel-hero-strip ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cel-hero-strip li {
  font-family: var(--cel-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cel-gold-light);
  padding: 0 28px;
  white-space: nowrap;
}

.cel-hero-strip li + li {
  border-left: 1px solid rgba(201, 162, 75, 0.35);
}

@media (max-width: 767px) {
  .cel-hero-strip ul {
    flex-direction: column;
    gap: 7px 0;
  }

  .cel-hero-strip li {
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .cel-hero-strip li + li {
    border-left: none;
  }

  #home .carousel-control span {
    width: 38px;
    height: 38px;
  }

  #home .carousel-control.left span {
    left: 10px;
  }
  #home .carousel-control.right span {
    right: 10px;
  }

  #home .carousel-inner::after {
    height: 60px;
  }
}

/* ----------------------------------------------------------------------
   6. Overview + lead form
---------------------------------------------------------------------- */
#overview {
  padding: 64px 0 56px !important;
}

/* legacy glyphicon margins push the hero arrows off-screen on desktop */
#home .carousel-control .glyphicon-chevron-left {
  margin-left: 0 !important;
}

#home .carousel-control .glyphicon-chevron-right {
  margin-right: 0 !important;
}

.cel-overview-flex {
  display: flex;
  align-items: stretch;
  gap: 48px;
  float: none !important;
}

.cel-overview-flex::before,
.cel-overview-flex::after {
  display: none !important;
}

.cel-overview-copy {
  flex: 1 1 60%;
  width: auto !important;
  float: none !important;
  padding: 0 !important;
  text-align: left;
}

.cel-overview-copy h1.section-title {
  font-size: 34px !important;
  text-align: left;
  color: #f4f7fd;
  margin-bottom: 6px;
}

.cel-overview-copy .cel-divider {
  margin-left: 0;
  justify-content: flex-start;
  width: 220px;
  margin-bottom: 26px;
}

.cel-overview-copy .section-subtitle12 {
  font-family: var(--cel-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: #c3cde0;
  text-align: left;
}

.cel-overview-copy .section-subtitle12 p {
  margin: 0 0 16px;
  font-size: inherit;
  line-height: inherit;
}

.cel-overview-copy .section-subtitle12 p:first-child::first-letter {
  font-family: var(--cel-serif);
  font-size: 340%;
  line-height: 0.8;
  float: left;
  margin: 6px 10px 0 0;
  color: var(--cel-gold);
}

/* the lead-form card — navy glass with gold frame */
.cel-form-card {
  flex: 1 1 40%;
  width: auto !important;
  float: none !important;
  padding: 0 !important;
  display: flex;
  align-self: flex-start;
  position: sticky;
  top: 96px;
}

.cel-form-card .modal-body {
  width: 100%;
  position: relative;
  background:
    radial-gradient(
      120% 100% at 50% 0%,
      rgba(39, 64, 143, 0.45) 0%,
      rgba(18, 32, 78, 0.2) 60%
    ),
    linear-gradient(180deg, #101c46 0%, #0b1434 100%) !important;
  border: 1px solid rgba(201, 162, 75, 0.55);
  outline: 1px solid rgba(201, 162, 75, 0.22);
  outline-offset: 5px;
  border-radius: 4px;
  padding: 40px 34px 34px !important;
  box-shadow: var(--cel-shadow-soft);
}

.cel-form-card .modal-body::before {
  content: "✦";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cel-navy-800);
  color: var(--cel-gold);
  padding: 0 14px;
  font-size: 15px;
  line-height: 28px;
}

.cel-form-card h2.text4,
.cel-form-card h2.tits {
  font-family: var(--cel-serif) !important;
  font-size: 23px !important;
  font-weight: 600;
  line-height: 1.45 !important;
  color: #f4f7fd !important;
  text-align: center;
  margin: 0 0 24px;
}

.cel-form-card h2 b {
  color: var(--cel-gold-light);
  font-weight: 600;
  font-style: italic;
}

/* form fields — shared by overview card, contact form and modals */
.cel-form-card .form-control,
#contact .form-control,
.modal .form-control {
  height: 50px !important;
  font-family: var(--cel-sans) !important;
  font-size: 14px !important;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #f4f7fd !important;
  background: rgba(6, 11, 32, 0.55) !important;
  border: 1px solid rgba(201, 162, 75, 0.4) !important;
  border-radius: 2px;
  padding: 6px 16px !important;
  width: 100%;
  box-shadow: none;
  transition: all 0.3s var(--cel-ease);
}

.cel-form-card .form-control::placeholder,
#contact .form-control::placeholder,
.modal .form-control::placeholder {
  color: #8e9bb8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11.5px;
}

.cel-form-card .form-control:focus,
#contact .form-control:focus,
.modal .form-control:focus {
  border-color: var(--cel-gold) !important;
  background: rgba(6, 11, 32, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
  outline: none;
}

/* kill number-input spinners for the mobile field */
input.number-only::-webkit-outer-spin-button,
input.number-only::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.number-only {
  -moz-appearance: textfield;
  appearance: textfield;
}

.cel-form-card .frm-gro,
.modal .frm-gro {
  height: auto;
  min-height: 62px;
  margin-bottom: 4px;
}

.cel-form-card label.error,
#contact label.error,
.modal label.error {
  color: #e8a9a9 !important;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 4px 0 0;
}

.cel-form-card .check,
#contact .check,
.modal .check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 18px;
}

.cel-form-card .check input[type="checkbox"],
#contact .check input[type="checkbox"],
.modal .check input[type="checkbox"] {
  accent-color: var(--cel-gold);
  margin-top: 3px;
  margin-bottom: 0 !important;
  flex: none;
}

.cel-form-card .check p,
#contact .check p,
.modal .check p {
  font-family: var(--cel-sans) !important;
  font-size: 11.5px !important;
  font-weight: 300;
  color: #a9b5ce !important;
  margin: 0;
  text-align: left;
}

.cel-form-card .check a,
#contact .check a,
.modal .check a {
  color: var(--cel-gold-light) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* gold CTA button */
.btn-submit,
button.btn-submit {
  display: inline-block;
  width: 100%;
  font-family: var(--cel-sans) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #081029 !important;
  background: var(--cel-gold-grad) !important;
  background-size: 220% auto !important;
  border: none !important;
  border-radius: 2px;
  padding: 15px 20px !important;
  box-shadow: var(--cel-shadow-gold);
  transition: all 0.4s var(--cel-ease) !important;
}

.btn-submit:hover,
.btn-submit:focus {
  background-position: right center !important;
  box-shadow: 0 14px 34px rgba(201, 162, 75, 0.4);
  transform: translateY(-1px);
  color: #081029 !important;
}

.btn-submit span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit;
  text-align: center;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

/* arrow lives in the flow — can never be clipped */
.btn-submit span::after {
  content: "";
  flex: none;
  width: 30px;
  height: 13px;
  background: url(../images/icon-arrow.webp) no-repeat center / contain;
}

.btn-submit::before {
  display: none !important;
}

/* ----------------------------------------------------------------------
   7. Highlights — brochure arc card with gold triangles
---------------------------------------------------------------------- */
.hightlight {
  padding: 60px 0 64px !important;
}

.cel-arc-card {
  position: relative;
  /* max-width: 1120px; */
  margin: 0 auto;
  background:
    radial-gradient(
      130% 100% at 50% 0%,
      rgba(39, 64, 143, 0.5) 0%,
      rgba(16, 27, 66, 0.35) 55%
    ),
    linear-gradient(180deg, #131f4d 0%, #0a1233 100%);
  border: 1px solid rgba(201, 162, 75, 0.65);
  border-radius: 18px;
  padding: 0 0 10px;
  box-shadow: var(--cel-shadow-soft);
  overflow: hidden;
}

.cel-arc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cel-noise);
  opacity: 0.4;
  pointer-events: none;
  border-radius: 18px;
}

/* the golden arc header */
.cel-arc-head {
  position: relative;
  margin: 0 0 10px;
  padding: 22px 20px 26px;
  text-align: center;
  background:
    radial-gradient(
      100% 180% at 50% -60%,
      rgba(233, 214, 160, 0.35) 0%,
      rgba(233, 214, 160, 0) 55%
    ),
    linear-gradient(180deg, #182a63 0%, #101c46 100%);
  border-bottom: 2px solid var(--cel-gold);
  border-radius: 0 0 50% 50% / 0 0 36px 36px;
  z-index: 1;
}

.cel-arc-head::before,
.cel-arc-head::after {
  content: "";
  position: absolute;
  top: 0;
  width: 34%;
  height: 100%;
  background: var(--cel-gold-grad);
  opacity: 0.9;
  z-index: -1;
}

.cel-arc-head::before {
  left: 0;
  border-radius: 0 0 100% 0 / 0 0 100% 0;
}

.cel-arc-head::after {
  right: 0;
  border-radius: 0 0 0 100% / 0 0 0 100%;
}

.cel-arc-head h2 {
  font-family: var(--cel-serif) !important;
  font-size: 27px !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f7efd8;
  margin: 0;
}

/* two rows of highlights on screen, the rest inside a swiper slider */
.cel-hl-slider {
  position: relative;
  z-index: 1;
  padding: 6px 28px 6px;
}

.cel-hl-swiper {
  overflow: hidden;
}

.cel-hl-swiper .swiper-wrapper {
  align-items: stretch;
  box-sizing: border-box;
}

/* cells size to their own content — beats swiper's inline grid height */
.cel-hl-swiper .cel-hl-cell {
  height: auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  min-height: 162px;
  font-family: var(--cel-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
  color: #e8edf7;
  text-align: center;
  padding: 24px 16px;
  /* hairline separators drawn just outside the cell, so the ones on the
     viewport edges get clipped away instead of framing the slider */
  box-shadow:
    1px 0 0 rgba(201, 162, 75, 0.22),
    0 1px 0 rgba(201, 162, 75, 0.22);
}

/* graceful layout before swiper boots (or if its script fails) */
.cel-hl-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* gold-ringed icon above every highlight */
.cel-hl-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.55);
  background: radial-gradient(
    circle at 35% 30%,
    rgba(233, 214, 160, 0.18) 0%,
    rgba(8, 16, 41, 0.35) 75%
  );
  box-shadow:
    inset 0 0 14px rgba(201, 162, 75, 0.14),
    0 6px 16px rgba(4, 8, 24, 0.35);
  margin: 0 auto 13px;
  transition: all 0.35s var(--cel-ease);
}

.cel-hl-ico i {
  color: var(--cel-gold-light);
  font-size: 27px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(233, 214, 160, 0.35);
}

.cel-hl-cell:hover .cel-hl-ico {
  border-color: var(--cel-gold);
  box-shadow:
    inset 0 0 14px rgba(201, 162, 75, 0.25),
    var(--cel-shadow-gold);
  transform: translateY(-2px);
}

/* arrows + dots below the two rows */
.cel-hl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px 0 8px;
}

.cel-hl-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.55);
  background: radial-gradient(
    circle at 35% 30%,
    rgba(233, 214, 160, 0.18) 0%,
    rgba(8, 16, 41, 0.35) 75%
  );
  color: var(--cel-gold-light);
  cursor: pointer;
  transition: all 0.35s var(--cel-ease);
}

.cel-hl-arrow i {
  font-size: 18px;
  line-height: 1;
}

.cel-hl-arrow:hover {
  border-color: var(--cel-gold);
  color: #fff;
  box-shadow: var(--cel-shadow-gold);
}

.cel-hl-arrow.swiper-button-disabled,
.cel-hl-arrow.swiper-button-lock {
  opacity: 0.35;
  pointer-events: none;
}

/* swiper stretches its pagination to width:100%, which pushes the arrows to
   the card edges — keep the dots at their natural width so the arrows hug them */
.cel-hl-nav .cel-hl-dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  line-height: 0;
}

.cel-hl-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  margin: 0 5px;
  opacity: 1;
  background: rgba(201, 162, 75, 0.35);
  transition: all 0.3s var(--cel-ease);
}

.cel-hl-dots .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--cel-gold);
}

@media (max-width: 991px) {
  .cel-hl-slider {
    padding: 6px 18px 4px;
  }

  .cel-hl-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .cel-hl-slider {
    padding: 4px 14px 2px;
  }

  .cel-hl-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cel-hl-swiper .cel-hl-cell {
    min-height: 150px;
    padding: 18px 8px;
    font-size: 11.5px;
    letter-spacing: 0.1em;
  }

  .cel-hl-nav {
    gap: 18px;
    padding: 12px 0 6px;
  }

  .cel-hl-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 576px) {
  .cel-arc-head h2 {
    font-size: 21px !important;
  }
}

/* ----------------------------------------------------------------------
   8. Configuration
---------------------------------------------------------------------- */
#configuration .conf-back {
  background: transparent !important;
  padding: 60px 0 68px !important;
}

#configuration h1.section-title {
  margin-bottom: 6px;
}

.cel-config-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 46px;
}

.cel-config-card {
  position: relative;
  flex: 0 1 340px;
  text-align: center;
  background:
    radial-gradient(
      130% 110% at 50% 0%,
      rgba(39, 64, 143, 0.5) 0%,
      rgba(16, 27, 66, 0.25) 60%
    ),
    linear-gradient(180deg, #121e4a 0%, #0b1434 100%);
  border: 1px solid rgba(201, 162, 75, 0.6);
  border-radius: 4px;
  padding: 44px 30px 40px;
  box-shadow: var(--cel-shadow-soft);
  transition: all 0.45s var(--cel-ease);
}

.cel-config-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: 2px;
  pointer-events: none;
  transition: inherit;
}

.cel-config-card:hover {
  transform: translateY(-6px);
  border-color: var(--cel-gold);
  box-shadow:
    0 26px 60px rgba(4, 8, 24, 0.55),
    var(--cel-shadow-gold);
}

.cel-config-card .cel-config-star {
  display: block;
  color: var(--cel-gold);
  font-size: 16px;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(233, 214, 160, 0.8);
}

.cel-config-card h3 {
  font-family: var(--cel-serif) !important;
  font-size: 44px !important;
  font-weight: 600;
  color: #f4f7fd;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

.cel-config-card h3 span {
  color: inherit;
  background: linear-gradient(180deg, #f7efd8 0%, #d9bc6d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cel-config-card .cel-config-sub {
  font-family: var(--cel-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #9facc9;
  margin-bottom: 24px;
}

.cel-config-card .config-line {
  width: 64px;
  height: 1px;
  margin: 0 auto 26px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 75, 0) 0%,
    var(--cel-gold) 50%,
    rgba(201, 162, 75, 0) 100%
  );
}

button.pricing_btn {
  font-family: var(--cel-sans) !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #081029 !important;
  background: var(--cel-gold-grad) !important;
  background-size: 220% auto !important;
  border: none;
  border-radius: 2px;
  padding: 14px 34px;
  box-shadow: var(--cel-shadow-gold);
  transition: all 0.4s var(--cel-ease);
}

button.pricing_btn:hover {
  background-position: right center !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(201, 162, 75, 0.4);
}

/* ----------------------------------------------------------------------
   9. Amenities
---------------------------------------------------------------------- */
.amenities-section {
  padding: 60px 0 64px !important;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.amenity-item {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 4px;
  padding: 30px 14px 24px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(22, 35, 63, 0.08);
  transition: all 0.4s var(--cel-ease);
}

.amenity-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cel-gold);
  transition: width 0.4s var(--cel-ease);
}

.amenity-item:hover {
  transform: translateY(-6px);
  border-color: var(--cel-gold);
  box-shadow: 0 20px 44px rgba(22, 35, 63, 0.16);
}

.amenity-item:hover::after {
  width: 70%;
}

.amenity-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #eff5fb 100%);
  border: 1px solid rgba(201, 162, 75, 0.55);
  outline: 1px solid rgba(201, 162, 75, 0.25);
  outline-offset: 4px;
  transition: all 0.4s var(--cel-ease);
}

.amenity-item:hover .amenity-icon {
  box-shadow: var(--cel-shadow-gold);
}

.amenity-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.amenity-item p {
  font-family: var(--cel-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cel-ink);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .amenity-icon {
    width: 68px;
    height: 68px;
  }

  .amenity-icon img {
    width: 34px;
    height: 34px;
  }

  .amenity-item p {
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
}

/* ----------------------------------------------------------------------
   10. Gallery
---------------------------------------------------------------------- */
/* ID selector needed: legacy sets #gallery { background-color:#fff !important } */
#gallery {
  background:
    radial-gradient(
      120% 90% at 15% 0%,
      rgba(45, 75, 165, 0.35) 0%,
      rgba(45, 75, 165, 0) 55%
    ),
    radial-gradient(
      110% 90% at 88% 100%,
      rgba(38, 62, 140, 0.3) 0%,
      rgba(38, 62, 140, 0) 55%
    ),
    linear-gradient(160deg, #0d1840 0%, #081029 48%, #0a1233 100%) !important;
  padding: 60px 0 64px;
}

#gallery .wrap1 {
  display: block;
  padding: 0;
}

/* tabs as gold pills */
.mytab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: none !important;
  margin: 6px 0 34px !important;
  float: none;
}

.mytab li {
  float: none !important;
  margin: 0 !important;
}

.mytab > li > a {
  font-family: var(--cel-sans) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #c3cde0 !important;
  background: transparent !important;
  border: 1px solid rgba(201, 162, 75, 0.45) !important;
  border-radius: 999px !important;
  padding: 11px 30px !important;
  margin: 0 !important;
  transition: all 0.35s var(--cel-ease);
}

.mytab > li > a:hover,
.mytab > li > a:focus {
  color: var(--cel-gold-light) !important;
  border-color: var(--cel-gold) !important;
  background: rgba(201, 162, 75, 0.08) !important;
}

.mytab > li.active > a,
.mytab > li.active > a:hover,
.mytab > li.active > a:focus {
  color: #081029 !important;
  background: var(--cel-gold-grad) !important;
  border-color: var(--cel-gold) !important;
  box-shadow: var(--cel-shadow-gold);
}

/* gold hairline frames around gallery imagery (brochure style) */
#gallery .latest-post {
  border-radius: 2px;
}

#gallery .gallery-carousel .latest-post.col-sm-4 {
  padding: 8px;
}

#gallery .gallery-carousel .latest-post .latest-post {
  position: relative;
  border: 1px solid rgba(201, 162, 75, 0.65);
  outline: 1px solid rgba(201, 162, 75, 0.25);
  outline-offset: 4px;
  box-shadow: 0 14px 34px rgba(4, 8, 24, 0.5);
  background-size: cover;
  background-position: center;
  transition: all 0.45s var(--cel-ease);
}

#gallery .gallery-carousel .latest-post .latest-post:hover {
  outline-color: rgba(201, 162, 75, 0.6);
  box-shadow:
    0 22px 50px rgba(4, 8, 24, 0.65),
    var(--cel-shadow-gold);
}

#gallery .latest-post .latest-post-inner:before {
  background: linear-gradient(
    180deg,
    rgba(8, 16, 41, 0) 0%,
    rgba(8, 16, 41, 0.75) 100%
  ) !important;
}

#gallery .latest-post .latest-post-inner .link-icon a {
  background: rgba(201, 162, 75, 0.92) !important;
  border-radius: 50%;
  color: #081029 !important;
}

#gallery .latest-post .latest-post-inner .link-icon a i {
  color: #081029 !important;
}

/* owl carousel arrows — gold glass circles floating over the slider edges */
#gallery .gallery-carousel.owl-carousel {
  position: relative;
}

#gallery .owl-theme .owl-controls {
  margin-top: 0;
}

#gallery .owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  top: 50%;
  margin: -27px 0 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(8, 16, 41, 0.72) !important;
  border: 1px solid rgba(233, 214, 160, 0.75);
  outline: 1px solid rgba(201, 162, 75, 0.3);
  outline-offset: 3px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(4, 8, 24, 0.55);
  opacity: 1 !important;
  padding: 0;
  z-index: 5;
  transition: all 0.35s var(--cel-ease);
}

#gallery .owl-theme .owl-controls .owl-buttons .owl-prev {
  left: 6px;
}
#gallery .owl-theme .owl-controls .owl-buttons .owl-next {
  right: 6px;
}

#gallery .owl-theme .owl-controls .owl-buttons div::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--cel-gold-light);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  transition: color 0.35s var(--cel-ease);
}

#gallery .owl-theme .owl-controls .owl-buttons .owl-prev::before {
  content: "\f053";
}
#gallery .owl-theme .owl-controls .owl-buttons .owl-next::before {
  content: "\f054";
}

#gallery .owl-theme .owl-controls .owl-buttons div:hover {
  background: var(--cel-gold-grad) !important;
  background-size: 220% auto !important;
  border-color: var(--cel-gold-light);
  box-shadow:
    0 12px 30px rgba(4, 8, 24, 0.55),
    var(--cel-shadow-gold);
}

#gallery .owl-theme .owl-controls .owl-buttons div:hover::before {
  color: #081029;
}

@media (max-width: 767px) {
  #gallery .owl-theme .owl-controls .owl-buttons div {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }
}

/* Master Plan & Floor Plan section — mirror gallery styles */
#plans {
  background:
    radial-gradient(
      120% 90% at 15% 0%,
      rgba(45, 75, 165, 0.35) 0%,
      rgba(45, 75, 165, 0) 55%
    ),
    radial-gradient(
      110% 90% at 88% 100%,
      rgba(38, 62, 140, 0.3) 0%,
      rgba(38, 62, 140, 0) 55%
    ),
    linear-gradient(160deg, #0d1840 0%, #081029 48%, #0a1233 100%) !important;
  padding: 60px 0 64px;
}

#plans .wrap1 {
  display: block;
  padding: 0;
}

/* one plan at a time — big image, arrows + dots to move through the rest */
#plans .cel-plan-slider {
  position: relative;
  max-width: 980px;
  margin: 10px auto 0;
  padding-bottom: 44px;
}

#plans .cel-plan-swiper {
  overflow: hidden;
  padding: 5px;
}

#plans .cel-plan-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 3;
  padding: 10px;
  background: rgba(8, 16, 41, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.65);
  outline: 1px solid rgba(201, 162, 75, 0.25);
  outline-offset: 4px;
  box-shadow: 0 14px 34px rgba(4, 8, 24, 0.5);
  transition: all 0.45s var(--cel-ease);
}

#plans .cel-plan-figure:hover {
  outline-color: rgba(201, 162, 75, 0.6);
  box-shadow:
    0 22px 50px rgba(4, 8, 24, 0.65),
    var(--cel-shadow-gold);
}

#plans .cel-plan-figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* the master-plan renders are wide strips sitting on a white canvas —
   crop the empty margins so the plan itself fills the frame */
#masterplan .cel-plan-figure {
  aspect-ratio: 12 / 5;
}

#masterplan .cel-plan-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tap / hover badge that opens the full-screen lightbox */
#plans .cel-plan-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.92);
  box-shadow: 0 10px 26px rgba(4, 8, 24, 0.5);
  opacity: 0;
  transition: all 0.35s var(--cel-ease);
}

#plans .cel-plan-figure:hover .cel-plan-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#plans .cel-plan-zoom i {
  color: #081029;
  font-size: 18px;
}

#plans .cel-plan-arrow {
  position: absolute;
  top: calc(50% - 22px);
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: rgba(8, 16, 41, 0.72);
  border: 1px solid rgba(233, 214, 160, 0.75);
  outline: 1px solid rgba(201, 162, 75, 0.3);
  outline-offset: 3px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(4, 8, 24, 0.55);
  cursor: pointer;
  z-index: 5;
  transition: all 0.35s var(--cel-ease);
}

#plans .cel-plan-prev {
  left: 10px;
}

#plans .cel-plan-next {
  right: 10px;
}

#plans .cel-plan-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--cel-gold-light);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  transition: color 0.35s var(--cel-ease);
}

#plans .cel-plan-prev::before {
  content: "\f053";
}

#plans .cel-plan-next::before {
  content: "\f054";
}

#plans .cel-plan-arrow:hover {
  background: var(--cel-gold-grad);
  background-size: 220% auto;
  border-color: var(--cel-gold-light);
  box-shadow:
    0 12px 30px rgba(4, 8, 24, 0.55),
    var(--cel-shadow-gold);
}

#plans .cel-plan-arrow:hover::before {
  color: #081029;
}

#plans .cel-plan-arrow.swiper-button-lock {
  display: none;
}

#plans .cel-plan-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  line-height: 0;
}

#plans .cel-plan-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  margin: 3px 5px;
  opacity: 1;
  background: rgba(201, 162, 75, 0.35);
  transition: all 0.3s var(--cel-ease);
}

#plans .cel-plan-dots .swiper-pagination-bullet-active {
  width: 22px;
  background: var(--cel-gold);
}

/* plans stay blurred until the visitor submits the enquiry modal */
#plans .cel-plan-lock {
  position: relative;
}

#plans .cel-plan-lock.is-locked .tab-pane {
  -webkit-filter: blur(9px);
  filter: blur(9px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

#plans .cel-plan-lock.is-locked .cel-plan-arrow,
#plans .cel-plan-lock.is-locked .cel-plan-dots {
  visibility: hidden;
}

/* the blurred plan itself is the click target for the enquiry modal */
#plans .cel-plan-gate {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
}

#plans .cel-plan-lock:not(.is-locked) .cel-plan-gate {
  display: none;
}

#plans .cel-plan-gate-hit {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 767px) {
  #plans .cel-plan-slider {
    padding-bottom: 38px;
  }

  #plans .cel-plan-figure {
    padding: 6px;
  }

  #plans .cel-plan-arrow {
    width: 42px;
    height: 42px;
  }

  #plans .cel-plan-prev {
    left: 6px;
  }

  #plans .cel-plan-next {
    right: 6px;
  }

  /* hover-only badge on desktop — on touch it sits in the corner, always visible */
  #plans .cel-plan-zoom {
    top: auto;
    left: auto;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    opacity: 0.95;
    transform: none;
  }

  #plans .cel-plan-figure:hover .cel-plan-zoom {
    transform: none;
  }

  #plans .cel-plan-zoom i {
    font-size: 15px;
  }
}

/* ----------------------------------------------------------------------
   11. Location / connectivity
---------------------------------------------------------------------- */
/* legacy .overlay2.location-background (2 classes) out-specifies .cel-ice — restate at higher specificity */
.overlay2.location-background.cel-ice,
section#location-new.cel-ice {
  background:
    radial-gradient(
      90% 70% at 80% 10%,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(165deg, #f2f7fc 0%, #e3edf7 55%, #edf4fa 100%) !important;
}

#location-new {
  padding: 60px 0 64px;
}

#location-new .flex-box {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 10px;
}

#location-new .flex-box > .col-md-6 {
  float: none !important;
  width: auto;
  flex: 1 1 50%;
  padding: 0;
}

.border-map {
  border: 1px solid rgba(154, 122, 46, 0.8);
  outline: 1px solid rgba(154, 122, 46, 0.4);
  outline-offset: 6px;
  padding: 0;
  background: #fff;
  box-shadow: var(--cel-shadow-soft);
  margin: 6px;
}

.border-map img {
  display: block;
  width: 100%;
}

/* accordion */
#location-new #accordion .panel {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(201, 162, 75, 0.45) !important;
  border-left: 3px solid var(--cel-gold) !important;
  border-radius: 3px !important;
  box-shadow: 0 8px 24px rgba(22, 35, 63, 0.08) !important;
  margin-bottom: 14px !important;
  overflow: hidden;
}

#location-new #accordion .panel-heading {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

#location-new #accordion .panel-title a {
  display: block;
  font-family: var(--cel-serif) !important;
  font-size: 21px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: capitalize !important;
  text-align: left !important;
  color: var(--cel-ink) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 17px 64px 17px 26px !important;
  position: relative !important;
  transition: color 0.3s var(--cel-ease);
}

/* neutralize every legacy accordion pseudo-element / span ornament */
#location-new #accordion .panel-heading::before,
#location-new #accordion .panel-heading::after,
#location-new #accordion .panel-body::before,
#location-new #accordion .panel-body::after,
#location-new #accordion .panel-heading .accordion-toggle::before,
#location-new #accordion .panel-heading .accordion-toggle.collapsed::before,
#location-new #accordion .panel-title a::before,
#location-new #accordion .panel-title a.collapsed::before,
#location-new #accordion .panel-title a:not(.collapsed)::before,
#location-new #accordion .panel-title a span,
#location-new #accordion .panel-title a span::before,
#location-new #accordion .panel-title a span::after {
  display: none !important;
  content: none !important;
}

#location-new #accordion .panel-heading .panel-title a::after {
  content: "\f078" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  right: 18px !important;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-50%) rotate(0deg) !important;
  width: 34px;
  height: 34px;
  line-height: 1 !important;
  background: linear-gradient(
    180deg,
    rgba(201, 162, 75, 0.14) 0%,
    rgba(201, 162, 75, 0.03) 100%
  );
  border: 1px solid rgba(201, 162, 75, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 3px 10px rgba(22, 35, 63, 0.08);
  border-radius: 50%;
  color: var(--cel-gold-deep) !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  transition:
    transform 0.4s var(--cel-ease),
    background 0.35s var(--cel-ease),
    color 0.35s var(--cel-ease),
    box-shadow 0.35s var(--cel-ease) !important;
}

#location-new #accordion .panel-title a:hover::after {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    var(--cel-shadow-gold);
  border-color: var(--cel-gold);
}

#location-new #accordion .panel-heading .panel-title a:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg) !important;
  background: var(--cel-gold-grad);
  background-size: 220% auto;
  border-color: var(--cel-gold-light);
  color: #081029 !important;
  box-shadow: var(--cel-shadow-gold);
}

/* buttery bootstrap collapse */
#location-new #accordion .panel-collapse.collapsing {
  transition: height 0.45s var(--cel-ease) !important;
}

#location-new #accordion .panel-title a:hover {
  color: var(--cel-gold-deep) !important;
}

#location-new #accordion .panel-body {
  background: transparent !important;
  border-top: 1px dashed rgba(201, 162, 75, 0.5) !important;
  padding: 16px 22px 20px !important;
}

#location-new #accordion .panel-body p {
  font-family: var(--cel-sans) !important;
  font-size: 14px !important;
  font-weight: 400;
  color: var(--cel-ink-soft) !important;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

#location-new #accordion .panel-body p:last-child {
  margin-bottom: 0;
}

#location-new #accordion .panel-body .fa-map-marker {
  color: var(--cel-gold-deep);
  margin-right: 8px;
}

/* ----------------------------------------------------------------------
   12. About us
---------------------------------------------------------------------- */
#aboutus {
  padding: 60px 0 64px;
}

#aboutus .wrap1,
#location-new .wrap1 {
  display: block;
  padding: 0;
}

@media all and (max-width: 767px) {
  #masterplan-2 {
    margin-bottom: 0 !important;
  }
}

#aboutus .section-subtitle12 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--cel-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: #c3cde0;
  text-align: center;
}

/* ----------------------------------------------------------------------
   13. Contact
---------------------------------------------------------------------- */
.contact-map {
  background: var(--cel-navy-950) !important;
  position: relative;
}

.contact-map > div {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-map .col-md-6 {
  float: none !important;
  flex: 1 1 50%;
  min-width: 320px;
  width: auto;
}

.contact-map iframe {
  display: block;
  height: 100% !important;
  min-height: 520px;
  filter: grayscale(0.5) sepia(0.12) saturate(1.1);
}

#contact .back {
  height: 100%;
  padding: 48px 60px 52px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(
      120% 90% at 85% 0%,
      rgba(39, 64, 143, 0.4) 0%,
      rgba(39, 64, 143, 0) 55%
    ),
    linear-gradient(160deg, #0d1840 0%, #081029 70%, #0a1233 100%) !important;
  position: relative;
}

#contact .back form {
  width: 100%;
}

#contact .back form::after {
  content: "";
  display: block;
  clear: both;
}

#contact .back::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cel-noise);
  opacity: 0.5;
  pointer-events: none;
}

#contact .back > * {
  position: relative;
}

#contact h1.section-title {
  text-align: left;
  font-size: 36px !important;
  margin-bottom: 8px;
  color: #f4f7fd !important;
}

#contact .cel-kicker {
  color: var(--cel-gold);
}

#contact .form-p {
  font-family: var(--cel-sans);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: left;
  color: #a9b5ce !important;
  margin-bottom: 30px !important;
}

#contact .cel-divider {
  justify-content: flex-start;
  margin: 0 0 22px;
  width: 200px;
}

#contact .input-group {
  width: 100%;
}

#contact .input-group-addon {
  background: rgba(201, 162, 75, 0.14) !important;
  border: 1px solid rgba(201, 162, 75, 0.4) !important;
  border-right: none !important;
  color: var(--cel-gold) !important;
  border-radius: 2px 0 0 2px;
  min-width: 46px;
}

#contact .input-group-addon .fa,
#contact .input-group-addon i {
  color: var(--cel-gold) !important;
}

#contact .form-group {
  padding: 0;
  margin-bottom: 16px;
  height: auto !important;
}

#contact .center-check {
  padding: 0;
  text-align: left;
  align-items: flex-start !important;
}

/* smaller, left-aligned submit for the contact form */
#contact .btn-submit,
#contact button.btn-submit {
  width: auto;
  min-width: 240px;
  display: inline-block;
  padding: 15px 40px !important;
}

#contact .check {
  justify-content: flex-start;
}

@media (max-width: 991px) {
  #contact .back {
    padding: 54px 26px 60px !important;
  }

  .contact-map iframe {
    min-height: 380px;
  }
}

/* ----------------------------------------------------------------------
   14. Footer
---------------------------------------------------------------------- */
#sp-footer {
  background:
    linear-gradient(
      180deg,
      rgba(201, 162, 75, 0.06) 0%,
      rgba(201, 162, 75, 0) 30%
    ),
    var(--cel-navy-950) !important;
  border-top: 1px solid rgba(201, 162, 75, 0.4);
  padding: 34px 0 26px !important;
  color: #8e9bb8 !important;
}

#sp-footer .txtRgt {
  text-align: center !important;
}

.cel-footer-logo {
  display: block;
  width: 130px;
  margin: 4px auto 14px;
}

#sp-footer .cel-divider {
  width: 200px;
  margin: 0 auto 18px;
}

#sp-footer .text12 {
  font-family: var(--cel-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.8;
  color: #8e9bb8;
  margin: 4px 0;
}

#sp-footer .footer {
  margin-bottom: 0 !important;
}

#sp-footer .link4 {
  color: var(--cel-gold-light) !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 75, 0.5);
  padding-bottom: 2px;
}

#sp-footer .link4:hover {
  color: var(--cel-gold) !important;
}

/* ----------------------------------------------------------------------
   15. Floating CTAs + mobile bottom bar
---------------------------------------------------------------------- */
button.btn.btn-danger.interested {
  background: var(--cel-gold-grad) !important;
  background-size: 220% auto !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #081029 !important;
  font-family: var(--cel-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: auto !important;
  padding: 13px 22px !important;
  border-radius: 2px;
  box-shadow:
    0 12px 30px rgba(4, 8, 24, 0.5),
    var(--cel-shadow-gold);
  transition: all 0.4s var(--cel-ease) !important;
}

button.btn.btn-danger.interested:hover {
  background-position: right center !important;
  transform: translateY(-2px);
}

button.btn.btn-danger.dbrochure {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
  width: auto !important;
  white-space: nowrap;
  line-height: 1.3;
  background: var(--cel-gold-grad) !important;
  background-size: 220% auto !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #081029 !important;
  font-family: var(--cel-sans) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px !important;
  border-radius: 2px;
  box-shadow:
    0 12px 30px rgba(4, 8, 24, 0.5),
    var(--cel-shadow-gold);
  transition: all 0.4s var(--cel-ease);
}

button.btn.btn-danger.dbrochure:hover {
  background-position: right center !important;
  transform: translateY(-2px);
  color: #081029 !important;
}

@media (max-width: 767px) {
  button.btn.btn-danger.dbrochure {
    display: none;
  }
}

.fixed-footer-cust {
  background: rgba(6, 11, 32, 0.97) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 162, 75, 0.5);
}

.fixed-footer-cust .fix-link {
  font-family: var(--cel-sans) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cel-gold-light) !important;
  padding: 15px 5px !important;
}

.fixed-footer-cust .fix-link .fa {
  color: var(--cel-gold);
  margin-right: 6px;
}

.fixed-footer-cust .div-line {
  border-right: 1px solid rgba(201, 162, 75, 0.4) !important;
}

.fixed-footer-cust .interested {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 100% !important;
}

/* ----------------------------------------------------------------------
   16. Modals
---------------------------------------------------------------------- */
.modal-backdrop {
  background-color: rgba(4, 8, 24, 0.6) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal-backdrop.in {
  opacity: 1 !important;
}

/* silky entrance for every lead modal */
.modal.fade .modal-dialog {
  -webkit-transform: translateY(-26px) scale(0.97) !important;
  transform: translateY(-26px) scale(0.97) !important;
  opacity: 0;
  transition: all 0.45s var(--cel-ease) !important;
}

.modal.fade.in .modal-dialog {
  -webkit-transform: none !important;
  transform: none !important;
  opacity: 1;
}

/* bootstrap 3 has no modal-xl / scrollable dialog — provide both */
.modal-dialog.modal-xl {
  width: 1140px;
  max-width: calc(100% - 32px);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100vh - 80px);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

@media (max-width: 767px) {
  .modal-dialog.modal-xl {
    margin: 30px auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100vh - 60px);
  }
}

/* compact elegant dialog for lead-capture modals */
#main-pop .modal-dialog,
#price-model .modal-dialog,
#iam-model .modal-dialog,
#form-deg .modal-dialog,
#floor-modal .modal-dialog,
#brochure .modal-dialog {
  width: 430px;
  max-width: calc(100% - 32px);
  margin: 100px auto 30px;
}

.modal .modal-content {
  background:
    radial-gradient(
      120% 100% at 50% 0%,
      rgba(39, 64, 143, 0.45) 0%,
      rgba(18, 32, 78, 0.2) 60%
    ),
    linear-gradient(180deg, #101c46 0%, #0b1434 100%) !important;
  border: 1px solid rgba(201, 162, 75, 0.6) !important;
  border-radius: 4px !important;
  box-shadow: 0 30px 80px rgba(4, 8, 24, 0.7) !important;
  overflow: hidden;
}

.modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 75, 0.25);
  pointer-events: none;
  border-radius: 2px;
}

.modal .modal-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(201, 162, 75, 0.35) !important;
}

.modal .modal-title,
.modal h4.tits {
  font-family: var(--cel-serif) !important;
  font-size: 23px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #f4f7fd !important;
  text-align: center;
  letter-spacing: 0.03em;
  padding: 6px 30px 0;
}

/* gold hairline under modal titles */
.modal h4.tits::after,
.modal .modal-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 14px auto 0;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 75, 0) 0%,
    var(--cel-gold) 50%,
    rgba(201, 162, 75, 0) 100%
  );
}

.modal h4.tits b {
  color: var(--cel-gold-light);
  font-style: italic;
  font-weight: 600;
}

.modal .modal-body {
  background: transparent !important;
  box-shadow: none !important;
  padding: 30px 28px !important;
}

.modal .modal-body p,
.modal .text14 {
  font-family: var(--cel-sans);
  color: #c3cde0 !important;
  font-weight: 300;
}

.modal .close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  bottom: auto !important;
  left: auto !important;
  width: 34px !important;
  height: 34px !important;
  line-height: 30px !important;
  text-align: center;
  border: 1px solid rgba(201, 162, 75, 0.55) !important;
  border-radius: 50%;
  background: rgba(6, 11, 32, 0.4) !important;
  z-index: 5;
  color: var(--cel-gold-light) !important;
  opacity: 1 !important;
  text-shadow: none !important;
  font-family: var(--cel-sans) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.3s var(--cel-ease);
}

.modal .close span {
  font-size: 14px !important;
  line-height: 1;
}

.modal .close:hover {
  background: var(--cel-gold) !important;
  color: #081029 !important;
}

/* disclaimer & terms modals read as light documents */
#disclaimerModal .modal-content,
#aboutModal .modal-content {
  background: #f7fafd !important;
}

#disclaimerModal .modal-title,
#aboutModal .modal-title {
  color: var(--cel-ink) !important;
}

#disclaimerModal .modal-body p,
#disclaimerModal .changing-frus,
#aboutModal .modal-body p,
#aboutModal .changing-frus {
  color: var(--cel-ink-soft) !important;
  font-size: 13px;
  line-height: 1.8;
}

#disclaimerModal .modal-header,
#aboutModal .modal-header {
  border-bottom: 1px solid rgba(201, 162, 75, 0.4) !important;
}

#disclaimerModal .modal-footer,
#aboutModal .modal-footer {
  background: transparent !important;
  border-top: 1px solid rgba(201, 162, 75, 0.4) !important;
}

#disclaimerModal .btn-default,
#aboutModal .btn-default {
  background: var(--cel-gold-grad) !important;
  border: none !important;
  color: #081029 !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 26px;
}

#disclaimerModal .changing-frustation,
#aboutModal .changing-frustation {
  font-family: var(--cel-serif);
  font-size: 19px;
  color: var(--cel-ink);
}

/* ----------------------------------------------------------------------
   17. Page loader — covers the gap between form submit and thank-you.php
---------------------------------------------------------------------- */
#pageloader {
  /* style.css pins this with height:100%, which can resolve short of the
     viewport and leave the fixed bottom CTA bar peeking out — pin all four
     edges instead so the overlay always covers everything */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(
      120% 90% at 50% 0%,
      rgba(39, 64, 143, 0.5) 0%,
      rgba(6, 11, 32, 0) 60%
    ),
    rgba(6, 11, 32, 0.94) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* shown by adding a class, never by an animated fadeIn — the submit is a real
   page navigation, so the overlay has to be up on the very first frame */
#pageloader.is-active {
  display: block;
}

/* the legacy dots gif is not part of this theme */
#pageloader img {
  display: none !important;
}

/* absolutely centred so it reads the same whether the overlay is block or flex */
.cel-loader-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.cel-loader-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 75, 0.2);
  border-top-color: var(--cel-gold);
  box-shadow: 0 0 24px rgba(201, 162, 75, 0.18);
  animation: celLoaderSpin 0.8s linear infinite;
}

@keyframes celLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.cel-loader-star {
  color: var(--cel-gold);
  font-size: 15px;
  line-height: 1;
  margin-top: 20px;
}

.cel-loader-text {
  font-family: var(--cel-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cel-gold-light);
  margin: 10px 0 0;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .cel-loader-ring {
    animation-duration: 2s;
  }
}

/* ----------------------------------------------------------------------
   18. Responsive refinements
---------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .cel-overview-flex {
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .section-title,
  .cel-title {
    font-size: 34px !important;
  }

  .cel-overview-flex {
    flex-direction: column;
  }

  .cel-overview-copy h1.section-title {
    font-size: 28px !important;
  }

  .cel-form-card {
    max-width: 560px;
    margin: 0 auto;
    width: 100% !important;
    position: static;
    align-self: auto;
  }

  #location-new .flex-box {
    flex-direction: column;
  }

  #location-new .flex-box > .col-md-6 {
    width: 100%;
  }

  .contact-map .col-md-6 {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .section-title,
  .cel-title {
    font-size: 29px !important;
  }

  /* original page shows the lead form first on phones — keep that order */
  .cel-overview-flex {
    flex-direction: column-reverse;
    gap: 44px;
  }

  #overview {
    padding: 46px 0 44px !important;
  }

  .hightlight,
  .amenities-section,
  #gallery,
  #plans,
  #location-new,
  #aboutus {
    padding-top: 44px !important;
    padding-bottom: 48px !important;
  }

  #configuration .conf-back {
    padding: 44px 0 50px !important;
  }

  #contact .btn-submit,
  #contact button.btn-submit {
    width: 100%;
    min-width: 0;
  }

  #contact .back {
    padding: 44px 20px 52px !important;
  }

  #contact .form-p {
    margin-bottom: 22px !important;
  }

  .cel-sec-head {
    margin-bottom: 30px;
  }

  .cel-kicker {
    letter-spacing: 0.3em;
    font-size: 10px;
  }

  .cel-overview-copy h1.section-title {
    font-size: 23px !important;
  }

  .cel-overview-copy .section-subtitle12 {
    font-size: 14px;
    line-height: 1.85;
  }

  .cel-form-card .modal-body {
    padding: 34px 22px 28px !important;
  }

  .cel-config-card {
    flex: 1 1 100%;
    max-width: 420px;
  }

  #contact h1.section-title {
    font-size: 29px !important;
    text-align: center;
  }

  #contact .cel-kicker {
    display: block;
    text-align: center;
  }

  #contact .cel-divider {
    justify-content: center;
    margin: 0 auto 20px;
  }

  #contact .form-p {
    text-align: center;
  }

  #sp-footer {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .cel-overview-copy .section-subtitle12 p:first-child::first-letter {
    font-size: 260%;
  }

  .mytab > li > a {
    padding: 10px 20px !important;
    letter-spacing: 0.16em;
  }

  .fixed-footer-cust .fix-link {
    font-size: 10.5px !important;
    letter-spacing: 0.05em;
    padding: 15px 2px !important;
  }
}
