/* ============================================================
   EXTRA.CSS — Homepage, Areas, Contact, Blog extra styles
   ============================================================ */

/* HOME HERO */
.home-hero-inner { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: center; }
.home-hero-card { background: var(--ink); border-radius: 20px; padding: 24px; box-shadow: 8px 8px 0 var(--saffron); }
.hc-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.hc-services { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.hc-svc { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px; text-decoration: none; transition: background .2s; }
.hc-svc:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.hc-svc-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hc-svc-icon svg { width: 22px; height: 22px; }
.hc-svc strong { display: block; font-size: 0.88rem; font-weight: 700; color: white; }
.hc-svc span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.hc-stat-row { display: flex; justify-content: space-around; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 14px; }
.hc-stat { text-align: center; }
.hc-stat strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.hc-stat span { font-size: 0.68rem; color: rgba(255,255,255,0.5); }

/* STATS STRIP */
.stats-strip { background: var(--ink); padding: 22px 0; }
.stats-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 12px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: white; display: block; line-height: 1; }
.stat-num em { font-style: normal; color: var(--gold); }
.stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; display: block; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* HOME SERVICES */
.home-services-section { padding: var(--section-pad) 0; background: var(--warm-white); }
.home-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.home-svc-card { background: white; border: 2px solid var(--border); border-radius: 22px; padding: 32px 28px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.home-svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sc); }
.home-svc-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--sc); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.home-svc-card:hover .home-svc-top-bar { transform: scaleX(1); }
.home-svc-ico { width: 64px; height: 64px; border-radius: 16px; background: var(--sb); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: transform .2s; }
.home-svc-ico svg { width: 32px; height: 32px; }
.home-svc-card:hover .home-svc-ico { transform: scale(1.08) rotate(-4deg); }
.home-svc-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--sc); background: var(--sb); padding: 3px 11px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }
.home-svc-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.home-svc-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.home-svc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.home-svc-features li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ink); }
.home-svc-btn { display: inline-flex; align-items: center; color: white; padding: 10px 20px; border-radius: 9px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.home-svc-btn:hover { opacity: 0.88; text-decoration: none; color: white; }

/* HOME AREAS */
.home-areas-section { background: var(--ink); padding: var(--section-pad) 0; }
.zones-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.zone-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 20px; }
.zone-hdr { margin-bottom: 14px; }
.zone-tag { font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: .06em; }
.zone-areas { display: flex; flex-wrap: wrap; gap: 7px; }
.zone-area-item a { font-size: 0.8rem; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; color: rgba(255,255,255,0.75); text-decoration: none; display: block; transition: border-color .2s, color .2s; }
.zone-area-item a:hover { border-color: var(--saffron); color: white; }

/* HOME HOW */
.home-how-section { padding: var(--section-pad) 0; background: var(--cream); }
.home-steps { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.home-step { background: white; border: 2px solid var(--border); border-radius: 18px; padding: 28px 22px; text-align: center; max-width: 280px; flex: 1; min-width: 200px; }
.home-step-arrow { font-size: 2rem; color: var(--border); flex-shrink: 0; }
.step-num { width: 46px; height: 46px; border-radius: 12px; background: var(--saffron); color: white; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 3px 3px 0 var(--ink); }
.home-step h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.home-step p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* HOME KEYWORDS */
.home-kw-section { padding: 40px 0; background: #F5EEE6; border-top: 2px solid var(--border); }
.home-kw-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 24px; }
.home-kw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.home-kw-grid h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.kw-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.kw-tag { font-size: 0.78rem; padding: 5px 12px; background: white; border: 1px solid var(--border); border-radius: 100px; color: var(--muted); text-decoration: none; transition: border-color .2s, color .2s; }
.kw-tag:hover { border-color: var(--saffron); color: var(--saffron); text-decoration: none; }

/* SERVICE PAGE AREA GRID */
.area-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 12px; }
.area-link-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; text-decoration: none; transition: border-color .2s, transform .15s; }
.area-link-card:hover { border-color: var(--saffron); transform: translateY(-2px); text-decoration: none; }
.area-link-card strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 2px; }
.area-link-card span { font-size: 0.75rem; color: var(--muted); }

/* AREAS PAGE */
.area-big-card { background: white; border: 1.5px solid var(--border); border-radius: 14px; padding: 18px; }
.area-big-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.area-svc-link { font-size: 0.8rem; font-weight: 600; padding: 5px 13px; border-radius: 100px; text-decoration: none; }
.area-svc-link:hover { opacity: 0.85; text-decoration: none; }

/* CONTACT PAGE */
.tc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-details h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.contact-items-list { display: flex; flex-direction: column; gap: 12px; }
.c-item { display: flex; align-items: center; gap: 14px; background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 16px; text-decoration: none; transition: border-color .2s, transform .15s; }
.c-item:hover { border-color: var(--saffron); transform: translateX(3px); text-decoration: none; }
.c-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--saffron); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 18px; height: 18px; }
.c-item strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.c-item span { font-size: 0.82rem; color: var(--muted); }
.timing-box { background: white; border: 2px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: 5px 5px 0 var(--border); }
.box-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.t-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 0.88rem; }
.t-row:last-child { border-bottom: none; }
.t-day { color: var(--muted); font-weight: 500; }
.t-open { color: var(--teal); font-weight: 700; }
.t-closed { color: var(--red); font-weight: 700; }

/* RESPONSIVE */
@media(max-width:900px){
  .home-hero-inner { grid-template-columns: 1fr; }
  .home-hero-card { display: none; }
  .home-svc-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .home-steps { flex-direction: column; }
  .home-step-arrow { transform: rotate(90deg); }
  .home-kw-grid { grid-template-columns: 1fr; }
  .area-links-grid { grid-template-columns: 1fr 1fr; }
  .tc-contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px){
  .area-links-grid { grid-template-columns: 1fr; }
  .stat-div { display: none; }
}
