/* ==========================================================================
   S2 Homes — Main Stylesheet
   Design tokens: Royal Blue + Gold, per S2 Homes brand identity
   ========================================================================== */

:root {
  /* Brand colors — Royal Blue + Gold, per S2 Homes identity */
  --color-navy: #142a63;
  --color-navy-dark: #0a1740;
  --color-navy-rgb: 20, 42, 99;
  --color-charcoal: #4c5155;
  --color-charcoal-light: #6b7176;
  --color-white: #ffffff;
  --color-gold: #b8923a;
  --color-gold-light: #e0c273;
  --color-gold-rgb: 184, 146, 58;
  --color-gray-light: #f6f7fa;
  --color-gray-mid: #e4e6ea;
  --color-gray-border: #dfe2e6;
  --color-text: #20242e;
  --color-text-muted: #5c6270;

  /* Typography */
  --font-heading: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-button: "Montserrat", "Segoe UI", sans-serif;

  /* Layout */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 40px rgba(18, 48, 86, 0.08);
  --shadow-medium: 0 20px 60px rgba(18, 48, 86, 0.14);
  --shadow-gold: 0 10px 30px rgba(199, 162, 82, 0.25);
  --transition-base: 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  --header-height: 92px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin: 0;
}

p { margin: 0 0 1rem; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container-xl {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section { position: relative; }

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }
  .section-pad-sm { padding: 50px 0; }
}

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-button);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-gold);
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}

.section-head {
  margin-bottom: 60px;
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-head.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn-rh {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-rh span, .btn-rh i { position: relative; z-index: 2; }

.btn-rh-primary {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(var(--color-navy-rgb), 0.25);
}
.btn-rh-primary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-rh-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: rgba(var(--color-navy-rgb), 0.3);
}
.btn-rh-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
  border-color: var(--color-navy);
}

.btn-rh-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.btn-rh-light:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.btn-rh-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
}
.btn-rh-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(var(--color-gold-rgb), 0.4);
}

/* ripple */
.btn-rh .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
@keyframes ripple-anim {
  to { transform: scale(3); opacity: 0; }
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-mark {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-navy));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---------- Header / Navigation ---------- */
.rh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2200;
  padding: 22px 0;
  transition: all var(--transition-base);
  background: transparent;
}
.rh-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(18, 48, 86, 0.08);
}

.rh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rh-logo-mark {
  height: 46px;
  width: auto;
  transition: height var(--transition-base);
}
.rh-header.scrolled .rh-logo-mark { height: 38px; }
.rh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.rh-logo-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.5px;
  color: var(--color-navy);
}
.rh-logo-text em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 2px;
}
@media (max-width: 420px) {
  .rh-logo-text em { display: none; }
}

.rh-menu {
  display: flex;
  align-items: center;
  gap: 44px;
}
.rh-menu-cta { display: none; }
.rh-menu-links { display: flex; align-items: center; gap: 44px; }
.rh-menu-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-button);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-base);
}
.rh-menu-links a i { display: none; }
.rh-header.scrolled .rh-menu-links a { color: var(--color-navy); }
.rh-menu-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}
.rh-menu-links a:hover::after,
.rh-menu-links a.active::after { width: 100%; }
.rh-menu-links a:hover, .rh-menu-links a.active { color: var(--color-gold); }
.rh-header.scrolled .rh-menu-links a.active,
.rh-header.scrolled .rh-menu-links a:hover { color: var(--color-gold); }

.rh-actions { display: flex; align-items: center; gap: 14px; }

.icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  transition: all var(--transition-base);
  font-size: 1.05rem;
}
.rh-header.scrolled .icon-btn {
  border-color: rgba(18, 48, 86, 0.2);
  color: var(--color-navy);
}
.icon-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}
.icon-btn.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

.rh-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: transparent;
}
.rh-header.scrolled .rh-toggle { color: var(--color-navy); border-color: rgba(18,48,86,0.2); }

