/* ============================================
   MAHODADHI HOMES - Premium Real Estate CSS
   Design System & Complete Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Krishti Premier Warm Terracotta & Cream Palette */
  --color-primary-bg: #ffffff;
  --color-secondary-bg: #faf5ef; /* Warm cream background */
  --color-dark-bg: #0e1c33;
  --color-text-primary: #1d1d1f;
  --color-text-secondary: #86868b;
  --color-text-on-dark: #ffffff;
  --color-gold: #b26f2d; /* Krishti Premier Terracotta Copper Gold */
  --color-gold-hover: #8d5723; /* Darker terracotta gold */
  --color-gold-light: rgba(178, 111, 45, 0.08);
  --color-gold-footer: #d99a3f; /* Warmer gold pulled from the logo's own
    orange-gold, used only on the dark footer where the muted terracotta
    above reads a little flat and sits closer to the 4.5:1 contrast floor
    against the navy background than it should. */
  --color-gold-footer-hover: #c2872f;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-success: #1d9d47;
  --color-error: #d32f2f;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --line-height-body: 1.5;
  --line-height-heading: 1.1;

  /* Spacing & Border Contours */
  --section-padding: 120px 0;
  --section-padding-mobile: 80px 0;
  --container-max-width: 1100px;
  --card-padding: 32px;
  --grid-gap: 24px;

  /* Transitions */
  --transition-default: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
  background-color: var(--color-primary-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-secondary-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-secondary-bg);
}

/* Selection */
::selection {
  background: var(--color-dark-bg);
  color: var(--color-gold);
}

::-moz-selection {
  background: var(--color-dark-bg);
  color: var(--color-gold);
}

/* Base Elements */
img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-default);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  color: var(--color-text-primary);
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold {
  color: var(--color-gold);
}

.text-center {
  text-align: center;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(25, 20, 14, 0.08);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
  text-decoration: none;
  border: none;
  gap: 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.btn::after {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -115%;
  width: 58%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .32), transparent);
  content: '';
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}

.btn:hover::after { left: 160%; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 13px 26px rgba(25, 20, 14, .16); }
.btn:active { transform: translateY(-1px) scale(.985); box-shadow: 0 6px 14px rgba(25, 20, 14, .12); }
.btn:focus-visible { outline: 3px solid rgba(168, 118, 33, .52); outline-offset: 3px; }
.btn i { transition: transform .25s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, #fffdf8, #e9decb);
  color: #21180f;
  border: 1px solid rgba(168, 118, 33, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff, #e4c77e);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.02);
}


/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition-smooth);
  background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(249, 246, 239, .5));
  backdrop-filter: saturate(180%) blur(26px);
  -webkit-backdrop-filter: saturate(180%) blur(26px);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 1px 0 rgba(83, 68, 46, .09), 0 12px 32px rgba(32, 25, 17, .08);
}

.navbar::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 118, 33, .25), transparent);
  content: '';
  pointer-events: none;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(249, 246, 239, .74));
  padding: 8px 0;
  border-bottom: 1px solid rgba(75, 57, 31, 0.16);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.nav-logo { display: inline-flex; align-items: center; gap: 11px; min-width: 245px; }
.nav-logo img {
  height: 64px;
  width: auto;
  transition: transform 0.25s ease;
}

