/* =========================================================
   HAVE A NEST — BRAND THEME (derived from logo: forest green
   + bronze/gold nest). Every surface in the site pulls from
   these variables so nothing renders white/off-brand again.
   ========================================================= */
:root {
  --green-950: #060f0a;
  --green-900: #0b1f14;
  --green-800: #0f2a1c;
  --green-700: #12331f;
  --green-650: #16371f;
  --green-600: #1b2814;
  --green-500: #1d482e;
  --green-400: #2a5c3c;
  --green: #f8fcf7;

  --gold-1: #fff4d6;
  --gold-2: #ffe08a;
  --gold-3: #ffc94d;
  --gold-4: #ffb627;
  --gold-5: #e6971a;
  --gold-6: #c2860f;

  --cream: #f4efe1;
  --muted: #c9d3c0;

  --gold-line: rgba(255, 201, 77, .28);
  --gold-line-strong: rgba(255, 201, 77, .5);



  --surface-1: linear-gradient(165deg, #132a1b 0%, #081410 100%);
  --surface-2: linear-gradient(150deg, #1c3a26 0%, #0f2417 100%);
  --nav-scrolled-bg: rgba(10, 20, 8, 0.85);

  --gold-btn: linear-gradient(135deg, var(--gold-2), var(--gold-5));
  --gold-btn-hover: linear-gradient(135deg, var(--gold-1), var(--gold-4));

  --shine-sweep: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .55) 50%, transparent 80%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--green-950);
}

body {
  background: var(--green-950);
}

::selection {
  background: var(--gold-3);
  color: var(--green-950);
}

/* thin gold-on-green scrollbar so even the scrollbar reads on-brand */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--green-950);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-3), var(--gold-5));
  border-radius: 10px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Cambria, Georgia, serif;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  z-index: 10;
  transition: all 0.4s ease;
}

.logo {
  font-size: 18px;
  font-weight: 600;

}

/* "Nest" highlighted in the brand green, in the navbar and footer logo */
.logo-accent {
  color: var(--green);
}

/* NAV LINKS */
nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE HOVER */
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 1px;
  background: var(--gold-3);
  transition: 0.4s;
}

nav a:hover::after {
  width: 100%;
}

nav a.active::after {
  width: 100%;
}

/* RIGHT BOX (GLASS STYLE) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 18px;
}

.nav-right span {
  color: #fff;
}


.nav-right:hover span {
  color: #fdf6f6a9;
}

/* BUTTON */
.cta {
  background: var(--gold-btn);
  border: none;
  color: var(--green-950);
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
}

.cta:hover {
  transform: scale(1.06);
  background: var(--gold-btn-hover);
  box-shadow: 0 8px 20px rgba(255, 201, 77, 0.4);
}

/* MENU ICON */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 22px;
  cursor: pointer;
  z-index: 500;
  background: rgba(8, 20, 16, 0.55);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--cream);
}


.logo {
  margin-left: 0;
}

.menu-toggle {
  margin-right: 0;
}

/* MOBILE MENU FULL SCREEN */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  transition: 0.4s ease;
  z-index: 1000;
}

/* SHOW MENU */
.mobile-menu.active {
  left: 0;
}

/* CLOSE BUTTON */
.close-btn {
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 40px;
}

/* LINKS */
.mobile-menu a {
  text-decoration: none;
  color: var(--cream);
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gold-line);
}

/* CENTER RIGHT CONTENT */
.mobile-right {
  margin-top: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* PHONE */
.mobile-right span {
  font-size: 16px;
  color: var(--cream);
}

/* BUTTON */
.mobile-right button {
  width: 80%;
  padding: 14px;
  background: var(--gold-btn);
  color: var(--green-950);
  border: none;
}

.mobile-menu.active~.navbar {
  display: none;
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--nav-scrolled-bg);

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  animation: navSlide 0.4s ease;
}

/* TEXT COLOR CHANGE */
.navbar.scrolled nav a {
  color: var(--cream);
}

.navbar.scrolled nav a::after {
  background: var(--gold-3);
}

/* LOGO COLOR */
.navbar.scrolled .logo {
  color: var(--cream);
}

/* RIGHT SIDE */
.navbar.scrolled .nav-right span {
  color: var(--cream);
}

/* BUTTON CHANGE */
.navbar.scrolled .cta {
  background: var(--gold-btn);
  color: var(--green-950);
}