@media (max-width: 991px) {
  .rh-menu {
    position: fixed;
    top: 0; right: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(155deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 2100;
    will-change: transform;
    overflow-y: auto;
  }
  .rh-menu.open { transform: translateX(0); }

  .rh-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .rh-menu-brand-group {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .rh-menu-brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--color-gold);
    color: var(--color-navy-dark);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .rh-menu-brand {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--color-white);
  }

  .rh-menu-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 12px 18px;
  }
  .rh-menu-links a {
    display: flex !important;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.72) !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 13px 14px;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(18px);
    transition: background 0.25s ease, color 0.25s ease;
  }
  .rh-menu.open .rh-menu-links a {
    animation: menuLinkIn 0.5s ease forwards;
  }
  .rh-menu.open .rh-menu-links a:nth-child(1) { animation-delay: 0.12s; }
  .rh-menu.open .rh-menu-links a:nth-child(2) { animation-delay: 0.18s; }
  .rh-menu.open .rh-menu-links a:nth-child(3) { animation-delay: 0.24s; }
  .rh-menu.open .rh-menu-links a:nth-child(4) { animation-delay: 0.30s; }
  .rh-menu-links a::after { display: none; }
  .rh-menu-links a i {
    display: inline-flex !important;
    width: 18px;
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    transition: color 0.25s ease;
  }
  .rh-menu-links a:hover,
  .rh-menu-links a:active {
    background: rgba(255,255,255,0.05);
    color: var(--color-white) !important;
  }
  .rh-menu-links a.active {
    background: rgba(184,146,58,0.14);
    color: var(--color-gold-light) !important;
    font-weight: 700;
  }
  .rh-menu-links a.active i { color: var(--color-gold); }

  .rh-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .rh-menu-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-button);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-gold-light);
    margin-bottom: 2px;
  }
  .rh-menu-cta-row {
    display: flex;
    gap: 8px;
  }
  .rh-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 100px;
    font-family: var(--font-button);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    transition: all 0.25s ease;
    flex: 1;
  }
  .rh-menu-btn:hover { border-color: var(--color-gold); color: var(--color-gold-light); }
  .rh-menu-btn.whatsapp { background: #25d366; border-color: #25d366; color: var(--color-white); flex: 1.3; }

  .rh-toggle { display: flex; }
  .rh-actions .icon-btn.call-desktop { display: none; }
}

@keyframes menuLinkIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 20, 40, 0.6);
  z-index: 2050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.rh-menu-header { display: none; }
.menu-close {
  display: none;
  color: var(--color-white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 991px) { .menu-close { display: block; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,14,38,0.72) 0%, rgba(6,14,38,0.48) 32%, rgba(6,14,38,0.12) 58%, rgba(6,14,38,0.05) 100%),
    linear-gradient(to top, rgba(6,14,38,0.55) 0%, rgba(6,14,38,0) 32%);
}
.hero-dots {
  position: absolute;
  right: 32px;
  bottom: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot.active { background: var(--color-gold-light); transform: scale(1.3); }
@media (max-width: 767px) {
  .hero-dots { bottom: 22px; left: 50%; right: auto; transform: translateX(-50%); flex-direction: row; }
}
@media (max-width: 991px) {
  .scroll-cue { display: none !important; }
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
}
.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(199,162,82,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,162,82,0.6) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 70%);
}
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,162,82,0.18), transparent 65%);
  top: -10%; right: -15%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
}
.hero-eyebrow {
  color: var(--color-gold-light);
}
.hero-eyebrow::before { background: var(--color-gold-light); }
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  max-width: 900px;
  margin-bottom: 26px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .reveal-text { display: inline-block; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 44px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-glass-card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
  padding: 22px 26px;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}
.hero-glass-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-white);
  font-family: var(--font-button);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-glass-item i { color: var(--color-gold-light); font-size: 1.1rem; }
@media (max-width: 767px) {
  .hero-glass-card { padding: 16px 18px; gap: 10px 16px; }
  .hero-glass-item { font-size: 0.74rem; }
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-button);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}
.scroll-cue .mouse::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--color-gold);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--color-navy);
  padding: 70px 0;
  position: relative;
}
.stat-item { text-align: center; padding: 20px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--color-gold);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-label {
  font-family: var(--font-button);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* ---------- Why cards ---------- */
.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: 42px 32px;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--color-gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 24px;
  transition: all var(--transition-base);
}
.why-card:hover .why-icon {
  background: var(--color-navy);
  color: var(--color-gold);
  transform: rotate(-6deg) scale(1.05);
}
.why-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.why-card p { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }

/* ---------- Project cards (glass) ---------- */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
  height: 100%;
}
.project-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-medium); }
.project-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.project-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.1); }
.project-card-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--font-button);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
}
.project-card-body { padding: 32px; }
.project-card-loc {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.project-card-loc i { color: var(--theme-accent, var(--color-gold)); }
.project-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.project-card p.desc { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 22px; }
.project-card .btn-rh { width: 100%; justify-content: center; }

.project-card-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.mini-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(var(--color-navy-rgb), 0.06);
  color: var(--color-navy);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-button);
}
.mini-badge i { color: var(--color-gold); font-size: 0.8rem; }