.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-brand { display: grid; gap: 3px; color: #1f1912; line-height: 1; }
.nav-brand strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.13rem; font-weight: 600; letter-spacing: -.02em; }
.nav-brand small { color: #8d7656; font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  position: relative;
  color: #514b43;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .01em;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: var(--transition-default);
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  color: #9b6b17;
  background: rgba(255, 255, 255, .46);
  border-color: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.nav-link.active {
  color: #2a2117;
  font-weight: 700;
  background: rgba(255, 255, 255, .56);
  border-color: rgba(255, 255, 255, .76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 3px 10px rgba(56, 45, 29, .05);
}
.nav-link::after { position: absolute; right: 13px; bottom: 5px; left: 13px; height: 1px; background: #a87621; content: ''; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  color: #6f4b10;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  border: 1px solid rgba(184, 126, 27, .45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 253, 247, .78), rgba(247, 226, 167, .72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 6px 16px rgba(169, 114, 20, .12);
  transition: var(--transition-default);
}

.nav-phone:hover {
  color: #fffdf7;
  border-color: #bd8518;
  background: linear-gradient(135deg, #d4a02a, #b77a12);
  transform: translateY(-1px);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1d1d1f; /* Dark spans for light navbar */
  border-radius: 1px;
  transition: var(--transition-default);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
/* ============================================
   HERO SECTION — editorial architectural design
   ============================================ */
:root {
  --hero-ink: #3b2a17;
  --hero-warm: #f4f0e8;
  --hero-gold: #bd8518;
  --hero-rule: rgba(52, 43, 30, .32);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: min(840px, 100svh);
  display: flex;
  align-items: center;
  padding: 148px 0 74px;
  overflow: hidden;
  background: #d8d4cc;
}

.hero-slides {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s cubic-bezier(.45, 0, .2, 1); will-change: opacity; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide.is-active img { animation: hero-image-settle 9s cubic-bezier(.16, 1, .3, 1) both; }

.hero-section::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 248, 243, .96) 0%, rgba(250, 248, 243, .9) 32%, rgba(250, 248, 243, .48) 56%, rgba(20, 24, 29, .36) 100%);
  content: '';
}

.hero-grid {
  width: min(1540px, calc(100% - 10vw));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 47rem) 1fr;
  align-items: center;
  min-height: 550px;
}

.hero-content { max-width: 45rem; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 0 0 2.8rem;
  color: #625d57;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .34em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow::before { width: 2.5rem; height: 1px; background: var(--hero-rule); content: ''; }

.hero-title {
  max-width: 46rem;
  margin: 0;
  color: var(--hero-ink);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(4.2rem, 6.2vw, 7.15rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .91;
}

.hero-title span { display: block; }

.hero-description {
  max-width: 38rem;
  margin: 2.4rem 0 3rem;
  color: #514d48;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.62;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 3.8rem; }

.hero-cta .btn {
  min-height: 3.9rem;
  padding: .9rem 2rem;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 600;
  transition: background-color .35s cubic-bezier(.45, 0, .2, 1), color .35s cubic-bezier(.45, 0, .2, 1), border-color .35s cubic-bezier(.45, 0, .2, 1), box-shadow .35s cubic-bezier(.45, 0, .2, 1), transform .35s cubic-bezier(.34, 1.4, .64, 1);
}

.hero-primary { background: linear-gradient(135deg, #d7a72f, #b77a12) !important; border: 1px solid #b77a12 !important; box-shadow: 0 12px 22px rgba(183, 122, 18, .24); color: #fffdf7 !important; }
.hero-primary:hover { background: linear-gradient(135deg, #e5bb4c, #c7891e) !important; border-color: #c7891e !important; box-shadow: 0 17px 28px rgba(183, 122, 18, .3); transform: translateY(-3px); }
.hero-primary i { margin-left: .55rem; transition: transform .35s cubic-bezier(.34, 1.4, .64, 1); }
.hero-primary:hover i { transform: translateX(4px); }
.hero-secondary { background: rgba(255, 253, 247, .48); border: 1px solid rgba(189, 133, 24, .5); color: #765115 !important; }
.hero-secondary:hover { background: rgba(255, 253, 247, .88); border-color: var(--hero-gold); transform: translateY(-3px); }
.hero-cta .btn:focus-visible { outline: 3px solid var(--hero-gold); outline-offset: 3px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(38, 31, 23, .18);
  color: #514d48;
  font-size: .83rem;
  font-weight: 600;
  list-style: none;
}
.hero-trust li { display: flex; align-items: center; gap: .45rem; }
.hero-trust i { color: var(--hero-gold); font-size: .73rem; }

.hero-slider-controls {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 4vw, 3.75rem);
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 2;
  color: #fff;
}
.hero-slider-button {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(21, 18, 14, .22);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.hero-slider-button:hover { background: #fff; color: var(--hero-ink); transform: translateY(-2px); }
.hero-slider-button:focus-visible { outline: 3px solid var(--hero-gold); outline-offset: 3px; }
.hero-slide-status { min-width: 3.8rem; color: rgba(255, 255, 255, .94); font-size: .77rem; font-weight: 700; letter-spacing: .14em; text-align: center; }

@keyframes hero-image-settle { from { transform: scale(1.08); } to { transform: scale(1); } }

@media (max-width: 1023px) {
  .hero-section { min-height: 720px; padding: 130px 0 60px; }
  .hero-grid { width: min(100% - 64px, 900px); grid-template-columns: minmax(0, 39rem) 1fr; }
  .hero-section::after { background: linear-gradient(90deg, rgba(250, 248, 243, .96) 0%, rgba(250, 248, 243, .85) 48%, rgba(250, 248, 243, .32) 100%); }
  .hero-title { font-size: clamp(3.75rem, 7.5vw, 5.8rem); }
}

@media (max-width: 767px) {
  .hero-section { min-height: auto; padding: 118px 0 58px; }
  .hero-section::after { background: linear-gradient(90deg, rgba(250, 248, 243, .96), rgba(250, 248, 243, .75)); }
  .hero-grid { width: min(100% - 40px, 580px); min-height: 610px; grid-template-columns: 1fr; }
  .hero-eyebrow { margin-bottom: 2rem; font-size: .66rem; letter-spacing: .24em; }
  .hero-title { max-width: 100%; font-size: clamp(3.55rem, 17vw, 5rem); letter-spacing: -.07em; line-height: .92; }
  .hero-description { margin: 2rem 0 2.35rem; font-size: 1rem; }
  .hero-cta { flex-direction: column; margin-bottom: 2.7rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { display: grid; gap: .65rem; padding-top: 1.5rem; }
  .hero-slider-controls { right: 1.25rem; bottom: 1.25rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow, .hero-title, .hero-description, .hero-cta, .hero-trust { animation: hero-reveal 1.1s both cubic-bezier(.16, 1, .3, 1); }
  .hero-eyebrow { animation-delay: .05s; }
  .hero-title { animation-delay: .16s; }
  .hero-description { animation-delay: .3s; }
  .hero-cta { animation-delay: .44s; }
  .hero-trust { animation-delay: .56s; }
}
@keyframes hero-reveal { from { opacity: 0; transform: translateY(22px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
@media (prefers-reduced-motion: reduce) { .hero-eyebrow, .hero-title, .hero-description, .hero-cta, .hero-trust, .hero-slide img { animation: none; transition: none; } }
@media (prefers-reduced-motion: reduce) { .btn, .btn::after, .btn i { transition: none; } }
@media (prefers-reduced-motion: reduce) { .about-decor-blob, .text-highlight::after, .pulse-ring, .about-experience-badge, .about-image-wrapper img, .highlight-item, .highlight-icon, .about-frame { animation: none; transition: none; } }

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-primary-bg);
  padding: var(--section-padding);
}

.about-decor {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.about-decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}

.about-decor-blob--one {
  top: -8%;
  left: -6%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(178, 111, 45, .16), rgba(178, 111, 45, 0) 70%);
  animation: about-blob-float 14s ease-in-out infinite;
}

.about-decor-blob--two {
  bottom: -12%;
  right: -8%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(178, 111, 45, .12), rgba(178, 111, 45, 0) 70%);
  animation: about-blob-float 18s ease-in-out infinite reverse;
}

.about-decor-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(29, 29, 31, .05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 15% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 60% 55% at 15% 30%, #000 0%, transparent 72%);
}

@keyframes about-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 4%) scale(1.08); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
  padding: 6px 16px 6px 12px;
  border-radius: 999px;
  background: var(--color-gold-light);
  border: 1px solid rgba(178, 111, 45, .18);
}

.section-subtitle i { font-size: .85em; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-text-primary);
}

.text-highlight {
  position: relative;
  color: var(--color-gold);
  white-space: nowrap;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .08em;
  height: .32em;
  background: rgba(178, 111, 45, .18);
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-sweep 1s cubic-bezier(.45, 0, .2, 1) .5s forwards;
}

@keyframes highlight-sweep { to { transform: scaleX(1); } }

.about-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-highlights {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--color-primary-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(29, 29, 31, .04);
  transition: var(--transition-smooth);
}

.highlight-item:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 111, 45, .3);
  box-shadow: 0 16px 32px rgba(178, 111, 45, .14);
}

.highlight-item strong { color: var(--color-text-primary); }
.highlight-item p { margin-top: 2px; font-size: .85rem; color: var(--color-text-secondary); }

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.highlight-item:hover .highlight-icon {
  background: var(--color-gold);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.about-cta {
  position: relative;
  overflow: hidden;
}

.about-cta i {
  margin-left: .5rem;
  transition: transform .35s cubic-bezier(.34, 1.4, .64, 1);
}

.about-cta:hover i { transform: translateX(4px); }

.about-visual {
  position: relative;
}

.about-frame {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(178, 111, 45, .35);
  border-radius: 20px;
  z-index: -1;
  transition: var(--transition-smooth);
}

.about-visual:hover .about-frame {
  top: -10px;
  left: -10px;
  border-color: var(--color-gold);
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(20, 15, 10, .38) 100%);
  pointer-events: none;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.about-visual:hover .about-image-wrapper img {
  transform: scale(1.06);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary-bg);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 14px 42px rgba(178, 111, 45, .18);
  text-align: center;
  border: 1px solid rgba(178, 111, 45, .14);
  animation: badge-pop .6s cubic-bezier(.34, 1.4, .64, 1) both;
  animation-play-state: paused;
}

.about-experience-badge.is-visible { animation-play-state: running; }

@keyframes badge-pop {
  from { opacity: 0; transform: translateY(14px) scale(.85); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.about-experience-badge .badge-number,
.about-experience-badge .badge-plus {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.2;
}

.about-experience-badge .badge-number,
.about-experience-badge .badge-plus,
.about-experience-badge .badge-text { display: inline; }

.about-experience-badge .badge-text {
  display: block;
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* Video Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.9);
  border: none;
  color: var(--color-text-on-dark);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-gold);
}

/* Pulsing ring animation for play button */
.video-play-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  animation: pulse 2s infinite;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  animation: video-pulse 2.4s cubic-bezier(.24, .7, .4, 1) infinite;
}

.pulse-ring--delay { animation-delay: 1.2s; }

@keyframes video-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.9); opacity: 0; }
}


/* ============================================
   PROJECTS SECTION
   ============================================ */

.projects-section {
  background: var(--color-secondary-bg);
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.project-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px; /* Curved Apple bento look */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: border-color 0.4s ease, box-shadow 0.4s ease; /* No transform transition by default to prevent GSAP conflict */
}

.project-card.hover-active {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  border-color: rgba(184, 144, 71, 0.4);
  box-shadow: 0 20px 45px rgba(184, 144, 71, 0.12);
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-completed {
  background: var(--color-success);
  color: var(--color-text-on-dark);
}

.status-ongoing {
  background: var(--color-gold);
  color: var(--color-text-on-dark);
}

.project-content {
  padding: 24px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.project-location {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-description {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-actions {
  display: flex;
  gap: 12px;
}

.btn-details {
  background: var(--color-gold);
  color: var(--color-text-on-dark);
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-details:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

.brochure-btn {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brochure-btn:hover {
  background: var(--color-gold-light);
}


/* ============================================
   AMENITIES SECTION
   ============================================ */

.amenities-section {
  background: var(--color-primary-bg);
  color: var(--color-text-primary);
  padding: var(--section-padding);
  border-top: 1px solid var(--color-border);
}

.amenities-section .section-subtitle {
  color: var(--color-gold);
}

.amenities-section .section-title {
  color: var(--color-text-primary);
}

.amenities-section .section-header p {
  color: var(--color-text-secondary);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.amenity-card {
  background: var(--color-secondary-bg);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease; /* No transform transition by default to prevent GSAP conflict */
}

.amenity-card.hover-active {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.amenity-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  border-color: rgba(184, 144, 71, 0.4);
  box-shadow: 0 20px 45px rgba(184, 144, 71, 0.12);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: rotateY(180deg);
}

.amenity-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.amenity-description {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}


/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  background: var(--color-primary-bg);
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease; /* No transform transition by default to prevent GSAP conflict */
}

.service-card.hover-active {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
  background: #ffffff;
  border-color: rgba(184, 144, 71, 0.4);
  box-shadow: 0 15px 35px rgba(184, 144, 71, 0.12);
  transform: translateY(-6px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 45px;
  height: auto;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.service-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-default);
}

.service-link:hover {
  text-decoration: underline;
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  background: var(--color-secondary-bg);
  padding: var(--section-padding);
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-card-inner {
  background: var(--color-primary-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 48px;
  color: var(--color-gold);
  font-family: serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-avatar-placeholder {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-light);
  color: var(--color-gold);
  font-size: 18px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 15px;
  margin-bottom: 4px;
}

.testimonial-rating {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-primary-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  color: var(--color-text-primary);
  font-size: 16px;
}

.carousel-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition-default);
  border: none;
}

.carousel-dot.active {
  background: var(--color-gold);
  width: 30px;
  border-radius: 5px;
}


/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  background: var(--color-primary-bg);
  padding: var(--section-padding);
}

.faq-list {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 24px;
  row-gap: 12px;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition-default);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  font-family: var(--font-body);
  gap: 16px;
}

.faq-icon {
  font-size: 20px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  background: var(--color-secondary-bg);
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-title {
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-item-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-item-text a {
  color: var(--color-text-secondary);
  transition: var(--transition-default);
}

.contact-item-text a:hover {
  color: var(--color-gold);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-primary-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-size: 16px;
  background: var(--color-primary-bg);
  transition: var(--transition-default);
  font-family: var(--font-body);
  outline: none;
  color: var(--color-text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--color-text-secondary);
  transition: var(--transition-default);
  pointer-events: none;
  background: var(--color-primary-bg);
  padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group input.has-value ~ label {
  top: 0;
  font-size: 12px;
  color: var(--color-gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group textarea ~ label {
  top: 20px;
  transform: none;
}

.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group textarea.has-value ~ label {
  top: -8px;
  font-size: 12px;
  color: var(--color-gold);
}

/* Form Validation States */
.form-group.error input,
.form-group.error textarea {
  border-color: var(--color-error);
}

.form-group.error label {
  color: var(--color-error);
}

.form-group.success input,
.form-group.success textarea {
  border-color: var(--color-success);
}

.form-error {
  font-size: 12px;
  color: var(--color-error);
  margin-top: 4px;
  display: block;
  min-height: 16px;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-gold);
  color: var(--color-text-on-dark);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-text-on-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-text {
  visibility: hidden;
  opacity: 0;
}

.btn-submit.loading .btn-loader {
  display: block;
  position: absolute;
}

/* Form Status Messages */
.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  display: none;
  font-size: 14px;
  font-weight: 500;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}


/* ============================================
   FOOTER
   ============================================ */

.footer-section {
  background: var(--color-dark-bg);
  color: var(--color-text-on-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
}

/* Footer Brand */
/* The logo's royal-blue is close in value to the dark footer background,
   so on its own it nearly disappears here (it only reads clearly on the
   light navbar). A small light plate behind it restores the contrast
   the mark needs. */
.footer-brand .footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 50px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

/* Footer Contact Block (address / phone / email) */
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 26px;
}

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.footer-address i {
  /* Same icon-badge treatment as .contact-icon on the Contact section,
     so the footer and contact block read as one consistent system. */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-gold-footer);
  font-size: 13px;
  line-height: 1;
}

.footer-address span,
.footer-address a {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  padding-top: 7px; /* optically centers text against the 32px icon badge */
}

.footer-address a {
  transition: var(--transition-default);
}

.footer-address a:hover {
  color: var(--color-gold-footer);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  transition: var(--transition-default);
  font-size: 16px;
}

.social-links a:hover {
  background: var(--color-gold-footer);
  color: var(--color-dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(178, 111, 45, 0.35);
}

/* Real brand colors for each platform's logo, instead of a flat
   single tone. Specificity (0,2,1) beats the base ".social-links a"
   rule (0,1,1), and sits after the hover rule below so hovered icons
   keep their true brand color instead of being recolored gold/dark. */
.social-links a[aria-label="Facebook"] { color: #1877F2; }
.social-links a[aria-label="Twitter"] { color: #000000; }
.social-links a[aria-label="LinkedIn"] { color: #0A66C2; }
.social-links a[aria-label="YouTube"] { color: #FF0000; }
.social-links a[aria-label="WhatsApp"],
.social-links a[aria-label="Chat with us on WhatsApp"] { color: #25D366; }
.social-links a[aria-label="Instagram"] { color: #E4405F; }

.social-links a[aria-label="Facebook"]:hover,
.social-links a[aria-label="Twitter"]:hover,
.social-links a[aria-label="LinkedIn"]:hover,
.social-links a[aria-label="YouTube"]:hover,
.social-links a[aria-label="WhatsApp"]:hover,
.social-links a[aria-label="Chat with us on WhatsApp"]:hover,
.social-links a[aria-label="Instagram"]:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(14, 28, 51, 0.18);
}

/* Light-background variant — used on the Contact page's "Follow Us" card,
   which sits on a light card, not the dark footer. The default
   .social-links a is white-on-transparent and is invisible there. */
.contact-social .social-links a {
  background: var(--color-gold-light);
}

.contact-social .social-links a:hover {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(14, 28, 51, 0.12);
}

/* Footer Column Headings (Links / Map / Newsletter) — one shared rule so
   all three columns share identical type hierarchy instead of three
   near-duplicate declarations drifting apart over time. */
.footer-links h3,
.footer-map h3,
.footer-newsletter h3 {
  position: relative;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 12px;
  color: var(--color-text-on-dark);
}

.footer-links h3::after,
.footer-map h3::after,
.footer-newsletter h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--color-gold-footer);
  border-radius: 2px;
}

/* Footer Links */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold-footer);
}

/* Footer Map */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

/* Footer Newsletter */
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-on-dark);
  margin-bottom: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-default);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input:focus {
  border-color: var(--color-gold-footer);
  box-shadow: 0 0 0 3px rgba(217, 154, 63, 0.18);
}

.footer-newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--color-gold-footer);
  color: var(--color-dark-bg);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-default);
}

.footer-newsletter button:hover {
  background: var(--color-gold-footer-hover);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding: 22px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-highlight {
  color: var(--color-gold-footer);
}


/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes scrollBounce {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.5;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in animation utility */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    row-gap: 12px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-experience-badge {
    bottom: 10px;
    right: 10px;
  }
}


/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
  /* Navigation */
  .navbar { padding: 7px 0; }
  .nav-container { padding: 0 20px; }
  .nav-logo { min-width: 0; gap: 8px; }
  .nav-logo img { height: 54px; }
  .nav-brand strong { font-size: .98rem; }
  .nav-brand small { font-size: .5rem; letter-spacing: .16em; }
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* Solid, near-opaque background so the menu stays legible even where
       backdrop-filter isn't supported/rendered (many Android WebViews and
       some mobile browsers silently no-op it, leaving only a faint tint
       and the page content bleeding through crisply behind the links). The
       blur below is a progressive enhancement for browsers that do support
       it, not the source of legibility. */
    background: rgba(255, 253, 249, .98);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    padding: 16px 20px 20px;
    box-shadow: 0 14px 30px rgba(32, 25, 17, .12), inset 0 1px 0 rgba(255, 255, 255, .7);
    border-radius: 0 0 10px 10px;
    gap: 4px;
    z-index: 500;
  }

  .nav-menu.active .nav-link {
    padding: 12px 16px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  .nav-phone {
    display: none;
  }

  /* Grids */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Section Spacing */
  .about-section,
  .projects-section,
  .amenities-section,
  .services-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: var(--section-padding-mobile);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* About */
  .about-highlights {
    flex-direction: column;
    gap: 16px;
  }

  .about-visual {
    order: -1;
  }

  .about-frame { display: none; }
  .about-decor-blob { display: none; }

  /* Testimonials */
  .testimonial-card-inner {
    padding: 24px;
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: 24px;
  }

  /* Footer */
  .footer-grid {
    gap: 32px;
  }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
  .testimonial-quote {
    font-size: 36px;
  }

  .project-actions {
    flex-direction: column;
  }

  .btn-details,
  .brochure-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Tighter card padding so content doesn't feel cramped on narrow phones */
  .service-card {
    padding: 28px 20px;
  }

  .amenity-card {
    padding: 24px 18px;
  }

  .testimonial-card-inner {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .highlight-item {
    padding: 14px;
  }

  /* Comfortable minimum touch targets */
  .social-links a {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   RESPONSIVE — SHORT / LANDSCAPE VIEWPORTS
   Prevents the hero from overflowing on phones in
   landscape orientation, where 100svh is very short.
   ============================================ */

@media (max-height: 480px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero-grid { min-height: auto; }
  .hero-cta { margin-bottom: 1.5rem; }
  .hero-trust { display: none; }
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .navbar,
  .nav-toggle,
  .video-play-btn,
  .carousel-controls {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero-section {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  section {
    padding: 30px 0 !important;
  }
}


/* ============================================
   PRELOADER INTRO SCREEN — Modern Reveal (home page only)
   A quiet, on-brand arrival: the emblem and wordmark fade in together
   over the site's own dark navy, a slim gold rule ticks to 100%, then
   the screen closes into a narrow light seam and hands off to the page.
   Uses the site's real color tokens so it never drifts from the rest
   of the brand, and finishes in ~2.2s instead of dragging on. Only
   index.html includes the #preloader markup, so this CSS has no effect
   on the other pages even though the file is shared.
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(circle at 50% 46%, rgba(178, 111, 45, 0.16), transparent 55%),
    var(--color-dark-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: inset(0);
  transition: clip-path 0.62s cubic-bezier(0.76, 0, 0.24, 1);
  isolation: isolate;
  cursor: pointer;
}

#preloader.mh-exit {
  clip-path: inset(0 50% 0 50%);
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Thin centre light seam that grows in behind the mark, then becomes
   the axis the screen splits open along on exit. */
#preloader::after {
  position: absolute;
  z-index: 1;
  content: '';
  pointer-events: none;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent 15%, rgba(227, 164, 94, 0.35) 38%, #e3a45e 50%, rgba(227, 164, 94, 0.35) 62%, transparent 85%);
  box-shadow: 0 0 32px 6px rgba(178, 111, 45, 0.28);
  transform: translateX(-50%) scaleY(0);
  animation: mh-seam-grow 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Faint blueprint grid for texture, masked to a soft vignette */
.mh-intro-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(227, 164, 94, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(227, 164, 94, 0.035) 1px, transparent 1px);
  background-size: 9.09% 100%, 100% 9.09%;
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 44%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 65% 55% at 50% 44%, #000 0%, transparent 75%);
  opacity: 0;
}

.mh-intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  transform: translateY(-2%);
}

.mh-intro-eyebrow {
  order: -1;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.mh-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 8px;
  opacity: 0;
  transform: scale(0.6);
}

.mh-emblem-ring {
  position: absolute;
  inset: 5px;
  border-radius: 50% 50% 50% 4px;
  border: 1px solid rgba(227, 164, 94, 0.55);
  border-top-color: transparent;
}

.mh-emblem-logo {
  position: relative;
  height: 56px;
  width: auto;
  border-radius: 50%;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 6px 20px rgba(178, 111, 45, 0.3));
}

.mh-wordmark {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.17em;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text-on-dark);
}

.mh-wordmark-mask {
  display: block;
  overflow: hidden;
}

.mh-wordmark-line {
  display: block;
  transform: translateY(105%);
}

.mh-wordmark-accent {
  color: #e3a45e;
  font-style: italic;
}

.mh-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translateY(8px);
}

/* Loading count + progress rule, bottom of stage */
.mh-progress {
  position: absolute;
  left: 50%;
  bottom: 9%;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 2px;
  transform: translateX(-50%);
  opacity: 0;
}

.mh-progress-count,
.mh-progress-percent {
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.mh-progress-count {
  font-size: 13px;
  min-width: 1.6em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.mh-progress-percent {
  font-size: 11px;
  color: var(--color-gold);
}

.mh-progress-track {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 10px;
  width: 130px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(-50%);
}

.mh-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), #e3a45e);
  box-shadow: 0 0 12px rgba(227, 164, 94, 0.7);
}

/* Skip affordance — small, unobtrusive, fades in a beat after load so it
   doesn't distract in the first instant. Click anywhere on the
   preloader, tap this, or press Escape to skip straight to the site. */
.mh-skip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: mh-skip-in 0.5s 1s ease forwards;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mh-skip:hover,
.mh-skip:focus-visible {
  color: #fff;
  border-color: rgba(227, 164, 94, 0.7);
}

@keyframes mh-seam-grow {
  0% { opacity: 0; transform: translateX(-50%) scaleY(0); }
  100% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

@keyframes mh-skip-in {
  to { opacity: 1; }
}

/* No-JS / reduced-motion fallback: reveal everything instantly so content
   is never permanently hidden if animation JS doesn't run. */
.no-js #preloader {
  clip-path: none;
}

.no-js #preloader .mh-emblem,
.no-js #preloader .mh-tagline,
.no-js #preloader .mh-progress {
  opacity: 1;
  transform: none;
}

.no-js #preloader .mh-wordmark-line {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  #preloader {
    transition: opacity 0.4s ease, visibility 0.4s ease;
    clip-path: none !important;
  }

  #preloader::after,
  .mh-skip {
    animation: none !important;
  }
}

@media (max-width: 560px) {
  .mh-emblem {
    width: 80px;
    height: 80px;
  }

  .mh-emblem-logo {
    height: 46px;
  }

  .mh-wordmark {
    letter-spacing: -0.02em;
  }

  .mh-progress-track {
    width: 104px;
  }

  .mh-skip {
    right: 16px;
    bottom: 16px;
  }
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4), 0 2px 8px rgba(0, 0, 0, .18);
  transition: transform .3s cubic-bezier(.34, 1.4, .64, 1), box-shadow .3s ease, background-color .3s ease;
}

.whatsapp-float:hover {
  background: #1fb855;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .5), 0 4px 10px rgba(0, 0, 0, .2);
}

.whatsapp-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: whatsapp-pulse 2.2s cubic-bezier(.24, .7, .4, 1) infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float, .whatsapp-float-ring {
    animation: none;
    transition: none;
  }
}

/* ============================================
   BROCHURE LEAD-CAPTURE MODAL
   ============================================ */
.brochure-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 51, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.brochure-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.brochure-modal {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: 0 30px 60px rgba(14, 28, 51, 0.3);
}

.brochure-modal-overlay.active .brochure-modal {
  transform: translateY(0) scale(1);
}

.brochure-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold-light);
  color: var(--color-gold);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
}

.brochure-modal-close:hover {
  background: var(--color-gold);
  color: #ffffff;
}

.brochure-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-gold-light);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.brochure-modal-icon-success {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.brochure-modal h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.brochure-modal p.brochure-modal-subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.brochure-modal .form-group {
  margin-bottom: 18px;
}

.brochure-modal-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 20px;
}

.brochure-modal-note i {
  color: var(--color-gold);
  margin-top: 2px;
}

.brochure-modal .btn-submit {
  width: 100%;
}

.brochure-modal-reopen-wa {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brochure-modal-reopen-wa:hover {
  color: var(--color-gold-hover);
}

@media (max-width: 480px) {
  .brochure-modal {
    padding: 24px 20px;
  }
}
