/* =========================================================================
   IRMAK İNCİ TEMİZLİK — Tasarım Sistemi
   Palet:  --navy (marka koyu), --teal (marka dalga rengi), --pearl (inci/arka plan)
   --gold  premium vurgu (rozet, ikon halkası, rating yıldızı)
   Tipografi: Sokoban... hayır -> Display: "Poppins", Body: "Inter"
   İmza öğesi: "inci damlası" ayraçlar + dalga (wave) bölüm geçişleri
   ========================================================================= */

:root {
  --navy-900: #0b3654;
  --navy-800: #113f61;
  --navy-700: #164a70;
  --teal-600: #16a0ac;
  --teal-500: #2bb8c4;
  --teal-400: #5cd0d6;
  --teal-100: #e3f7f8;
  --pearl-50: #f7fbfc;
  --pearl-100: #eef8f9;
  --pearl-200: #dff1f3;
  --gold-500: #c9a227;
  --gold-300: #e6cb72;
  --ink-900: #0c2536;
  --ink-600: #4c6577;
  --ink-400: #7d95a3;
  --white: #ffffff;
  --danger: #d5473d;
  --success: #1e8f5f;

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

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(11, 54, 84, 0.06);
  --shadow-md: 0 12px 30px rgba(11, 54, 84, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 54, 84, 0.18);

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--pearl-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 650;
}
p { margin: 0 0 1em; color: var(--ink-600); }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--pearl { background: linear-gradient(180deg, var(--pearl-50) 0%, var(--pearl-100) 100%); }
.section--navy { background: radial-gradient(120% 140% at 10% 0%, #124a6f 0%, var(--navy-900) 60%, #082438 100%); color: #dfeef4; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9d3de; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--teal-500) 55%, var(--navy-700));
  box-shadow: 0 0 0 3px var(--teal-100);
}
.section--navy .eyebrow { color: var(--teal-400); }
.section--navy .eyebrow::before { box-shadow: 0 0 0 3px rgba(92,208,214,.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); }
.lead { font-size: 17px; color: var(--ink-600); }

/* -------------------------------------------------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  color: #fff; box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(11,54,84,.28); transform: translateY(-2px); }
.btn-outline { border-color: rgba(11,54,84,.18); color: var(--navy-900); background: #fff; }
.btn-outline:hover { border-color: var(--teal-500); color: var(--teal-600); transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-gold { background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: var(--navy-900); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; }

/* -------------------------------------------------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(247, 251, 252, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,54,84,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
.brand-text small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .09em; color: var(--teal-600); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 560; font-size: 14.5px; color: var(--navy-800);
  position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500)); transition: right .25s ease; border-radius: 2px;
}
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--teal-600); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 18px; font-size: 13.5px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid rgba(11,54,84,.12); color: var(--navy-800); transition: all .2s ease;
}
.icon-btn:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(11,54,84,.14); background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* -------------------------------------------------- Hero ------------ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(140% 120% at 85% -10%, #163f60 0%, var(--navy-900) 45%, #071c2b 100%);
  color: #eaf5f8; padding: 84px 0 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--gold-300); }
.hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -.01em; }
.hero h1 .accent { color: var(--teal-400); }
.hero p.lead { color: #b9d5df; font-size: 18px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.hero-stats .stat span { font-size: 12.5px; color: #a9c7d2; text-transform: uppercase; letter-spacing: .06em; }

.hero-visual { position: relative; height: 480px; }
.hero-visual .frame {
  position: absolute; inset: 0; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-visual .frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .8s ease, transform 8s ease;
}
.hero-visual .frame img.img-b { opacity: 0; }
.hero-visual:hover .frame img.img-a { opacity: 0; transform: scale(1.06); }
.hero-visual:hover .frame img.img-b { opacity: 1; transform: scale(1.06); }
.hero-visual .pearl-chip {
  position: absolute; left: -18px; bottom: 34px; background: #fff; color: var(--navy-900);
  padding: 16px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; max-width: 240px; z-index: 3;
}
.hero-visual .pearl-chip .dot {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #fff, var(--teal-400) 55%, var(--navy-700));
}
.hero-visual .pearl-chip b { display: block; font-family: var(--font-display); font-size: 14px; }
.hero-visual .pearl-chip span { font-size: 12px; color: var(--ink-600); }

.wave-divider { position: relative; margin-top: 60px; line-height: 0; }
.wave-divider svg { width: 100%; height: 90px; display: block; }

/* -------------------------------------------------- Marquee bar ----- */
.trust-bar { background: var(--navy-900); padding: 18px 0; overflow: hidden; }
.trust-track { display: flex; gap: 52px; width: max-content; animation: scroll-x 26s linear infinite; }
.trust-track span { font-family: var(--font-display); font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 10px; }
.trust-track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400, var(--gold-500)); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------- Service cards -- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 340px;
  box-shadow: var(--shadow-sm); transition: box-shadow .3s ease, transform .3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card .media { position: absolute; inset: 0; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .6s ease; }