.project-card-highlight {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(var(--color-gold-rgb), 0.1);
  border: 1px solid rgba(var(--color-gold-rgb), 0.3);
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.project-card-highlight i { color: var(--color-gold); font-size: 1.1rem; margin-top: 1px; }

.project-card-landmarks { margin-bottom: 18px; }
.landmarks-label {
  font-family: var(--font-button);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.landmarks-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.landmarks-chips span {
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--color-gray-border);
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* theme accents (overridable per project) */
.theme-green   { --theme-accent: #3f7d4e; }
.theme-blue    { --theme-accent: #2a5f8f; }
.theme-brown   { --theme-accent: #9c6b2e; }

.theme-green .project-card-tag  { background: rgba(63,125,78,0.85); border-color: rgba(63,125,78,0.9); }
.theme-blue  .project-card-tag  { background: rgba(42,95,143,0.85); border-color: rgba(42,95,143,0.9); }
.theme-brown .project-card-tag  { background: rgba(156,107,46,0.85); border-color: rgba(156,107,46,0.9); }

.theme-green .btn-rh-outline:hover { background: var(--theme-accent); border-color: var(--theme-accent); }
.theme-blue  .btn-rh-outline:hover { background: var(--theme-accent); border-color: var(--theme-accent); }
.theme-brown .btn-rh-outline:hover { background: var(--theme-accent); border-color: var(--theme-accent); }

/* ---------- Timeline (Investment Process) ---------- */
.process-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 34px; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-gray-border) 0, var(--color-gray-border) 8px, transparent 8px, transparent 16px);
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.process-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
}
.process-step:hover .process-num {
  background: var(--color-navy);
  color: var(--color-gold);
  transform: scale(1.1);
}
.process-step h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--color-text-muted); }

@media (max-width: 767px) {
  .process-track { flex-direction: column; gap: 36px; }
  .process-track::before { display: none; }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-gray-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 40px;
  margin: 10px;
  height: 100%;
}
.testimonial-stars { color: var(--color-gold); margin-bottom: 18px; font-size: 0.9rem; }
.testimonial-text { font-style: italic; color: var(--color-text); margin-bottom: 26px; font-size: 1rem; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.testimonial-name { font-weight: 600; color: var(--color-navy); font-size: 0.95rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--color-text-muted); }

/* ---------- Why Invest infographic ---------- */
.invest-item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-gray-border);
}
.invest-item:last-child { border-bottom: none; }
.invest-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-gold);
  min-width: 50px;
}
.invest-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.invest-item p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Why Invest In Shadnagar infographic cards ---------- */
.infographic-card {
  height: 100%;
  padding: 30px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}
.infographic-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}
.infographic-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(var(--color-navy-rgb), 0.06);
  color: var(--color-navy);
  font-size: 1.5rem;
}
.infographic-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.infographic-card p { font-size: 0.82rem; color: var(--color-text-muted); margin: 0; }

/* ---------- Trust badges strip ---------- */
.trust-badges-section { background: var(--color-navy); }
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  padding: 8px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-white);
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.trust-badge i { color: var(--color-gold-light); font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.service-card {
  height: 100%;
  padding: 36px 30px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  transition: all var(--transition-base);
}
.service-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.service-card h3 { font-size: 1.15rem; margin: 4px 0 10px; }
.service-card p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Bank Loan section ---------- */
.loan-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  color: var(--color-white);
}
.loan-section .section-title { color: var(--color-white); }
.loan-section .section-title em { color: var(--color-gold-light); }
.loan-section .section-sub { color: rgba(255,255,255,0.78); }
.loan-section .eyebrow { color: var(--color-gold-light); }
.loan-points { margin: 28px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.loan-points li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: rgba(255,255,255,0.92); }
.loan-points i { color: var(--color-gold-light); font-size: 1.15rem; }
.loan-visual {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.loan-stat {
  flex: 1;
  min-width: 180px;
  padding: 46px 30px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.loan-stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.loan-stat-label { margin-top: 8px; font-size: 0.85rem; letter-spacing: 0.4px; color: rgba(255,255,255,0.75); }
@media (max-width: 767px) {
  .loan-section { padding: 70px 0; }
}

/* ---------- CTA dark section ---------- */
.cta-dark {
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(199,162,82,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(199,162,82,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
}
.cta-dark h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 30px;
  position: relative;
}
.cta-dark .cta-sub {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

/* ---------- Footer ---------- */
.rh-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 0;
}
.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-mark { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-lockup span { display: flex; flex-direction: column; line-height: 1.15; }
.footer-logo-lockup strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
  letter-spacing: 0.5px;
}
.footer-logo-lockup em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 3px;
}
.footer-about { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer-address { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 320px; margin-bottom: 10px; }
.footer-address i { color: var(--color-gold); margin-top: 3px; flex-shrink: 0; }
.footer-address a { color: rgba(255,255,255,0.75); }
.footer-address a:hover { color: var(--color-gold); }
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-button);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--color-gold); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-navy); transform: translateY(-4px); }
.footer-newsletter {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  margin-top: 10px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: var(--color-white);
  font-size: 0.88rem;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  background: var(--color-gold);
  border: none;
  padding: 0 22px;
  color: var(--color-navy);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover { background: var(--color-gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
}
.footer-bottom a { color: rgba(255,255,255,0.62); }
.footer-bottom a:hover { color: var(--color-gold); }

/* ---------- Floating buttons ---------- */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  position: relative;
}
.floating-btn:hover { transform: translateY(-4px) scale(1.06); }
.floating-btn.whatsapp { background: #25d366; }
.floating-btn.call { background: var(--color-navy); }
.floating-btn.whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- Mobile sticky action bar ---------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1600;
  background: var(--color-white);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
}
.mobile-sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 12px;
  font-family: var(--font-button);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-navy);
}
.mobile-sticky-btn i { font-size: 1.15rem; }
.mobile-sticky-btn.whatsapp-btn { background: #25d366; color: var(--color-white); }
@media (max-width: 767px) {
  .mobile-sticky-bar { display: flex; }
  .floating-actions { display: none; }
  body { padding-bottom: 72px; }
}

#back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1500;
  border: none;
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--color-gold); color: var(--color-navy); }

