/* =========================================================
   Benze Digital — Design System
   Colors derived from brand logo (navy + electric blue/cyan)
   Fonts: Poppins (display) + Inter (body) — Google Fonts
   ========================================================= */

:root {
  --navy: #121C33;
  --navy-2: #1B2A4A;
  --navy-soft: #23345a;
  --blue: #2E7BE0;
  --blue-2: #1E63C4;
  --cyan: #3FD3FF;
  --cyan-soft: #E6F9FF;
  --bg: #F6F8FC;
  --bg-alt: #EEF2F9;
  --white: #FFFFFF;
  --text: #16213D;
  --text-muted: #5A6A8A;
  --border: #E2E7F1;
  --success: #22C55E;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(18, 28, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 28, 51, 0.10);
  --shadow-lg: 0 25px 60px rgba(18, 28, 51, 0.18);

  --container: 1200px;
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { color: var(--text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-2);
  background: var(--cyan-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(63, 211, 255, 0.25);
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(46, 123, 224, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(46, 123, 224, 0.4);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(63, 211, 255, 0.35);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(63, 211, 255, 0.45); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline-navy:hover { border-color: var(--blue); color: var(--blue-2); }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 248, 252, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
  position: relative;
}
.main-nav a:hover { background: var(--bg-alt); color: var(--blue-2); }
.main-nav a.active { color: var(--blue-2); background: var(--cyan-soft); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  background: var(--white);
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 700;
}
.lang-switch button.active { background: var(--navy); color: var(--white); }
.lang-switch button:disabled { cursor: not-allowed; opacity: 0.45; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--bg-alt); border-radius: 0; }
  .header-cta-desktop { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(63,211,255,0.12), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(46,123,224,0.1), transparent 50%),
              var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 70px; text-align: center; }
  .hero-grid { text-align: left; }
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-badges span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-badges span::before { content: '✓'; color: var(--success); font-weight: 800; }

.hero p.lead { font-size: 1.15rem; margin-top: 20px; max-width: 540px; }

.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.2;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,28,51,0.55) 0%, rgba(18,28,51,0.05) 55%, rgba(63,211,255,0.25) 100%);
}
.hero-float-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-float-card .dot-row { display: flex; gap: 4px; }
.hero-float-card .dot { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--white); background: linear-gradient(135deg,var(--blue),var(--cyan)); margin-left: -12px; }
.hero-float-card .dot:first-child { margin-left: 0; }
.hero-float-card strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 0.95rem; }
.hero-float-card span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 46px 0; background: var(--navy); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-grid div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(90deg, var(--cyan), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-grid div span { color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 500; }
@media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: all 0.25s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  margin-bottom: 20px;
}
.icon-badge svg { width: 26px; height: 26px; }
.benefit-card h3 { margin-bottom: 10px; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card .icon-badge { background: var(--navy); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { flex: 1; margin-bottom: 18px; }
.service-card .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.service-card .tag-list span {
  font-size: 0.75rem; font-weight: 600; color: var(--blue-2);
  background: var(--cyan-soft); padding: 5px 11px; border-radius: 999px;
}
.service-card .card-link { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--blue-2); display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- How it works ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 960px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-row { grid-template-columns: 1fr; } }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step-card p { font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--border);
}
.stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 16px; font-size: 1rem; }
.testimonial-card p.quote { color: var(--text); font-size: 1rem; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
  color: var(--white); font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-person strong { display: block; font-family: var(--font-display); font-size: 0.92rem; color: var(--navy); }
.testimonial-person span { font-size: 0.8rem; }

/* ---------- About preview / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

.checklist { margin: 22px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--text); font-weight: 500; }
.checklist li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--success); margin-top: 1px; }

/* ---------- Final CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--blue-2) 130%);
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(63,211,255,0.35), transparent 45%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 16px auto 30px; font-size: 1.05rem; }
.cta-banner .hero-ctas { justify-content: center; }
.cta-wrap { margin: 100px 0 0; }
.cta-wrap:first-child { margin-top: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 60px;
  background: radial-gradient(circle at 10% 10%, rgba(63,211,255,0.14), transparent 40%), var(--navy);
  text-align: center;
}
.page-hero .eyebrow { background: rgba(63,211,255,0.15); color: var(--cyan); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 640px; margin: 16px auto 0; font-size: 1.05rem; }
.breadcrumb { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--cyan); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--blue-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 26px 22px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- Listings / Portfolio ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue-2); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-card:hover .portfolio-media img { transform: scale(1.06); }
.portfolio-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(18,28,51,0.85);
  color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.portfolio-body { padding: 22px; }
.portfolio-body h3 { margin-bottom: 8px; }
.portfolio-body p { font-size: 0.92rem; margin-bottom: 16px; }
.portfolio-meta { display: flex; align-items: center; justify-content: space-between; }
.portfolio-meta .card-link { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--blue-2); display: inline-flex; align-items: center; gap: 6px; }
.portfolio-meta .card-link svg { width: 15px; height: 15px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  transition: all 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,123,224,0.12);
}
.field .error-msg { color: #E23744; font-size: 0.78rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #E23744; }
.field.invalid .error-msg { display: block; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  background: #ECFDF5;
  border: 1.5px solid #34D399;
  color: #047857;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.contact-info-item .icon-badge { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; margin-bottom: 0; }
.contact-info-item .icon-badge svg { width: 20px; height: 20px; }
.contact-info-item strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 0.92rem; margin-bottom: 3px; }
.contact-info-item span, .contact-info-item a { font-size: 0.88rem; }
.contact-info-item a:hover { color: var(--blue-2); }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.15); }

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: all 0.2s ease;
}
.social-row a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 0 0; margin-top: 100px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-col p { font-size: 0.88rem; margin-bottom: 14px; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--cyan); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(.2,.7,.3,1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.mt-0 { margin-top: 0 !important; }

.badge-note {
  display: inline-block;
  background: #FFF7E6;
  border: 1px solid #FCD9A0;
  color: #8A5A00;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
}
