/* =============================================================================
   Deal & Dwell Realty – Premium Design System
   High-contrast, luxury earth-tone aesthetic
   ============================================================================= */

/* ── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  /* Palette: #36422E · #473C2C · #B39D7F · #D8C8AC · #F7F6F2 */

  /* Deep Backgrounds — near-black with warm olive/brown undertone */
  --color-bg-dark: #141a0f;
  --color-bg-primary: #1a2214;
  --color-bg-secondary: #222b1b;
  --color-bg-card: rgba(26, 34, 20, 0.92);
  --color-bg-glass: rgba(30, 28, 22, 0.65);

  /* Brand Colors */
  --color-olive: #36422E;
  --color-brown: #473C2C;
  --color-tan: #B39D7F;
  --color-beige: #D8C8AC;
  --color-cream: #F7F6F2;

  /* Accent — brighter gold-tan for premium contrast */
  --color-accent: #c9aa7a;
  --color-accent-hover: #dfc49e;
  --color-accent-bright: #e8d4a8;
  --color-accent-glow: rgba(201, 170, 122, 0.35);

  /* CTA — rich warm gold gradient */
  --color-cta: #c9aa7a;
  --color-cta-hover: #dfc49e;
  --color-cta-glow: rgba(201, 170, 122, 0.4);

  /* Text — high contrast */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #D8C8AC;
  --color-text-muted: #8a8070;
  --color-text-dark: #141a0f;

  /* Borders */
  --color-border: rgba(201, 170, 122, 0.25);
  --color-border-light: rgba(247, 246, 242, 0.1);
  --color-border-gold: rgba(201, 170, 122, 0.5);

  /* Status */
  --color-success: #7dad6a;
  --color-white: #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 110px 0;
  --container-width: 1200px;
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 50px rgba(201, 170, 122, 0.2);
  --shadow-cta: 0 6px 30px rgba(201, 170, 122, 0.35);
  --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(201, 170, 122, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ──────────────────────────────────────────────────────────── */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--gap-sm);
  position: relative;
  padding: 6px 24px;
  background: rgba(201, 170, 122, 0.08);
  border: 1px solid rgba(201, 170, 122, 0.2);
  border-radius: var(--radius-xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: var(--gap-md);
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.section-title span.gold {
  color: var(--color-accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Premium Divider ──────────────────────────────────────────────────────── */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 20px auto 0;
}

/* ── Glass Card — Premium ─────────────────────────────────────────────────── */
.glass-card {
  background: linear-gradient(145deg, rgba(30, 28, 22, 0.8), rgba(20, 26, 15, 0.9));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--color-border-gold);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 36px;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #9a7d50);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-cta);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 170, 122, 0.5);
  color: var(--color-text-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-text-dark);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-accent), #a68b5b);
  color: var(--color-text-dark);
  box-shadow: 0 4px 24px var(--color-accent-glow);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 170, 122, 0.5);
  color: var(--color-text-dark);
}

/* ── Navigation ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(14, 18, 10, 0.97);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(201, 170, 122, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-logo img {
  height: 220px;
  width: auto;
  filter: invert(1) brightness(1.1);
  margin: -85px 0;
}

.navbar.scrolled .navbar-logo img {
  height: 120px;
  margin: -35px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright));
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  image-rendering: auto;
  -webkit-image-rendering: auto;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 18, 10, 0.75) 0%, rgba(14, 18, 10, 0.55) 30%, rgba(14, 18, 10, 0.75) 70%, rgba(14, 18, 10, 0.95) 100%),
    linear-gradient(90deg, rgba(14, 18, 10, 0.9) 0%, rgba(14, 18, 10, 0.3) 50%, rgba(14, 18, 10, 0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(110vh) scale(0);
  }

  10% {
    opacity: 0.6;
    transform: translateY(100vh) scale(1);
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1.2);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 170, 122, 0.08);
  border: 1px solid rgba(201, 170, 122, 0.25);
  border-radius: var(--radius-xl);
  padding: 8px 22px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--gap-lg);
  backdrop-filter: blur(10px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 8px rgba(125, 173, 106, 0.5);
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--gap-lg);
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--gap-lg);
  line-height: 1.85;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: var(--gap-xl);
  margin-top: var(--gap-xl);
  padding-top: var(--gap-lg);
  border-top: 1px solid rgba(201, 170, 122, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 140px;
  display: inline-block;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  font-weight: 600;
}

/* ── Hero Form — Premium Glass ─────────────────────────────────────────────── */
.hero-form-wrapper {
  background: linear-gradient(145deg, rgba(20, 26, 15, 0.92), rgba(30, 28, 22, 0.95));
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(201, 170, 122, 0.2);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow:
    var(--shadow-premium),
    inset 0 1px 0 rgba(201, 170, 122, 0.1);
  position: relative;
  overflow: hidden;
}