/* ---------- Popup ---------- */
.rh-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(6px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  padding: 20px;
}
.rh-popup-overlay.show { opacity: 1; visibility: visible; }
.rh-popup {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-medium);
}
.rh-popup-overlay.show .rh-popup { transform: scale(1) translateY(0); }
.rh-popup-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-gray-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rh-popup-close:hover { background: var(--color-navy); color: var(--color-white); }
.rh-popup h3 { font-size: 1.6rem; margin-bottom: 8px; }
.rh-popup .popup-sub { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-control-rh {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-border);
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text);
  transition: all 0.3s ease;
}
.form-control-rh:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(var(--color-gold-rgb), 0.15);
}
textarea.form-control-rh { resize: vertical; min-height: 90px; }
select.form-control-rh { appearance: none; }
.rh-popup .form-control-rh {
  border-radius: 100px;
  background: rgba(255,255,255,0.7);
}
.popup-actions { display: flex; gap: 12px; margin-top: 10px; }
.popup-actions .btn-rh { flex: 1; justify-content: center; }
.popup-skip {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
}
.popup-thanks { text-align: center; display: none; }
.popup-thanks.show { display: block; }
.popup-thanks .thanks-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-gray-light);
  color: var(--color-gold);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop-in {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* ---------- Cursor glow (desktop only) ---------- */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,162,82,0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  display: none;
}
@media (min-width: 992px) { .cursor-glow { display: block; } }

/* ---------- Breadcrumb / Page banners ---------- */
.page-banner {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, var(--color-navy-dark), var(--color-navy));
  overflow: hidden;
  padding-bottom: 60px;
}
.page-banner .hero-blueprint { opacity: 0.1; }
.page-banner-content { position: relative; z-index: 2; padding-top: var(--header-height); }
.page-banner h1 { color: var(--color-white); font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 16px; }
.breadcrumb-rh {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-button);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.breadcrumb-rh a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb-rh a:hover { color: var(--color-gold); }
.breadcrumb-rh .current { color: var(--color-gold); }

/* ---------- Utility ---------- */
.text-gold { color: var(--color-gold) !important; }
.bg-gray-light { background: var(--color-gray-light); }
.glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-md);
}
.divider-gold {
  width: 60px; height: 3px;
  background: var(--color-gold);
  margin: 20px 0;
}
.hover-lift { transition: transform var(--transition-base), box-shadow var(--transition-base); }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); }

/* image tilt wrapper */
.tilt-wrap { perspective: 1000px; }
.tilt-inner { transition: transform 0.3s ease; transform-style: preserve-3d; }

/* focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   About page
   ========================================================================== */
.value-card {
  padding: 36px 30px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  height: 100%;
  transition: all var(--transition-base);
}
.value-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.value-card .why-icon { margin-bottom: 20px; }