@keyframes navSlide {
  from {
    transform: translateY(-80px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* HERO */
.hero {
  min-height: 95vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* SLIDER */
.slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1.2s ease;
}

.slider img.active {
  opacity: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.hero-content {
  position: relative;
  padding: 90px 60px 70px;
  max-width: 980px;
  z-index: 2;
}

.hero-content h1 {
  font-family: Cambria, Georgia, serif;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  width: 60%;
  margin: 24px 0 32px;
}

.hero-content span {
  font-style: italic;

  opacity: 0.9;
}




/* BUTTONS */
.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;


}

.primary {
  position: relative;
  overflow: hidden;
  background: var(--gold-btn);
  color: var(--green-950);
  border: none;
  padding: 14px 26px;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(255, 201, 77, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary {
  position: relative;
  overflow: hidden;
  background: rgba(20, 40, 26, 0.35);
  border: 1px solid var(--gold-line-strong);
  color: var(--cream);
  padding: 14px 26px;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}


.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 201, 77, 0.5);
  background: var(--gold-btn-hover);
}

.secondary:hover {
  background: rgba(255, 201, 77, 0.14);
  border-color: var(--gold-2);
  color: var(--gold-1);
  transform: translateY(-3px);
}

/* STATS */
.stats {
  display: flex;
  gap: 70px;
  margin-top: 26px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

/* EACH BLOCK */
.stats div {
  position: relative;
  padding-right: 40px;
  min-width: 150px;
  text-align: left;
}

/* DIVIDER LINE */
.stats div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.3);
}

/* TEXT */
.stats h2 {
  font-size: 34px;
  font-weight: 400;

}

.stats p {
  font-size: 12px;
  opacity: 0.7;
  white-space: nowrap;
}

.slide-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.line {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
}

.line.active {
  width: 60px;
  background: var(--surface-2);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.tagline {
  animation: fadeUpLuxury 1s ease forwards;
}

.hero-content h1 {
  animation: fadeUpLuxury 1.2s ease forwards;
}

.desc {
  animation: fadeUpLuxury 1.4s ease forwards;
}

.buttons {
  animation: zoomIn 1.6s ease forwards;
}

.stats div {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

/* PREMIUM TEXT ANIMATION */
@keyframes fadeUpLuxury {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* SOFT FADE */
@keyframes fadeSoft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* BUTTON POP */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* STATS SLIDE */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= TABLET (≤1024px) ================= */
@media(max-width:1024px) {
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 16px;
    z-index: 10;
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .navbar.scrolled .nav-right span {
    color: var(--cream);
  }

  .navbar.scrolled .menu-toggle {
    color: var(--cream);
  }


  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding: 80px 40px 50px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
    width: 80%;
    margin: 20px 0 28px;
  }

  .desc {
    font-size: 13px;
    width: 450px;
  }


  /* SMALL SLIDER LINE */
  .line {
    width: 30px;
    height: 2px;
  }

  .line.active {
    width: 45px;
  }
}


/* ================= MOBILE (≤768px) ================= */
@media(max-width:768px) {

  nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
  }


  .hero-content {
    padding: 110px 20px 40px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 23px;
    line-height: 1.35;
    width: 100%;
    margin: 16px 0 24px;
  }

  .tagline {
    font-size: 10px;
    letter-spacing: 2px;
    width: 100%;
    margin-bottom: 10px;
  }

  .qoute {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    width: 100%;
    line-height: 1.7;
  }

  /* BUTTON FULL WIDTH */
  .buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }

  .primary,
  .secondary {
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
  }

  /* EACH BOX */
  .stats div {
    width: 100%;
    padding-top: 8px;
    padding-right: 0;
    min-width: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
  }

  /* REMOVE OLD VERTICAL LINE */
  .stats div::after {
    display: none !important;
  }

  /* TEXT ALIGN */
  .stats h2 {
    font-size: 20px;
  }

  .stats p {
    font-size: 9px;
    letter-spacing: 0.3px;
  }


  /* SLIDE INDICATOR SMALL + POSITION */
  .slide-indicator {
    left: 20px;
    bottom: 20px;
  }

  .line {
    width: 25px;
    height: 2px;
  }

  .line.active {
    width: 35px;
  }
}


.about {
  background: var(--surface-1);
  color: var(--cream);
  padding: 100px 60px;

}

/* LAYOUT */
.about-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: -20px;
}

/* LEFT */
.about-left {
  max-width: 550px;
}

.small {
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold-3);
  margin-bottom: 20px;
}

.about-left h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-left span {
  font-style: italic;
}

.text {
  font-size: 14px;
  color: var(--muted);
  max-width: 850px;
  width: 100%;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* RIGHT GRID WITH LINES */
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}

.stat-box {
  padding: 25px;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.stat-box h3 {
  font-size: 22px;
}

.stat-box p {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* FEATURES */
.features {
  margin-top: 80px;
  display: flex;
  border-top: 1px solid var(--gold-line);
}

.feature {
  width: 25%;
  padding: 30px 20px;
  position: relative;
}

.feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-line);
}

/* LUCIDE ICON STYLE */
.icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-3);
  stroke-width: 1.5;
  margin-bottom: 12px;
}

.feature:hover .icon svg {
  transform: translateY(-3px);
  transition: 0.3s;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up.delay1 {
  animation-delay: 0.3s;
}

.fade-up.delay2 {
  animation-delay: 0.6s;
}

.fade-up.delay3 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */
@media(max-width:1024px) {

  .about {
    padding: 80px 40px;


  }

  .about-container {
    flex-direction: column;

  }

  .about-right {
    margin-top: -20px;
  }

  .features {
    flex-wrap: wrap;
  }

  .feature {
    width: 50%;
    border: 1px solid var(--gold-line);
  }

  .feature::after {
    display: none;
  }
}


/* MOBILE */
@media(max-width:768px) {

  .about {
    padding: 60px 20px;

  }

  .about-left h2 {
    font-size: 32px;

  }

  .text {
    font-size: 13px;
    width: 100%;
    max-width: 100%;
  }

  .stat-box h3 {
    font-size: 18px;

  }

  .features {
    flex-direction: column;
  }

  .feature {
    width: 100%;
  }
}


/*properties sections */
.properties {
  background: var(--surface-1);
  padding: 100px 60px;


}

/* HEADER */
.prop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  margin-top: -50px;
}

.small {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-3);
}

.prop-header h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 48px;
  color: var(--cream);
}

.prop-header span {
  font-style: italic;
  color: #e6971a;
}

.view-all {
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--muted);
  transition: 0.3s;
}

/* GRID */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

/* CARD — upmarket dark card (deep green/black + gold trim) that pops
   against the light section background. Flex column so every card in
   a row lines up its bottom row (price / Enquire Now) regardless of
   how long the name or location text runs above it. */
.card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(165deg, #1b2814 0%, #101609 100%);
  border: 1px solid rgba(201, 147, 44, 0.22);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(10, 15, 8, 0.35);
  border-color: #ffb627;
}

/* IMAGE — only the image zooms on hover, kept perfectly cropped inside
   the rounded card via overflow:hidden. */
.img-box {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.25, .8, .25, 1), filter 0.5s ease;
}

.card:hover img {
  transform: scale(1.14);
}

/* soft gradient where the image meets the content, upmarket touch */
.img-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(11, 15, 7, 0.92), rgba(11, 15, 7, 0));
  pointer-events: none;
}

