/* =========================================================
   DOĞAN TEMİZLİK İSTANBUL — ANA STİL DOSYASI
   Palet: Lacivert #0B3D5C · Yeşil #2E9E6D · Amber #F5A524
========================================================= */

:root {
  --navy: #0b3d5c;
  --navy-dark: #082b40;
  --green: #2e9e6d;
  --green-dark: #227955;
  --amber: #f5a524;
  --amber-dark: #d88c0f;
  --bg-soft: #f5faf8;
  --bg-white: #ffffff;
  --ink: #12232e;
  --ink-soft: #4d616c;
  --line: #e3ede9;
  --whatsapp: #25d366;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --shadow-soft: 0 10px 30px -12px rgba(11, 61, 92, 0.18);
  --shadow-hover: 0 20px 45px -15px rgba(11, 61, 92, 0.28);

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

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

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(46, 158, 109, .1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46,158,109,.18);
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 24px -8px rgba(46,158,109,.55); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 18px 30px -8px rgba(46,158,109,.6); }
.btn-amber { background: var(--amber); color: #23150a; box-shadow: 0 12px 24px -8px rgba(245,165,36,.5); }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(0,0,0,.25); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(11,61,92,.25); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 17px; letter-spacing: .01em; }
.brand-text span { font-size: 11px; font-weight: 500; color: var(--green-dark); text-transform: uppercase; letter-spacing: .09em; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { background: rgba(46,158,109,.1); color: var(--green-dark); }
.main-nav a.active { color: var(--green-dark); background: rgba(46,158,109,.12); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 12px 20px; font-size: 14px; }
.icon-call {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.icon-call:hover { transform: translateY(-3px) rotate(-8deg); background: var(--navy-dark); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy);
  position: relative; transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span::after { transform: rotate(-45deg) translate(4px, -4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 85% -10%, #10547d 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: #fff;
  padding: 90px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  letter-spacing: .05em; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 54px); font-weight: 700; margin-bottom: 20px; }
.hero h1 em { color: var(--amber); font-style: normal; position: relative; }
.hero p.lead { color: rgba(255,255,255,.82); font-size: 18px; max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--amber); }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.75); }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 60px -25px rgba(0,0,0,.55);
  aspect-ratio: 4/5;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; color: var(--navy); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-hover);
  display: flex; align-items: center; gap: 12px;
  animation: float-y 5s ease-in-out infinite;
}
.hero-badge .dot { width: 44px; height: 44px; border-radius: 50%; background: rgba(46,158,109,.14); display: flex; align-items: center; justify-content: center; color: var(--green); }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 16px; }
.hero-badge span { font-size: 12.5px; color: var(--ink-soft); }

@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Sparkle / bubble ambient layer for hero (temizlik teması) */
.sparkle-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sparkle {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0) 70%);
  opacity: 0; animation: sparkle-rise linear infinite;
}
@keyframes sparkle-rise {
  0% { transform: translateY(0) scale(.4); opacity: 0; }
  15% { opacity: .9; }
  100% { transform: translateY(-340px) scale(1.1); opacity: 0; }
}

/* ---------- Marquee strip ---------- */
.marquee-strip { background: var(--green); color: #fff; overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; gap: 46px; white-space: nowrap; animation: marquee 26s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .03em; display: inline-flex; align-items: center; gap: 10px; }
.marquee-track span::after { content: "✦"; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--line);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,92,0) 40%, rgba(11,61,92,.72) 100%);
}
.service-card .icon-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.92); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.3);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.service-card:hover .icon-badge { background: var(--green); color: #fff; transform: rotate(-8deg) scale(1.08); }
.service-card .thumb-title {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 17px;
}
.service-card .body { padding: 18px 20px 22px; }
.service-card .body p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 14px; min-height: 44px; }
.service-card .more-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--green-dark); }
.service-card .more-link svg { transition: transform .25s ease; }
.service-card:hover .more-link svg { transform: translateX(4px); }

.services-cta { text-align: center; margin-top: 44px; }

/* ---------- Neden Biz / Süreç ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.why-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.why-points { display: grid; gap: 20px; margin-top: 26px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point .num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(46,158,109,.12); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.why-point h4 { margin-bottom: 4px; font-size: 17px; }
.why-point p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); color: #fff; padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 36px; color: var(--amber); }
.stat-item span { font-size: 13.5px; color: rgba(255,255,255,.78); }

/* ---------- Testimonials (bubble style) ---------- */
.testimonials { position: relative; overflow: hidden; }
.bubble-field { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.bubble {
  position: absolute; bottom: -80px; border-radius: 50%;
  border: 1.5px solid rgba(46,158,109,.28);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(46,158,109,.06));
  animation: bubble-up linear infinite;
}
@keyframes bubble-up {
  0% { transform: translateY(0) translateX(0) scale(.7); opacity: 0; }
  10% { opacity: .8; }
  100% { transform: translateY(-820px) translateX(30px) scale(1); opacity: 0; }
}

