/* ============================================================
   IMPERIUM PRIVATE PROTECTION – Stylesheet
   ============================================================ */

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

:root {
  --gold:      #b8975a;
  --gold-lt:   #d4b07a;
  --gold-dk:   #8a6e3e;
  --dark:      #0d0d0d;
  --dark2:     #141414;
  --dark3:     #1e1e1e;
  --dark4:     #2a2a2a;
  --mid:       #3a3a3a;
  --light:     #f5f0e8;
  --white:     #ffffff;
  --muted:     #9a9a9a;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --radius:    6px;
  --trans:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:    0 8px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

/* ===== Section commons ===== */
section { position: relative; padding: 6rem 0; overflow: hidden; }

.section-head { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--gold-lt); }
.section-head h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.2; }
.section-head h2.light { color: var(--white); }
.section-desc { max-width: 620px; margin: 1.25rem auto 0; color: var(--muted); font-size: .95rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--trans);
}
.btn-gold  { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,151,90,.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--dark); color: var(--white); border: 1.5px solid var(--mid); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: rgba(13,13,13,.97);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
}

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

.logo { display: flex; align-items: center; gap: 1rem; }
.logo-img { width: 40px; height: 40px; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { display: block; font-size: .6rem; font-weight: 400; letter-spacing: .3em; color: var(--gold); margin-top: .15rem; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  padding: .6rem 1.5rem;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--gold); color: var(--dark) !important; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,.92) 0%,
    rgba(13,13,13,.75) 50%,
    rgba(13,13,13,.3) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 8rem 2rem 4rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: 420px;
  max-width: 80vw;
  margin-bottom: 2rem;
}
.hero-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-content h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(245,240,232,.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero badges */
.hero-badges {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  margin-top: auto;
  align-self: stretch;
  border-top: 1px solid rgba(184,151,90,.2);
}
.badge {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(184,151,90,.2);
  text-align: center;
}
.badge:last-child { border-right: none; }
.badge-num { font-family: var(--font-head); font-size: 2.5rem; color: var(--gold); font-weight: 600; line-height: 1; }
.badge span:last-child { font-size: .75rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-top: .3rem; }

/* Scroll indicator */
.scroll-down {
  position: absolute; bottom: 6.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 2px; height: 50px; background: rgba(255,255,255,.1);
}
.scroll-down span {
  display: block; width: 100%; height: 50%;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: scaleY(1) translateY(0); } 50% { transform: scaleY(1.2) translateY(4px); } }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--dark2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--gold-dk); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--gold-dk); }

.service-badge-tag {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--gold); color: var(--dark);
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; padding: .3rem .75rem; border-radius: 20px;
}

.service-img-wrap { height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-icon {
  position: absolute; top: 165px; left: 1.5rem; z-index: 2;
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: .85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 3rem 1.5rem .75rem;
}
.service-card p { font-size: .9rem; color: var(--muted); padding: 0 1.5rem; line-height: 1.7; }
.service-link {
  display: inline-block;
  margin: 1.25rem 1.5rem 1.5rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--trans), letter-spacing var(--trans);
}
.service-link:hover { letter-spacing: .15em; }

/* ============================================================
   TRANSPORT SÉCURISÉ
   ============================================================ */
#transport { background: var(--dark); }

.transport-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.transport-img { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.transport-img img { height: 500px; object-fit: cover; object-position: center 60%; transition: transform .6s ease; }
.transport-img:hover img { transform: scale(1.03); }
.transport-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--gold); color: var(--dark);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .45rem 1rem; border-radius: 4px;
}

.transport-info h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; margin-bottom: 1rem;
  color: var(--white);
}
.transport-info > p {
  color: var(--muted); font-size: .95rem; line-height: 1.75;
  margin-bottom: 2rem;
}

.vehicles-grid {
  display: flex; flex-direction: column;
  gap: .85rem; margin-bottom: 2rem;
}
.vehicle-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  transition: border-color var(--trans);
}
.vehicle-card:hover { border-color: var(--gold-dk); }
.vehicle-icon {
  width: 44px; height: 28px; flex-shrink: 0;
  color: var(--gold); margin-top: .1rem;
}
.vehicle-icon svg { width: 100%; height: 100%; }
.vehicle-card strong { display: block; font-size: .9rem; color: var(--white); margin-bottom: .15rem; }
.vehicle-card span { font-size: .8rem; color: var(--muted); line-height: 1.5; }