/* Gold shimmer accent at top */
.hero-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
  color: var(--color-white);
}

.hero-form-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--gap-lg);
  letter-spacing: 0.5px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(247, 246, 242, 0.06);
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group select {
  color: rgba(255, 255, 255, 0.35);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B39D7F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: #1a2214;
  color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  background: rgba(201, 170, 122, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 170, 122, 0.15), 0 0 20px rgba(201, 170, 122, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-form .btn {
  width: 100%;
  padding: 18px;
  font-size: 0.95rem;
  margin-top: 8px;
  letter-spacing: 2px;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.form-trust svg {
  width: 16px;
  height: 16px;
  fill: var(--color-success);
}

.form-trust span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--color-bg-primary);
  position: relative;
}

/* Subtle texture overlay */
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 170, 122, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 170, 122, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 65px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 44px 32px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #9a7d50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-md);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-dark);
  box-shadow: 0 8px 32px var(--color-accent-glow);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--gap-sm);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--gap-sm);
  font-weight: 700;
}

.step-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── About / Our Approach ──────────────────────────────────────────────────── */
.about {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 170, 122, 0.06), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  pointer-events: none;
}

/* Gold corner accents */
.about-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: var(--radius-lg) 0 0 0;
  z-index: 2;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--gap-md);
  color: var(--color-white);
}

.about-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--gap-md);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(201, 170, 122, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 170, 122, 0.1);
  transition: all var(--transition-base);
}

.about-feature:hover {
  background: rgba(201, 170, 122, 0.1);
  border-color: rgba(201, 170, 122, 0.25);
  transform: translateX(4px);
}

.about-feature-icon {
  font-size: 1.4rem;
}

.about-feature span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
}

/* ── Why Choose Us ─────────────────────────────────────────────────────────── */
.why-us {
  background: var(--color-bg-primary);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

.feature-card {
  padding: 40px 28px;
  text-align: center;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

/* Gold top-line accent on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: width var(--transition-base);
}

.feature-card:hover::before {
  width: 80%;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--gap-xs);
  font-weight: 700;
}

.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Investors Section ─────────────────────────────────────────────────────── */
.investors {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.investors::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 170, 122, 0.06), transparent 70%);
  pointer-events: none;
}

.investor-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.investor-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--gap-md);
}

.investor-content h2 .highlight {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investor-content p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--gap-md);
  line-height: 1.8;
}

.investor-benefits {
  list-style: none;
  margin-bottom: var(--gap-lg);
}

.investor-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 246, 242, 0.06);
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.investor-benefits li:last-child {
  border-bottom: none;
}

.investor-benefits .check {
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.investor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
}

.investor-card {
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle corner accent */
.investor-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid rgba(201, 170, 122, 0.3);
  border-right: 1px solid rgba(201, 170, 122, 0.3);
  border-radius: 0 0 var(--radius-md) 0;
}

.investor-card-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  min-width: 160px;
  display: inline-block;
}

.investor-card-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ── Project Gallery ───────────────────────────────────────────────────────── */
.gallery {
  background: var(--color-bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201, 170, 122, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 18, 10, 0.95) 0%, rgba(14, 18, 10, 0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.gallery-overlay span {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}

.gallery-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--color-accent), #9a7d50);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ── Stats Counter ─────────────────────────────────────────────────────────── */
.stats {
  background: linear-gradient(135deg, var(--color-brown), var(--color-bg-dark));
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B39D7F' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Gold line accents */
.stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 170, 122, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 180px;
  display: inline-block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials {
  background: var(--color-bg-dark);
  position: relative;
}

.testimonials-slider {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  padding: 52px;
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.9;
  margin-bottom: var(--gap-lg);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
  top: -35px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #9a7d50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  box-shadow: 0 4px 16px rgba(201, 170, 122, 0.3);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: var(--gap-sm);
  letter-spacing: 6px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--gap-lg);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 170, 122, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.testimonial-dot.active {
  background: var(--color-accent);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(201, 170, 122, 0.4);
}

/* ── Contact / CTA Section ─────────────────────────────────────────────────── */
.contact {
  background: var(--color-bg-primary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--gap-md);
}

.contact-info p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--gap-lg);
  line-height: 1.8;
}

.contact-details {
  list-style: none;
  margin-bottom: var(--gap-lg);
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 246, 242, 0.06);
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details li span:last-child {
  white-space: nowrap;
}

.contact-details .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 170, 122, 0.12), transparent);
  border: 1px solid rgba(201, 170, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  padding: 44px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--gap-lg);
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: #0d120a;
  border-top: 1px solid rgba(201, 170, 122, 0.08);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-xl);
  margin-bottom: var(--gap-xl);
}

