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

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

:root {
  --bg:        #0F1D35;
  --card:      #1A2A4A;
  --secondary: #243356;
  --gold:      #B8974A;
  --gold-light:#E6C875;
  --gold-dark: #8A6D2B;
  --white:     #ffffff;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif:'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Utilities ── */
.text-gold { color: var(--gold); }
.text-gradient-gold {
  background: linear-gradient(135deg, #E6C875 0%, #B8974A 50%, #8A6D2B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.divider-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow span.line { display: block; width: 2rem; height: 1px; background: var(--gold); }

/* ── Animations ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scrollDot{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }
@keyframes counterOrb { 0%{transform:scale(1);} 50%{transform:scale(1.15);} 100%{transform:scale(1);} }

.fade-up   { opacity:0; transform:translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-left { opacity:0; transform:translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.fade-right{ opacity:0; transform:translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.fade-scale{ opacity:0; transform:scale(.95);         transition: opacity .6s ease, transform .6s ease; }
.visible   { opacity:1 !important; transform:none !important; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, padding .3s, box-shadow .3s;
  padding-block: 1.5rem;
}
#navbar.scrolled {
  background: rgba(15,29,53,.95);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}
.nav-brand svg { width: 40px; height: 40px; }
.nav-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .1em;
}
@media (max-width: 640px) { .nav-brand-name { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .05em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--bg) !important;
  padding: .625rem 1.5rem;
  font-weight: 600;
  font-size: .85rem;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(184,151,74,.3);
  transition: box-shadow .3s, background .2s !important;
}
.nav-cta:hover { background: #a6883f !important; box-shadow: 0 0 25px rgba(184,151,74,.5) !important; }
.nav-cta svg { width:16px; height:16px; }

@media (max-width: 768px) { .nav-links { display: none; } }

.nav-mobile-toggle {
  display: none;
  color: rgba(255,255,255,.8);
  padding: .25rem;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; }
@media (max-width: 768px) { .nav-mobile-toggle { display: block; } }

#mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  display: block;
  padding: .75rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
#mobile-menu a:last-of-type { border-bottom: none; }
#mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--bg);
  padding: .75rem;
  text-align: center;
  font-weight: 600;
  border-radius: 2px;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #1A2A4A 0%, #0F1D35 50%, #0a1426 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 4rem 4rem;
}
.hero-orb-1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 24rem; height: 24rem;
  background: rgba(184,151,74,.1);
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
}
.hero-orb-2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 30rem; height: 30rem;
  background: rgba(184,151,74,.05);
  border-radius: 50%;
  filter: blur(150px);
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  padding-top: 6rem;
  max-width: 900px;
  margin-inline: auto;
}
.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(184,151,74,.3));
  animation: fadeUp .8s ease both;
}
@media (min-width: 640px) { .hero-logo { width: 128px; height: 128px; } }
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeUp .8s .2s ease both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .45s ease both;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
  animation: fadeUp .8s .6s ease both;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; width: auto; }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 2px;
  transition: background .2s;
  width: 100%;
  justify-content: center;
}
.btn-primary svg { width:16px; height:16px; transition: transform .2s; }
.btn-primary:hover { background: #a6883f; }
.btn-primary:hover svg { transform: translateX(4px); }
@media (min-width: 640px) { .btn-primary { width: auto; } }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 500;
  font-size: .9rem;
  border-radius: 2px;
  transition: background .2s, border-color .2s;
  width: 100%;
}
.btn-outline:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.4); }
@media (min-width: 640px) { .btn-outline { width: auto; } }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  z-index: 10;
  animation: fadeIn 1s 1.2s both;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* ── ABOUT ── */
#about {
  padding-block: 6rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,151,74,.3), transparent);
}
.about-orb {
  position: absolute;
  left: -10rem; top: 10rem;
  width: 24rem; height: 24rem;
  background: rgba(184,151,74,.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about-eyebrow .line { width: 3rem; height: 1px; background: var(--gold); display: block; }
.about-eyebrow span { font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-body {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 480px) { .about-cards { grid-template-columns: 1fr; } }
.about-card {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 2px;
  background: rgba(15,29,53,.5);
  backdrop-filter: blur(6px);
  transition: border-color .3s;
}
.about-card:hover { border-color: rgba(184,151,74,.3); }
.about-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 1rem; stroke: var(--gold); fill: none; }
.about-card h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; }
.about-card p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.about-visual {
  position: relative;
}
.about-frame {
  aspect-ratio: 4/5;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: .5rem;
  overflow: hidden;
  position: relative;
}
.about-frame-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--bg), var(--card));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-frame-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 20px 20px;
}
.compass-outer {
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(184,151,74,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.compass-inner {
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(184,151,74,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass-inner svg { width: 64px; height: 64px; stroke: rgba(184,151,74,.8); fill: none; stroke-width: 1; }
.frame-accent-tl { position: absolute; top: 1.5rem; left: 1.5rem; width: 4rem; height: 1px; background: var(--gold); z-index: 2; }
.frame-accent-br { position: absolute; bottom: 1.5rem; right: 1.5rem; width: 4rem; height: 1px; background: var(--gold); z-index: 2; }

.about-badge {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  background: var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  z-index: 10;
  max-width: 260px;
}
.about-badge .num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--bg); line-height: 1; margin-bottom: .25rem; }
.about-badge .label { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(15,29,53,.75); margin-bottom: .75rem; }
.about-badge .rule { width: 3rem; height: 2px; background: rgba(15,29,53,.3); margin-bottom: .75rem; }
.about-badge p { font-size: .8rem; color: rgba(15,29,53,.85); line-height: 1.5; }

/* ── SERVICES ── */
#services {
  padding-block: 6rem;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.services-header .eyebrow span { display: block; width: 2rem; height: 1px; background: var(--gold); }
.services-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.services-header p { color: rgba(255,255,255,.6); max-width: 600px; font-size: 1.05rem; font-weight: 300; line-height: 1.7; }

.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  position: relative;
  height: 380px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 2px;
  padding: 2rem;
  overflow: hidden;
  cursor: default;
  transition: border-color .4s;
}
.service-card:hover { border-color: rgba(184,151,74,.5); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
}
.service-card:hover::before { transform: scaleX(1); }

/* Default face */
.card-face {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: opacity .4s, transform .4s;
}
.card-face .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(184,151,74,.3);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}
.card-face .icon-wrap svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; }
.card-face h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.card-face p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Hover face */
.card-hover {
  position: absolute;
  inset: 0;
  padding: 2rem;
  padding-top: 2.5rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
  z-index: 5;
}
.service-card:hover .card-face  { opacity: 0; transform: translateY(-12px); }
.service-card:hover .card-hover { opacity: 1; transform: translateY(0); pointer-events: auto; }

