/* ============================================================
   ContaDigital PJ - CSS Principal
   Paleta: Azul Marinho (#0A1F44) + Dourado (#C9A84C)
   ============================================================ */

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

:root {
  --navy:        #0A1F44;
  --navy-light:  #1a3a6e;
  --navy-dark:   #060f22;
  --gold:        #C9A84C;
  --gold-light:  #e0c06a;
  --gold-dark:   #a8872e;
  --white:       #ffffff;
  --light:       #f5f7fa;
  --gray:        #6b7280;
  --gray-light:  #e5e7eb;
  --text:        #1f2937;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --shadow:      0 4px 24px rgba(10,31,68,.10);
  --shadow-lg:   0 8px 40px rgba(10,31,68,.18);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  .3s ease;
  --font-body:   'Inter', sans-serif;
  --font-heading:'Playfair Display', serif;
  --container:   1200px;
}

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

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

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

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-2 { margin-top: .75rem; }
.mt-4 { margin-top: 2rem; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── SECTION PADDING ─── */
.section-padding { padding: 5rem 0; }
.bg-light { background: var(--light); }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,31,68,.35); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

/* ─── HEADER / NAVBAR ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: .75rem 0;
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand img { height: 50px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-link {
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy-dark) !important; transform: translateY(-1px); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.25rem;
  color: var(--navy) !important;
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--transition);
}
.dropdown-item:hover { background: var(--light); color: var(--gold) !important; }
.dropdown-item i { color: var(--gold); width: 16px; }

/* Toggler */
.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar-toggler.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler.open span:nth-child(2) { opacity: 0; }
.navbar-toggler.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,15,34,.88) 0%, rgba(10,31,68,.75) 60%, rgba(10,31,68,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.hero-trust i { color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ─── STATS ─── */
.stats-section {
  background: var(--navy);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-icon { font-size: 2rem; color: var(--gold); margin-bottom: .5rem; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1;
  display: inline;
}
.stat-suffix { font-size: 1.8rem; font-weight: 700; color: var(--gold); display: inline; }
.stat-label { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .35rem; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.service-card.featured h3,
.service-card.featured p { color: var(--white); }
.service-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card.featured .service-icon { background: rgba(201,168,76,.2); }
.service-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.service-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.service-card.featured p { color: rgba(255,255,255,.8); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .7rem; }

/* Service list */
.service-list { margin: 1rem 0; }
.service-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  padding: .3rem 0;
  color: var(--text-muted);
}
.service-list li i { color: var(--gold); font-size: .8rem; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-number { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: .8rem; font-weight: 600; line-height: 1.4; }
.about-content { padding-left: 1rem; }
.about-content .section-title { margin-top: .5rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.feature-item { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.feature-item i { color: var(--gold); font-size: 1rem; }

/* ─── DIFFERENTIALS ─── */
.differentials { background: var(--navy); }
.differentials .section-tag { background: rgba(201,168,76,.2); color: var(--gold-light); }
.differentials .section-title { color: var(--white); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.diff-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.diff-item:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}
.diff-icon {
  width: 70px;
  height: 70px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}
.diff-item h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; }
.diff-item p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 5rem 0;
}
.cta-content h2 { color: var(--navy-dark); margin-bottom: 1rem; }
.cta-content p { color: rgba(10,31,68,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.breadcrumb ol {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .85rem;
}
.breadcrumb li { color: rgba(255,255,255,.5); }
.breadcrumb li::after { content: '/'; margin-left: .5rem; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero-title { color: var(--white); margin-bottom: .75rem; }
.page-hero-subtitle { color: rgba(255,255,255,.7); font-size: 1.1rem; }

/* ─── MVV (Missão, Visão, Valores) ─── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.mvv-card.featured { background: var(--navy); border-color: var(--gold); }
.mvv-card.featured h3 { color: var(--white); }
.mvv-card.featured p { color: rgba(255,255,255,.75); }
.mvv-icon {
  width: 70px;
  height: 70px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}
.mvv-card.featured .mvv-icon { background: rgba(201,168,76,.2); }
.mvv-card h3 { margin-bottom: .75rem; }
.mvv-card p { color: var(--text-muted); font-size: .95rem; }

/* ─── CONTENT GRID (inner pages) ─── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.content-main h2 { margin-bottom: 1.25rem; }
.content-main h3 { margin: 2rem 0 1rem; color: var(--navy); }
.content-main p { color: var(--text-muted); }

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.detail-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.detail-item > i { font-size: 1.5rem; color: var(--gold); margin-top: .2rem; flex-shrink: 0; }
.detail-item h4 { font-size: 1rem; margin-bottom: .35rem; color: var(--navy); font-family: var(--font-body); font-weight: 700; }
.detail-item p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* Sidebar */
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 100px;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.3rem; }
.sidebar-cta p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.25rem; }
.sidebar-info {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-info h4 { font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.sidebar-info ul li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.sidebar-info ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.sidebar-info ul li:last-child { border-bottom: none; }

/* Tax regimes */
.tax-regimes { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.regime-card {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
}
.regime-card h4 { font-size: 1rem; margin-bottom: .4rem; font-family: var(--font-body); font-weight: 700; }
.regime-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .9rem; font-weight: 600; color: var(--navy); }
.required { color: #e53e3e; }
.form-control {
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,31,68,.1); }
.form-control.error { border-color: #e53e3e; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 140px; }
.field-error { font-size: .8rem; color: #e53e3e; min-height: 1rem; }
.form-check { flex-direction: row !important; align-items: flex-start; gap: .6rem; }
.form-check input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--navy); }
.form-check label { font-size: .88rem; color: var(--text-muted); font-weight: 400; }
.form-check a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.btn-submit { align-self: flex-start; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
}
.alert-error { background: #fff5f5; border: 1px solid #fed7d7; color: #c53030; }
.alert-success { background: #f0fff4; border: 1px solid #c6f6d5; color: #276749; }

/* Contact Info */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-content h4 { font-size: .9rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .2rem; }
.ci-content p, .ci-content a { font-size: .9rem; color: var(--text-muted); }
.ci-content a:hover { color: var(--gold); }
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ─── THANK YOU ─── */
.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-content { max-width: 600px; margin: 0 auto; }
.thankyou-icon { font-size: 5rem; color: var(--gold); margin-bottom: 1.5rem; }
.thankyou-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1rem; }
.thankyou-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ─── PRIVACY ─── */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; color: var(--navy); }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p, .privacy-content li { color: var(--text-muted); font-size: .95rem; }
.privacy-content ul { padding-left: 1.5rem; list-style: disc; margin: .75rem 0; }
.privacy-content ul li { margin-bottom: .35rem; }
.privacy-content a { color: var(--navy); font-weight: 600; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-dark); }
.footer-top { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer-brand { display: block; margin-bottom: 1rem; }
.footer-brand img { height: 44px; width: auto; }
.footer-desc { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.footer-title {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links i { font-size: .65rem; color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact li { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); font-size: .9rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; margin: 0; }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static !important; }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }

  /* Navbar mobile */
  .navbar-toggler { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    overflow-y: auto;
    transition: right var(--transition);
    z-index: 1000;
    box-shadow: -4px 0 30px rgba(0,0,0,.4);
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: .75rem 1rem; font-size: 1rem; }
  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    margin-top: .25rem;
    padding: .5rem;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-item { color: rgba(255,255,255,.75) !important; }
  .dropdown-item:hover { color: var(--gold) !important; background: rgba(255,255,255,.05); }

  /* Hero */
  .hero { min-height: 90vh; padding: 7rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 1rem; }

  /* Grids */
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -1rem; }
  .about-content { padding-left: 0; }
  .mvv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2rem; }
  .btn-lg { padding: .8rem 1.5rem; font-size: .95rem; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ─── ANIMATIONS ─── */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-right"] { transform: translateX(-20px); }
[data-aos="fade-left"] { transform: translateX(20px); }
[data-aos="zoom-in"] { transform: scale(.95); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