.service-card .media img.hover-img { position: absolute; inset: 0; opacity: 0; transform: scale(1.08) rotate(1.5deg); }
.service-card:hover .media img.base-img { opacity: 0; }
.service-card:hover .media img.hover-img { opacity: 1; transform: scale(1.14) rotate(0deg); }
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(11,54,84,0) 20%, rgba(9,35,54,.92) 100%);
  z-index: 1;
}
.service-card .badge-num {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px);
  color: #fff;
}
.service-card .badge-num svg { width: 19px; height: 19px; }
.service-card .content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; }
.service-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.service-card p { color: #cfe4ea; font-size: 13.6px; margin-bottom: 14px; max-height: 0; opacity: 0; overflow: hidden; transition: all .35s ease; }
.service-card:hover p { max-height: 80px; opacity: 1; }
.service-card .more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-400); font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.service-card .more svg { width: 15px; height: 15px; transition: transform .25s ease; }
.service-card:hover .more svg { transform: translateX(4px); }

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

/* -------------------------------------------------- Why us / about -- */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .img-a { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media .img-b {
  position: absolute; width: 46%; right: -6%; bottom: -10%; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--pearl-50);
}
.reverse .split-media .img-b { right: auto; left: -6%; }

.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item .icon {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-100), #fff);
  border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center; color: var(--teal-600);
}
.feature-item .icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 16px; margin-bottom: 4px; }
.feature-item p { font-size: 14px; margin: 0; }

/* -------------------------------------------------- Regions --------- */
.region-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.region-chip {
  padding: 9px 16px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--pearl-200);
  font-size: 13.5px; font-weight: 560; color: var(--navy-800); display: inline-flex; align-items: center; gap: 8px;
}
.region-chip svg { width: 14px; height: 14px; color: var(--teal-500); }

/* -------------------------------------------------- Testimonials ---- */
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 22px; }
.testi-card {
  min-width: 340px; background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--pearl-200);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold-500); }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p { color: var(--ink-900); font-size: 15px; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal-400), var(--navy-700)); color: #fff; font-family: var(--font-display); font-weight: 700;
}
.testi-person b { display: block; font-size: 14px; }
.testi-person span { font-size: 12.5px; color: var(--ink-400); }

/* -------------------------------------------------- CTA band -------- */
.cta-band {
  border-radius: var(--radius-lg); padding: 54px; background: linear-gradient(120deg, var(--navy-900), #0f4f6b 70%, var(--teal-600));
  color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); right: -80px; top: -100px;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #cfe6ee; margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* -------------------------------------------------- Blog ------------ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--pearl-200); transition: transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .thumb { height: 200px; 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.07); }
.blog-card .body { padding: 22px; }
.blog-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-400); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.blog-card h3 { font-size: 18px; margin-bottom: 8px; }
.blog-card h3 a:hover { color: var(--teal-600); }
.blog-card p { font-size: 14px; margin-bottom: 14px; }
.read-more { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--teal-600); display: inline-flex; align-items: center; gap: 6px; }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2, .article-body h3 { margin-top: 1.4em; }
.article-body p { font-size: 16.5px; color: var(--ink-900); }
.article-body ul, .article-body ol { margin: 0 0 1.2em 1.3em; color: var(--ink-900); }
.article-body li { margin-bottom: .4em; }
.article-body img { border-radius: var(--radius-md); margin: 1.4em 0; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 34px; max-height: 460px; }
.article-cover img { width: 100%; object-fit: cover; max-height: 460px; }