/* TAG */
.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: linear-gradient(135deg, #ffc94d, #e6971a);
  color: #1a1206;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CONTENT — flex column that fills the remaining card height, so the
   bottom block can be pinned to the base of the card. */
.card-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dev {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ffc94d;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-content h3 {
  font-family: Cambria, Georgia, serif;
  font-size: 20px;
  margin-bottom: 8px;
  transition: 0.3s;
  color: #f4efe1;
}

.card:hover h3 {
  color: #ffe08a;
}

/* LOCATION — icon + text as a flex row so the pin icon always lines up
   with the first line of the address, however long the address is.
   The text itself is clamped to 2 lines with a fixed reserved height,
   so a one-line location and a three-line location still leave every
   card's price/Enquire row starting from the same vertical position. */
.loc {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  color: #c3c9b3;
  margin-bottom: 16px;
  line-height: 1.45;
  min-height: calc(14px * 1.45 * 2);
}

.loc svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 2px;
  stroke: #ffb627;
}

.loc span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

/* BOTTOM — always pinned to the base of the card, so it starts at the
   same height across every card in a row no matter how much text sits
   above it. */
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201, 147, 44, 0.28);
  padding-top: 14px;
  font-size: 14px;
  color: #c3c9b3;
  margin-top: auto;
}

.type {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12.5px;
  color: #c3c9b3;
}

.price {
  color: #ffe08a;
  font-weight: 700;
  font-size: 15px;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up.delay1 {
  animation-delay: 0.3s;
}

.fade-up.delay2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TABLET */
@media(max-width:1024px) {

  .properties {
    padding: 80px 40px;

  }

  .prop-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* MOBILE */
@media(max-width:768px) {

  .properties {
    padding: 60px 20px;
  }

  .prop-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    margin-top: 0;
  }

  .view-all {
    align-self: flex-start;
  }

  .prop-header h2 {
    font-size: 28px;
  }

  .prop-grid {
    grid-template-columns: 1fr;
  }

  .img-box img {
    height: 220px;
  }

}


.gallery {
  position: relative;
  background: var(--surface-1);
  padding: 100px 60px 110px;
  overflow: hidden;
}

/* faint gold glow washes behind the section, like light through leaves */
.gallery::before,
.gallery::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.gallery::before {
  background: var(--gold-3);
  top: -220px;
  left: -160px;
}

.gallery::after {
  background: var(--green-400);
  bottom: -260px;
  right: -160px;
}

/* HEADER */
.gallery-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.small {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-3);
  margin-bottom: -5px;
}

.gallery-header .small {
  display: block;
  text-align: center;
}

.gallery-header h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 40px;
  color: var(--cream);
}

.gallery-header span {
  font-style: italic;
  color: var(--gold-2);
}

/* underline flourish, matches the gold hairline look from the brand ref */
.gallery-header::after {
  content: '';
  display: block;
  width: 90px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}

/* SLIDER */
.gallery-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.gallery-track {
  display: flex;
  gap: 26px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SLIDE — framed gold card, like a polaroid set in a bronze frame */
.slide {
  min-width: calc(33.333% - 18px);
  flex-shrink: 0;
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(155deg, var(--gold-3), var(--green-600) 55%, var(--gold-5));
  box-shadow: 0 18px 40px rgba(4, 10, 7, 0.45);
  opacity: 0;
  transform: translateY(40px);
  animation: revealImage 1s ease forwards;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* STAGGER EFFECT */
.slide:nth-child(1) {
  animation-delay: 0.1s;
}

.slide:nth-child(2) {
  animation-delay: 0.2s;
}

.slide:nth-child(3) {
  animation-delay: 0.3s;
}

.slide:nth-child(4) {
  animation-delay: 0.4s;
}

.slide:nth-child(5) {
  animation-delay: 0.5s;
}

.slide:nth-child(6) {
  animation-delay: 0.6s;
}

.slide-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--green-950);
}

.slide img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

/* subtle inner shine sweeping across the frame edge */
.slide-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 230, 180, .28) 50%, transparent 60%);
  background-size: 220% 220%;
  background-position: -40% -40%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 55px rgba(4, 10, 7, 0.6), 0 0 0 1px var(--gold-line-strong);
}

.slide:hover .slide-inner::before {
  opacity: 1;
  animation: frameShine 1.1s ease forwards;
}

/* INITIAL HOVER */
.slide:hover img {
  animation: zoomSoft 0.8s forwards;
  filter: brightness(1.08) saturate(1.08);
}

@keyframes frameShine {
  from {
    background-position: -40% -40%;
  }

  to {
    background-position: 140% 140%;
  }
}

/* ARROWS */
.gallery-controls {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.gallery-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-line-strong);
  background: rgba(20, 40, 26, 0.6);
  color: var(--gold-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.gallery-controls button:hover {
  background: var(--gold-btn);
  color: var(--green-950);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(255, 201, 77, 0.35);
}

.gallery-controls svg {
  width: 18px;
  height: 18px;
}

/* IMAGE REVEAL */
@keyframes revealImage {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* SLIDE SMOOTH */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* BUTTON HOVER POP */
@keyframes btnPop {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes zoomSoft {
  0% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.08);
    /* zoom in */
  }

  100% {
    transform: scale(1.04);
    /* settle back slightly */
  }
}

/* TABLET */
@media(max-width:1024px) {

  .gallery {
    padding: 80px 40px;
  }

  .gallery-track {
    gap: 20px;
  }

  .slide {
    min-width: 100%;
  }

  .slide img {
    height: 420px;
  }
}

/* MOBILE */
@media(max-width:768px) {

  .gallery {
    padding: 60px 20px 80px;
  }

  .gallery::before,
  .gallery::after {
    width: 280px;
    height: 280px;
  }

  .gallery-header h2 {
    font-size: 30px;
  }

  .gallery-track {
    gap: 16px;
  }

  /* ONE FULL CARD AT A TIME — same width/height as the mobile
     Properties card image (.img-box img{ height:220px }) so both
     sections line up and feel consistent on mobile. */
  .slide {
    min-width: 100%;
    padding: 8px;
    border-radius: 14px;
  }

  .slide-inner {
    height: 220px;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-controls {
    justify-content: center;
    margin-top: 26px;
  }

  .gallery-controls button {
    width: 44px;
    height: 44px;
  }

}


.experience {
  background: var(--surface-1);
  color: #fff;
  padding: 100px 60px;

}

/* HEADER */
.exp-header {
  margin-bottom: 60px;
  margin-top: -40px;
}

.small {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-3);
}

.exp-header h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 38px;
}