.footer-brand img {
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: invert(1) brightness(1.1);
  margin-top: -85px;
  margin-bottom: -70px;
  margin-left: -20px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--gap-md);
  color: var(--color-accent);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(201, 170, 122, 0.08);
}

.footer-legal a {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

.footer-legal-sep {
  color: rgba(201, 170, 122, 0.2);
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 170, 122, 0.08);
  padding-top: 28px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 170, 122, 0.06);
  border: 1px solid rgba(201, 170, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201, 170, 122, 0.3);
}

/* ── Scroll Animations ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Form Success State ────────────────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 64px;
  height: 64px;
  fill: var(--color-accent);
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-secondary);
}

/* ── Legal Pages (Privacy Policy, Terms of Service) ──────────────────────── */
.legal-page {
  padding: 140px 0 80px;
  min-height: 70vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 800px;
}

.legal-page ul {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 24px;
  max-width: 800px;
}

.legal-page ul li {
  margin-bottom: 6px;
}

/* ── Deal & Dwell Premium Chatbot Widget ──────────────────────────────────── */
#dd-chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

#dd-chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9aa7a 0%, #9a7d50 100%);
  color: #141a0f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(201, 170, 122, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  flex-shrink: 0;
}

#dd-chat-toggle:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 170, 122, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

#dd-chat-window {
  width: 370px;
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #141a0f;
  border: 1px solid rgba(201, 170, 122, 0.3);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 170, 122, 0.08), inset 0 1px 0 rgba(201, 170, 122, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  transform-origin: bottom right;
}

#dd-chat-window.dd-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.88) translateY(16px);
  pointer-events: none;
  /* Collapse so it doesn't push the toggle button */
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

/* Header */
#dd-chat-header {
  background: linear-gradient(135deg, #1a2214 0%, #222b1b 100%);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201, 170, 122, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.dd-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dd-avatar-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9aa7a, #9a7d50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(201, 170, 122, 0.2);
  flex-shrink: 0;
}

.dd-header-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.dd-header-status {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #8a8070;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.dd-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dad6a;
  box-shadow: 0 0 6px rgba(125, 173, 106, 0.6);
  animation: dd-pulse 2s infinite;
}

@keyframes dd-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

#dd-chat-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #8a8070;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

#dd-chat-close:hover {
  background: rgba(201, 170, 122, 0.12);
  color: #c9aa7a;
  border-color: rgba(201, 170, 122, 0.3);
}

/* Messages */
#dd-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 170, 122, 0.2) transparent;
}

#dd-chat-messages::-webkit-scrollbar {
  width: 4px;
}

#dd-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(201, 170, 122, 0.2);
  border-radius: 4px;
}

.dd-msg {
  display: flex;
  flex-direction: column;
  max-width: 84%;
  animation: dd-slideUp 0.3s ease forwards;
}

@keyframes dd-slideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dd-bot {
  align-self: flex-start;
}

.dd-user {
  align-self: flex-end;
}

.dd-msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}

.dd-bot .dd-msg-bubble {
  background: rgba(34, 43, 27, 0.8);
  color: #D8C8AC;
  border: 1px solid rgba(201, 170, 122, 0.12);
  border-bottom-left-radius: 4px;
}

.dd-bot .dd-msg-bubble strong {
  color: #c9aa7a;
}

.dd-user .dd-msg-bubble {
  background: linear-gradient(135deg, #c9aa7a, #9a7d50);
  color: #141a0f;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.dd-typing .dd-msg-bubble {
  color: #8a8070;
  font-style: italic;
  font-size: 0.82rem;
}

/* Input */
#dd-chat-input-area {
  padding: 14px 16px;
  background: #1a2214;
  border-top: 1px solid rgba(201, 170, 122, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#dd-chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 170, 122, 0.2);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

#dd-chat-input::placeholder {
  color: #8a8070;
}

#dd-chat-input:focus {
  border-color: rgba(201, 170, 122, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

#dd-chat-send {
  background: linear-gradient(135deg, #c9aa7a, #9a7d50);
  color: #141a0f;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(201, 170, 122, 0.3);
}

#dd-chat-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 170, 122, 0.5);
}

.dd-contact-btn {
  display: inline-block;
  padding: 9px 18px;
  background: linear-gradient(135deg, #c9aa7a, #9a7d50);
  color: #141a0f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(201, 170, 122, 0.3);
}

.dd-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 170, 122, 0.5);
  color: #141a0f;
}

@media (max-width: 480px) {
  #dd-chat-window {
    width: calc(100vw - 24px);
    height: 70vh;
    border-radius: 18px 18px 4px 4px;
  }

  #dd-chat-widget {
    bottom: 16px;
    right: 12px;
  }
}

