/* Premium Estate — Refined CSS v6 (Europeya Palette) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   VARIABLES — Europeya Color System
   ═══════════════════════════════════════ */
:root {
  /* Primary palette */
  --deep-teal: #204653;
  --teal: #2a5f70;
  --medium-teal: #5eadb8;
  --light-teal: #7ab5b6;
  --pale-teal: #d4eeef;

  /* Accents */
  --amber: #E49614;
  --amber-light: #f0b54a;
  --terracotta: #da532c;

  /* Neutrals */
  --bg: #FAFBFC;
  --bg-alt: #F0F4F6;
  --bg-dark: #182E37;
  --card: #FFFFFF;
  --text: #1a2a33;
  --text-sec: #5a6e7a;
  --text-muted: #8fa3b0;
  --border: rgba(32, 70, 83, 0.08);
  --border-strong: rgba(32, 70, 83, 0.16);

  /* Semantic */
  --ok: #10b981;
  --err: #ef4444;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(32, 70, 83, 0.06);
  --shadow-md: 0 8px 40px rgba(32, 70, 83, 0.10);
  --shadow-lg: 0 20px 64px rgba(32, 70, 83, 0.14);
  --shadow-glow: 0 0 60px rgba(94, 173, 184, 0.15);

  /* Typography */
  --heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --section-py: clamp(72px, 9vw, 144px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;

  /* Glass */
  --glass: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(32, 70, 83, 0.06);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 1rem;
  position: relative;
  overflow-x: hidden;
}

/* Ambient gradient blobs */
body::before {
  content: '';
  position: absolute;
  top: -8%;
  left: 45%;
  transform: translateX(-50%);
  width: 65vw;
  height: 55vh;
  background: radial-gradient(ellipse, rgba(94, 173, 184, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -5%;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(228, 150, 20, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none; transition: all .3s ease }
ul, ol { list-style: none }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--heading);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tc { text-align: center }
.centered { margin-left: auto; margin-right: auto }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
  border: none;
  text-align: center;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
}

/* Primary — Deep Teal */
.btn-p {
  background: var(--deep-teal);
  color: #fff;
  box-shadow: 0 4px 24px rgba(32, 70, 83, 0.25);
}
.btn-p:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(32, 70, 83, 0.30);
}

/* Accent — Amber Gold */
.btn-accent {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 20px rgba(228, 150, 20, 0.30);
}
.btn-accent:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(228, 150, 20, 0.38);
}

/* Outline */
.btn-o {
  background: transparent;
  border: 1.5px solid var(--deep-teal);
  color: var(--deep-teal);
}
.btn-o:hover {
  background: rgba(32, 70, 83, 0.04);
  box-shadow: 0 0 36px rgba(32, 70, 83, 0.06);
}

/* White variant (on dark bg) */
.btn-white {
  background: #fff;
  color: var(--deep-teal);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.20);
}

/* ═══════════════════════════════════════
   PHONE BAR
   ═══════════════════════════════════════ */
.phone-bar {
  background: var(--bg-dark);
  color: #e8eef1;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: 0.01em;
}
.phone-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.phone-bar a:hover { color: var(--amber) }
.urg-dot {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45) }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0) }
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 44px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.main-nav.scrolled {
  padding: 10px 44px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-top: -1px;
}
.nav-links { display: flex; gap: 32px }
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--text-sec);
  position: relative;
  padding-bottom: 6px;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .35s ease;
  border-radius: 2px;
}
.nav-link:hover { color: var(--deep-teal) }
.nav-link:hover::after { width: 100% }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: all .3s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.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);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 251, 252, 0.98);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex }
.mobile-menu a {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--deep-teal);
}

