/* ═══════════════════════════════════════════════════════════════
   Utkal Advisors — style.css
   Mobile-first | Premium Black & Gold Theme
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────────────────── */
:root {
  --bg-primary:    #0B0B0B;
  --bg-secondary:  #151515;
  --gold:          #D4AF37;
  --gold-dim:      rgba(212, 175, 55, 0.12);
  --gold-border:   rgba(212, 175, 55, 0.25);
  --text-primary:  #FFFFFF;
  --text-secondary:#D1D5DB;
  --text-muted:    #6B7280;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --radius:        8px;
  --radius-lg:     12px;
  --max-w:         1200px;
  --ease:          200ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 62px; /* mobile header height; desktop restores to 74px via media query */
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol { list-style: none; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

a:hover { opacity: 0.85; }

address { font-style: normal; }

/* ─── FOCUS ─────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: 5rem; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--gold);
  color: #0B0B0B;
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
  color: #0B0B0B;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* ─── HEADER / NAV ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-border);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding-block: 0.5rem;
  gap: 0.5rem;
}

.nav-logo img {
  height: clamp(56px, 8vw, 64px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.28)) contrast(1.04);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.625rem;
  transition: border-color var(--ease), color var(--ease);
  line-height: 1;
}

.nav-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile nav dropdown — floats as overlay panel below header */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(16, 16, 16, 0.98);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.375rem 1.25rem 0.5rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
  z-index: 99;
}

.nav-links.open { display: flex; }

.nav-links li a {
  display: block;
  padding: 0.625rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: color var(--ease);
}

.nav-links li:last-child a { border-bottom: none; }

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

/* .nav-cta — mobile: inherits from .nav-links li a (no special treatment) */

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  padding-block: 3rem 2.5rem;
  border-bottom: 1px solid var(--gold-border);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem; /* mobile: tighter vertical gap between content and photo; desktop restores 3rem via media query */
  text-align: center;
}

.hero-content { width: 100%; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 10vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3125rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 560px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.hero-trust-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  background-color: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.badge svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-photo {
  width: 100%;
  max-width: 300px;
  position: relative; /* establishes stacking context for the decorative outer ring */
}

/* Subtle outer ring — a second border offset 6px from the image edge */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.4);
  object-fit: cover;
  object-position: top;
  max-height: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 32px rgba(212,175,55,0.12);
  position: relative; /* keeps image above the ::before ring */
  z-index: 1;
}

.hero-photo-caption {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  text-align: center;
  margin-top: 0.625rem;
}

/* ─── CREDIBILITY STRIP ─────────────────────────────────────────── */
.cred-strip {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--gold-border);
  padding-block: 0.75rem;
}

.cred-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.cred-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.cred-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cred-list li {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding-inline: 0.875rem;
  position: relative;
}

.cred-list li + li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

/* ─── ABOUT ──────────────────────────────────────────────────────── */
.about { background-color: var(--bg-secondary); }

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.875rem;
  font-size: 1rem;
}

.about-text p:last-child { margin-bottom: 0; }

.founder-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.founder-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.founder-designation {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.875rem;
}

.founder-card p:last-child { margin-bottom: 0; }

