/* ============================================
   RASHID DONZ ENTERPRISES — DARK LUXURY EDITORIAL
   Design System: Tactile Digital Editorial on 
   a dark luxury canvas. Mayfair meets Kampala.
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --bg:          #080808;
  --bg-raised:   #111111;
  --bg-light:    #F7F4EE;          /* cream — real estate section */
  --gold:        #C6993F;
  --gold-bright: #E8B84B;
  --gold-dim:    rgba(198,153,63,0.10);
  --gold-line:   rgba(198,153,63,0.20);
  --white:       #F0EDE8;
  --muted:       rgba(240,237,232,0.45);
  --faint:       rgba(240,237,232,0.18);
  --shadow:      0 20px 60px rgba(0,0,0,0.6);
  --glow:        0 0 40px rgba(198,153,63,0.08);

  /* Physical card shadow — editorial tactile feel */
  --card-shadow:       6px 6px 0px rgba(198,153,63,0.06);
  --card-shadow-hover: 8px 8px 0px rgba(198,153,63,0.12);

  /* Fonts */
  --font-display: 'Cormorant', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  /* Prevents layout shift when scrollbar appears */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  /* Custom scrollbar to match dark theme */
}

/* Scrollbar styling — dark luxury */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Gold horizontal line divider — used between sections */
.section-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Smaller gold divider for below headlines */
.gold-divider-sm {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0 2.5rem;
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.section-label--dark {
  color: #8a7340;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0;
}
.section-headline--dark {
  color: #1a1a1a;
}
.section-headline span {
  display: block;
}
.section-headline .gold {
  color: var(--gold);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.section-intro--dark {
  color: #6b6560;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-svg {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 400;
}
.logo-location {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* WhatsApp pill */
.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #128C7E;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 999px;
  transition: filter 0.25s ease;
  text-decoration: none;
}
.nav-whatsapp:hover {
  filter: brightness(1.1);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}
/* Hamburger transforms when active */
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(8,8,8,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.mobile-menu.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered entrance */
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #128C7E;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.5s;
}
.mobile-menu.active .mobile-whatsapp {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding-top: 64px;
  overflow: hidden;
}

/* Canvas fills entire hero — constellation particles */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Noise grain texture overlay */
.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  /* CSS noise using radial gradients at small scale */
  background-image:
    radial-gradient(circle at 50% 50%, var(--white) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
}

/* All hero content above canvas */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem 6rem;
}

/* Hero label — mono, gold, small */
.hero-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.hero-line {
  display: block;
  color: var(--white);
}
.hero-line--gold {
  color: var(--gold);
}

/* Gold divider in hero — animated draw from center */
.gold-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
}

/* Hero body text */
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 13px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-primary:hover {
  background: var(--gold);
  color: #080808;
}

.btn-whatsapp {
  background: #128C7E;
  color: #fff;
  border: 1px solid #128C7E;
}
.btn-whatsapp:hover {
  filter: brightness(1.15);
}
.btn-whatsapp--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* ---------- HERO SECTOR CARDS ---------- */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.hero-card {
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  background: var(--gold-dim);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: left;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--card-shadow);
}
.hero-card:hover {
  border-color: var(--gold);
  background: rgba(198,153,63,0.15);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.hero-card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.hero-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.hero-card-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
}
.hero-card-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.hero-card:hover .hero-card-arrow {
  transform: translateX(4px);
}

/* ============================================
   HERO ENTRANCE ANIMATIONS
   Staggered reveal using CSS keyframes.
   Each element uses --delay custom property.
   ============================================ */

