/* ============================================================
   Anubhavati Hospitality – Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:       #0f1c2e;
  --navy-light: #1e3a5f;
  --navy-mid:   #16283f;
  --terracotta:       #7c1f2e;
  --terracotta-dark:  #591420;
  --terracotta-light: #a83c4d;
  --gold:       #c9a227;
  --gold-dark:  #a3821c;
  --gold-light: #e3c467;
  --white:      #ffffff;
  --off-white:  #faf6ef;
  --text-dark:  #16241c;
  --text-mid:   #55635a;
  --text-light: #8a988e;
  --border:     #e6e0d3;
  --shadow-sm:  0 2px 8px rgba(15,20,28,.08);
  --shadow-md:  0 8px 30px rgba(15,20,28,.14);
  --shadow-lg:  0 20px 60px rgba(15,20,28,.22);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --font-body:  'Inter', sans-serif;
  --font-head:  'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-script: 'Sacramento', cursive;
  --nav-h:      72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
section[id] { scroll-margin-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mt-1 { margin-top: 1.5rem; }

/* ---------- Utility Colors ---------- */
.text-gold  { color: var(--gold); }
.text-terracotta { color: var(--terracotta); }
.highlight  { color: var(--terracotta-light); }
.highlight-gold { color: var(--gold); }
.highlight-script {
  font-family: var(--font-script);
  font-size: 1.3em;
  color: var(--gold-light);
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,.4); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.45); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-width: 560px;
  width: calc(100% - 2rem);
  border: 1px solid rgba(201,162,39,.3);
  transition: opacity .4s, transform .4s;
}
.cookie-banner p { font-size: .9rem; opacity: .85; }
.btn-cookie {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-cookie:hover { background: var(--gold-dark); }
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(15,28,46,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.logo-caption {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.logo-script {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: 1rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(255,255,255,.06); }

.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-caret { font-size: .65rem; transition: transform .25s ease; }
.nav-item:hover .nav-caret,
.nav-item.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .6rem);
  left: 0;
  min-width: 320px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.nav-item:hover .nav-dropdown-menu,
.nav-item.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .85rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  white-space: normal;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
.nav-dropdown-menu a i:first-child {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #050c14 0%, #0f1c2e 40%, #16283f 70%, #081120 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 24px 5rem;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero--photo .hero-bg-overlay {
  background: linear-gradient(180deg, rgba(5,12,20,.78) 0%, rgba(5,12,20,.62) 45%, rgba(5,12,20,.9) 100%);
  opacity: 1;
}

/* Decorative background circles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,.16) 0%, transparent 70%);
  top: -100px; right: -150px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,31,46,.18) 0%, transparent 70%);
  bottom: 50px; left: -100px;
  border-radius: 50%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1.6' fill='rgba(201,162,39,0.4)'/%3E%3C/svg%3E");
  opacity: 1;
}

/* Dot-grid corner accent */
.hero-content::before {
  content: '';
  position: absolute;
  top: -2.5rem; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 60px;
  background-image: radial-gradient(circle, var(--terracotta) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: .55;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-light);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: .7rem; }

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.hero-trust span { display: flex; align-items: center; gap: .4rem; }
.hero-trust i { color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  z-index: 2;
}
.bounce {
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #050c14 0%, #0f1c2e 40%, #16283f 70%, #081120 100%);
  padding: calc(var(--nav-h) + 4.5rem) 24px 4.5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,.3) 1.5px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: .5;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero .section-eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.page-hero-breadcrumb a { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   SERVICES TEASER GRID (Home page)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.svc-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: var(--text-dark); }
.svc-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  transition: var(--transition);
}
.svc-link:hover { gap: .7rem; color: var(--terracotta); }

/* ============================================================
   SERVICES EXPLORER (Services page — sidebar + detail panel)
   ============================================================ */
.services-explorer { padding: 4.5rem 0; }
.explorer-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.services-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.services-sidebar-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 1rem;
  padding: 0 .5rem;
}
.services-sidebar-list { display: flex; flex-direction: column; gap: .35rem; }
.services-sidebar-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem .85rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.services-sidebar-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.services-sidebar-arrow {
  margin-left: auto;
  font-size: .7rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.services-sidebar-link:hover { background: var(--white); color: var(--text-dark); }
.services-sidebar-link.active {
  background: var(--white);
  color: var(--text-dark);
  border-left-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.services-sidebar-link.active .services-sidebar-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
}
.services-sidebar-link.active .services-sidebar-arrow,
.services-sidebar-link:hover .services-sidebar-arrow { opacity: 1; transform: translateX(0); }

.services-panels {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.75rem;
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}
.service-panel { display: none; animation: fadeInPanel .35s ease; }
.service-panel.active { display: block; }
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.service-panel .service-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: none;
  margin: 0 0 1.75rem;
}
.service-detail-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.service-detail-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.service-panel .service-detail-body { max-width: none; margin: 0; }
.service-detail-body > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.service-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 1.5rem;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.service-bullets i { color: var(--gold-dark); margin-top: .25rem; flex-shrink: 0; }