/* ── Hero Content Wide (no form side) ─────────────────────────────────────── */
.hero-content--wide {
  max-width: 780px;
}

.hero-cta-pair {
  display: flex;
  gap: 16px;
  margin-top: var(--gap-lg);
  flex-wrap: wrap;
}

/* ── Services Section ─────────────────────────────────────────────────────── */
.services {
  background: var(--color-bg-secondary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201, 170, 122, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(201, 170, 122, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}

.service-card {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Shimmer line at top */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.6;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(201, 170, 122, 0.08);
  border: 1px solid rgba(201, 170, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-md);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(201, 170, 122, 0.15);
  border-color: rgba(201, 170, 122, 0.4);
}

.service-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--gap-sm);
  color: var(--color-white);
}

.service-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--gap-md);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--gap-lg);
  flex: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.service-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.service-btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.8rem;
  padding: 12px 28px;
}

/* ── Mobile Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(14, 18, 10, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--color-border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  /* ── Hero Mobile ─────────────────────────────────────────────── */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero .container {
    text-align: center;
    align-items: center;
  }

  .hero-content,
  .hero-content--wide {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-description {
    margin: 0 auto var(--gap-lg);
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
    letter-spacing: 1.5px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
    margin-top: var(--gap-lg);
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-cta-pair {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-cta-pair .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* ── Global Mobile Centering ───────────────────────────────── */
  .section-header,
  .about-content,
  .investor-content,
  .contact-info,
  .footer-col,
  .footer-brand,
  .feature-card,
  .step-card {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .about-features,
  .investor-benefits {
    align-items: stretch;
    justify-items: stretch;
    justify-content: center;
  }

  .about-feature {
    justify-content: center;
    text-align: center;
  }

  .contact-details {
    align-items: flex-start;
    text-align: left;
  }

  .investor-benefits li {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-details li {
    justify-content: flex-start;
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── Steps Mobile ────────────────────────────────────────────── */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .steps-grid::before {
    display: none;
  }

  .step-card {
    padding: 32px 24px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  /* ── About / Investor / Contact Grids ────────────────────────── */
  .about-grid,
  .investor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .about-image {
    order: -1;
  }

  /* ── Services Mobile ─────────────────────────────────────────── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .service-card {
    padding: 32px 24px;
    text-align: left;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-btn {
    align-self: center;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* ── Features / Gallery ──────────────────────────────────────── */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  /* ── Stats Mobile ────────────────────────────────────────────── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
  }

  .stat-item::after {
    display: none;
  }

  /* ── Investor Cards ──────────────────────────────────────────── */
  .investor-cards {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
  }

  .investor-card-value {
    font-size: 1.6rem;
  }

  .investor-content .btn {
    width: 100%;
    max-width: 320px;
  }

  /* ── Contact Mobile ──────────────────────────────────────────── */
  .contact-info h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .contact-form {
    margin: 0 auto;
    width: 100%;
    padding: 28px 20px;
  }

  .contact-form h3 {
    text-align: center;
  }

  /* ── Footer Mobile ───────────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal-sep {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    margin-left: 0;
    margin-right: 0;
  }

  /* ── Navbar Logo Mobile ──────────────────────────────────────── */
  .navbar-logo img {
    height: 140px;
    margin: -50px 0;
  }

  .navbar.scrolled .navbar-logo img {
    height: 100px;
    margin: -28px 0;
  }

  /* ── Section Titles Mobile ───────────────────────────────────── */
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    padding: 5px 16px;
  }

  /* ── Testimonials Mobile ─────────────────────────────────────── */
  .testimonial-quote {
    font-size: 0.9rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ── Extra Small Screens ──────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .investor-cards {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    padding: 24px 18px;
  }

  .step-card {
    padding: 24px 18px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .contact-form {
    padding: 24px 16px;
  }
}













/* ── Loading animation ─────────────────────────────────────────────────────── */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}



/* ── Scroll to top ─────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 100px;
  /* Above the chatbot */
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #9a7d50);
  color: var(--color-text-dark);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1005;
  /* higher than chatbot-widget */
  box-shadow: 0 6px 24px rgba(201, 170, 122, 0.35);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(201, 170, 122, 0.5);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 150px;
    /* Above the expanded chatbot toggle on mobile */
    right: 20px;
  }
}

/* ── Ultra Large Screens (4K, Ultra Wide) ──────────────────── */
@media (min-width: 1600px) {
  :root {
    --container-width: 1400px;
    --section-padding: 130px 0;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 4vw, 5rem);
  }

  .hero-description {
    font-size: 1.35rem;
    max-width: 700px;
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }
}