/* -------------------------------------------------- FAQ -------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--pearl-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 24px; background: none; border: none; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--navy-900);
}
.faq-q svg { width: 20px; height: 20px; flex: none; transition: transform .25s ease; color: var(--teal-600); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 20px; }
.faq-a p { margin: 0; font-size: 14.5px; }

/* -------------------------------------------------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; }
.contact-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--pearl-200); }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px dashed var(--pearl-200); }
.contact-info-row:last-child { border: none; }
.contact-info-row .icon { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-100); color: var(--teal-600); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-info-row .icon svg { width: 20px; height: 20px; }
.contact-info-row b { display: block; font-size: 14.5px; }
.contact-info-row span, .contact-info-row a { font-size: 13.5px; color: var(--ink-600); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 260px; margin-top: 18px; box-shadow: var(--shadow-sm); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13.5px; font-weight: 600; color: var(--navy-800); font-family: var(--font-display); }
input, select, textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--pearl-200);
  font-family: var(--font-body); font-size: 14.5px; background: var(--pearl-50); color: var(--ink-900);
  transition: border-color .2s ease, background .2s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal-500); background: #fff; }
textarea { resize: vertical; min-height: 120px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.alert { padding: 16px 20px; border-radius: 14px; margin-bottom: 20px; font-size: 14.5px; font-weight: 600; }
.alert-success { background: #e6f6ee; color: var(--success); border: 1px solid #bfe9d4; }
.alert-danger { background: #fbe9e7; color: var(--danger); border: 1px solid #f4c6c1; }
.alert-warning { background: #fff6e0; color: #8a6100; border: 1px solid #f2dfa0; }
.alert-info { background: #e8f2fb; color: #1f5f8f; border: 1px solid #c4dcf0; }

/* -------------------------------------------------- Footer ----------- */
.site-footer { background: var(--navy-900); color: #b9d3de; padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { color: #9cbccb; font-size: 14px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: #b9d3de; transition: color .2s ease; }
.footer-col a:hover { color: var(--teal-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; color: #8fb0bf; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #b9d3de; }

/* -------------------------------------------------- Floating buttons - */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 600; display: flex; flex-direction: column; gap: 14px; }
.fab {
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); color: #fff; position: relative;
}
.fab svg { width: 26px; height: 26px; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: linear-gradient(135deg, var(--teal-500), var(--navy-800)); }
.fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid currentColor; opacity: .55;
  animation: pulse-ring 2.4s ease-out infinite;
}
.fab-whatsapp::before { color: #25D366; }
.fab-call::before { color: var(--teal-500); }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }

/* -------------------------------------------------- Page hero (inner) */
.page-hero {
  background: radial-gradient(140% 160% at 90% -20%, #163f60, var(--navy-900) 55%, #071c2b 100%);
  color: #fff; padding: 66px 0 96px; margin-bottom: -50px; position: relative;
}
.page-hero .eyebrow { color: var(--teal-400); }
.page-hero h1 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); max-width: 720px; }
.page-hero p { color: #bcd8e2; max-width: 620px; font-size: 16px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: #9fc0cd; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* -------------------------------------------------- Misc ------------- */
.pearl-divider { display: flex; align-items: center; gap: 10px; margin: 34px 0; }
.pearl-divider .dot { width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, var(--teal-500) 60%, var(--navy-700)); }
.pearl-divider .line { flex: 1; height: 1px; background: var(--pearl-200); }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.badge-teal { background: var(--teal-100); color: var(--teal-600); }
.badge-gold { background: #fbf1d6; color: #8a6c14; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-400); }
.empty-state svg { width: 54px; height: 54px; margin-bottom: 16px; color: var(--teal-400); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid var(--pearl-200); font-family: var(--font-display); font-weight: 600; font-size: 14px;
  background: #fff;
}
.pagination a:hover { border-color: var(--teal-500); color: var(--teal-600); }
.pagination .active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.image-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.image-gallery figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; height: 190px; box-shadow: var(--shadow-sm); }
.image-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, rotate .5s ease; }
.image-gallery figure:hover img { transform: scale(1.12) rotate(-1.5deg); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .services-grid, .blog-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .image-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1 !important; margin-bottom: 20px; }
  .hero-visual { height: 340px; margin-top: 30px; }
  .header-cta .btn span.txt { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .services-grid, .blog-grid, .grid-3, .grid-2, .form-grid, .grid-4 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .image-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .fab { width: 52px; height: 52px; }
  .fab svg { width: 22px; height: 22px; }
}

/* Mobile off-canvas menu */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy-900); z-index: 900;
  transform: translateX(100%); transition: transform .35s ease; padding: 26px 24px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav a { display: block; padding: 16px 4px; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .header-cta { flex-direction: column; margin-top: 26px; align-items: stretch; }
.mobile-nav .icon-btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