/* ============================================================
   VISION / MISSION CARDS
   ============================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.vm-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
}
.vm-card .vm-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.vm-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; color: var(--text-dark); }
.vm-card p { color: var(--text-mid); line-height: 1.75; font-size: .95rem; }

/* ============================================================
   OUR PRESENCE (brief property mention)
   ============================================================ */
.presence { background: var(--off-white); }
.presence-card {
  position: relative;
  display: grid;
  grid-template-columns: .55fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.presence-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  z-index: 1;
}
.presence-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.presence-content { padding: 2.25rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.presence-content h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--text-dark); margin-bottom: .75rem; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-desc { color: var(--text-mid); font-size: 1rem; line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto; }
.text-white { color: var(--white); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--off-white); }

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 4rem;
}
.about-text .section-desc { margin-bottom: 1.25rem; }

.sol-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  transition: var(--transition);
}
.sol-link:hover { gap: .7rem; color: var(--terracotta); }

.about-visual { display: flex; align-items: center; justify-content: center; }
.orb-cluster {
  position: relative;
  width: 320px; height: 320px;
}
.orb-cluster::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201,162,39,.25) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: var(--shadow-md);
  z-index: 1;
  border: 1px solid rgba(255,255,255,.15);
}
.orb-forest       { width: 190px; height: 190px; top: 0; left: 20px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.orb-terracotta   { width: 130px; height: 130px; top: 130px; right: 0; background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); }
.orb-gold         { width: 100px; height: 100px; bottom: 10px; left: 60px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy); }
.orb-forest-light { width: 70px; height: 70px; bottom: 60px; right: 40px; background: var(--navy-light); }

/* ============================================================
   SERVICES ACCORDION
   ============================================================ */
.services--accordion {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.services-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(15%);
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,12,20,.9) 0%, rgba(5,12,20,.8) 55%, rgba(5,12,20,.92) 100%);
}
.services--accordion .container { position: relative; z-index: 1; }

.accordion {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.18);
}
.acc-item { border-bottom: 1px solid rgba(255,255,255,.18); }
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem .5rem;
  color: var(--white);
  text-align: left;
}
.acc-title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: .01em;
}
.acc-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.acc-item.active .acc-toggle { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: rotate(45deg); }
.acc-item.active .acc-header { color: var(--gold-light); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.acc-item.active .acc-body { max-height: 400px; }
.acc-body-inner {
  padding: 0 .5rem 1.75rem;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.25rem;
  margin-left: .5rem;
}
.acc-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.acc-body-inner p:not(.acc-pull) { color: rgba(255,255,255,.75); line-height: 1.7; font-size: .95rem; }

/* ============================================================
   PHOTO GALLERY / PORTFOLIO
   ============================================================ */
.portfolio { background: var(--white); padding-bottom: 4rem; }
.portfolio-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) var(--off-white);
}
.portfolio-track::-webkit-scrollbar { height: 8px; }
.portfolio-track::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 8px; }
.portfolio-track::-webkit-scrollbar-track { background: var(--off-white); }