/* Simple fade in */
.anim-fade {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Stamp in — scale + blur + opacity */
.anim-stamp {
  opacity: 0;
  filter: blur(4px);
  transform: scale(0.95);
  animation: stampIn 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes stampIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* Draw from center — width 0 to full */
.anim-draw {
  width: 0;
  animation: drawLine 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
  /* keep other gold-divider properties */
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
}
@keyframes drawLine {
  to { width: 120px; }
}

/* Fade up — translateY + opacity */
.anim-fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards staggered appearance */
.anim-cards {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
.anim-cards .hero-card {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s ease forwards;
}
/* Each card staggers by 0.15s after parent delay */
.anim-cards .hero-card:nth-child(1) { animation-delay: calc(var(--delay, 0s) + 0.0s); }
.anim-cards .hero-card:nth-child(2) { animation-delay: calc(var(--delay, 0s) + 0.15s); }
.anim-cards .hero-card:nth-child(3) { animation-delay: calc(var(--delay, 0s) + 0.3s); }

/* ============================================
   SCROLL REVEAL — applied by JS IntersectionObserver
   Elements start hidden, get .revealed class on scroll
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SECTION — TRADING
   ============================================ */
.section {
  padding: 6rem 0;
}
.section-trading {
  background: #0D0D0D;
}

.trading-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  align-items: start;
}

.trading-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.trading-services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.trading-service {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trading-service-icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.trading-service h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.trading-service p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.trading-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: var(--gold-dim);
}
.stat {
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   SECTION — REAL ESTATE (cream background)
   ============================================ */
.section-realestate {
  background: var(--bg-light);
  padding: 6rem 0;
}

/* Property filter tabs */
.property-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border: 1px solid #c8c0b4;
  border-radius: 4px;
  color: #6b6560;
  background: transparent;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #1a1a1a;
  color: var(--gold);
  border-color: #1a1a1a;
}

/* Property card grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.property-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
/* Hide cards when filtered out */
.property-card.hidden {
  display: none;
}

.property-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-img-placeholder {
  opacity: 0.6;
}
.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: var(--gold);
  color: #080808;
  border-radius: 3px;
  font-weight: 400;
}

.property-body {
  padding: 1.25rem 1.5rem;
}
.property-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}
.property-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin: 0.5rem 0 0.25rem;
}
.property-location {
  font-size: 0.8rem;
  color: #8a8580;
  margin-bottom: 0.75rem;
}
.property-specs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.property-specs span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #6b6560;
  padding: 3px 10px;
  background: #f2ede5;
  border-radius: 3px;
}
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #eae5dc;
}
.property-price {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1rem;
  color: #1a1a1a;
}
.property-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s ease;
}
.property-cta:hover {
  color: var(--gold-bright);
}

/* ============================================
   SECTION — AUTOMOTIVE
   ============================================ */
.section-automotive {
  background: var(--bg);
}

/* Auto tabs */
.auto-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.auto-tab {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  color: var(--muted);
  transition: all 0.25s ease;
}
.auto-tab:hover,
.auto-tab.active {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
}

/* Panels */
.auto-panel {
  display: none;
}
.auto-panel.active {
  display: block;
}
.auto-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.auto-feature-card {
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}
.auto-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.auto-feature-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auto-feature-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  padding: 1.25rem 1.5rem 0.25rem;
}
.auto-feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0 1.5rem;
  line-height: 1.6;
}
.auto-feature-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 1.5rem 1.25rem;
}

/* ============================================
   SECTION — ABOUT / FOUNDER
   ============================================ */
.section-about {
  background: #0A0A0A;
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  margin-top: 1rem;
  align-items: start;
}

.portrait-frame {
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.portrait-frame svg {
  width: 100%;
  height: auto;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-line);
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.value-item strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.value-item span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   SECTION — CONTACT
   ============================================ */
.section-contact {
  background: var(--bg);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}

.contact-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.contact-item a,
.contact-item span {
  font-size: 0.85rem;
  color: var(--muted);
  word-break: break-all;
}
.contact-item a:hover {
  color: var(--gold);
}

/* Contact form */
.contact-form {
  padding: 2.5rem;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: var(--bg-raised);
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.25s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--faint);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  cursor: pointer;
  /* Custom dropdown arrow */
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23C6993F' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-group select option {
  background: var(--bg-raised);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--faint);
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.25s ease;
}
.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal {
  text-align: center;
}
.footer-legal p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--faint);
}
.footer-disclaimer {
  margin-top: 0.25rem;
  font-size: 0.6rem !important;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST BREAKPOINTS
   ============================================ */
@media (max-width: 900px) {
  .nav-links,
  .nav-whatsapp {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .trading-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-portrait {
    max-width: 250px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .auto-panel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-cards {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .section-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-content {
    padding: 3rem 1.5rem 4rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .trading-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .contact-form {
    padding: 1.5rem;
  }
  
  .logo-text {
    display: none;
  }
}
