/* ============================================================
   Özokname Temizlik | Buca Apartman Temizlik Şirketi
   css/style.css  (Buca sürümü - zümrüt yeşili tema)
   ============================================================ */

:root {
  --primary: #0b3d54;
  --primary-2: #125b77;
  --primary-3: #17809c;
  --accent: #10b981;
  --accent-2: #34d399;
  --amber: #f6a821;
  --dark: #082433;
  --text: #33475b;
  --muted: #5d7186;
  --bg: #f2faf6;
  --line: #e0efea;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(11, 61, 84, 0.12);
  --shadow-sm: 0 4px 14px rgba(11, 61, 84, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, h4 {
  color: var(--primary);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section { padding: 88px 0; }

.section--alt { background: var(--bg); }

.eyebrow {
  display: inline-block;
  background: rgba(16, 185, 129, 0.13);
  color: var(--primary-2);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }

.section-sub { max-width: 720px; margin: 0 auto 46px; color: var(--muted); text-align: center; }

.section-head { text-align: center; margin-bottom: 52px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(16, 185, 129, 0.45); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }

.btn-phone { background: var(--amber); color: #16221f; box-shadow: 0 10px 24px rgba(246, 168, 33, 0.35); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary-2); }
.btn-outline:hover { background: var(--primary-2); color: #fff; }

.btn-white { background: #fff; color: var(--primary); box-shadow: var(--shadow); }

.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar { background: var(--dark); color: #cfe6ee; font-size: 0.82rem; padding: 8px 0; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; fill: var(--accent-2); }
.topbar .tb-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* ---------- Header ---------- */
.header { background: var(--white); box-shadow: 0 4px 20px rgba(11, 61, 84, 0.06); position: sticky; top: 0; z-index: 999; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-name { font-size: 1.18rem; font-weight: 800; color: var(--primary); line-height: 1.15; }
.brand-name span { display: block; font-size: 0.72rem; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > li { position: relative; }
.nav > li > a { font-weight: 700; font-size: 0.93rem; color: var(--primary); padding: 8px 2px; }
.nav > li > a:hover, .nav > li > a.active { color: var(--accent); }

.has-dropdown .drop {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: 0.2s ease; z-index: 50;
}
.has-dropdown:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.drop a:hover { background: var(--bg); color: var(--primary); }
.caret { font-size: 0.7em; margin-left: 5px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
}

.nav-overlay {
  position: fixed; inset: 0; background: rgba(8, 36, 51, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 990;
}
.nav-overlay.show { opacity: 1; visibility: visible; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--primary); border-radius: 3px; transition: 0.25s; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 90px 26px 30px; transform: translateX(100%);
    transition: transform 0.3s ease; box-shadow: -20px 0 50px rgba(8, 36, 51, 0.15);
    overflow-y: auto; z-index: 998;
  }
  .nav.open { transform: translateX(0); }
  .nav > li > a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .has-dropdown .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 4px 0 8px 14px; display: none; }
  .has-dropdown.open .drop { display: block; }
  .header-cta .btn-phone span { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 45%, var(--primary-3) 100%); color: #eaf6fb; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(52, 211, 153, 0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(246, 168, 33, 0.16), transparent 40%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 88px 0 96px; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent-2); }
.hero p.lead { font-size: 1.08rem; color: #c9e6ef; max-width: 560px; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); padding: 8px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 700; }
.hero-badges .badge svg { width: 16px; height: 16px; fill: var(--accent-2); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media img.main { border-radius: 22px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4); object-fit: cover; width: 100%; aspect-ratio: 4/3.2; }
.hero-card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 16px 20px; display: flex; gap: 12px; align-items: center;
}
.hero-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 auto; }
.hero-card .ic svg { width: 24px; height: 24px; }
.hero-card b { display: block; color: var(--primary); font-size: 1.02rem; }
.hero-card small { color: var(--muted); font-size: 0.78rem; }
.hc-1 { top: -24px; right: -8px; }
.hc-1 .ic { background: rgba(16, 185, 129, 0.14); }
.hc-1 .ic svg { fill: var(--accent); }
.hc-2 { bottom: -26px; left: -14px; }
.hc-2 .ic { background: rgba(246, 168, 33, 0.16); }
.hc-2 .ic svg { fill: var(--amber); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: 0.25s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.svc-ic svg { width: 30px; height: 30px; fill: #fff; }
.svc-ic.alt { background: linear-gradient(135deg, var(--amber), #ffb94d); }
.svc-ic.alt2 { background: linear-gradient(135deg, var(--primary-2), var(--primary-3)); }
.svc-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.svc-card p { font-size: 0.92rem; color: var(--muted); }
.svc-card a.more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 800; font-size: 0.85rem; color: var(--accent); }
.svc-card a.more:hover { color: var(--primary); }

/* ---------- Regions ---------- */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.region-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 230px; display: flex; align-items: flex-end; color: #fff; }
.region-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.region-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 36, 51, 0.88), rgba(8, 36, 51, 0.15)); }
.region-info { position: relative; z-index: 2; padding: 22px; width: 100%; }
.region-info h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.region-info p { font-size: 0.82rem; color: #d3edf5; margin-bottom: 12px; }
.region-info .btn { padding: 8px 16px; font-size: 0.8rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 24px 26px; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 16px; right: 20px; font-size: 2.6rem; font-weight: 800; color: rgba(16, 185, 129, 0.14); }
.step .ic { width: 50px; height: 50px; border-radius: 12px; background: rgba(16, 185, 129, 0.12); display: grid; place-items: center; margin-bottom: 16px; }
.step .ic svg { width: 26px; height: 26px; fill: var(--accent); }
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: 20px; width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split-img .exp {
  position: absolute; bottom: -22px; left: -22px; background: linear-gradient(135deg, var(--amber), #ffc25c);
  color: #2b2413; border-radius: 16px; padding: 18px 24px; text-align: center; box-shadow: var(--shadow);
}
.split-img .exp b { display: block; font-size: 1.9rem; line-height: 1.1; }
.split-img .exp small { font-weight: 700; font-size: 0.78rem; }

.check-list { margin: 22px 0 26px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.check-list .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(16, 185, 129, 0.14); display: grid; place-items: center; margin-top: 2px; }
.check-list .tick svg { width: 13px; height: 13px; fill: var(--accent); }

/* ---------- Quote / CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--primary), var(--primary-3)); border-radius: 24px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 120%, rgba(52, 211, 153, 0.3), transparent 50%); }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 10px; position: relative; }
.cta-band p { color: #cfe6ee; margin-bottom: 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 800; color: var(--primary); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: rgba(16, 185, 129, 0.12); display: grid; place-items: center; color: var(--accent); font-size: 1.1rem; transition: 0.25s; }
.faq-item[open] summary .pm { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--muted); font-size: 0.94rem; }

/* ---------- Price form ---------- */
.price-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 800; color: var(--primary); }
.field label span { color: #e5484d; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 0.95rem; color: var(--text); background: #fbfdfe;
  transition: border-color 0.2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chk { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 12px; cursor: pointer; font-size: 0.88rem; font-weight: 700; color: var(--primary); transition: 0.2s; }
.chk:hover { border-color: var(--accent); }
.chk input { accent-color: var(--accent); width: 17px; height: 17px; }
.chk.checked { border-color: var(--accent); background: rgba(16, 185, 129, 0.08); }

.quote-box { position: sticky; top: 100px; background: linear-gradient(160deg, var(--primary), var(--primary-3)); border-radius: var(--radius); padding: 34px; color: #eaf6fb; }
.quote-box h3 { color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.quote-box > p { font-size: 0.88rem; color: #c9e6ef; margin-bottom: 22px; }
.qrow { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.22); font-size: 0.9rem; }
.qrow:last-of-type { border-bottom: 0; }
.qrow b { color: #fff; }
.quote-total { margin-top: 16px; text-align: center; background: rgba(0,0,0,0.22); border-radius: 12px; padding: 16px; }
.quote-total .t { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.quote-total .v { font-size: 1.7rem; font-weight: 800; color: var(--accent-2); line-height: 1.2; }
.quote-total small { display: block; font-size: 0.75rem; color: #c9e6ef; margin-top: 4px; }
.quote-box .btn { width: 100%; margin-top: 20px; }
.quote-note { margin-top: 14px; font-size: 0.75rem; color: #b8dbe6; text-align: center; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item { border-radius: 14px; overflow: hidden; position: relative; }
.gal-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.gal-item:hover img { transform: scale(1.06); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.info-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin-bottom: 16px; }
.info-card .ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.info-card .ic svg { width: 26px; height: 26px; fill: #fff; }
.info-card h4 { font-size: 1rem; margin-bottom: 2px; }
.info-card p, .info-card a { font-size: 0.92rem; color: var(--muted); }
.info-card a:hover { color: var(--accent); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.tst .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; }
.tst p { font-size: 0.93rem; color: var(--muted); margin-bottom: 16px; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-2), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.tst .who b { display: block; color: var(--primary); font-size: 0.92rem; }
.tst .who small { color: var(--muted); font-size: 0.78rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, var(--dark), var(--primary) 55%, var(--primary-3)); color: #eaf6fb; padding: 74px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(52, 211, 153, 0.22), transparent 45%); }
.page-hero .container { position: relative; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: #b8dbe6; margin-bottom: 14px; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--accent-2); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { max-width: 640px; color: #c9e6ef; }

/* ---------- Two col content ---------- */
.content-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.content-grid .sticky { position: sticky; top: 100px; }
.content-body h2 { font-size: 1.6rem; margin: 30px 0 12px; }
.content-body h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.content-body p { margin-bottom: 14px; }
.content-body ul { margin-bottom: 16px; }
.content-body ul li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.content-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.side-card { background: linear-gradient(160deg, var(--primary), var(--primary-3)); border-radius: var(--radius); padding: 30px; color: #eaf6fb; margin-bottom: 22px; }
.side-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.side-card p { font-size: 0.9rem; color: #c9e6ef; margin-bottom: 16px; }
.side-card .btn { width: 100%; }
.side-links { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-links h4 { font-size: 1rem; margin-bottom: 12px; }
.side-links a { display: block; padding: 9px 12px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; color: var(--primary); }
.side-links a:hover { background: var(--bg); color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #b7d5df; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer .f-about .brand { margin-bottom: 16px; }
.footer .f-about .brand img { height: 42px; }
.footer .f-about .brand-name { color: #fff; }
.footer .f-about p { font-size: 0.88rem; }
.f-links a { display: block; padding: 6px 0; font-size: 0.9rem; }
.f-links a:hover { color: var(--accent-2); }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.9rem; }
.f-contact svg { flex: 0 0 auto; width: 18px; height: 18px; fill: var(--accent-2); margin-top: 3px; }
.f-contact a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: 0.78rem; text-align: center; color: #8fb3c1; }
.footer-bottom a { color: var(--accent-2); }

/* ---------- Floating buttons ---------- */
.float-stack { position: fixed; right: 20px; bottom: 22px; display: flex; flex-direction: column; gap: 14px; z-index: 1000; }

.wa-btn {
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease; position: relative;
}
.wa-btn svg { width: 32px; height: 32px; fill: #fff; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--whatsapp); animation: waPulse 1.8s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.55); opacity: 0; } }

.call-btn {
  width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #0b3d54, #10b981); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(11, 61, 84, 0.45);
  transition: transform 0.2s ease; position: relative;
}
.call-btn svg { width: 30px; height: 30px; fill: #fff; }
.call-btn:hover { transform: scale(1.1); }
.call-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #10b981; animation: waPulse 1.8s ease-out infinite 0.9s; }

/* ---------- Chatbot ---------- */
.chat-btn {
  width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(16, 185, 129, 0.45);
  border: 0; cursor: pointer; transition: transform 0.2s ease;
}
.chat-btn svg { width: 30px; height: 30px; fill: #fff; }
.chat-btn:hover { transform: scale(1.1); }
.chat-btn .dot { position: absolute; top: 4px; right: 4px; width: 13px; height: 13px; background: #ff4757; border: 2px solid #fff; border-radius: 50%; }

.chat-window {
  position: fixed; right: 20px; bottom: 100px; width: min(370px, calc(100vw - 40px));
  background: #fff; border-radius: 18px; box-shadow: 0 24px 60px rgba(8, 36, 51, 0.3);
  display: flex; flex-direction: column; overflow: hidden; z-index: 1001;
  transform: translateY(20px); opacity: 0; visibility: hidden; transition: 0.25s ease;
}
.chat-window.open { transform: translateY(0); opacity: 1; visibility: visible; }
.chat-head { background: linear-gradient(120deg, var(--primary), var(--primary-3)); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .av { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.15); display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; }
.chat-head b { display: block; font-size: 0.95rem; line-height: 1.2; }
.chat-head small { font-size: 0.72rem; color: var(--accent-2); display: flex; align-items: center; gap: 5px; }
.chat-head small::before { content: ""; width: 7px; height: 7px; background: var(--accent-2); border-radius: 50%; }
.chat-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.chat-body { height: 320px; overflow-y: auto; padding: 16px; background: var(--bg); display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 0.88rem; line-height: 1.5; }
.chat-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg .mt { display: block; margin-top: 6px; font-size: 0.68rem; color: var(--muted); }
.chat-msg.user .mt { color: rgba(255,255,255,0.8); }
.chat-msg.typing { padding: 12px 16px; }
.chat-msg .dots { display: inline-flex; gap: 5px; }
.chat-msg .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); opacity: 0.4; animation: dotBlink 1.2s infinite ease-in-out; }
.chat-msg .dots i:nth-child(2) { animation-delay: 0.2s; }
.chat-msg .dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink { 0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); } 40% { opacity: 1; transform: scale(1); } }

.chat-btn.pulse-once { animation: chatPulse 0.8s ease 2; }
@keyframes chatPulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); } 100% { box-shadow: 0 0 0 22px rgba(16, 185, 129, 0); } }

.chat-suggest { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; background: var(--bg); }
.chat-suggest button { background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 13px; font-size: 0.78rem; font-weight: 700; color: var(--primary); cursor: pointer; transition: 0.2s; }
.chat-suggest button:hover { border-color: var(--accent); color: var(--accent); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 16px; font-family: inherit; font-size: 0.88rem; }
.chat-input input:focus { outline: none; border-color: var(--accent); }
.chat-input button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-input button svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Misc ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.phone-big { font-size: 1.05rem; font-weight: 800; color: var(--accent); }
.phone-big:hover { color: var(--primary); }

/* ---------- Image service cards ---------- */
.svc-card .svc-img { border-radius: 14px; overflow: hidden; margin-bottom: 18px; }
.svc-card .svc-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-card .svc-body { padding: 0; }
.svc-card .svc-body h3 { margin-bottom: 8px; }
.svc-card .svc-body p { margin-bottom: 0; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: 0.25s ease; }
.why-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-num { display: inline-block; font-size: 1.05rem; font-weight: 800; color: var(--accent); background: rgba(16, 185, 129, 0.12); border-radius: 10px; padding: 4px 12px; margin-bottom: 16px; }
.why-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; transition: 0.25s ease; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.cc-icon { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--primary-3)); }
.cc-icon svg { width: 27px; height: 27px; fill: #fff; }
.cc-icon.wa { background: var(--whatsapp); }
.contact-card b { display: block; font-size: 1.02rem; color: var(--primary); margin-bottom: 4px; }
.contact-card p { font-size: 0.94rem; color: var(--text); margin-bottom: 2px; }
.contact-card small { font-size: 0.78rem; color: var(--muted); }
.contact-note { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; }

/* ---------- Map ---------- */
.map-embed { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { display: block; }
.map-note a { color: var(--accent); font-weight: 800; font-size: 0.9rem; }
.map-note a:hover { color: var(--primary); }

/* ---------- 404 ---------- */
.error-wrap { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: linear-gradient(135deg, var(--dark), var(--primary) 60%, var(--primary-3)); color: #eaf6fb; }
.error-box { text-align: center; max-width: 560px; }
.error-code { display: block; font-size: clamp(4rem, 12vw, 7rem); font-weight: 800; line-height: 1; color: var(--accent-2); margin-bottom: 14px; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.error-box h1 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 12px; }
.error-box p { color: #c9e6ef; margin-bottom: 24px; }
.error-box a b { color: var(--accent-2); }

/* ---------- Nav caret ---------- */
.nav .caret { font-size: 0.68em; margin-left: 3px; opacity: 0.8; }

.seo-text { font-size: 0.9rem; color: var(--muted); }
.seo-text h2 { font-size: 1.4rem; margin: 30px 0 12px; }
.seo-text p { margin-bottom: 12px; }
.seo-text strong { color: var(--primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 64px 0 90px; }
  .hero-media { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { order: 2; }
  .price-wrap, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .quote-box { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .svc-grid, .region-grid, .steps, .tst-grid, .gallery, .why-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-card.hc-1 { top: -14px; right: 6px; }
  .hero-card.hc-2 { bottom: -18px; left: 6px; }
  .cta-band { padding: 36px 24px; }
}