.portfolio-slide {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 320px);
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
}
.portfolio-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-slide:hover img { transform: scale(1.06); }
.portfolio-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(5,12,20,.88) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
}

/* ============================================================
   WHY US / USP
   ============================================================ */
.usp {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0;
}
.usp-text { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.usp-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .75rem; color: var(--white); }
.usp-text p { color: rgba(255,255,255,.7); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.usp-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.5rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
  overflow: hidden;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  opacity: .8;
}
.usp-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,162,39,.4); transform: translateY(-4px); }
.usp-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: rgba(255,255,255,.15);
}
.usp-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.usp-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--white); }
.usp-card p { font-size: .87rem; color: rgba(255,255,255,.68); line-height: 1.6; }

/* ============================================================
   FEATURED PROPERTY
   ============================================================ */
.property { background: var(--off-white); }
.property-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.property-visual {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.property-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,28,46,.15) 0%, rgba(5,12,20,.55) 100%);
}
.property-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.property-logo {
  position: relative;
  z-index: 1;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.property-content { padding: 2.5rem; display: flex; flex-direction: column; }
.property-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0 1.5rem;
}
.property-features li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--text-mid); }
.property-features i { color: var(--terracotta); }
.property-content .btn { align-self: flex-start; }


.stats { background: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat-item p { color: var(--text-mid); font-size: .9rem; margin-top: .35rem; font-weight: 500; }

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients { background: var(--off-white); overflow: hidden; }

.marquee-wrap {
  overflow: hidden;
  margin-top: 2rem;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.marquee-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,162,39,.2); }
.marquee-item span {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-mid);
  white-space: nowrap;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trust-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.trust-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201,162,39,.3);
}
.trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.trust-item p { font-size: .87rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-stars { color: var(--gold); font-size: .85rem; display: flex; gap: 3px; }
.testi-card > p { font-size: .92rem; color: var(--text-mid); line-height: 1.75; font-style: italic; flex-grow: 1; }

.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author span { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   DEMO CTA
   ============================================================ */
.demo-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 6rem 0;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.demo-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.demo-text p { color: rgba(255,255,255,.72); line-height: 1.75; }

.demo-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row--full { grid-template-columns: 1fr; }

.demo-form input,
.demo-form select,
.demo-form textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  color: var(--white);
  font-size: .9rem;
  transition: var(--transition);
  width: 100%;
}
.demo-form textarea { resize: vertical; min-height: 90px; }
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: rgba(255,255,255,.45); }
.demo-form select { color: rgba(255,255,255,.7); }
.demo-form select option { background: var(--navy); color: var(--white); }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}

.form-status {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { padding: 4.5rem 0; }
.founder-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3rem;
}
.founder-visual { display: flex; justify-content: center; }
.founder-photo-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.founder-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark)) 1;
  border-radius: var(--radius-md);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 600;
}
.founder-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.founder-role {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--terracotta-dark);
  margin-bottom: 1.5rem;
}
.founder-content .section-desc { margin-bottom: 1.25rem; }
.founder-quote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* ============================================================
   LEADERSHIP TEAM GRID
   ============================================================ */
.team-grid-section { padding: 4.5rem 0; background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.team-photo-frame {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.team-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark)) 1;
  border-radius: 50%;
}
.team-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-dark); margin-bottom: .3rem; }
.team-role {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 1rem;
}
.team-bio { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ============================================================
   OUR PROPERTIES PAGE
   ============================================================ */
.property-overview-section { padding: 4.5rem 0; }
.property-overview {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.property-overview-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.property-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-card a { display: block; }
.stat-value { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600; color: var(--navy); }
.stat-value--gold { color: var(--gold-dark); }
.stat-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: .3rem;
}

.property-gallery-section { padding: 4.5rem 0; background: var(--off-white); }
.property-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }

.property-location-section { padding: 4.5rem 0; }
.property-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.property-location-content .contact-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1.1rem;
}
.property-location-content .contact-item i {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.property-location-content .contact-item strong { display: block; font-size: .8rem; color: var(--text-dark); margin-bottom: .15rem; }
.property-location-content .contact-item span,
.property-location-content .contact-item a { font-size: .92rem; color: var(--text-mid); }
.property-location-content .contact-item a:hover { color: var(--gold-dark); }
.property-location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.property-location-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ============================================================
   CAREERS
   ============================================================ */
.careers {
  background: linear-gradient(135deg, #c8891a 0%, var(--gold) 50%, #f5c96a 100%);
  padding: 4rem 0;
}

.careers-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.careers-inner .section-eyebrow { color: var(--navy); opacity: .7; }
.careers-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: .5rem;
}
.careers-inner p { color: rgba(15,28,46,.7); font-size: .95rem; }
.careers-inner .btn-gold {
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}
.careers-inner .btn-gold:hover { background: var(--navy-mid); box-shadow: 0 8px 24px rgba(15,28,46,.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.footer-logo .logo-text { font-size: 1.2rem; }

.newsletter h5 { font-size: .9rem; font-weight: 600; margin-bottom: .75rem; color: rgba(255,255,255,.85); }

.newsletter-form {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.newsletter-form input {
  flex-grow: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  color: var(--white);
  font-size: .85rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .btn-gold { padding: .65rem 1.2rem; border-radius: var(--radius-sm); font-size: .85rem; white-space: nowrap; }

.social-links {
  display: flex;
  gap: .75rem;
}
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

.footer-col h5 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1rem;
}
.footer-contact .contact-item i {
  color: var(--gold);
  margin-top: .2rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.footer-contact .contact-item strong {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .15rem;
}
.footer-contact .contact-item a,
.footer-contact .contact-item span {
  font-size: .87rem;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.footer-contact .contact-item a:hover { color: var(--gold); }

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.badge-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}
.badge-pill i { color: var(--gold); font-size: .7rem; }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-legal a { transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-support {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 990;
  transition: var(--transition);
}
.float-support:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); color: #fff; }

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 990;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  border: 1px solid rgba(255,255,255,.12);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="60"]  { transition-delay: .06s; }
[data-aos][data-aos-delay="120"] { transition-delay: .12s; }
[data-aos][data-aos-delay="180"] { transition-delay: .18s; }
[data-aos][data-aos-delay="240"] { transition-delay: .24s; }
[data-aos][data-aos-delay="300"] { transition-delay: .30s; }
[data-aos][data-aos-delay="360"] { transition-delay: .36s; }
[data-aos][data-aos-delay="420"] { transition-delay: .42s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row   { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .service-row::before { display: none; }
  .property-card { grid-template-columns: 1fr; }
  .property-visual { min-height: 220px; }
  .presence-card  { grid-template-columns: 1fr; }
  .vm-grid        { grid-template-columns: 1fr; }
  .service-bullets { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .demo-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .explorer-grid { grid-template-columns: 1fr; }
  .services-sidebar { position: static; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-visual { justify-content: center; }
  .property-overview { grid-template-columns: 1fr; }
  .property-location { grid-template-columns: 1fr; }
  .property-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}

/* Mobile nav */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(15,28,46,.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: .25rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links a { width: 100%; padding: .85rem 1rem; font-size: 1rem; border-radius: 8px; }

  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-dropdown-trigger { justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-item.open .nav-dropdown-menu { max-height: 480px; padding: .4rem; margin-top: .3rem; }

  .nav-actions .btn-outline { display: none; }

  .service-row    { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .trust-grid     { grid-template-columns: 1fr 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
  .careers-inner  { flex-direction: column; }
  .property-stats { grid-template-columns: repeat(2, 1fr); }
  .property-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .hero-cta    { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-trust  { flex-direction: column; gap: .5rem; }
  .footer-legal { flex-direction: column; gap: .5rem; }
}