.card-hover-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.card-hover-head svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.card-hover-head h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.card-hover ul { display: flex; flex-direction: column; gap: .75rem; overflow-y: auto; flex: 1; padding-right: .5rem; }
.card-hover ul li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.4; }
.card-hover ul li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}

/* scrollbar */
.card-hover ul::-webkit-scrollbar { width: 3px; }
.card-hover ul::-webkit-scrollbar-track { background: transparent; }
.card-hover ul::-webkit-scrollbar-thumb { background: rgba(184,151,74,.4); border-radius: 99px; }

/* ── WHY US ── */
#why-us {
  padding-block: 6rem;
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.why-dots {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(#B8974A 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
  pointer-events: none;
}
.why-header {
  text-align: center;
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 5rem;
}
.why-header h2 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.why-header p { color: rgba(255,255,255,.7); font-size: 1.05rem; font-weight: 300; line-height: 1.75; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-bottom: 6rem;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 6rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

.diff-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: 1fr 1fr 1fr; } }

.diff-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.05);
  background: var(--bg);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 8rem; height: 8rem;
  background: rgba(184,151,74,.05);
  border-radius: 0 0 0 100%;
  margin-top: -2.5rem;
  margin-right: -2.5rem;
  transition: transform .7s;
}
.diff-card:hover::before { transform: scale(1.5); }
.diff-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.diff-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; position: relative; z-index: 1; }

/* ── CONTACT ── */
#contact {
  padding-block: 6rem;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.05);
}
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 2rem; } }

.contact-info h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,.6); font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7; }

.office-card {
  background: var(--card);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.office-card.pk { border-left: 2px solid var(--gold); border-radius: 0 2px 2px 0; }
.office-card.uk { border-left: 2px solid rgba(184,151,74,.4); border-radius: 0 2px 2px 0; }
.office-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.office-head svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 2px; }
.office-head h3 { font-family: var(--font-serif); font-weight: 700; color: var(--white); font-size: 1.1rem; margin-bottom: .25rem; }
.office-head address { font-style: normal; font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.office-phone { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.8); padding-left: 2.25rem; }
.office-phone svg { width: 16px; height: 16px; stroke: rgba(184,151,74,.7); fill: none; }

.contact-form-wrap {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 3rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) { .contact-form-wrap { padding: 1.75rem; } }
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 16rem;
  background: rgba(184,151,74,.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 2rem; position: relative; z-index: 1; }

form { position: relative; z-index: 1; }
.form-row { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.8); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--card); }
.form-group textarea { resize: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.btn-submit {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(184,151,74,.2);
  transition: background .2s, box-shadow .2s, opacity .2s;
  width: 100%;
}
@media (min-width: 640px) { .btn-submit { width: auto; } }
.btn-submit:hover { background: #a6883f; box-shadow: 0 0 25px rgba(184,151,74,.4); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; }

/* Toast */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  color: var(--white);
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  max-width: 320px;
}
#toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#toast strong { display: block; margin-bottom: .25rem; font-weight: 600; }
#toast p { font-size: .875rem; color: rgba(255,255,255,.7); }

/* ── FOOTER ── */
footer {
  background: #0a1426;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand svg { width: 64px; height: 64px; margin-bottom: 1rem; }
.footer-brand h4 { font-family: var(--font-serif); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; font-size: .95rem; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.65; }

.footer-col h5 { font-weight: 500; color: var(--white); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li span { color: rgba(255,255,255,.5); font-size: .875rem; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-offices { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-offices .dot { width: 4px; height: 4px; background: rgba(184,151,74,.5); border-radius: 50%; }
