/* ============================================
   Ad Soyad SMMM — Kurumsal Tek Sayfa Website
   ============================================ */

:root {
  --navy-950: #0a1628;
  --navy-900: #0f1f38;
  --navy-800: #16294a;
  --navy-700: #1e3a63;
  --navy-600: #29517f;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --gold-500: #c9a24b;

  --ink-900: #0f1a2b;
  --ink-700: #334157;
  --ink-500: #5c6b81;
  --ink-300: #94a3b8;

  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --border: #e3e9f2;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(15, 31, 56, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 31, 56, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 31, 56, 0.14);

  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-950);
  line-height: 1.2;
  font-weight: 700;
}

h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--ink-500); margin-top: 12px; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.text-accent { color: var(--blue-500); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue-400);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-light:hover { transform: translateY(-2px); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.logo-photo { border-radius: 50%; padding: 0; }
.logo-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text {
  font-size: 1.02rem;
  color: var(--navy-950);
  font-weight: 500;
}
.logo-text strong { font-weight: 800; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue-500);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--navy-950); }
.nav-link:hover::after { width: 100%; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-950);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(37, 99, 235, 0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 100%, rgba(96, 165, 250, 0.15), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue-300);
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(226, 232, 240, 0.78);
  font-size: 1.12rem;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.85);
  font-weight: 500;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.18);
  color: var(--blue-300);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-300);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.65);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.media-card {
  position: relative;
  background: linear-gradient(155deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.media-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.media-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  z-index: 2;
}
.media-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(96, 165, 250, 0.25);
}
.ring-1 { width: 220px; height: 220px; animation: spin 20s linear infinite; }
.ring-2 { width: 300px; height: 300px; border-style: dashed; animation: spin 30s linear infinite reverse; }
.visual-icon { font-size: 3.6rem; z-index: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--ink-500); margin-bottom: 16px; }
.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--ink-700);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-500);
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 2px;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}
.service-icon {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(15,31,56,0.06));
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-500); font-size: 0.95rem; }

/* ===== Neden Biz ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.why-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.28);
  margin-bottom: 12px;
}
.why-card p { color: var(--ink-500); font-size: 0.93rem; margin-top: 8px; }

/* ===== Süreç ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 20px;
}
.step-circle {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--ink-500); font-size: 0.93rem; }

/* ===== SSS / Accordion ===== */
.sss-wrap { max-width: 780px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.25s ease;
}
.accordion-item.active { box-shadow: var(--shadow-sm); border-color: rgba(37,99,235,0.25); }

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
}
.accordion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  font-size: 1.1rem;
  color: var(--blue-500);
  transition: transform 0.3s ease, background 0.3s ease;
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--blue-500);
  color: #fff;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.accordion-item.active .accordion-panel {
  max-height: 240px;
  padding: 0 24px 22px;
}
.accordion-panel p { color: var(--ink-500); font-size: 0.95rem; }

/* ===== CTA Band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  padding: 64px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(226, 232, 240, 0.75); }

/* ===== İletişim ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-lead { color: var(--ink-500); margin: 16px 0 32px; }

.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg-alt);
  font-size: 1.15rem;
}
.contact-list strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy-950);
  margin-bottom: 3px;
  font-size: 0.95rem;
}
.contact-list span { color: var(--ink-500); font-size: 0.92rem; }

.contact-photo-wrap {
  margin-top: 26px;
}
.contact-photo {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Footer ===== */
.footer { background: var(--navy-950); padding-top: 72px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo-text { color: #fff; }
.footer-brand p {
  margin-top: 14px;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.92rem;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--blue-300); }

.footer-bottom { padding: 24px 0; }
.footer-bottom p {
  color: rgba(226, 232, 240, 0.45);
  font-size: 0.84rem;
  text-align: center;
}
.footer-bottom em { font-style: normal; color: rgba(226, 232, 240, 0.3); }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 92px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-500); }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .navbar-actions .btn-primary.btn-sm { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 140px 0 72px; }
  .services-grid, .why-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 460px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== KVKK CHECK ===== */
.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin: 4px 0 14px;
  cursor: pointer;
}
.kvkk-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.kvkk-check a { color: var(--blue); text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55); }

/* ===== CONTACT MAP ===== */
.contact-map { margin-top: 26px; }
.contact-map iframe { display: block; box-shadow: var(--shadow-lg); }

/* ===== FOOTER LEGAL ===== */
.footer-legal { margin-top: 8px; font-size: 0.82rem; }
.footer-legal a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-legal a:hover { color: #fff; }
