/* =============================================
   GRUPO GLOBAL — Design System
   Inspired by globalrealestate.pt visual identity
   ============================================= */

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

/* ── CSS Custom Properties ─────────────────── */
:root {
  --bg-primary:    #05101a;
  --bg-secondary:  #081825;
  --bg-card:       #0c1f2e;
  --bg-card-hover: #0f2538;
  --gold:          #b89564;
  --gold-light:    #d4b07e;
  --gold-dark:     #8a6f48;
  --text-primary:  #e8e2d9;
  --text-muted:    #7a8fa0;
  --text-dim:      #4a6070;
  --border:        rgba(184,149,100,0.18);
  --border-subtle: rgba(255,255,255,0.07);
  --white:         #ffffff;
  --nav-height:    100px;
  --top-bar-height: 32px;
  --ease-out:      cubic-bezier(0.16,1,0.3,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.serif-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

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

.section {
  padding: 6rem 0;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,100,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(184,149,100,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  font-size: 0.78rem;
  padding: 0;
  letter-spacing: 0.08em;
}

.btn-ghost:hover { color: var(--gold); }

.btn svg, .btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Gold Divider ────────────────────────────── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.top-bar {
  height: var(--top-bar-height);
  background: #020c13; /* Very dark background for top bar */
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.lang-selector {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(232,226,217,0.7);
  transition: color 0.2s ease;
}

.lang-current img {
  border-radius: 2px;
}

.lang-current .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 160px;
  background: #0c1f2e; /* Same as bg-card */
  border: 1px solid rgba(184,149,100,0.15);
  border-top: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1001;
}

.lang-selector:hover .lang-current {
  color: var(--gold);
}

.lang-selector:hover .lang-current .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(232,226,217,0.8);
  transition: all 0.2s ease;
}

.lang-item img {
  border-radius: 2px;
  opacity: 0.8;
}

.lang-item:hover {
  background: rgba(184,149,100,0.08);
  color: var(--gold);
}

.lang-item.active {
  color: var(--gold);
  background: rgba(184,149,100,0.04);
}

.lang-item:hover img, .lang-item.active img {
  opacity: 1;
}

#navbar {
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

#navbar.scrolled {
  background: rgba(5,16,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 80px;
  width: 67.63px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232,226,217,0.75);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,16,26,0.92) 0%,
    rgba(5,16,26,0.75) 50%,
    rgba(5,16,26,0.4) 100%
  );
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,149,100,0.35);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title .serif-italic {
  display: block;
  font-size: 1.1em;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(232,226,217,0.7);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}

.stat-item { text-align: right; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ══════════════════════════════════════════════
   SERVICES CARDS (Quick Links)
══════════════════════════════════════════════ */
#quick-links {
  background: var(--bg-secondary);
  padding: 0;
  position: relative;
  z-index: 3;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: block;
}

.quick-card:last-child { border-right: none; }

.quick-card:hover { background: var(--bg-card-hover); }

.quick-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.quick-card:hover .quick-icon {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.quick-icon svg { width: 20px; height: 20px; }

.quick-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.quick-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.quick-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.quick-card:hover .quick-link { gap: 0.8rem; }

/* ══════════════════════════════════════════════
   ABOUT / QUEM SOMOS
══════════════════════════════════════════════ */
#about {
  background: var(--bg-primary);
}

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

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 1.5rem 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-img-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-pillars {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar {
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.pillar:hover { background: var(--bg-card); }

.pillar h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
#services {
  background: var(--bg-secondary);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-subtle);
}

.service-card {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-img {
  height: 260px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-number {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.service-feature::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
#why {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.why-content > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
}

.why-item-icon {
  width: 40px; height: 40px;
  border-radius: 4px;
  background: rgba(184,149,100,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.why-item:hover .why-item-icon {
  background: var(--gold);
  color: var(--bg-primary);
}

.why-item-icon svg { width: 18px; height: 18px; }

.why-item-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.why-item-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.why-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,16,26,0.6) 0%, transparent 50%);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
#cta-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════ */
#stats {
  background: var(--bg-secondary);
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.stats-grid .stat-divider {
  width: 1px;
  background: var(--border-subtle);
  position: absolute;
}

.stat-box { position: relative; }

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-box .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-box .stat-number span { color: var(--gold); }

.stat-box .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════
   CONTACT / FORM
══════════════════════════════════════════════ */
#contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 36px; height: 36px;
  background: rgba(184,149,100,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-icon svg { width: 16px; height: 16px; }

.contact-item-text span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.contact-item-text strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  border-radius: 4px;
}

.contact-form h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(184,149,100,0.04);
}

.form-group select option { background: var(--bg-card); color: var(--text-primary); }

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

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-consent span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent a { color: var(--gold); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer {
  background: #020c13;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.f-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.f-contact-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: block;
  margin-top: 0.15rem;
}

.livro-reclamacoes {
  margin-top: 3rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1.25rem 0 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,149,100,0.08);
}

.social-link svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
  border-radius: 3px;
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease;
}

.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter input::placeholder { color: var(--text-dim); }

.footer-newsletter .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.72rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-close svg { width: 24px; height: 24px; }

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.mobile-links a:hover { color: var(--gold); }

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
}

/* ══════════════════════════════════════════════
   ANIMATIONS & MISC
══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-img-wrapper img,
  .why-visual img { height: 380px; }

  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(2) { border-right: none; }
  .quick-card:nth-child(3) { border-right: 1px solid var(--border-subtle); }
  .quick-card:nth-child(3), .quick-card:nth-child(4) {
    border-top: 1px solid var(--border-subtle);
  }

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

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section { padding: 4rem 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }

  .hero-stats { position: static; padding: 3rem 0 0; justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2)::after { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { border-right: none !important; border-bottom: 1px solid var(--border-subtle); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
