/* ═══════════════════════════════════════════════
   CLB Clean Life Balance - Shared Styles
   Premium Cleaning Budapest
═══════════════════════════════════════════════ */

:root {
  --teal: #2A5EB5;
  --teal-deep: #1E4A94;
  --teal-light: #E4EDF8;
  --dark: #0C1A1A;
  --dark2: #132020;
  --bg: #F9FAF8;
  --white: #FFFFFF;
  --text: #192424;
  --subtle: #7A9494;
  --border: #E2ECEB;
  --ff-d: 'Cormorant Garamond', serif;
  --ff-b: 'Plus Jakarta Sans', sans-serif;
  --pad: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--ff-d); font-weight: 600; line-height: 1.1; letter-spacing: -.015em; }
.display-xl  { font-size: clamp(48px, 7vw, 94px); }
.display-lg  { font-size: clamp(34px, 4.5vw, 56px); }
.display-md  { font-size: clamp(24px, 3vw, 36px); }
.display-sm  { font-size: clamp(20px, 2.5vw, 28px); }
.label { font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: block; }
.body-lg { font-size: 15.5px; color: var(--subtle); font-weight: 300; line-height: 1.85; }
.body-sm { font-size: 13px; color: var(--subtle); font-weight: 300; line-height: 1.8; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; font-family: var(--ff-b); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: none; cursor: pointer; touch-action: manipulation; transition: background-color .22s, color .22s, border-color .22s, transform .22s, box-shadow .22s; border-radius: 2px; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,191,178,.3); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #1a2e2e; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 10.5px; }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 12px var(--pad); background: rgba(249,250,248,.93); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 28px rgba(0,0,0,.06); }
.nav-logo { height: 44px; width: auto; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--text); transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-pill { display: flex; background: var(--teal-light); border-radius: 20px; padding: 3px; gap: 2px; }
.lang-btn { border: none; background: transparent; padding: 5px 11px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-radius: 16px; cursor: pointer; color: var(--subtle); font-family: var(--ff-b); touch-action: manipulation; transition: background-color .2s, color .2s; }
.lang-btn.active { background: var(--teal); color: #fff; }
.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-ham span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s, background-color .2s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px var(--pad); flex-direction: column; gap: 16px; z-index: 190; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--dark); padding: 120px var(--pad) 64px; }
.page-hero .label { color: #6DD5CA; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.5); font-weight: 300; font-size: 16px; max-width: 540px; }

/* ── SECTION SCAFFOLDING ── */
.sec { padding: clamp(64px, 8vw, 112px) var(--pad); }
.sec-sm { padding: clamp(40px,5vw,72px) var(--pad); }
.sec-dark { background: var(--dark); }
.sec-dark2 { background: var(--dark2); }
.sec-teal-light { background: var(--teal-light); }
.sec-white { background: var(--white); }
.sec-hdr { margin-bottom: 52px; }
.sec-hdr.center { text-align: center; }
.sec-hdr.center .body-lg { margin: 10px auto 0; }
.sec-dark .label, .sec-dark2 .label { color: #6DD5CA; }
.sec-dark .display, .sec-dark2 .display { color: #fff; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--teal); display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.16); }
.trust-item:last-child { border-right: none; }
.trust-n { font-family: var(--ff-d); font-size: 38px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; }
.trust-lbl { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
.svc-card { background: var(--white); padding: 36px 30px; transition: background .28s; }
.svc-card:hover { background: var(--teal-light); }
.svc-icon { width: 38px; height: 38px; margin-bottom: 18px; color: var(--teal); transition: color .28s; }
.svc-card:hover .svc-icon { color: var(--teal-deep); }
.svc-card h3 { font-family: var(--ff-d); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.25; }
.svc-card p { font-size: 13px; color: var(--subtle); line-height: 1.8; font-weight: 300; }
.svc-card .svc-link { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); border-bottom: 1px solid var(--teal-light); padding-bottom: 2px; transition: border-color .2s; }
.svc-card:hover .svc-link { border-color: var(--teal); }

/* ── SERVICE DETAIL (services.html) ── */
.svc-detail { padding: 48px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 2fr 1.2fr; gap: 64px; align-items: start; }
.svc-detail:last-child { border-bottom: none; }
.svc-detail h2 { font-family: var(--ff-d); font-size: 34px; font-weight: 600; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.svc-detail p { font-size: 14.5px; color: var(--subtle); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.svc-detail ul { display: flex; flex-direction: column; gap: 10px; }
.svc-detail ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--subtle); }
.svc-detail ul li::before { content: ''; display: block; width: 16px; height: 1px; background: var(--teal); margin-top: 10px; flex-shrink: 0; }
.svc-detail-cta { background: var(--teal-light); padding: 28px; }
.svc-detail-cta h4 { font-family: var(--ff-d); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.svc-detail-cta p { font-size: 13px; color: var(--subtle); margin-bottom: 18px; font-weight: 300; }

/* ── PROCESS ── */
.process-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; position: relative; }
.process-row::before { content: ''; position: absolute; top: 27px; left: 11%; right: 11%; height: 1px; background: var(--border); z-index: 0; }
.p-step { text-align: center; }
.p-num { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; background: var(--teal-light); border-radius: 50%; color: var(--teal); font-family: var(--ff-d); font-size: 20px; font-weight: 700; margin-bottom: 22px; position: relative; z-index: 1; }
.p-step h3 { font-family: var(--ff-d); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.p-step p { font-size: 13px; color: var(--subtle); line-height: 1.82; font-weight: 300; }
.sec-dark .p-num { background: rgba(42,191,178,.15); }
.sec-dark .p-step h3 { color: #fff; }

/* ── GOOGLE REVIEWS ── */
.google-header { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 48px; }
.google-logo { display: flex; align-items: center; gap: 10px; }
.google-logo-text { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yell { color: #FBBC04; } .g-green { color: #34A853; }
.google-overall { display: flex; align-items: center; gap: 14px; }
.google-big-score { font-family: var(--ff-d); font-size: 54px; font-weight: 700; color: var(--text); line-height: 1; }
.google-stars-row { display: flex; gap: 3px; margin-bottom: 3px; }
.gstar { font-size: 20px; color: #FBBC04; }
.google-review-count { font-size: 12px; color: var(--subtle); }
.google-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 36px; }
.g-card { background: var(--white); border: 1px solid var(--border); padding: 24px; transition: box-shadow .2s; }
.g-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.g-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.g-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.g-reviewer { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.2; }
.g-date { font-size: 11px; color: var(--subtle); }
.g-card-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.g-card-stars span { font-size: 13px; color: #FBBC04; }
.g-text { font-size: 13.5px; color: var(--subtle); line-height: 1.75; font-weight: 300; }
.google-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.09); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img image-slot { width: 100%; height: 100%; display: block; }
.blog-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.blog-card h3 { font-family: var(--ff-d); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.25; }
.blog-card p { font-size: 13px; color: var(--subtle); line-height: 1.8; font-weight: 300; flex: 1; }
.blog-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-date { font-size: 11px; color: var(--subtle); }
.blog-read { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--teal); }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-family: var(--ff-d); font-size: 30px; font-weight: 600; color: var(--text); margin: 36px 0 14px; line-height: 1.2; }
.article-body h3 { font-family: var(--ff-d); font-size: 22px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.article-body p { font-size: 15px; color: var(--subtle); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 8px; }
.article-body ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--subtle); font-weight: 300; line-height: 1.7; }
.article-body ul li::before { content: ''; display: block; width: 14px; height: 1px; background: var(--teal); margin-top: 12px; flex-shrink: 0; }

/* ── ABOUT (home) ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-body { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.88; margin-bottom: 36px; font-weight: 300; }
.about-pts { display: flex; flex-direction: column; gap: 13px; }
.about-pts li { display: flex; align-items: center; gap: 16px; font-size: 13.5px; color: rgba(255,255,255,.8); }
.about-pts li::before { content: ''; display: block; width: 22px; height: 1px; background: var(--teal); flex-shrink: 0; }
.about-photo { position: relative; }
.about-photo image-slot { width: 100%; height: 500px; display: block; }
.photo-badge { position: absolute; bottom: -22px; left: -22px; background: var(--teal); color: #fff; padding: 20px 28px; }
.photo-badge-n { font-family: var(--ff-d); font-size: 44px; font-weight: 700; line-height: 1; }
.photo-badge-l { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .82; margin-top: 4px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 6px; margin-top: 48px; }
.gal-slot-main { grid-column: 1; grid-row: span 2; }
.gal-slot-main image-slot, .gal-slot image-slot { width: 100%; height: 100%; display: block; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.testi-card { background: rgba(255,255,255,.038); border: 1px solid rgba(255,255,255,.075); padding: 30px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testi-stars span { color: var(--teal); font-size: 13px; }
.testi-q { font-family: var(--ff-d); font-size: 19px; font-style: italic; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 22px; font-weight: 300; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-ini { width: 38px; height: 38px; background: var(--teal); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; flex-shrink: 0; border-radius: 2px; }
.testi-name { font-size: 13px; font-weight: 600; color: #fff; }
.testi-loc { font-size: 11px; color: rgba(255,255,255,.4); }

/* ── CONTACT / FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 80px; }
.ci { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.ci-icon { width: 42px; height: 42px; min-width: 42px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; color: var(--teal); border-radius: 2px; }
.ci-lbl { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--subtle); margin-bottom: 3px; }
.ci-val { font-size: 15px; font-weight: 500; color: var(--text); }
.ci-val a { color: var(--teal); }
.contact-form { background: var(--white); padding: 44px; border: 1px solid var(--border); }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--subtle); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); background: var(--bg); font-family: var(--ff-b); font-size: 13.5px; color: var(--text); outline: none; transition: border-color .2s; border-radius: 0; -webkit-appearance: none; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-notice { font-size: 11.5px; color: var(--subtle); margin-top: 12px; font-weight: 400; line-height: 1.6; }
.form-success { text-align: center; padding: 48px 24px; }
.form-success .s-icon { font-family: var(--ff-d); font-size: 52px; color: var(--teal); margin-bottom: 16px; line-height: 1; }
.form-success h3 { font-family: var(--ff-d); font-size: 30px; color: var(--text); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--subtle); font-weight: 300; }
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 0; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--text); gap: 16px; user-select: none; background: transparent; border: none; text-align: left; font-family: inherit; }
.faq-q:hover { color: var(--teal); }
.faq-icon { font-size: 20px; color: var(--teal); transition: transform .2s; flex-shrink: 0; line-height: 1; }
.faq-icon.open { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-a.open { max-height: 600px; padding-bottom: 20px; }
.faq-a p { font-size: 13.5px; color: var(--text); line-height: 1.75; font-weight: 600; font-style: italic; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--teal); padding: 64px var(--pad); text-align: center; }
.cta-banner h2 { font-family: var(--ff-d); font-size: clamp(30px,4vw,48px); font-weight: 600; color: #fff; margin-bottom: 10px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 32px; font-weight: 300; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 64px var(--pad) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 48px; width: auto; border-radius: 6px; margin-bottom: 16px; }
.footer-tag { font-size: 12.5px; color: rgba(255,255,255,.33); line-height: 1.8; font-weight: 300; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a, .footer-col ul span { font-size: 13.5px; color: rgba(255,255,255,.54); transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bot { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.24); }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { color: rgba(255,255,255,.35); transition: color .2s; display: flex; align-items: center; }
.footer-socials a:hover { color: var(--teal); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 100; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 22px rgba(37,211,102,.38); transition: transform .22s; cursor: pointer; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px var(--pad); font-size: 12px; color: var(--subtle); display: flex; gap: 8px; align-items: center; background: var(--bg); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--subtle); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --pad: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  :root { --pad: 20px; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.12); }
  .sec { padding: 56px var(--pad); }
  .sec-sm { padding: 36px var(--pad); }
  .svc-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { height: 320px !important; }
  .photo-badge { bottom: 12px; left: 12px; padding: 14px 20px; }
  .photo-badge-n { font-size: 32px; }
  .process-row { grid-template-columns: 1fr; gap: 36px; }
  .process-row::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gal-slot-main { grid-column: span 2; grid-row: span 1; }
  .google-cards { grid-template-columns: 1fr; }
  .google-big-score { font-size: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-preview { grid-template-columns: 1fr !important; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bot { flex-direction: column; text-align: center; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 100px var(--pad) 48px; }
  .cta-banner { padding: 48px var(--pad); }
  .article-card-header { grid-template-columns: 1fr; }
  .article-card-img img, .article-card-img image-slot { min-height: 200px; height: 200px; }
  .article-card-intro { padding: 24px 20px 20px; }
  .article-body-inner { padding: 24px 20px 32px; }
  .trust-n { font-size: 30px; }
  .svc-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --pad: 16px; }
  .display-xl  { font-size: clamp(36px, 10vw, 56px); }
  .display-lg  { font-size: clamp(26px, 8vw, 40px); }
  .nav { padding: 10px var(--pad); }
  .nav-logo { height: 36px; }
  .btn { padding: 11px 18px; font-size: 11px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner h2 { font-size: clamp(22px, 7vw, 32px); }
  .cta-banner-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-banner-btns .btn { width: 100%; max-width: 280px; }
  .google-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { height: 38px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 180px); }
  .gal-slot-main { grid-column: 1; }
  .p-num { width: 44px; height: 44px; font-size: 16px; }
  .wa-float { width: 46px; height: 46px; bottom: 16px; right: 16px; }
  .svc-cat-nav { gap: 8px; }
  .cat-btn { padding: 7px 12px; font-size: 10px; }
  .testi-q { font-size: 16px; }
  .g-card { padding: 18px; }
  .featured-svc-header { flex-direction: column; align-items: flex-start; }
  .trust-bar { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════════════════════
   UI UPGRADE - Premium Polish
═══════════════════════════════════════════════ */

/* ── BUTTONS: depth + gradient ── */
.btn-teal {
  background: linear-gradient(135deg, #2A5EB5 0%, #1E4A94 100%);
  box-shadow: 0 2px 8px rgba(42,94,181,.28);
}
.btn-teal:hover {
  background: linear-gradient(135deg, #3268C4 0%, #2A5EB5 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(42,94,181,.42);
}
.btn-teal:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(42,94,181,.28); }

.btn-dark { box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.btn-dark:hover { background: #1a2e2e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.28); }

.btn-white:hover { background: var(--teal-light); color: var(--teal-deep); transform: translateY(-2px); }

/* ── SERVICE CARDS: lift + shadow ── */
.svc-card {
  transition: background .25s, transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}
.svc-card:hover {
  background: var(--teal-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42,94,181,.12);
}

/* ── GOOGLE REVIEW CARDS: subtle lift ── */
.g-card {
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}
.g-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}

/* ── BLOG CARDS: smoother lift ── */
.blog-card {
  transition: transform .24s cubic-bezier(.34,1.56,.64,1), box-shadow .24s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.12);
}

/* ── TRUST BAR: gold numbers for luxury feel ── */
.trust-n { color: #C49A35; }
.trust-bar { background: var(--dark); }
.trust-item { border-right-color: rgba(255,255,255,.08); border-bottom-color: rgba(255,255,255,.08); }

/* ── FORM: focus glow ── */
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,94,181,.12);
  background: #fff;
  outline: none;
}

/* ── NAV: active underline ── */
.nav-links a.active {
  color: var(--teal);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}

/* ── SCROLL FADE-IN - opacity only (no layout shift, fully composited) ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.svc-card { animation: fadeIn .45s ease-out both; will-change: opacity; }
.svc-card:nth-child(1) { animation-delay: .05s; }
.svc-card:nth-child(2) { animation-delay: .13s; }
.svc-card:nth-child(3) { animation-delay: .21s; }
.svc-card:nth-child(4) { animation-delay: .08s; }
.svc-card:nth-child(5) { animation-delay: .16s; }
.svc-card:nth-child(6) { animation-delay: .24s; }

.p-step { animation: fadeIn .45s ease-out both; will-change: opacity; }
.p-step:nth-child(1) { animation-delay: .06s; }
.p-step:nth-child(2) { animation-delay: .14s; }
.p-step:nth-child(3) { animation-delay: .22s; }

/* ── PHOTO BADGE: pulse on hover ── */
.photo-badge { transition: transform .22s cubic-bezier(.34,1.56,.64,1); }
.about-photo:hover .photo-badge { transform: translate(-4px, 4px) scale(1.04); }

/* ── WA FLOAT: composited pulse using transform+opacity only ── */
.wa-float { box-shadow: 0 4px 22px rgba(37,211,102,.42); }
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: waPulse 2.4s ease-out infinite;
  will-change: transform, opacity;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: .6; }
  70%  { transform: scale(1.7);  opacity: 0; }
  100% { transform: scale(1.7);  opacity: 0; }
}

/* ── CTA BANNER: composited shine using pseudo-element ── */
.cta-banner {
  background: linear-gradient(135deg, #1a3d85 0%, #2A5EB5 100%);
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.07) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: bannerShine 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes bannerShine {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ── RESPECT REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