.exp-header span {
  font-style: italic;
}

/* GRID */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* CARD */
.exp-card {
  padding: 40px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 220px;
}


.exp-card:hover {
  background: rgba(255, 255, 255, 0.09);
  /* very light */
}

/* NUMBER */
.num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}

/* ICON */
.exp-card svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-3);
  margin-bottom: 15px;
}

/* TEXT */
.exp-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 14px;
  color: var(--gold-line-strong);
  line-height: 1.6;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up.delay1 {
  animation-delay: 0.3s;
}

.fade-up.delay2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */
@media(max-width:1024px) {

  .experience {
    padding: 80px 40px;
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media(max-width:768px) {

  .experience {
    padding: 60px 20px;
  }

  .exp-header h2 {
    font-size: 26px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-card {
    padding: 30px 20px;
  }

}

.testimonial {
  background: var(--surface-1);
  text-align: center;
  padding: 100px 20px;
  color: var(--cream);

}

.small {
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--gold-3);
  margin-top: -30px;
}

.testimonial h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 48px;
  margin: 10px 0 30px;
}

.testimonial h2 span {
  font-style: italic;
}

/* QUOTE */
.quote {
  margin-bottom: 20px;
  opacity: 0.3;
}

.quote svg {
  width: 30px;
}

/* SLIDER */
.testimonial-wrapper {
  overflow: hidden;
  max-width: 800px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* SLIDE */
.testi {
  min-width: 100%;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testi.active {
  opacity: 1;
}

/* TEXT */
.review {
  font-family: Cambria, Georgia, serif;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* USER */
.avatar {
  width: 50px;
  height: 50px;
  background: var(--surface-2);
  color: var(--gold-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
  font-weight: bold;
}

.user h4 {
  font-size: 14px;
}

.user span {
  font-size: 12px;
  color: var(--muted);
}

/* CONTROLS */
.controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.controls button {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold-line);
  color: var(--gold-line);
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.controls button:hover {
  background: var(--gold-btn);
  color: var(--green-950);
}

.controls svg {
  width: 18px;
}

#counter {
  font-size: 13px;
  letter-spacing: 2px;
}

/* TABLET */
@media(max-width:1024px) {
  .testimonial h2 {
    font-size: 36px;
  }
}

/* MOBILE */
@media(max-width:768px) {

  .testimonial {
    padding: 70px 15px;
  }

  .testimonial h2 {
    font-size: 28px;
  }

  .review {
    font-size: 16px;
  }

  .controls {
    gap: 10px;
  }

}


.developers {
  background: var(--surface-1);
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}

/* TITLE */
.developers .small {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 40px;
  padding: 0 20px;
}

/* MARQUEE WRAPPER */
.dev-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.dev-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: devScroll 28s linear infinite;
}

.dev-marquee:hover .dev-track {
  animation-play-state: paused;
}

@keyframes devScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* LOGO CHIP */
.dev-logo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--surface-2);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
}

.dev-logo-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.dev-logo-chip .dev-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dev-logo-chip .dev-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.dev-logo-chip span {
  font-family: Cambria, Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
}

/* TABLET */
@media(max-width:1024px) {
  .developers {
    padding: 60px 0;
  }

  .dev-track {
    gap: 36px;
  }
}

/* MOBILE */
@media(max-width:768px) {
  .developers {
    padding: 50px 0;
  }

  .dev-logo-chip {
    padding: 11px 20px;
  }

  .dev-logo-chip span {
    font-size: 14px;
  }

  .dev-logo-chip .dev-icon {
    width: 28px;
    height: 28px;
  }

  .dev-logo-chip .dev-icon svg {
    width: 15px;
    height: 15px;
  }
}

.contact {
  background: var(--surface-1);
  padding: 100px 60px;
  color: var(--cream);
}

.contact-container {
  display: flex;
  gap: 80px;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.small {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-3);
  margin-bottom: 20px;
}

.contact-left h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 44px;
  line-height: 1.2;
}

.contact-left span {
  font-style: italic;
}

.desc1 {
  margin: 25px 0;
  color: var(--muted);
  max-width: 620px;
  font-size: 16px;

}

/* INFO */
/* INFO — pin box shouldn't stretch to match 2-line address height */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}

/* ICON BOX — fixed square, same for phone/mail/pin */
.icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* FORCE EQUAL SVG SIZE — lucide renders <i> as <svg>, so target both */
.icon i,
.icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

/* ICON HOVER */
.info-box:hover .icon {
  border-color: var(--gold-3);
  color: var(--gold-3);
}

/* LABEL */
.label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--muted);
}

.info-box h4 {
  font-size: 16px;
  margin-top: 5px;
  font-weight: 10;
}

/* RIGHT */
.contact-right {
  flex: 1;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-btn-hover);
  transition: 0.4s;
}

.input-group:focus-within::after {
  width: 100%;
}

.input-group label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

/* INPUT STYLE */
.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gold-line);
  background: transparent;
  padding: 8px 0;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

/* FOCUS LINE EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  border-bottom: 1px solid var(--gold-3);
}

/* TEXTAREA */
textarea {
  resize: none;
  height: 80px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  background: var(--gold-btn);
  color: var(--green-950);
  padding: 16px;
  border: none;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* BUTTON HOVER */
.submit-btn:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255, 201, 77, 0.4);
  letter-spacing: 3px;
}