.chauffeur-badges {
  display: flex; flex-direction: column; gap: .85rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(184,151,90,.05);
  border: 1px solid rgba(184,151,90,.15);
  border-radius: 10px;
}
.chauf-badge {
  display: flex; align-items: flex-start; gap: 1rem;
}
.chauf-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.chauf-badge strong { display: block; font-size: .88rem; color: var(--white); margin-bottom: .15rem; }
.chauf-badge span { font-size: .8rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 1024px) {
  .transport-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .transport-img img { height: 320px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 0; min-height: 80vh; display: flex; align-items: center; }
.about-bg { position: absolute; inset: 0; z-index: 0; }
.about-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-overlay { position: absolute; inset: 0; background: rgba(13,13,13,.88); }

.about-container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: 6rem; padding-bottom: 6rem;
}

.about-content h2.light { color: var(--white); }
.about-content h2.light span { color: var(--gold-lt); }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-content p { color: rgba(245,240,232,.8); margin-bottom: 1rem; font-size: .95rem; }
.about-content strong { color: var(--gold-lt); font-weight: 700; }
.about-content em { color: var(--gold-lt); font-style: italic; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 2rem 0; }
.val { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(245,240,232,.9); }
.val-icon { color: var(--gold); font-size: .6rem; }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 8px; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about-cert {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--dark2); border: 1px solid var(--gold-dk);
  border-radius: 8px; padding: 1rem 1.5rem;
  text-align: center; box-shadow: var(--shadow);
}
.about-cert span { display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.about-cert strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--gold); margin: .25rem 0; }

/* ============================================================
   WHY US
   ============================================================ */
#why { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.why-card {
  background: var(--dark2);
  padding: 2.5rem;
  transition: background var(--trans);
}
.why-card:hover { background: var(--dark3); }
.why-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 700;
  color: rgba(184,151,90,.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card h4 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: .75rem; color: var(--white); }
.why-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   COVERAGE
   ============================================================ */
#coverage { background: var(--dark2); }

.coverage-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coverage-map { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.coverage-map img { height: 420px; object-fit: cover; filter: saturate(.6) brightness(.7); }
.map-overlay { position: absolute; inset: 0; }

/* Map pins */
.map-pin {
  position: absolute;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.map-pin::after {
  content: '';
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gold);
}
.map-pin span { display: block; font-size: .55rem; font-weight: 400; }

.pin-paris  { top: 28%; left: 42%; }
.pin-lyon   { top: 42%; left: 46%; }
.pin-nice   { top: 52%; left: 50%; }
.pin-dubai  { top: 50%; left: 72%; }
.pin-london { top: 22%; left: 38%; }
.pin-newyork{ top: 32%; left: 16%; }

.cov-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cov-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.cov-icon { font-size: 1.8rem; min-width: 2.5rem; text-align: center; }
.cov-item h4 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .3rem; }
.cov-item p { font-size: .88rem; color: var(--muted); }
.coverage-info .btn { margin-top: 2rem; }

/* ============================================================
   TEAM
   ============================================================ */
#team { background: var(--dark); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.team-photo { position: relative; overflow: hidden; height: 280px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }

/* Profil anonyme */
.team-photo-anon {
  background: var(--dark4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(184,151,90,.15);
}
.team-silhouette {
  width: 110px;
  height: auto;
  opacity: .55;
}
.team-badge-role {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: .35rem .7rem;
  border-radius: 4px;
}

.team-social {
  position: absolute; bottom: 1rem; right: 1rem;
  display: flex; gap: .5rem;
}
.team-social a {
  width: 34px; height: 34px;
  background: var(--gold); color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
  transition: background var(--trans);
}
.team-social a:hover { background: var(--gold-lt); }

.team-info { padding: 1.5rem; }
.team-info h4 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: .2rem; }
.team-role { font-size: .75rem; color: var(--gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.team-info p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding: 6rem 0; }
.testi-bg { position: absolute; inset: 0; z-index: 0; }
.testi-bg img { width: 100%; height: 100%; object-fit: cover; }
.testi-overlay { position: absolute; inset: 0; background: rgba(13,13,13,.9); }
#testimonials .container { position: relative; z-index: 1; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testi-card {
  background: rgba(30,30,30,.85);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 2rem;
  backdrop-filter: blur(6px);
  transition: border-color var(--trans);
}
.testi-card.featured { border-color: var(--gold-dk); }
.testi-card:hover { border-color: var(--gold); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .15em; }
.testi-card p { color: rgba(245,240,232,.8); font-size: .95rem; line-height: 1.8; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark4);
  border: 2px solid var(--gold-dk);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--white); }