.founder-qualification-note {
  font-size: 0.8125rem !important;
  color: var(--text-muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 1rem !important;
}

/* ─── SERVICES ───────────────────────────────────────────────────── */
.services { background-color: var(--bg-primary); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.service-icon {
  width: 42px;
  height: 42px;
  background-color: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card li {
  color: var(--text-secondary);
  font-size: 0.875rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

.service-card li small {
  display: block;
  font-size: 0.78rem;
  color: rgba(209, 213, 219, 0.5);
  margin-top: 0.125rem;
  line-height: 1.4;
}

/* ─── WHY CHOOSE US ──────────────────────────────────────────────── */
.why-us { background-color: var(--bg-secondary); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-top: 2rem;
}

.why-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.why-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.why-icon {
  width: 42px;
  height: 42px;
  background-color: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

/* ─── HOW WE WORK ────────────────────────────────────────────────── */
.how-we-work { background-color: var(--bg-primary); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-top: 2rem;
}

.step {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.step:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: 0.625rem;
  user-select: none;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.step-icon svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

/* ─── WHO WE SERVE ───────────────────────────────────────────────── */
.who-we-serve { background-color: var(--bg-secondary); }

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

.client-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.client-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.client-icon {
  width: 42px;
  height: 42px;
  background-color: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.client-card span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.client-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -0.125rem;
}

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq { background-color: var(--bg-primary); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(212, 175, 55, 0.55);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color var(--ease);
}

.faq-question:hover { color: var(--gold); }

.faq-question svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 240ms ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.375rem 1.25rem;
  border-top: 1px solid var(--gold-border);
}

.faq-answer[hidden] { display: none; }

.faq-answer p {
  padding-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ─── CONTACT PROCESS STEPS ─────────────────────────────────────── */
.contact-process {
  margin-top: 1.25rem;
}

.contact-process-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-process-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  counter-reset: process-step;
}

.contact-process-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  counter-increment: process-step;
}

.contact-process-list li::before {
  content: counter(process-step);
  min-width: 20px;
  height: 20px;
  background-color: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Form privacy note */
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ─── CONTACT ────────────────────────────────────────────────────── */
/* Contact — padding-bottom creates the gap between the map and the footer;
   scaled per breakpoint so it doesn't feel loose on mobile */
.contact {
  background-color: var(--bg-secondary);
  padding-bottom: 3.5rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

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

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

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

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span,
.contact-item address {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contact-item a:hover { color: var(--gold); opacity: 1; }

.contact-details .btn-whatsapp {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* Contact Form */
.contact-form-wrap {
  background-color: var(--bg-primary);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.6875rem 0.9375rem;
  width: 100%;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

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

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  padding-block: 0.875rem;
}

/* Map — margin-top separates it from the contact grid above;
   the section's padding-bottom handles the gap down to the footer */
.map-wrap {
  margin-top: 2.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background-color: var(--bg-secondary); /* dark placeholder while iframe loads */
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  position: relative; /* required for the vignette overlay */
}

/* Vignette overlay — dark edges blend the map into the surrounding section;
   pointer-events: none keeps the map fully interactive underneath */
.map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 11, 0.25) 0%,
    transparent 25%,
    transparent 70%,
    rgba(11, 11, 11, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  /* Desaturate and darken the map to match the dark site theme.
     grayscale removes garish map colours; brightness darkens the white road backgrounds;
     contrast keeps labels and street lines readable at the reduced brightness. */
  filter: grayscale(0.85) brightness(0.8) contrast(1.1);
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
/* Padding increased slightly for a more premium, uncrammed feel */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  padding-block: 2.75rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.375rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--ease);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FLOATING WHATSAPP BUTTON ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 50px;
  height: 50px;
  background-color: var(--bg-primary);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  transition: opacity 200ms ease, transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 0 16px rgba(212, 175, 55, 0.18);
  transform: translateY(-3px);
  opacity: 1;
  color: var(--gold);
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

/* ═══════════════════════════════════════════════════════════════
   TABLET — 768px+
═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  html { scroll-padding-top: 74px; }

  .container { padding-inline: 2rem; }

  .section { padding-block: 5.5rem; }

  /* Cred strip */
  .cred-inner {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  /* Nav — restore desktop height and padding reduced for mobile */
  .nav { min-height: 72px; padding-block: 0.75rem; }

  .nav-logo img { height: 72px; }

  .nav-toggle { display: none; }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 0.125rem;
    align-items: center;
  }

  .nav-links li a {
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius);
  }

  .nav-cta {
    background-color: var(--gold-dim) !important;
    border: 1px solid var(--gold-border) !important;
    padding: 0.45rem 1rem !important;
    border-radius: var(--radius) !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
  }

  /* Hero */
  .hero { padding-block: 5rem 4rem; }

  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }

  .hero-content {
    flex: 1;
    max-width: 54%;
  }

  .hero-subtitle { margin-inline: 0; }

  .hero-actions { justify-content: flex-start; }

  .hero-trust-note { text-align: left; }

  .trust-badges { justify-content: flex-start; }

  .hero-photo {
    flex-shrink: 0;
    max-width: 310px;
  }

  .hero-photo img { max-height: 420px; }

  /* About — about-text gets more width (3fr) so its paragraphs fill the column
     better; founder card (2fr) feels contained rather than dominant */
  .about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: start;
    gap: 2.25rem;
  }

  .founder-card { align-self: start; }

  /* Services — restore desktop spacing reduced for mobile */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.125rem; }
  .service-card { padding: 1.625rem; }
  .service-icon { margin-bottom: 1rem; }
  .service-card h3 { margin-bottom: 0.875rem; }
  .service-card ul { gap: 0.6rem; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps { grid-template-columns: repeat(2, 1fr); }

  /* Clients */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* Center orphaned last card when it's alone in a 2-column row */
  .client-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    margin-inline: auto;
  }

  /* Contact */
  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .contact-details { flex: 1 1 38%; gap: 1.25rem; }

  .contact-form-wrap { flex: 1 1 55%; padding: 1.75rem; }

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

  .contact-process { margin-top: 1.75rem; }

  /* Scale contact bottom padding up from mobile at tablet */
  .contact { padding-bottom: 4.5rem; }

  .map-wrap iframe { height: 340px; }

  /* Footer */
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand { align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP — 1024px+
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .section { padding-block: 6.5rem; }

  .hero { padding-block: 6rem 5rem; }

  .hero-photo { max-width: 360px; }

  .hero-photo img { max-height: 460px; }

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

  .why-grid { grid-template-columns: repeat(3, 1fr); }

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

  .clients-grid { grid-template-columns: repeat(3, 1fr); }

  /* Reset tablet orphan rule — at 3 columns the last row fills naturally */
  .client-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin-inline: 0;
  }

  .map-wrap iframe { height: 380px; }

  /* Scale contact bottom padding up to match section rhythm at desktop */
  .contact { padding-bottom: 5.5rem; }
}