/* LEFT TEXT */
.contact-left .small {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.contact-left h2 {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.contact-left .desc {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

/* INFO BOX */
.info-box {
  opacity: 0;
  animation: fadeLeft 0.8s ease forwards;
}

.info-box:nth-child(1) {
  animation-delay: 0.3s;
}

.info-box:nth-child(2) {
  animation-delay: 0.5s;
}

.info-box:nth-child(3) {
  animation-delay: 0.7s;
}

/* RIGHT FORM */
.contact-right {
  opacity: 0;
  animation: fadeRight 1s ease forwards;
}

/* BUTTON */
.submit-btn {
  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* TABLET */
@media(max-width:1024px) {
  .contact {
    padding: 80px 30px;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
  }
}

/* MOBILE */
@media(max-width:768px) {

  .contact-left h2 {
    font-size: 36px;
  }

  .desc {
    font-size: 14px;
  }

  .info-box {
    gap: 15px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

}


.footer {
  background: linear-gradient(165deg, #123321 0%, #081410 100%);
  color: #fff;
  padding: 10px 60px;
  font-family: Cambria, Georgia, serif;
  border-top: 1px solid var(--gold-line);
}





/* TOP */
.footer-top {
  text-align: center;
  animation: fadeUp 1s ease;
}

.phone1 {
  font-size: 34px;
  color: #fff;
  text-decoration: none;
}

.phone:hover {
  color: var(--gold-3);
}

.call-text {
  font-size: 14px;
  letter-spacing: 3px;
  margin: 10px 0;
  opacity: 0.7;

}

.email1 {
  font-size: 16px;
}

.address {
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
  font-size: 16px;
  margin-top: 5px;
}



/* DIVIDER */
.divider {
  height: 1px;
  background: var(--gold-line);
  margin: 40px 0;
}

/* RERA */
.rera-box {
  background: var(--surface-1);
  color: var(--cream);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1.2s ease;
}

/* DISCLAIMER */
.disclaimer {
  font-size: 14px;
  opacity: 0.6;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* GRID — 3 balanced columns (brand / quick links / get in touch),
   sized so the full row is used with no leftover gap. */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.3fr;
  gap: 220px;
  margin-top: 50px;
}



/* LEFT */
.footer-left h3 {
  font-size: 22px;
}

.footer-left p {
  margin: 20px 0;
  opacity: 0.7;
}

/* SOCIAL */
.socials {
  display: flex;
  gap: 15px;
}

.socials i {
  border: 1px solid var(--gold-line);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  border-color: var(--gold-3);
  color: var(--gold-3);
}

/* LINKS */
.footer-grid h4 {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 15px;

}

.footer-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
  transition: 0.3s;

}

.footerh4 {
  color: var(--gold-3);
}

.footer-brand-row h3 {
  color: var(--gold-3);
}


.footer-grid a:hover {
  color: var(--gold-3);
}

/* CONTACT ITEMS — consistent icon size + tighter address width */
.contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
  align-items: flex-start;
}

/* lucide replaces <i data-lucide="..."> with an inline <svg>,
   so target both to be safe and force equal sizing */
.contact-item i,
.contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item span {
  display: block;
  max-width: 230px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.6;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TABLET */
@media(max-width:1024px) {
  .footer {
    padding: 10px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* brand block spans the full row on tablet so the two link columns
     beneath it stay evenly matched with no dangling empty cell */
  .footer-left {
    grid-column: 1 / -1;
  }
}

/* MOBILE */
@media(max-width:768px) {

  .phone1 {
    font-size: 20px;
  }

  .rera-box {

    padding: 10px;
    font-size: 10px;
    max-width: 800px;

  }

  /* DISCLAIMER */
  .disclaimer {
    font-size: 11px;

  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    text-align: center;
  }

  .address {
    font-size: 14px;
  }

  .footer-left h3 {
    font-size: 18px;
  }

  .footer-left p {
    font-size: 13px;
  }

  .footer-grid h4 {
    font-size: 15px;


  }

  .footer-grid a {

    font-size: 14px;

  }

  .footer-bottom {
    font-size: 10px;
  }
}

/* ================================================================
   SHARED ADDITIONS — LOGO / CONTACT BUTTON / PAGE BANNER / SANCTUARY
   ================================================================ */

/* NAV BRAND (logo image + wordmark) */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* WHITE SQUARE BADGE BEHIND LOGO */
.nav-logo-box {
  width: 62px;
  height: 62px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;

}

.nav-logo-box .logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.nav-brand .logo {
  font-family: Cambria, Georgia, serif;
  font-size: 21px;
  letter-spacing: 0.5px;
}

.navbar.scrolled .nav-brand .logo {
  color: var(--cream);
}

.navbar.scrolled .nav-brand .logo {
  color: var(--cream);
}

/* CONTACT-ONLY NAV RIGHT (phone removed) */
.nav-right {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
}

.nav-right .contact-btn {
  background: var(--surface-2);
  color: var(--cream);
  border: none;
  padding: 10px 26px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.nav-right .contact-btn:hover {
  background: var(--gold-btn-hover);
  color: var(--green-950);
  transform: scale(1.05);
}

.navbar.scrolled .nav-right .contact-btn {
  background: var(--gold-btn);
  color: var(--green-950);
}

.navbar.scrolled .logo-accent {
  color: var(--green);
}

.mobile-right .contact-btn {
  width: 80%;
  padding: 14px;
  background: var(--gold-btn);
  color: var(--green-950);
  border: none;
  text-align: center;
  text-decoration: none;
  display: block;
  letter-spacing: 1px;
  font-size: 15px;
}

.mobile-menu .nav-brand {
  margin-bottom: 10px;
}

.mobile-menu .nav-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.mobile-menu .nav-brand .logo {
  color: var(--cream);
}

/* ================= KEN BURNS HERO MOTION ================= */
.slider img {
  transform: scale(1.08);
}

.slider img.active {
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }

  100% {
    transform: scale(1.18) translate(-1.5%, -1.5%);
  }
}

@media(prefers-reduced-motion: reduce) {
  .slider img.active {
    animation: none;
    transform: scale(1);
  }
}

/* ================= SANCTUARY BAND (index) ================= */
.sanctuary-band {
  background: var(--surface-1);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.sanctuary-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.sanctuary-band p {
  max-width: 820px;
  margin: 0 auto;
  font-family: Cambria, Georgia, serif;
  font-size: 28px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

.sanctuary-band p span {
  color: var(--gold-2);
  font-style: normal;
  font-weight: 600;
}

@media(max-width:768px) {
  .sanctuary-band {
    padding: 60px 20px;
  }

  .sanctuary-band p {
    font-size: 19px;
  }
}

/* ================================================================
   PAGE BANNER — used on About / Services / Properties / Blog / Contact
   ================================================================ */
.page-banner {
  position: relative;
  height: 40h;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenBurns 10s ease-in-out infinite alternate;
}

.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 10, 0.58);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUpLuxury 1s ease forwards;
}

.page-banner .crumb {
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.page-banner .crumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.page-banner .crumb a:hover {
  opacity: 1;
}

.page-banner h1 {
  font-family: Cambria, Georgia, serif;
  font-size: 52px;
  line-height: 1.15;
}

.page-banner h1 span {
  font-style: italic;
  color: var(--gold-2);
}

.page-banner p.sub {
  margin-top: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
}

@media(max-width:1024px) {
  .page-banner h1 {
    font-size: 30px;
  }
}

@media(max-width:768px) {
  .page-banner {
    height: 30vh;
    min-height: 320px;
  }

  .page-banner h1 {
    font-size: 30px;
  }

  .page-banner p.sub {
    font-size: 13px;
    padding: 0 10px;
  }
}

/* ================================================================
   SHARED "NUMBERS" STAT STRIP (Services page etc.)
   ================================================================ */
.numbers-strip {
  background: var(--surface-1);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.numbers-strip .num-box {
  padding: 20px;
  border-left: 1px solid var(--gold-line);
}

.numbers-strip .num-box:first-child {
  border-left: none;
}

.numbers-strip h3 {
  font-family: Cambria, Georgia, serif;
  font-size: 44px;
  color: var(--gold-3);
}

.numbers-strip p {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

@media(max-width:1024px) {
  .numbers-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 30px;
  }

  .numbers-strip .num-box:nth-child(3) {
    border-left: none;
  }
}

@media(max-width:768px) {
  .numbers-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 20px;
    gap: 20px;
  }

  .numbers-strip h3 {
    font-size: 32px;
  }

  .numbers-strip .num-box {
    border-left: none !important;
  }
}



/* ================================================================
   PROPERTY CARD EXTRAS (status pill + enquire button)
   ================================================================ */
.status-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.status-new-launch {
  background: #2f7d4f;
}

.status-under-construction {
  background: #c98a1e;
}

.status-ready {
  background: #2b6cb0;
}

.status-available {
  background: #2f7d4f;
}

.status-sold-out {
  background: #8a8a8a;
}

.enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2c3d1f, #101609);
  border: 1px solid rgba(201, 147, 44, 0.35);
  color: #f4efe1;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: linear-gradient(135deg, #ffc94d, #e6971a);
  border-color: #ffc94d;
  color: #1a1206;
}

.enquire-btn i {
  width: 15px;
  height: 15px;
}

/* FILTER TABS (Properties page) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
}

.filter-btn:hover {
  border-color: #ffb627;
  color: #e6971a;
}

.filter-btn.active {
  background: linear-gradient(135deg, #ffc94d, #e6971a);
  border-color: #e6971a;
  color: #1a1206;
  font-weight: 600;
}

/* ================================================================
   BLOG CARDS (Blog listing page)
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface-2);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  border-color: var(--gold-line-strong);
}

.blog-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-icon {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold-btn-hover);
  color: var(--green-950);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.blog-icon svg {
  width: 20px;
  height: 20px;
}

.blog-body {
  padding: 34px 24px 26px;
}

.blog-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta svg {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
}

.blog-body h3 {
  font-family: Cambria, Georgia, serif;
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--cream);
  transition: 0.3s;
}

.blog-card:hover .blog-body h3 {
  color: var(--gold-3);
}

.blog-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more svg {
  width: 14px;
  height: 14px;
  transition: 0.3s;
}

.blog-card:hover .read-more svg {
  transform: translateX(4px);
}

@media(max-width:1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   BLOG POST DETAIL PAGE
   ================================================================ */
.post-banner {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.post-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25));
}

.post-banner-content {
  position: relative;
  z-index: 2;
  padding: 50px 60px;
  max-width: 900px;
}

.post-banner-content .crumb {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
}

.post-banner-content .crumb a {
  color: #fff;
  text-decoration: none;
}

.post-banner-content h1 {
  font-family: Cambria, Georgia, serif;
  font-size: 38px;
  line-height: 1.25;
}

.post-banner-content .sub {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.85;
}

.post-body-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 20px 100px;
}

.post-body h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 26px;
  margin: 36px 0 16px;
  color: var(--cream);
}

.post-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}

.post-body ul {
  margin: 0 0 20px 20px;
}

.post-body li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 8px;
}