.testi-author span { font-size: .78rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--dark2); }

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

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.c-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--dark4); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); padding: .55rem;
}
.c-icon svg { width: 100%; height: 100%; }
.contact-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .15rem; }
.contact-item span { font-size: .9rem; color: var(--muted); }

.emergency-box {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(184,151,90,.08);
  border: 1px solid rgba(184,151,90,.2);
  border-radius: 8px; padding: 1.25rem 1.5rem;
}
.emerg-pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,151,90,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(184,151,90,0); }
}
.emergency-box strong { display: block; font-size: .9rem; margin-bottom: .2rem; }
.emergency-box p { font-size: .82rem; color: var(--muted); }

/* Contact Form */
.contact-form {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-head); font-size: 1.5rem;
  margin-bottom: 2rem; color: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body); font-size: .9rem;
  color: var(--white);
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; }
.form-group textarea { resize: vertical; }

.form-check { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.5rem; }
.form-check input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.form-check label { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); }

.footer-top { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }

.footer-brand .logo-footer { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-top: .75rem; max-width: 280px; }
.footer-certs { display: flex; gap: .5rem; margin-top: 1.25rem; flex-wrap: wrap; }
.cert-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(184,151,90,.1); color: var(--gold);
  border: 1px solid rgba(184,151,90,.25);
  padding: .3rem .7rem; border-radius: 3px;
}

.footer-links h5,
.footer-contact-col h5 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul li a { font-size: .85rem; color: var(--muted); transition: color var(--trans); }
.footer-links ul li a:hover { color: var(--gold); }

.footer-contact-col p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: .4rem; }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.soc-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--muted);
  transition: border-color var(--trans), color var(--trans);
}
.soc-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: .8rem; color: var(--muted); transition: color var(--trans); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP & TOAST
   ============================================================ */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

.toast {
  position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark3); border: 1px solid var(--gold-dk);
  color: var(--white); border-radius: 8px;
  padding: .85rem 2rem; font-size: .9rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.service-card:nth-child(2).anim-fade { transition-delay: .1s; }
.service-card:nth-child(3).anim-fade { transition-delay: .2s; }
.service-card:nth-child(4).anim-fade { transition-delay: .3s; }
.service-card:nth-child(5).anim-fade { transition-delay: .4s; }
.service-card:nth-child(6).anim-fade { transition-delay: .5s; }

.why-card:nth-child(2).anim-fade { transition-delay: .08s; }
.why-card:nth-child(3).anim-fade { transition-delay: .16s; }
.why-card:nth-child(4).anim-fade { transition-delay: .24s; }
.why-card:nth-child(5).anim-fade { transition-delay: .32s; }
.why-card:nth-child(6).anim-fade { transition-delay: .40s; }

.team-card:nth-child(2).anim-fade { transition-delay: .1s; }
.team-card:nth-child(3).anim-fade { transition-delay: .2s; }
.team-card:nth-child(4).anim-fade { transition-delay: .3s; }

/* Nav active */
.nav-links a.active { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .coverage-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--dark2);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--trans);
    box-shadow: -5px 0 30px rgba(0,0,0,.5);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .burger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { flex-wrap: wrap; }
  .badge { flex: 0 0 50%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-container { padding-top: 4rem; padding-bottom: 4rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 7rem 1.5rem 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ===== CITIES DROPDOWN NAV ===== */
.nav-cities-drop { position: relative; display: inline-block; }
.nav-cities-btn {
  font-size: .78rem; letter-spacing: .12em; color: var(--text-light);
  text-decoration: none; cursor: pointer; font-family: var(--font-body);
  text-transform: uppercase; transition: color .2s;
}
.nav-cities-btn:hover { color: var(--gold); }
.nav-cities-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: var(--bg-dark);
  border: 1px solid var(--border); min-width: 180px; z-index: 200;
  padding: .5rem 0;
}
.nav-cities-drop:hover .nav-cities-menu { display: block; }
.nav-cities-menu a {
  display: block; padding: .5rem 1.2rem; font-size: .78rem;
  color: var(--text-muted); text-decoration: none; letter-spacing: .06em;
  font-family: var(--font-body); transition: color .2s, background .2s;
}
.nav-cities-menu a:hover { color: var(--gold); background: rgba(184,151,90,.07); }

/* ===== LANG SWITCH ===== */
.lang-switch {
  font-size: .75rem; font-family: var(--font-body); letter-spacing: .12em;
  color: var(--gold); border: 1px solid var(--gold); padding: .25rem .6rem;
  text-decoration: none; transition: background .2s, color .2s; margin-left: .5rem;
}
.lang-switch:hover { background: var(--gold); color: #000; }