.testi-track-wrap { position: relative; z-index: 1; overflow: hidden; }
.testi-track { display: flex; gap: 22px; width: max-content; animation: testi-scroll 40s linear infinite; }
.testi-track-wrap:hover .testi-track { animation-play-state: paused; }
.testi-card {
  width: 320px; flex-shrink: 0;
  background: #fff; border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card p.quote { font-size: 14.5px; color: var(--ink); min-height: 90px; }
.testi-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.testi-meta strong { display: block; font-size: 14px; }
.testi-meta span { font-size: 12px; color: var(--ink-soft); }
@keyframes testi-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 9/12; background: var(--navy); cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .4s ease, opacity .3s ease; }
.video-card:hover img { transform: scale(1.06); opacity: 1; }
.video-card .play-btn {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); box-shadow: 0 12px 28px -10px rgba(0,0,0,.5);
  transition: transform .3s ease;
}
.video-card:hover .play-btn { transform: scale(1.12); }
.video-card .v-title {
  position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.video-card .v-badge {
  position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.45);
  color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em;
}

.video-modal {
  position: fixed; inset: 0; background: rgba(8,20,28,.88); z-index: 999;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; }
.video-modal-inner .ratio { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; }
.video-modal-inner iframe, .video-modal-inner video { width: 100%; height: 100%; border: 0; }
.video-modal-close { color: #fff; text-align: right; margin-bottom: 12px; cursor: pointer; font-weight: 600; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .thumb img { transform: scale(1.08); }
.blog-card .body { padding: 22px 22px 26px; }
.blog-card .meta { font-size: 12.5px; color: var(--green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); font-size: 14.5px; }
.blog-card .read-more { font-weight: 600; color: var(--navy); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

.blog-detail-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow-soft); }
.blog-detail-body { max-width: 760px; margin: 0 auto; font-size: 17px; color: var(--ink); }
.blog-detail-body h2 { margin-top: 1.4em; font-size: 26px; }
.blog-detail-body ul { padding-left: 22px; }
.blog-detail-body img { border-radius: var(--radius-md); margin: 20px 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
.faq-q .plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(46,158,109,.12); color: var(--green-dark); display: flex; align-items: center; justify-content: center; transition: transform .3s ease, background .3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; color: var(--ink-soft); font-size: 15px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; }
.contact-info-card h3 { color: #fff; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-row:first-of-type { border-top: none; }
.contact-row .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row strong { display: block; font-size: 14px; }
.contact-row span, .contact-row a { font-size: 13.5px; color: rgba(255,255,255,.78); }
.contact-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: background .25s ease, transform .25s ease; }
.contact-social a:hover { background: var(--green); transform: translateY(-3px); }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; font-family: var(--font-body); font-size: 14.5px;
  transition: border-color .2s ease, box-shadow .2s ease; background: #fbfdfc;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(46,158,109,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 26px; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg); padding: 54px 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: #fff; position: relative; overflow: hidden;
}
.cta-band h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.88); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Alerts / flash ---------- */
.flash-wrap { position: fixed; top: 90px; right: 20px; z-index: 500; display: grid; gap: 10px; max-width: 340px; }
.flash {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-hover); animation: flash-in .3s ease;
  color: #fff;
}
.flash-success { background: var(--green); }
.flash-danger { background: #d64545; }
.flash-info { background: var(--navy); }
.flash-warning { background: var(--amber); color: #23150a; }
@keyframes flash-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.82); padding: 66px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 42px; }
.footer-brand strong { color: #fff; font-family: var(--font-display); font-size: 17px; }
.site-footer p { font-size: 14px; color: rgba(255,255,255,.65); }
.site-footer h5 { color: #fff; font-family: var(--font-display); font-size: 15px; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s ease; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------- Floating action buttons ---------- */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: grid; gap: 14px; }
.fab {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 14px 28px -10px rgba(0,0,0,.45);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab-whatsapp { background: var(--whatsapp); }
.fab-whatsapp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--whatsapp); opacity: .55; animation: pulse-ring 2.2s ease-out infinite;
}
.fab-call { background: var(--amber); color: #23150a; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Utility ---------- */
.badge-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(11,61,92,.08); color: var(--navy); font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.page-hero .crumb { font-size: 13.5px; color: rgba(255,255,255,.72); display: flex; gap: 8px; align-items: center; }
.page-hero .crumb a:hover { color: var(--amber); }

/* ---------- Service Detail ---------- */
.service-detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.service-detail-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); margin-bottom: 30px; }
.service-side-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 20px; }
.service-side-card h4 { font-size: 16px; margin-bottom: 14px; }
.side-service-link { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; font-weight: 500; }
.side-service-link:last-child { border-bottom: none; }
.side-service-link img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.side-service-link:hover { color: var(--green-dark); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 340px; margin: 0 auto 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.mobile-open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; padding: 14px 24px 22px; box-shadow: 0 20px 30px -18px rgba(0,0,0,.2);
    border-bottom: 1px solid var(--line); gap: 4px;
  }
  .main-nav.mobile-open a { padding: 12px 14px; border-radius: 10px; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 26px; flex-direction: column; text-align: center; }
  .hero { padding: 70px 0 50px; }
  .hero-stats { gap: 22px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .fab { width: 52px; height: 52px; }
  .floating-actions { right: 14px; bottom: 14px; }
  .brand-text span { display: none; }
}