.post-cta {
  margin-top: 60px;
  background: var(--surface-1);
  padding: 40px;
  text-align: center;
}

.post-cta h3 {
  font-family: Cambria, Georgia, serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.post-cta p {
  color: var(--muted);
  margin-bottom: 22px;
}

.post-cta .submit-btn {
  display: inline-block;
  width: auto;
  padding: 14px 34px;
  text-decoration: none;
  background: #25D366;
}

.post-cta .submit-btn:hover {
  background: #1ea952;
}

.related-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.related-wrap h3 {
  font-family: Cambria, Georgia, serif;
  font-size: 26px;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .post-banner-content {
    padding: 30px 24px;
  }

  .post-banner-content h1 {
    font-size: 26px;
  }

  .post-body-wrap {
    padding: 50px 18px 70px;
  }

  .post-cta {
    padding: 30px 20px;
  }
}


/* ================================================================
   SHARED CTA BAND (About / Services / Properties / Blog)
   ================================================================ */
.about-cta {
  background: var(--surface-1);
  padding: 100px 20px;
  text-align: center;
}

.about-cta-content h2 {
  font-family: Cambria, Georgia, serif;
  font-size: 38px;
  color: var(--cream);
  margin-bottom: 16px;
}

.about-cta-content h2 span {
  font-style: italic;
  color: var(--gold-3);
}

.about-cta-content p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 34px;
}