/* ═══════════════════════════════════════
   HERO — VISUAL MASTERPIECE
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark) url('../assets/images/hero-bg.jpg') center/cover no-repeat;
}

/* Darken overlay + noise texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    rgba(15, 23, 30, 0.45),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: auto, 200px;
}

/* Animated gradient mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(94, 173, 184, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 60%, rgba(228, 150, 20, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(32, 70, 83, 0.40) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(122, 181, 182, 0.15) 0%, transparent 40%);
  filter: blur(60px);
  animation: meshDrift 30s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0% { transform: scale(1) rotate(0deg) }
  50% { transform: scale(1.08) rotate(2deg) }
  100% { transform: scale(1.12) rotate(-1deg) }
}

/* Gradient overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(24, 46, 55, 0.30) 0%,
    rgba(24, 46, 55, 0.55) 50%,
    rgba(24, 46, 55, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  padding: 100px 28px 80px;
  color: #fff;
}

/* Decorative top line */
.hero-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 36px;
  border-radius: 2px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--pale-teal);
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero .btn-o {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero .btn-o:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hero stats — glass card */
.hero-stats {
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 36px;
  backdrop-filter: blur(16px);
}
.hero-stat { text-align: center }
.hero-stat strong {
  display: block;
  color: #fff;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.hero-stat span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: var(--section-py) 0; position: relative; z-index: 1 }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border) }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--medium-teal);
  margin-bottom: 20px;
}

.section-title { margin-bottom: 16px }

.section-sub {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 600px;
  line-height: 1.85;
  margin-bottom: 56px;
}
.tc .section-sub { margin-left: auto; margin-right: auto }

/* ═══════════════════════════════════════
   TRUST BAR (replaces urgency cards)
   ═══════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, var(--deep-teal), var(--teal));
  padding: 48px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(94, 173, 184, 0.2) 0%, transparent 60%);
}
.trust-bar-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.trust-bar h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.trust-bar p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}
.trust-bar-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-badge-icon {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   LIFESTYLE CARDS
   ═══════════════════════════════════════ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lifestyle-card {
  text-align: center;
  padding: 56px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}
.lifestyle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--medium-teal), transparent);
  border-radius: 2px;
}
.lifestyle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(94, 173, 184, 0.3);
}
.lifestyle-num {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--deep-teal), var(--medium-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.lifestyle-label {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   CONCEPT GRID (Infrastructure)
   ═══════════════════════════════════════ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.concept-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .35s ease;
}
.concept-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
  border-color: var(--medium-teal);
}
.concept-icon {
  width: 48px; height: 48px;
  color: var(--deep-teal);
  margin: 0 auto 16px;
  stroke-width: 1.5;
}
.concept-title {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.concept-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Gift Card */
.gift-card {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(94, 173, 184, 0.08), rgba(228, 150, 20, 0.06));
  border: 1px solid rgba(94, 173, 184, 0.2);
  border-radius: var(--radius);
  max-width: 700px;
  margin: 0 auto;
}
.gift-title {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   CATALOG / FILTERS
   ═══════════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--text-sec);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover {
  border-color: var(--medium-teal);
  color: var(--deep-teal);
}
.filter-btn.active {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: #fff;
}

/* Scarcity bar */
.scarcity-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 20px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
}
.scarcity-item { font-size: 0.88rem; color: var(--text-sec) }
.scarcity-num { display: block; font-family: var(--heading); font-size: 1.4rem; font-weight: 700; color: var(--deep-teal) }

