/* ============================================================
   BrandElevateLab — style.css
   Premium Digital Marketing Agency Theme
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0a1628;
  --navy-mid: #0f2244;
  --navy-light: #1a3a6b;
  --gold: #c9a227;
  --gold-light: #e4b84a;
  --gold-pale: #f5e6b0;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ef;
  --gray-500: #7a8599;
  --gray-700: #374060;
  --text-dark: #0e1b35;
  --text-mid: #3d4f6e;
  --shadow-sm: 0 2px 12px rgba(10,22,40,.07);
  --shadow-md: 0 8px 32px rgba(10,22,40,.13);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s ease;
  --max-w: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 100px; }
.section-sm { padding-block: 64px; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-header.center .section-sub { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.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); }
.btn-lg { padding: 17px 42px; font-size: 1.05rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(10,22,40,.25);
  padding: 0;
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text { line-height: 1; }
.nav-logo-text strong { display: block; font-size: .95rem; font-weight: 800; color: var(--white); }
.nav-logo-text span { font-size: .7rem; font-weight: 500; color: var(--gold-light); letter-spacing: .06em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.97) 0%, rgba(15,34,68,.85) 55%, rgba(10,22,40,.7) 100%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18) 0%, transparent 70%);
}
.hero-shape-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; bottom: -100px; left: 5%; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); max-width: 800px; margin-bottom: 24px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.15rem; max-width: 580px; margin-bottom: 42px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- MARQUEE ---------- */
.marquee-section {
  background: var(--gold);
  padding-block: 16px;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-dot { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.55) 0%, transparent 60%);
}
.service-card-body { padding: 28px; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card h3 { margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--text-mid); font-size: .93rem; line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 18px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ---------- ABOUT PREVIEW ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-main-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: 30px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-icon { font-size: 2rem; }
.about-badge-num { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about-badge-text { font-size: .78rem; color: var(--gray-500); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-feat-title { font-size: .9rem; font-weight: 700; color: var(--navy); }
.about-feat-text { font-size: .82rem; color: var(--text-mid); margin-top: 2px; }

/* ---------- STATS BANNER ---------- */
.stats-banner { background: var(--navy); padding-block: 72px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { padding: 24px; }
.stat-num { font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,.65); font-size: .88rem; margin-top: 8px; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; background: rgba(255,255,255,.1); }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.cta-band-content { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: var(--white); max-width: 700px; margin-inline: auto; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,.72); max-width: 520px; margin-inline: auto; margin-bottom: 40px; font-size: 1.05rem; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-quote { font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.testi-text { color: var(--text-mid); font-size: .95rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--gray-500); }

/* ---------- ENQUIRY / CONTACT FORM ---------- */
.form-section { background: var(--off-white); }
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin-inline: auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-label span.req { color: var(--gold); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
  background: var(--white);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #e53e3e; }
.form-error { font-size: .78rem; color: #e53e3e; display: none; }
.form-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23374060' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-checkbox-wrap { display: flex; gap: 12px; align-items: flex-start; }
.form-checkbox { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-checkbox-label { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }
.form-checkbox-label a { color: var(--gold); font-weight: 600; }
.form-checkbox-label a:hover { text-decoration: underline; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--navy); border: none; border-radius: 8px; font-size: 1rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: all var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.35); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }

/* ---------- WHY CHOOSE US ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  cursor: default;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.why-icon { font-size: 2.5rem; margin-bottom: 18px; }
.why-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: var(--text-mid); font-size: .9rem; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-size: cover;
  background-position: center;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .5; }

/* ---------- ABOUT PAGE ---------- */
.about-timeline { position: relative; padding-left: 40px; }
.about-timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--gold); opacity: .4; }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 6px; width: 14px; height: 14px; background: var(--gold); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px rgba(201,162,39,.3); }
.timeline-year { font-size: .8rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-item h3 { color: var(--navy); margin-bottom: 6px; }
.timeline-item p { color: var(--text-mid); font-size: .92rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin-inline: auto;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  border: 4px solid var(--gold-pale);
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: .83rem; color: var(--gold); font-weight: 600; }
.team-bio { font-size: .83rem; color: var(--text-mid); margin-top: 8px; }

/* ---------- SERVICES PAGE ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 72px;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; height: 340px; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-body {}
.service-detail h2 { color: var(--navy); margin-bottom: 16px; font-size: 1.8rem; }
.service-detail p { color: var(--text-mid); margin-bottom: 20px; }
.service-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-bullet { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text-mid); }
.service-bullet::before { content: '✓'; width: 22px; height: 22px; background: rgba(201,162,39,.15); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }

/* ---------- CONTACT PAGE ---------- */
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 64px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-info-icon { font-size: 2rem; margin-bottom: 14px; }
.contact-info-label { font-size: .8rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.contact-info-value { font-size: .93rem; color: var(--text-dark); font-weight: 500; line-height: 1.5; }

/* ---------- POLICY PAGES ---------- */
.policy-content { max-width: 820px; margin-inline: auto; }
.policy-content h2 { color: var(--navy); font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.policy-content h3 { color: var(--navy-light); font-size: 1.1rem; margin-top: 28px; margin-bottom: 10px; }
.policy-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }
.policy-content ul { padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { color: var(--text-mid); margin-bottom: 8px; list-style: disc; line-height: 1.65; }
.policy-date { font-size: .85rem; color: var(--gray-500); margin-bottom: 32px; display: flex; align-items: center; gap: 6px; }
.policy-date::before { content: '📅'; font-size: .85rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: var(--white); }
.footer-top { padding-block: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand { }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .footer-logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}
.footer-brand .logo-text strong { display: block; font-size: .9rem; font-weight: 800; color: var(--white); }
.footer-brand .logo-text span { font-size: .7rem; color: var(--gold-light); letter-spacing: .06em; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: .04em; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.footer-contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,.65); font-size: .87rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); font-size: .82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- FLOATING CTA ---------- */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.float-btn-wa { background: #25d366; color: var(--white); }
.float-btn-call { background: var(--gold); color: var(--navy); }
.float-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: var(--shadow-lg); }

/* ---------- SCROLL-TO-TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  transition: all var(--transition);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

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

/* ---------- MOBILE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding-block: 72px; }
  .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--navy); flex-direction: column; gap: 0; padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
}