.about-cta .buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-cta .primary,
.about-cta .secondary {
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
}

.about-cta .primary {
  background: var(--gold-btn);
  color: var(--green-950);
}

.about-cta .primary:hover {
  background: var(--gold-btn-hover);
}

.about-cta .secondary {
  border: 1px solid var(--gold-line);
  color: var(--cream);
}

.about-cta .secondary:hover {
  background: var(--gold-btn);
  color: var(--green-950);
}

@media(max-width:768px) {
  .about-cta {
    padding: 70px 20px;
  }

  .about-cta-content h2 {
    font-size: 26px;
  }

  .about-cta .buttons {
    flex-direction: column;
  }
}

/* ================= REVEAL (shared) ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   SHARED FORM STATUS (index + contact page)
   ================================================================ */
.form-status {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--surface-2);
  color: var(--gold-4);
  font-size: 13.5px;
  border-left: 3px solid var(--gold-4);
}

.form-status svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-4);
  flex-shrink: 0;
}

/* ================================================================
   FEATURED PROPERTIES CAROUSEL (index)
   ================================================================ */

.featured-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding-right: 10px;
  touch-action: pan-y;
  /* allow vertical page scroll, but let JS handle horizontal swipe */
  cursor: grab;
}

.featured-carousel-wrap.dragging {
  cursor: grabbing;
}

.featured-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.featured-track.no-transition {
  transition: none;
  /* disable transition while actively dragging, for 1:1 finger tracking */
}



.featured-slide {
  flex: 0 0 33.333%;
  padding-right: 28px;
  box-sizing: border-box;
}

/* UPMARKET DARK CARD (matches the main property card treatment) */
.featured-slide .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-slide .card .card-content {
  padding: 20px 22px 22px;
}

.featured-slide .img-box img {
  height: 240px;
}

/* NEXT ARROW — right, vertically centered */
.carousel-arrow {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gold-btn);
  color: var(--green-950);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  z-index: 5;
}

.carousel-arrow:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

@media(max-width:1024px) {
  .featured-slide {
    flex: 0 0 50%;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    right: 0;
  }
}

@media(max-width:768px) {
  .featured-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .featured-carousel-wrap {
    padding-right: 0;
  }

  .carousel-arrow {
    position: static;
    transform: none;
    margin: 24px auto 0;
    display: flex;
  }
}

/* ================================================================
   FOOTER LOGO (white square badge next to "Have a Nest")
   ================================================================ */
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-box {
  width: 64px;
  height: 64px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-row h3 {
  font-size: 22px;
  margin: 0;
}

@media(max-width:768px) {
  .footer-logo-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .footer-brand-row h3 {
    font-size: 18px;
  }
}


/* ================================================================
   MOBILE MENU OPEN — hide hamburger + floating WA/call buttons
   ================================================================ */
body.menu-open .menu-toggle {
  display: none !important;
}

body.menu-open .float-actions {
  display: none !important;
}

/* ================================================================
   VIEW ALL PROJECTS — hover
   ================================================================ */
.view-all {
  transition: 0.3s ease;
  display: inline-block;
}

.view-all:hover {
  color: var(--gold-3);
  letter-spacing: 3px;
}

/* ================================================================
   FEATURED CARD AS LINK (whole card clicks through to Properties)
   ================================================================ */
.card {
  display: block;
  color: inherit;
  text-decoration: none;
}



/* ================================================================
   MESSAGE POPUP + CALL POPUP
   ================================================================ */

/* ---------- SHARED OVERLAY ---------- */
.message-overlay,
.call-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 34, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 3000;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.message-overlay.active,
.call-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- MESSAGE POPUP ---------- */
.message-popup {
  position: relative;
  background: var(--surface-2);
  color: var(--cream);
  width: 420px;
  max-width: 100%;
  padding: 24px 28px 20px;
  border-radius: 8px;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s ease;
}

.message-overlay.active .message-popup {
  transform: translateY(0) scale(1);
}

/* ---------- GLASS CLOSE BUTTON (top right, both popups) ---------- */
.message-close,
.call-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}

.message-close {
  color: var(--cream);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.message-close:hover {
  background: rgba(255, 201, 77, 0.15);
  color: var(--gold-3);
  border-color: rgba(255, 201, 77, 0.35);
}

.call-close {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.call-close:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--gold-2);
}

.message-title {
  font-family: Cambria, Georgia, serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 14px;
  color: var(--cream);
}

.message-group {
  position: relative;
  margin-bottom: 9px;
}

.message-group input,
.message-group select,
.message-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gold-line);
  background: transparent;
  padding: 6px 2px;
  font-family: Cambria, Georgia, serif;
  font-size: 13px;
  color: var(--cream);
  outline: none;
  transition: 0.3s;
}

.message-group textarea {
  resize: none;
  min-height: 36px;
}

.message-group input::placeholder,
.message-group textarea::placeholder {
  color: var(--muted);
  letter-spacing: 0.5px;
}

.message-group input:focus,
.message-group select:focus,
.message-group textarea:focus {
  border-bottom: 1px solid var(--gold-4);
}

.select-group select {
  cursor: pointer;
  color: var(--muted);
}

.message-submit {
  width: 100%;
  background: var(--gold-btn);
  color: var(--green-950);
  border: none;
  padding: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 2px;
}