/* Plots grid */
.plots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.plot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: all .35s ease;
}
.plot-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  border-color: var(--medium-teal);
}
.plot-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.plot-badge.standard { background: rgba(94, 173, 184, 0.12); color: var(--deep-teal) }
.plot-badge.premium { background: rgba(228, 150, 20, 0.12); color: var(--amber) }
.plot-num {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.plot-size { font-size: 0.88rem; color: var(--text-sec); margin-bottom: 8px }
.plot-status { font-size: 0.8rem; font-weight: 600 }
.plot-status.available { color: var(--ok) }
.plot-status.reserved { color: var(--terracotta) }

.catalog-count {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Lead magnet */
.lead-magnet {
  text-align: center;
  padding: 56px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 48px;
}
.lead-magnet-title {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.lead-magnet-desc {
  color: var(--text-sec);
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 46, 55, 0.6) 0%, transparent 50%);
}
.gallery-item span { position: relative; z-index: 1 }

/* ═══════════════════════════════════════
   TIMELINE (Roadmap)
   ═══════════════════════════════════════ */
.timeline-wrap { max-width: 760px; margin: 0 auto }
.timeline { position: relative; padding-left: 48px }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--medium-teal), var(--border));
}
.tl-item { margin-bottom: 40px; position: relative }
.tl-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 12px; height: 12px;
  background: var(--medium-teal);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--medium-teal);
}
.tl-num {
  font-family: var(--heading);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tl-title {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TRUST GRID
   ═══════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 44px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .35s ease;
}
.trust-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.trust-check {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.trust-title {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.trust-desc {
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .35s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--amber); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   MAP
   ═══════════════════════════════════════ */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Hero content bottom padding for FAB clearance */
main > section:last-of-type {
  padding-bottom: 80px;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-section { max-width: 760px; margin-left: auto; margin-right: auto }
.faq-item { border-bottom: 1px solid var(--border) }
.faq-q {
  width: 100%;
  padding: 24px 0;
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s;
}
.faq-q:hover { color: var(--deep-teal) }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .3s;
}
.faq-q.open::after { transform: rotate(45deg) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease }
.faq-q.open + .faq-a { max-height: 300px }
.faq-a-inner {
  padding-bottom: 24px;
  font-size: 0.94rem;
  color: var(--text-sec);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   CONTACTS
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact info cards (replaces form) */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .3s ease;
}
.contact-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--medium-teal);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(94, 173, 184, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-card-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep-teal);
}
.contact-card-value a {
  color: var(--deep-teal);
  transition: color .3s;
}
.contact-card-value a:hover { color: var(--amber) }

/* Old form styles (kept for backward compat, hidden if not used) */
.contact-form-wrap { display: none }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-h3 {
  font-family: var(--body) !important;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px !important;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7 }
.footer-links { display: flex; flex-direction: column; gap: 10px }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color .3s;
}
.footer-links a:hover { color: var(--amber) }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.8rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   FAB (Floating Action Buttons)
   ═══════════════════════════════════════ */
.fab-stack {
  position: fixed;
  bottom: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: all .3s ease;
}
.fab:hover { transform: scale(1.1) }
.fab-wa { background: #25D366; color: #fff }
.fab-tg { background: #0088cc; color: #fff }
.fab-phone { background: var(--deep-teal); color: #fff }

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   UTILITY / CONTENT CLASSES
   ═══════════════════════════════════════ */
.about-icon { font-size: 2.4rem; margin-bottom: 8px; line-height: 1 }
.about-title { color: var(--text); font-family: var(--heading); font-size: 1.15rem; display: block; margin-bottom: 6px }
.gift-emoji { font-size: 3rem; margin-bottom: 12px; line-height: 1 }
.gift-desc { color: var(--text-sec); max-width: 560px; margin: 0 auto 28px; font-size: .94rem; line-height: 1.75 }
.faq-section-wrap { max-width: 760px; margin-left: auto; margin-right: auto; margin-top: 48px }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav { padding: 14px 28px }
  .nav-links { display: none }
  .hamburger { display: flex }
  .concept-grid { grid-template-columns: repeat(2, 1fr) }
  .footer-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 768px) {
  .main-nav { padding: 12px 20px }
  .phone-bar { flex-direction: column; gap: 6px; font-size: 0.75rem }
  .hero-content { padding: 80px 20px 60px }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px 28px }
  .lifestyle-grid { grid-template-columns: 1fr }
  .concept-grid { grid-template-columns: repeat(2, 1fr) }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) }
  .trust-grid { grid-template-columns: 1fr }
  .testimonials-grid { grid-template-columns: 1fr }
  .contact-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
  .scarcity-bar { flex-direction: column; gap: 16px; align-items: center }
  .trust-bar-badges { flex-direction: column; align-items: center; gap: 16px }
  .map-section iframe { height: 300px }
  /* FAB buttons smaller on tablets */
  .fab-stack { bottom: 20px; right: 20px; gap: 10px }
  .fab { width: 48px; height: 48px; font-size: 1.2rem }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem }
  .concept-grid { grid-template-columns: 1fr }
  .gallery-grid { grid-template-columns: 1fr }
  .hero-cta { flex-direction: column; align-items: center }
  .map-section iframe { height: 220px }
  .hero-content { padding: 60px 16px 40px }
  /* FAB buttons compact on phones */
  .fab-stack { bottom: 24px; right: 20px; gap: 8px }
  .fab { width: 42px; height: 42px; font-size: 1rem }
  /* Bottom padding so content isn't hidden behind FABs */
  footer.footer { padding-bottom: 90px }
}

@media (max-width: 360px) {
  .fab-stack { bottom: 18px; right: 14px; gap: 6px }
  .fab { width: 38px; height: 38px; font-size: 0.9rem }
}