.about-timeline { position: relative; padding-left: 40px; }
.about-timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--color-gray-border);
}
.about-timeline-item { position: relative; padding-bottom: 46px; }
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -40px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
}
.about-timeline-item .year {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.about-timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.about-timeline-item p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: var(--color-gray-light);
}
.team-photo .initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-gray-light), var(--color-gray-mid));
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--color-gold); font-size: 0.82rem; font-family: var(--font-button); letter-spacing: 1px; text-transform: uppercase; }

.achieve-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-md);
  background: var(--color-gray-light);
}
.achieve-card .num { font-family: var(--font-heading); font-size: 2.4rem; color: var(--color-navy); }
.achieve-card .lbl { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 6px; }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--color-gray-border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
}
.faq-question .icon-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .icon-plus { background: var(--color-navy); border-color: var(--color-navy); color: var(--color-gold); transform: rotate(135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 4px 26px; color: var(--color-text-muted); font-size: 0.92rem; }

/* ==========================================================================
   Projects listing + detail
   ========================================================================== */
.project-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-chip {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--color-gray-border);
  font-family: var(--font-button);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-white);
}
.filter-chip:hover { border-color: var(--color-navy); }
.filter-chip.active { background: var(--color-navy); color: var(--color-gold); border-color: var(--color-navy); }

.project-detail-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-detail-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.project-detail-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,20,40,0.88) 10%, rgba(10,20,40,0.25) 60%, rgba(10,20,40,0.55) 100%);
}
.project-detail-content {
  position: relative; z-index: 2;
  padding-top: var(--header-height);
  padding-bottom: 60px;
  color: var(--color-white);
}
.project-detail-content h1 { color: var(--color-white); font-size: clamp(2rem, 4vw, 3.2rem); }
.project-meta-row { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 24px; }
.project-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.project-meta-item i { color: var(--color-gold); font-size: 1.1rem; }

.detail-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--color-gray-border);
  margin-bottom: 46px;
  overflow-x: auto;
}
.detail-tab {
  padding: 16px 26px;
  font-family: var(--font-button);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.detail-tab.active, .detail-tab:hover { color: var(--color-navy); border-color: var(--color-gold); }
.detail-pane { display: none; }
.detail-pane.active { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
  content: "\f00e";
  font-family: "bootstrap-icons";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18,48,86,0.4);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--color-gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}
.amenity-chip i { color: var(--color-gold); font-size: 1.2rem; }

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-gray-border);
  font-size: 0.92rem;
}
.location-list li:last-child { border-bottom: none; }
.location-list li i { color: var(--color-gold); margin-top: 3px; }

.placeholder-box {
  border: 2px dashed var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: 60px 30px;
  text-align: center;
  color: var(--color-text-muted);
  background: var(--color-gray-light);
}
.placeholder-box i { font-size: 2.2rem; color: var(--color-gold); margin-bottom: 14px; display: block; }

/* Lightbox */
.rh-lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 14, 26, 0.94);
  z-index: 6000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.rh-lightbox.show { opacity: 1; visibility: visible; }
.rh-lightbox img { max-width: 88vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.rh-lightbox-close, .rh-lightbox-nav {
  position: absolute;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.rh-lightbox-close:hover, .rh-lightbox-nav:hover { background: var(--color-gold); color: var(--color-navy); }
.rh-lightbox-close { top: 28px; right: 28px; }
.rh-lightbox-nav.prev { left: 28px; top: 50%; transform: translateY(-50%); }
.rh-lightbox-nav.next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 50px;
  border: 1px solid var(--color-gray-border);
}
.form-group-rh { margin-bottom: 22px; position: relative; }
.form-group-rh label {
  display: block;
  font-family: var(--font-button);
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}
.form-control-line {
  width: 100%;
  padding: 14px 4px;
  border: none;
  border-bottom: 1.5px solid var(--color-gray-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  transition: border-color 0.3s ease;
}
.form-control-line:focus {
  outline: none;
  border-color: var(--color-gold);
}
textarea.form-control-line { resize: vertical; min-height: 110px; }

.office-info-card {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.office-info-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(199,162,82,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(199,162,82,0.5) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.06;
}
.office-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
}
.office-info-item .icn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.office-info-item h4 { color: var(--color-white); font-family: var(--font-button); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.office-info-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; animation: fadeUp 0.5s ease; }

/* Click-to-play video poster (avoids downloading video until requested) */
.video-poster-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--color-navy-dark);
}
.video-poster-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.5s ease; }
.video-poster-wrap:hover img { transform: scale(1.04); }
.video-poster-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10, 20, 40, 0.35);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all 0.35s ease;
  padding: 0 0 0 6px;
}
.video-poster-wrap:hover .video-play-btn {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--color-navy);
}
.legal-content h3:first-of-type { margin-top: 10px; }
.legal-content p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}