.message-submit:hover {
  background: var(--gold-btn-hover);
}

.message-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.message-confirm {
  display: none;
  text-align: center;
  padding: 16px 10px;
}

.message-confirm.show {
  display: block;
}

.message-confirm p {
  font-family: Cambria, Georgia, serif;
  font-size: 15px;
  color: var(--gold-4);
  line-height: 1.5;
}

/* ---------- CALL POPUP ---------- */
.call-popup {
  position: relative;
  background: var(--surface-1);
  color: #fff;
  width: 360px;
  max-width: 100%;
  padding: 38px 28px;
  border-radius: 8px;
  text-align: center;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s ease;
}

.call-overlay.active .call-popup {
  transform: translateY(0) scale(1);
}

.call-small {
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 20px;
}

.call-number {
  font-family: Cambria, Georgia, serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  display: block;
}

.call-number span {
  display: block;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--gold-2);
  margin-top: 8px;
  font-style: normal;
}

@media(max-width:768px) {
  .message-popup {
    padding: 22px 20px 18px;
  }

  .message-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .call-popup {
    padding: 32px 22px;
  }

  .call-number span {
    font-size: 20px;
  }

  .message-close,
  .call-close {
    width: 26px;
    height: 26px;
    font-size: 16px;
    top: 10px;
    right: 10px;
  }

}

/* ================================================================
   FLOATING ACTION BUTTONS — WhatsApp / Call / Message
   ================================================================ */
.float-actions {
  position: fixed;
  top: 110px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-actions a,
.float-actions button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--green-950);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: 0.3s ease;
  font-size: 20px;
  color: var(--gold-3);
}

.float-actions a.wa,
.float-actions a.call,
.float-actions button.call,
.float-actions a.msg,
.float-actions button.msg {
  color: var(--gold-3);
}

.float-actions a:hover,
.float-actions button:hover {

  color: var(--green-950);

  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 201, 77, 0.5);
  background: var(--gold-btn-hover);
}

.float-actions svg {
  width: 20px;
  height: 20px;
}

@media(max-width:768px) {
  .float-actions {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 50%;

    transform: translateX(-50%);
    flex-direction: row;
    gap: 12px;
  }

  .float-actions a,
  .float-actions button {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .float-actions svg {
    width: 18px;
    height: 18px;
  }
}



.dev-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  flex-shrink: 0;
}

.dev-logo-mark img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: 0.3s;
}

.dev-logo-mark:hover img {
  transform: scale(1.06);
}

.dev-logo-mark .fallback-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.dev-logo-mark .fallback-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* =========================================================
   THEME ENHANCEMENTS — shine sweep for every gold CTA on the
   site (nav button, hero buttons, view-all, form submit
   buttons, gallery arrows) so buttons read "alive" and premium
   instead of flat. Also a couple of final white/gray mop-ups.
   ========================================================= */

.cta,
.primary,
.view-all,
.submit-btn,
.message-submit,
.about-cta .primary,
.mobile-right button,
.contact-btn,
.pd-brochure-btn,
.pd-share-btn,
button[type="submit"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta::before,
.primary::before,
.view-all::before,
.submit-btn::before,
.message-submit::before,
.about-cta .primary::before,
.mobile-right button::before,
.contact-btn::before,
.pd-brochure-btn::before,
.pd-share-btn::before,
button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: var(--shine-sweep);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}

.cta:hover::before,
.primary:hover::before,
.view-all:hover::before,
.submit-btn:hover::before,
.message-submit:hover::before,
.about-cta .primary:hover::before,
.mobile-right button:hover::before,
.contact-btn:hover::before,
.pd-brochure-btn:hover::before,
.pd-share-btn:hover::before,
button[type="submit"]:hover::before {
  animation: shineSweep 0.9s ease forwards;
}

@keyframes shineSweep {
  to {
    left: 130%;
  }
}

/* slow ambient shimmer so the primary hero CTA catches the eye
   even before anyone hovers it */
.primary {
  background-size: 200% 200%;
  animation: goldShimmer 4.5s ease-in-out infinite;
}

@keyframes goldShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* nav link underline + accents already switched to gold via the
   bulk pass; make sure the logo wordmark reads cream, not the old
   off-white, and that scrolled navbar is glassy dark-green, not
   white, on every page */
.logo-accent {
  color: var(--cream);
}

.navbar.scrolled {
  background: var(--nav-scrolled-bg) !important;
  border-bottom: 1px solid var(--gold-line);
}

.navbar.scrolled nav a {
  color: var(--cream) !important;
}

.navbar.scrolled nav a::after {
  background: var(--gold-3) !important;
}

.navbar.scrolled .logo {
  color: var(--cream) !important;
}

.navbar.scrolled .nav-right span {
  color: var(--cream) !important;
}

.navbar.scrolled .menu-toggle {
  color: var(--cream) !important;
}

.navbar.scrolled .cta {
  background: var(--gold-btn) !important;
  color: var(--green-950) !important;
}

/* mobile fullscreen menu — was pure white, now on-brand dark green
   with a soft gold edge so it matches the rest of the site */
.mobile-menu {
  background: linear-gradient(165deg, #123321 0%, #081410 100%) !important;
  color: var(--cream) !important;
  border-left: 1px solid var(--gold-line);
}

.mobile-menu a {
  color: var(--cream) !important;
  border-bottom: 1px solid var(--gold-line) !important;
}

.mobile-menu a.active,
.mobile-menu a:hover {
  color: var(--gold-2) !important;
}

.close-btn {
  color: var(--gold-2);
}

.mobile-right span {
  color: var(--muted) !important;
}

/* form inputs across the site (contact, enquiry popups) — dark
   glass fields instead of white boxes, gold focus ring */
input,
textarea,
select {
  background: rgba(10, 25, 16, 0.55);
  border: 1px solid var(--gold-line);
  color: var(--cream);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(255, 201, 77, 0.18);
}

/* checkbox / radio accent to gold */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--gold-3);
}