/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #457b9d;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border: #dee2e6;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 10px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: var(--secondary); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: #555; }
.section-label { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 8px; }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--gray); max-width: 600px; width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Prevent grid children from overflowing */
.hero-grid > *, .footer-grid > *, .services-grid > *, .about-home-grid > *,
.why-split > *, .svc-page-grid > *, .contact-grid > *, .stats-grid > *,
.testimonials-grid > *, .coverage-grid > * { min-width: 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--light); }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); }

/* ===== TOP BAR ===== */
.topbar { background: var(--secondary); color: #fff; font-size: 0.82rem; padding: 6px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #a8d8ea; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 16px; }

/* ===== HEADER / NAV ===== */
header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; font-weight: 900; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--secondary); line-height: 1.2; }
.logo-text span { color: var(--primary); }
.logo-sub { font-size: 0.7rem; color: var(--gray); font-weight: 400; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 14px; border-radius: 6px; font-weight: 500; color: var(--secondary); transition: all 0.2s; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: #fff0f0; }
.nav-links .btn { padding: 9px 20px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--secondary); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--secondary) 0%, #2d6a9f 100%); color: #fff; padding: 90px 0 70px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 6px 16px; font-size: 0.85rem; margin-bottom: 20px; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: #f4a261; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; color: #f4a261; }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); width: 100%; min-width: 0; }
.quick-contact-btns { display: flex; flex-direction: column; gap: 0; }
.hero-card h3 { color: var(--secondary); margin-bottom: 6px; }
.hero-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--secondary); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.92rem; transition: border 0.2s; font-family: inherit; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== SERVICES ===== */
.services-bg { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; margin-top: 48px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-card-img-link { display: block; }
.service-card-img { position: relative; height: 210px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.service-card-emoji { font-size: 5rem; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }
.service-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%); display: flex; align-items: flex-end; padding: 14px; z-index: 3; }
.service-card-icon { font-size: 1.8rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.service-card-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.service-card-body { padding: 22px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 14px; }
.service-card-body .btn { font-size: 0.85rem; padding: 8px 18px; }
.service-tag { display: inline-block; background: #fff0f0; color: var(--primary); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }

/* ===== ABOUT HOME SECTION ===== */
.about-home-section { background: #fff; }
.about-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-home-imgs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; height: 460px; }
.about-img-main { grid-column: 1; grid-row: 1; border-radius: 16px; overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-side { grid-column: 2; grid-row: 1; border-radius: 16px; overflow: hidden; position: relative; }
.about-img-side img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; border-radius: 12px; padding: 12px 18px; text-align: center; white-space: nowrap; box-shadow: 0 8px 24px rgba(230,57,70,0.35); max-width: 90%; }
.about-exp-badge strong { display: block; font-size: 1.8rem; line-height: 1; }
.about-exp-badge span { font-size: 0.75rem; opacity: 0.9; }
.about-home-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-home-point { display: flex; gap: 12px; align-items: flex-start; }
.about-home-point .about-point-icon { width: 38px; height: 38px; min-width: 38px; background: #fff0f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.about-home-point h4 { font-size: 0.9rem; margin-bottom: 3px; }
.about-home-point p { font-size: 0.8rem; color: var(--gray); }

/* ===== STATS ===== */
.stats-section { background: var(--secondary); color: #fff; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item strong { display: block; font-size: 2.4rem; color: #f4a261; font-weight: 800; }
.stat-item span { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; min-width: 48px; background: #fff0f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.why-feature h4 { font-size: 0.95rem; margin-bottom: 4px; }
.why-feature p { font-size: 0.82rem; color: var(--gray); }
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: 16px; width: 100%; }
.why-badge { position: absolute; bottom: 24px; left: 10px; background: var(--primary); color: #fff; border-radius: 12px; padding: 14px 20px; box-shadow: 0 8px 24px rgba(230,57,70,0.3); }
.why-badge strong { display: block; font-size: 1.5rem; }
.why-badge span { font-size: 0.78rem; opacity: 0.9; }

/* Why split layout */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 40px; }
.why-split-img { position: sticky; top: 100px; border-radius: 20px; overflow: visible; max-width: 100%; }
.why-split-img img { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.why-float-badge { position: absolute; bottom: -20px; right: 10px; background: #fff; border-radius: 16px; padding: 18px 22px; box-shadow: 0 12px 40px rgba(0,0,0,0.14); min-width: 180px; z-index: 2; }
.why-float-row { display: flex; align-items: center; gap: 12px; }
.why-float-icon { font-size: 1.6rem; }
.why-float-row strong { display: block; font-size: 1.1rem; color: var(--secondary); line-height: 1.2; }
.why-float-row span { font-size: 0.75rem; color: var(--gray); }
.why-split-list { display: flex; flex-direction: column; gap: 4px; }
.why-feature-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border-radius: 12px; border: 1.5px solid transparent; transition: all 0.25s; cursor: default; }
.why-feature-row:hover, .why-feature-active { background: #fff; border-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.why-feature-num { font-size: 0.72rem; font-weight: 800; color: var(--primary); opacity: 0.5; min-width: 22px; padding-top: 3px; letter-spacing: 1px; flex-shrink: 0; }
.why-feature-icon { font-size: 1.5rem; min-width: 32px; flex-shrink: 0; }
.why-feature-text h4 { font-size: 0.97rem; margin-bottom: 4px; color: var(--secondary); }
.why-feature-text p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
.why-strips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.why-strip { display: flex; align-items: center; gap: 16px; border-radius: 12px; padding: 20px 22px; }
.why-strip-red   { background: linear-gradient(135deg, #fff0f0, #ffe4e4); border: 1px solid #ffd0d0; }
.why-strip-blue  { background: linear-gradient(135deg, #f0f4ff, #e0eaff); border: 1px solid #c8d8ff; }
.why-strip-green { background: linear-gradient(135deg, #f0fff6, #d8f5e8); border: 1px solid #b8ecd0; }
.why-strip-icon { font-size: 2.2rem; min-width: 40px; flex-shrink: 0; }
.why-strip strong { display: block; font-size: 0.95rem; color: var(--secondary); margin-bottom: 3px; }
.why-strip p { font-size: 0.82rem; color: var(--gray); margin: 0; }
.why-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); }
.why-card-img { position: relative; height: 180px; overflow: hidden; }
.why-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.why-card:hover .why-card-img img { transform: scale(1.06); }
.why-card-icon { position: absolute; top: 14px; left: 14px; width: 42px; height: 42px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.why-card-body { padding: 20px; }
.why-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--primary); opacity: 0.12; position: absolute; top: 10px; left: 20px; line-height: 1; font-family: Georgia, serif; }
.stars { color: #f4a261; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.92rem; color: #555; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--secondary); }
.author-loc { font-size: 0.78rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%); color: #fff; text-align: center; padding: 80px 0; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== BRANDS ===== */
.brands-section { padding: 50px 0; border-bottom: 1px solid var(--border); }
.brands-label { text-align: center; color: var(--gray); font-size: 0.88rem; margin-bottom: 24px; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.brand-pill { background: var(--light); border: 1px solid var(--border); border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; font-weight: 600; color: var(--secondary); }

/* ===== ABOUT PAGE ===== */
.about-hero { background: linear-gradient(135deg, var(--secondary), #2d6a9f); color: #fff; padding: 70px 0; text-align: center; }
.about-hero h1 { color: #fff; }
.about-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 12px auto 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 16px; overflow: hidden; }
.about-img img { width: 100%; }
.about-points { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.about-point-icon { width: 36px; height: 36px; min-width: 36px; background: #fff0f0; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 32px; }
.coverage-item { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; text-align: center; font-size: 0.88rem; font-weight: 600; color: var(--secondary); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--light); border-radius: var(--radius); padding: 18px; }
.contact-info-icon { width: 46px; height: 46px; min-width: 46px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; }
.contact-info-card h4 { font-size: 0.9rem; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { font-size: 0.88rem; color: var(--gray); }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--gray); margin-bottom: 24px; }
.map-wrap { margin-top: 50px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ===== BOOKING PAGE ===== */
.booking-wrap { max-width: 760px; margin: 0 auto; }
.booking-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.booking-steps { display: flex; gap: 0; margin-bottom: 36px; }
.step { flex: 1; text-align: center; position: relative; }
.step::after { content: ''; position: absolute; top: 18px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.step:last-child::after { display: none; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--border); color: var(--gray); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; margin: 0 auto 6px; position: relative; z-index: 1; }
.step.active .step-num { background: var(--primary); color: #fff; }
.step.done .step-num { background: #28a745; color: #fff; }
.step-label { font-size: 0.75rem; color: var(--gray); }
.step.active .step-label { color: var(--primary); font-weight: 600; }
.book-options { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; background: #fff; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.book-option-card { padding: 36px 28px; text-align: center; }
.book-option-call { background: #f8f9fa; }
.book-option-wa   { background: #f0fff6; }
.book-option-icon { font-size: 3rem; margin-bottom: 12px; }
.book-option-card h3 { margin-bottom: 8px; }
.book-option-card p  { font-size: 0.88rem; color: var(--gray); margin-bottom: 18px; }
.book-option-note { font-size: 0.78rem; color: var(--gray); margin-top: 10px; }
.book-option-divider { width: 1px; background: var(--border); align-self: stretch; display: flex; align-items: center; justify-content: center; position: relative; }
.book-option-divider span { background: #fff; border: 1px solid var(--border); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--gray); position: absolute; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail { padding: 60px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.problems-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px,100%), 1fr)); gap: 10px; margin-top: 16px; }
.problem-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #555; }
.problem-item::before { content: '✓'; color: var(--primary); font-weight: 700; }
.brands-covered { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.brand-tag { background: var(--light); border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 0.8rem; font-weight: 600; color: var(--secondary); }

/* ===== INDIVIDUAL SERVICE PAGE ===== */
.svc-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.svc-main { display: flex; flex-direction: column; gap: 28px; }
.svc-block { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.svc-block h2 { margin-bottom: 12px; }
.svc-block h3 { margin-bottom: 16px; font-size: 1.1rem; color: var(--secondary); }
.svc-hero-img { border-radius: 12px; height: 220px; display: flex; align-items: center; justify-content: center; font-size: 7rem; margin-bottom: 20px; }
.svc-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.svc-types-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-type-item { background: var(--light); border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 16px; font-size: 0.88rem; font-weight: 600; color: var(--secondary); }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.how-step { background: var(--light); border-radius: 10px; padding: 20px 16px; text-align: center; position: relative; }
.how-step-num { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; background: var(--primary); color: #fff; border-radius: 50%; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.how-step-icon { font-size: 2rem; margin-bottom: 8px; }
.how-step h4 { font-size: 0.9rem; margin-bottom: 4px; }
.how-step p { font-size: 0.8rem; color: var(--gray); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-item summary { padding: 14px 18px; font-weight: 600; font-size: 0.92rem; cursor: pointer; color: var(--secondary); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--primary); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 18px 14px; font-size: 0.88rem; color: #555; }
.svc-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-card { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.sidebar-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--secondary); }
.sidebar-card > p { font-size: 0.83rem; color: var(--gray); margin-bottom: 10px; }
.sidebar-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.sidebar-trust li { font-size: 0.87rem; color: #444; }
.sidebar-services { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.sidebar-services li a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 0.88rem; color: var(--secondary); font-weight: 500; transition: all 0.2s; border: 1px solid var(--border); }
.sidebar-services li a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sidebar-call { background: var(--secondary); color: #fff; text-align: center; }
.sidebar-call h4 { color: #fff; }
.sidebar-call-icon { font-size: 2rem; margin-bottom: 6px; }
.sidebar-call-sub { font-size: 0.82rem; opacity: 0.85; margin-bottom: 12px; color: rgba(255,255,255,0.85); }
.sidebar-btn { width: 100%; text-align: center; display: block; margin-bottom: 8px; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--secondary), #2d6a9f); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.82); margin-top: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ===== FOOTER ===== */
footer { background: #0d1b2a; color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.88rem; margin: 14px 0 20px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all 0.2s; }
.social-link:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.87rem; }
.footer-contact li span:first-child { color: var(--primary); min-width: 16px; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 36px; font-size: 0.83rem; }
.footer-legal a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary); }
.footer-legal-dot { color: rgba(255,255,255,0.25); }

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== LEGAL PAGES ===== */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-block { margin-bottom: 36px; }
.legal-block h2 { font-size: 1.15rem; color: var(--secondary); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--light); }
.legal-block p { font-size: 0.93rem; color: #555; line-height: 1.8; margin-bottom: 10px; }
.legal-block ul { padding-left: 20px; margin-top: 8px; }
.legal-block ul li { font-size: 0.92rem; color: #555; line-height: 1.8; margin-bottom: 6px; }
.legal-block a { color: var(--primary); }

/* ===== STICKY CALL BUTTONS ===== */
.sticky-call { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; opacity: 0; transform: translateY(20px); transition: opacity 0.35s, transform 0.35s; pointer-events: none; }
.sticky-call.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-call-btn { display: flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.22); transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.sticky-call-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.28); color: #fff; }
.sticky-phone { background: var(--primary); position: relative; }
.sticky-wa    { background: #25d366; }
.sticky-call-icon { font-size: 1.1rem; }
.sticky-call-label { font-size: 0.85rem; }
.sticky-phone::before { content: ''; position: absolute; inset: -4px; border-radius: 50px; border: 2px solid var(--primary); animation: pulse-ring 2s ease-out infinite; opacity: 0; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.18); opacity: 0; } }

/* =======================================================
   RESPONSIVE MEDIA QUERIES — all component overrides here
   ======================================================= */

/* ── 992px: tablets landscape ── */
@media (max-width: 992px) {
  .hero-grid,
  .why-grid,
  .about-grid,
  .about-home-grid,
  .contact-grid,
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero { padding: 60px 0 50px; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: 1fr; }
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }

  /* About home images */
  .about-home-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-home-imgs { grid-template-columns: 1fr 1fr; height: 280px; }
  .about-home-points { grid-template-columns: 1fr 1fr; }

  /* Why split — collapse to single column, remove sticky */
  .why-split { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
  .why-split-img { position: static; top: auto; }
  .why-split-img img { height: 300px; width: 100%; }
  .why-float-badge { position: static; display: flex; gap: 24px; margin-top: 16px; border-radius: 12px; min-width: 0; padding: 16px 20px; }
  .why-strips { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Service detail page — sidebar below content */
  .svc-page-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-sidebar { position: static; top: auto; }
}

/* ── 768px: tablets portrait / large phones ── */
@media (max-width: 768px) {
  section { padding: 48px 0; }

  /* NAV */
  .topbar-right { display: none; }
  .topbar .container { justify-content: center; text-align: center; }
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 10px 16px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 999; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 14px; border-radius: 8px; width: 100%; font-size: 0.95rem; }
  .nav-links .btn { margin-top: 6px; text-align: center; width: 100%; }

  /* HERO */
  .hero { padding: 44px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-card { display: none; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero p { font-size: 0.95rem; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; text-align: center; padding: 14px 20px; }
  .hero-stats { gap: 14px; justify-content: space-between; margin-top: 28px; }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-badge { font-size: 0.78rem; }

  /* SERVICES */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
  .service-card-body { padding: 16px; }
  .service-card-body h3 { font-size: 1rem; }
  .service-card-body p { font-size: 0.82rem; }
  .service-card-body .btn { font-size: 0.8rem; padding: 7px 12px; }

  /* ABOUT HOME */
  .about-home-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-home-imgs { grid-template-columns: 1fr 1fr; height: 220px; gap: 10px; }
  .about-img-main { height: 100%; }
  .about-img-side { height: 100%; }
  .about-home-points { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-home-content p { font-size: 0.9rem; }

  /* STATS */
  .stats-section { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item strong { font-size: 2rem; }

  /* WHY CHOOSE US */
  .why-split { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
  .why-split-img { position: static; top: auto; }
  .why-split-img img { height: 240px; width: 100%; }
  .why-float-badge { position: static; display: flex; gap: 20px; margin-top: 12px; border-radius: 12px; min-width: 0; padding: 14px 18px; }
  .why-feature-row { padding: 12px 14px; gap: 12px; }
  .why-feature-icon { font-size: 1.2rem; min-width: 24px; }
  .why-feature-text h4 { font-size: 0.9rem; }
  .why-feature-text p { font-size: 0.8rem; }
  .why-strips { grid-template-columns: 1fr; gap: 10px; }
  .why-strip { padding: 14px 16px; gap: 12px; }
  .why-strip-icon { font-size: 1.8rem; min-width: 32px; }
  .why-cards-grid { grid-template-columns: 1fr 1fr; }

  /* SERVICE DETAIL PAGE */
  .svc-page-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-sidebar { position: static; top: auto; }
  .svc-cta-row { flex-wrap: wrap; gap: 10px; }
  .svc-cta-row .btn { flex: 1 1 140px; text-align: center; }
  .svc-hero-img { height: 200px; }
  .sidebar-btn { margin-bottom: 8px; }
  .problems-list { grid-template-columns: 1fr; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 22px 18px; }

  /* CTA */
  .cta-section { padding: 50px 0; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btns .btn { width: 100%; max-width: 340px; text-align: center; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; font-size: 0.8rem; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 8px; }

  /* ABOUT PAGE */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-hero { padding: 48px 0; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 24px 18px; }
  .map-wrap iframe { height: 260px; }

  /* COVERAGE */
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }

  /* FORMS */
  .form-row { grid-template-columns: 1fr; }

  /* BOOK OPTIONS */
  .book-options { grid-template-columns: 1fr; }
  .book-option-divider { width: 100%; height: 1px; }
  .book-option-divider span { position: static; }
  .book-option-card { padding: 28px 20px; }

  /* PAGE HERO */
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  /* BRANDS */
  .brands-grid { gap: 8px; }
  .brand-pill { padding: 6px 14px; font-size: 0.8rem; }

  /* STICKY */
  .sticky-call { bottom: 16px; right: 12px; gap: 8px; }
  .sticky-call-btn { padding: 10px 16px; font-size: 0.82rem; }
}

/* ── 480px: phones ── */
@media (max-width: 480px) {
  section { padding: 36px 0; }
  .container { padding: 0 14px; }

  /* HERO */
  .hero { padding: 32px 0 28px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 10px; }
  .hero h1 { font-size: clamp(1.35rem, 7vw, 1.7rem); }
  .hero p { font-size: 0.88rem; }
  .hero-btns .btn { font-size: 0.9rem; padding: 13px 16px; }
  .hero-stats { gap: 8px; flex-wrap: wrap; justify-content: space-around; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat span { font-size: 0.68rem; }

  /* SERVICES — single column */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card-img { height: 190px; }
  .service-card-body { padding: 14px; }
  .service-card-body h3 { font-size: 0.95rem; }

  /* STATS */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-item strong { font-size: 1.7rem; }
  .stat-item span { font-size: 0.78rem; }

  /* ABOUT HOME — single column, hide side image */
  .about-home-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-home-imgs { grid-template-columns: 1fr; height: auto; }
  .about-img-main { height: 200px; border-radius: 12px; overflow: hidden; }
  .about-img-side { display: none; }
  .about-home-points { grid-template-columns: 1fr; gap: 10px; }
  .about-home-point h4 { font-size: 0.85rem; }
  .about-home-point p { font-size: 0.78rem; }

  /* WHY CHOOSE US */
  .why-split { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .why-split-img { position: static; top: auto; }
  .why-split-img img { height: 200px; width: 100%; }
  .why-float-badge { position: static; display: flex; flex-direction: column; gap: 10px; margin-top: 10px; padding: 12px 16px; border-radius: 12px; }
  .why-feature-row { padding: 10px 12px; }
  .why-feature-num { display: none; }
  .why-strips { grid-template-columns: 1fr; gap: 8px; }
  .why-strip { padding: 12px 14px; gap: 10px; }
  .why-strip-icon { font-size: 1.5rem; min-width: 26px; }
  .why-strip strong { font-size: 0.88rem; }
  .why-strip p { font-size: 0.78rem; }
  .why-cards-grid { grid-template-columns: 1fr; }

  /* SERVICE DETAIL PAGE */
  .svc-page-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-sidebar { position: static; top: auto; }
  .svc-block { padding: 16px 14px; }
  .svc-hero-img { height: 160px; font-size: 4.5rem; }
  .svc-cta-row { flex-direction: column; gap: 8px; }
  .svc-cta-row .btn { width: 100%; text-align: center; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .how-step { padding: 14px 10px; }
  .faq-item summary { font-size: 0.85rem; padding: 12px 14px; }
  .sidebar-card { padding: 16px; }
  .sidebar-services li a { padding: 7px 10px; font-size: 0.83rem; }

  /* TESTIMONIALS */
  .testimonial-card { padding: 18px 14px; }
  .testimonial-card p { font-size: 0.85rem; }

  /* CTA */
  .cta-section { padding: 40px 0; }
  .cta-btns .btn { max-width: 100%; font-size: 0.9rem; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { font-size: 0.75rem; }
  footer { padding: 40px 0 0; }

  /* BRANDS */
  .brands-section { padding: 28px 0; }
  .brand-pill { padding: 5px 10px; font-size: 0.75rem; }

  /* PAGE HERO */
  .page-hero { padding: 32px 0; }
  .page-hero h1 { font-size: 1.4rem; }
  .about-hero { padding: 36px 0; }
  .about-hero h1 { font-size: 1.4rem; }
  .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; justify-content: center; }

  /* CONTACT */
  .contact-form-wrap { padding: 18px 14px; }
  .contact-info-card { padding: 12px; gap: 12px; }
  .map-wrap iframe { height: 200px; }

  /* COVERAGE */
  .coverage-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .coverage-item { padding: 9px 10px; font-size: 0.8rem; }

  /* BOOKING */
  .booking-card { padding: 18px 14px; }
  .step-label { font-size: 0.65rem; }

  /* STICKY — icon only */
  .sticky-call-label { display: none; }
  .sticky-call-btn { padding: 0; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .sticky-call-icon { font-size: 1.2rem; }
  .sticky-call { gap: 10px; bottom: 16px; right: 12px; }

  /* LEGAL */
  .legal-wrap { padding: 0; }
  .legal-block h2 { font-size: 1rem; }
  .legal-block p, .legal-block ul li { font-size: 0.88rem; }

  /* TYPOGRAPHY */
  .section-label { font-size: 0.78rem; letter-spacing: 1.5px; }
  .section-title { font-size: clamp(1.25rem, 5.5vw, 1.7rem); }
  .section-subtitle { font-size: 0.88rem; }
  .footer-legal { font-size: 0.76rem; gap: 6px; }
}

/* ===== BRAND LOGOS GRID (TV service) ===== */
.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.brand-logo-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

@media (max-width: 768px) {
  .brand-logos-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .brand-logo-badge { font-size: 0.82rem; padding: 12px 6px; }
}
@media (max-width: 480px) {
  .brand-logos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-logo-badge { font-size: 0.88rem; padding: 13px 8px; }
}

/* ===== SERVICE DETAIL PAGE — ENHANCED ===== */

/* Hero */
.svc-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 0;
}
.svc-detail-hero-content { padding-bottom: 50px; }
.svc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.svc-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.svc-hero-stat { text-align: center; }
.svc-hero-stat strong { display: block; font-size: 1.4rem; color: #f4a261; font-weight: 800; }
.svc-hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.svc-detail-hero-img { align-self: flex-end; }
.svc-detail-img-wrap {
  position: relative;
  height: 380px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

/* Trust bar */
.svc-trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.svc-trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.svc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 160px;
}
.svc-trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.svc-trust-item strong { display: block; font-size: 0.88rem; color: var(--secondary); font-weight: 700; }
.svc-trust-item span { font-size: 0.76rem; color: var(--gray); }

/* Problems grid — card style */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px,100%), 1fr));
  gap: 10px;
}
.problem-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.87rem;
  color: #444;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.problem-card:hover { border-color: var(--primary); box-shadow: 0 2px 10px rgba(230,57,70,0.1); }
.problem-check {
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Sidebar hours */
.sidebar-hours { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.sidebar-hours li { display: flex; justify-content: space-between; align-items: center; font-size: 0.86rem; color: #555; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-hours li:last-child { border-bottom: none; }
.sidebar-hours li strong { color: var(--secondary); font-weight: 700; }

/* Responsive */
@media (max-width: 992px) {
  .svc-detail-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .svc-detail-hero-content { padding-bottom: 32px; }
  .svc-detail-hero-img { display: none; }
  .svc-trust-items { gap: 12px; }
  .svc-trust-item { min-width: 140px; }
}
@media (max-width: 768px) {
  .svc-hero-btns { flex-direction: column; gap: 10px; }
  .svc-hero-btns .btn { width: 100%; text-align: center; }
  .svc-hero-stats { gap: 16px; justify-content: space-between; }
  .svc-trust-items { gap: 10px; }
  .svc-trust-item { min-width: 120px; flex: 1 1 45%; }
  .svc-trust-icon { font-size: 1.2rem; }
  .svc-trust-item strong { font-size: 0.82rem; }
  .svc-trust-item span { font-size: 0.72rem; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .svc-hero-stats { gap: 10px; }
  .svc-hero-stat strong { font-size: 1.1rem; }
  .svc-trust-item { flex: 1 1 100%; }
  .problems-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE DETAIL — WHY CHOOSE US ===== */
.svc-why-banner {
  display: flex;
  align-items: stretch;
  min-height: 200px;
}
.svc-why-banner-img {
  width: 340px;
  min-width: 340px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-why-banner-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 32px 40px;
}
.svc-why-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.svc-why-stat:nth-child(2n) { border-right: none; }
.svc-why-stat:nth-child(3),
.svc-why-stat:nth-child(4) { border-bottom: none; }
.svc-why-stat strong { display: block; font-size: 1.8rem; color: #f4a261; font-weight: 800; line-height: 1.1; }
.svc-why-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* 6 reason cards */
.svc-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(230,57,70,0.1);
  transform: translateY(-3px);
}
.svc-why-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.svc-why-card-body h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--secondary); }
.svc-why-card-body p  { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 992px) {
  .svc-why-banner-img { width: 260px; min-width: 260px; }
  .svc-why-banner-stats { padding: 24px 28px; }
  .svc-why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .svc-why-banner { flex-direction: column; }
  .svc-why-banner-img { width: 100%; min-width: 0; height: 200px; }
  .svc-why-banner-stats { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 0; }
  .svc-why-stat { padding: 12px 14px; }
  .svc-why-stat strong { font-size: 1.4rem; }
  .svc-why-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc-why-card { padding: 16px 14px; gap: 12px; }
}
@media (max-width: 480px) {
  .svc-why-cards { grid-template-columns: 1fr; gap: 12px; }
  .svc-why-banner-stats { grid-template-columns: 1fr 1fr; }
  .svc-why-stat strong { font-size: 1.2rem; }
}
