﻿/* ── DISPLAY TYPEFACE (self-hosted, no external fetch) ── */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('/fonts/archivo-latin.woff2') format('woff2');
}
h1, h2, h3 { font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; letter-spacing: -0.015em; }

/* ── VARIABLES ── */
:root {
  --red: #cf1016;
  --red-dark: #a50d11;
  --charcoal: #17181c;
  --off-white: #f3f4f6;
  --white: #ffffff;
  --text: #374151;
  --text-light: #5b6472;
  --border: #e5e7eb;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }



/* ── HEADER ── */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.nav { display: flex; align-items: center; gap: 8px; padding: 10px 0; }
.logo { flex-shrink: 0; }
.logo-img { height: 54px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links li { position: relative; }
.nav-links > li > a { padding: 8px 13px; border-radius: 5px; font-size: .875rem; font-weight: 500; color: var(--charcoal); white-space: nowrap; transition: color .15s, background .15s; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--red); background: rgba(207,16,22,.06); }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); min-width: 210px; z-index: 200; padding: 10px 0 6px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 16px; font-size: .875rem; color: var(--text); transition: background .15s, color .15s; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--red); }
.dropdown-menu.dropdown-wide { min-width: 460px; flex-direction: row; padding: 0; }
.dropdown:hover .dropdown-menu.dropdown-wide, .dropdown:focus-within .dropdown-menu.dropdown-wide { display: flex; }
.dropdown-col { flex: 1; padding: 8px 0; }
.dropdown-col + .dropdown-col { border-left: 1px solid var(--border); }
.dropdown-col-head { display: block; padding: 10px 16px 4px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-light); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 20px; }
.nav-contact { display: flex; flex-direction: column; gap: 2px; }
.nav-phone { font-weight: 800; font-size: 1.45rem; color: var(--charcoal); white-space: nowrap; letter-spacing: -0.01em; line-height: 1.15; }
.nav-phone:hover { color: var(--red); }
.nav-phone .ei { width: 20px; height: 20px; color: var(--red); }
.nav-email { font-size: .82rem; color: #555; font-weight: 500; white-space: nowrap; text-decoration: none; }
.nav-email:hover { color: var(--red); }
.btn-red { background: var(--red); color: var(--white) !important; font-size: .85rem; font-weight: 600; padding: 9px 18px; border-radius: 6px; white-space: nowrap; transition: background .15s; }
.btn-red:hover { background: var(--red-dark); }
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 2000; padding: 20px 24px 32px; flex-direction: column; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav-header img { height: 48px; width: auto; border-radius: 6px; }
.mobile-nav-close { background: none; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--charcoal); min-width: 44px; min-height: 44px; }
.mobile-nav a { font-size: 1rem; font-weight: 500; padding: 11px 0; border-bottom: 1px solid var(--border); color: var(--charcoal); display: block; }
.mobile-nav a.sub { font-size: .9rem; color: var(--text-light); padding-left: 16px; }
.mobile-nav-cta { margin-top: 20px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 6px; font-weight: 600; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: all .2s; white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ── HERO (HOMEPAGE) ── */
.hero { background: var(--charcoal); color: var(--white); padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.hero-badge { display: inline-block; background: var(--red); color: var(--white); font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 22px; }
.hero-title { font-size: clamp(1.75rem, 3.5vw, 2.7rem); font-weight: 800; line-height: 1.18; margin-bottom: 18px; }
.hero-title span { color: var(--red); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 16px; max-width: 520px; line-height: 1.75; }
.hero-price { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.hero-price strong { color: #FFD700; font-size: 1rem; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-call-btn { font-size: 1.05rem; padding: 15px 30px; }
.hero-bottom { display: inline-flex; flex-direction: column; }
.hero-bottom .hero-call-btn { flex: 1; }





/* ── HERO CREDENTIAL LOGOS (white chips on dark hero) ── */
.hero-creds { display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch; }
.hero-cred { background: #fff; border-radius: 8px; padding: 0 11px; display: inline-flex; align-items: center; gap: 7px; height: 46px; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.hero-cred img { height: 28px; width: auto; display: block; }
.hero-cred .cred-shield { color: var(--red); flex: 0 0 auto; }
.hero-cred .cred-txt { display: flex; flex-direction: column; line-height: 1.15; }
.hero-cred .cred-txt strong { font-size: .78rem; color: var(--charcoal); font-weight: 800; white-space: nowrap; }
.hero-cred .cred-txt span { font-size: .65rem; color: #666; font-weight: 600; white-space: nowrap; }
.hero-cred .g-logo { font-size: 1.05rem; }
.hero-cred .cred-stars { color: #FBBC05; font-size: .82rem; letter-spacing: 1px; }

/* footer credential bar — horizontal row across full width */
.footer-creds-bar { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 0; }
.footer-creds-bar .hero-cred { height: 44px; padding: 0 18px; gap: 9px; }
.footer-creds-bar .hero-cred img { height: 26px; }
.footer-creds-bar .hero-cred .cred-txt strong { font-size: .85rem; }

/* ── HERO FORM CARD ── */
.hero-card { background: var(--white); border-radius: 12px; padding: 30px; color: var(--text); }
.form-card-title { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; text-align: center; }
.hero-form, .contact-form-fields { display: flex; flex-direction: column; gap: 11px; }
.hero-form input, .hero-form select,
.contact-form-fields input, .contact-form-fields select, .contact-form-fields textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-size: .95rem; font-family: inherit; color: var(--charcoal); background: var(--white); transition: border-color .2s; }
.hero-form input:focus, .hero-form select:focus,
.contact-form-fields input:focus, .contact-form-fields select:focus, .contact-form-fields textarea:focus { border-color: var(--red); }
.hero-form .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: .78rem; color: var(--text-light); text-align: center; margin-top: 6px; }
.form-status { font-size: .85rem; text-align: center; margin-top: 4px; }




/* ── SECTION TYPOGRAPHY ── */
.section-label { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: 10px; }
.section-title { font-size: clamp(1.5rem, 2.5vw, 2.15rem); font-weight: 800; color: var(--charcoal); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.7; }

/* ── SERVICES ── */
.services { padding: 80px 0; }
.services.alt { background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-image { aspect-ratio: 16/9; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-icon { width: 50px; height: 50px; background: rgba(207,16,22,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); margin: 24px 24px 0; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin: 16px 24px 8px; }
.service-card p { font-size: .88rem; color: var(--text-light); margin: 0 24px 14px; line-height: 1.65; }
.service-card-link { display: block; margin: auto 24px 20px; padding-top: 6px; font-size: .875rem; font-weight: 600; color: var(--red); }
.service-card-link:hover { text-decoration: underline; }

/* ── WHY US ── */
.why-us { background: var(--charcoal); color: var(--white); padding: 80px 0; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,.7); }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check { width: 28px; height: 28px; min-width: 28px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); margin-top: 1px; }
.feature-item h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.feature-item p { font-size: .875rem; color: rgba(255,255,255,.65); }
.why-us-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.why-stat-num { font-size: 2.1rem; font-weight: 800; color: var(--red); }
.why-stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; }


.google-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 10px 20px; margin: 0 auto 44px; }
.g-logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -1px; }
.g-blue { color: #4285F4; }
.g-red  { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }
.rating-stars { color: #FFD700; font-size: 1rem; }
.rating-val { font-size: 1.3rem; font-weight: 800; color: var(--charcoal); }
.rating-count { font-size: .75rem; color: var(--text-light); }
.google-badge-inner { display: flex; flex-direction: column; }




.stars { color: #B45309; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }


.avatar { width: 40px; height: 40px; min-width: 40px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; }
.author-name { font-weight: 700; font-size: .88rem; color: var(--charcoal); }
.author-location { font-size: .78rem; color: var(--text-light); }

/* ── CTA BAND ── */
.cta-band { background: var(--red); color: var(--white); padding: 64px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { font-size: 1.05rem; opacity: .88; margin-bottom: 30px; }
.cta-band-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--white); color: var(--red); border-color: var(--white); }
.cta-band .btn-primary:hover { background: rgba(255,255,255,.92); }

/* ── CONTACT ── */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { color: var(--charcoal); margin-bottom: 12px; }
.contact-info .section-sub { margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(207,16,22,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.contact-detail-text strong { font-size: .82rem; font-weight: 700; color: var(--charcoal); display: block; margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text span { font-size: .95rem; color: var(--text); display: block; }
.contact-detail-text a:hover { color: var(--red); }
.contact-form-box { background: var(--off-white); border-radius: 12px; padding: 36px; }
.contact-form-box h3 { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 22px; }
.contact-form-fields textarea { min-height: 100px; resize: vertical; }
.contact-form-fields .btn { width: 100%; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--charcoal); color: var(--white); padding: 60px 0; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.7); }
.page-hero .hero-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.page-hero .hero-sub { margin-bottom: 24px; }
.page-hero .hero-buttons { margin-bottom: 24px; }

/* ── ABOUT SPLIT ── */
.about-split { padding: 80px 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.about-visual { border-radius: 14px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.15); min-height: 100%; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.about-content p { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.about-content .btn-outline-dark { margin-top: 8px; }

/* ── AREAS GRID ── */
.areas-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 40px; }
.area-pill { background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: 12px 16px; font-weight: 600; font-size: .9rem; color: var(--charcoal); text-align: center; }

/* ── EMERGENCY BANNER ── */
.emergency-banner { background: var(--red); color: var(--white); padding: 14px 0; }
.emergency-banner .container { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; text-align: center; }
.emergency-banner a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 72px; right: 20px; z-index: 900; }
.wa-float::before { content: 'WhatsApp us'; position: absolute; right: 80px; top: 50%; transform: translateY(-50%) translateX(6px); background: #1a9648; color: #fff; padding: 7px 14px; border-radius: 6px; font-size: .82rem; font-weight: 600; white-space: nowrap; opacity: 0; transition: opacity .2s, transform .2s; pointer-events: none; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.wa-float:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.wa-float a { display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; background: #25D366; border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: transform .2s; }
.wa-float a:hover { transform: scale(1.1); }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--red); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-a.open { display: block; }
.faq-a p { font-size: .95rem; color: var(--text); line-height: 1.75; margin: 0; }
.faq-a p + p { margin-top: 10px; }




/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-tag { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: .9rem; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-read-more { font-size: .875rem; font-weight: 600; color: var(--red); }
.blog-read-more:hover { text-decoration: underline; }
.blog-meta { font-size: .78rem; color: var(--text-light); margin-bottom: 8px; }
.blog-article { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.blog-article h2 { font-size: 1.45rem; font-weight: 700; color: var(--charcoal); margin: 40px 0 14px; }
.blog-article h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin: 28px 0 10px; }
.blog-article p { font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.blog-article ul, .blog-article ol { margin: 0 0 18px 24px; }
.blog-article li { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 6px; }
.blog-article .blog-cta-box { background: var(--charcoal); color: var(--white); border-radius: 12px; padding: 32px 36px; margin: 44px 0; text-align: center; }
.blog-article .blog-cta-box h3 { color: var(--white); margin: 0 0 10px; }
.blog-article .blog-cta-box p { color: rgba(255,255,255,.75); margin-bottom: 20px; }

/* ── PRICING TABLE ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: 12px; padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.pricing-card.featured { border-color: var(--red); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.pricing-service { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); margin-bottom: 8px; }
.pricing-name { font-size: 1.25rem; font-weight: 800; color: var(--charcoal); margin-bottom: 12px; }
.pricing-price { font-size: 2rem; font-weight: 800; color: var(--charcoal); line-height: 1; margin-bottom: 6px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.pricing-note { font-size: .8rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-features { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.pricing-features li { font-size: .88rem; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 8px; overflow: hidden; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.03); }
@media(max-width:700px){ .gallery-grid { columns: 2; } }
@media(max-width:420px){ .gallery-grid { columns: 1; } }

/* ── SCROLL TOP ── */
#scroll-top { position: fixed; bottom: 16px; right: 20px; background: var(--charcoal); color: var(--white); border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 800; }
#scroll-top.visible { display: flex; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo-card { display: inline-flex; background: var(--white); border-radius: 8px; padding: 8px; margin-bottom: 14px; margin-left: -8px; }
.footer-logo-card img { height: 46px; width: auto; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 0; }

.footer-col h3 { font-size: .8rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col ul li { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
/* full header (links + phone/email + button) needs ~1212px; links-only needs ~1000px */
@media (max-width: 1220px) {
  .nav-contact { display: none; }
}
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav { justify-content: space-between; }
  .hamburger { display: flex; }
}
@media (max-width: 960px) {
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-us-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-visual { max-height: 300px; }
}
@media (max-width: 600px) {
  .hero, .page-hero { padding: 44px 0; }

  .hero-title { font-size: 1.65rem; }
  .hero-buttons, .cta-band-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn, .cta-band-buttons .btn { display: flex; justify-content: center; width: 100%; }
  /* credential badges: tidy 2-col grid, last one full-width */
  .hero-bottom .hero-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-bottom .hero-cred { width: 100%; justify-content: center; padding: 0 8px; }
  .hero-bottom .hero-cred:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-us-stats { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Accessibility utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* UK Ltd legal disclosure (footer) */
.footer-legal{max-width:1200px;margin:0 auto;padding:14px 20px 0;font-size:.72rem;line-height:1.6;color:rgba(255,255,255,.5);text-align:center;border-top:1px solid rgba(255,255,255,.08);}

/* Sitewide USP strip + guarantee line (above footer credentials) */
.footer-usps{max-width:1200px;margin:24px auto 6px;padding:0 20px;text-align:center;font-size:.85rem;font-weight:500;color:rgba(255,255,255,.7);line-height:1.7;}
.footer-guarantee-line{max-width:1200px;margin:0 auto 18px;padding:0 20px;text-align:center;font-size:.92rem;font-weight:600;color:rgba(255,255,255,.9);}

/* Instant EICR quote widget */
.eicr-quote{max-width:760px;margin:0 auto 44px;background:#fff;border:1px solid var(--border);border-radius:14px;padding:28px 24px;box-shadow:0 6px 22px rgba(0,0,0,.06);}
.eicr-kicker{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:var(--red);font-weight:700;text-align:center;}
.eicr-opts{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:16px 0 22px;}
.eicr-opt{font-family:inherit;font-size:.95rem;font-weight:600;cursor:pointer;background:#fff;color:var(--charcoal);border:1.5px solid var(--border);border-radius:30px;padding:10px 20px;transition:border-color .15s,color .15s,background .15s;}
.eicr-opt:hover{border-color:var(--red);color:var(--red);}
.eicr-opt.active{background:var(--red);border-color:var(--red);color:#fff;}
.eicr-result{text-align:center;border-top:1px dashed var(--border);padding-top:20px;}
.eicr-price{font-size:2.4rem;font-weight:800;color:var(--red);line-height:1.1;}
.eicr-price small{font-size:1rem;font-weight:600;color:var(--text-light);}
.eicr-rsub{color:var(--text-light);font-size:.92rem;margin:6px 0 0;}
.eicr-sameday{display:inline-flex;align-items:center;gap:8px;margin:14px 0 2px;font-size:.9rem;cursor:pointer;color:var(--charcoal);}
.eicr-ctas{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:16px;}
.eicr-hint{color:var(--text-light);font-size:1.02rem;margin:0;}
@media(max-width:520px){.eicr-price{font-size:2rem;}.eicr-quote{padding:24px 16px;}}

/* Sitewide trust strip (under header) */
.trust-strip{background:var(--red);color:#fff;}
.trust-strip-inner{max-width:1200px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:6px 24px;padding:9px 20px;font-size:.85rem;font-weight:600;}
.trust-strip-inner span{display:inline-flex;align-items:center;gap:6px;}
.trust-strip-inner svg{flex:none;opacity:.95;}
@media(max-width:600px){
  .trust-strip-inner{gap:5px 14px;font-size:.75rem;padding:7px 12px;flex-wrap:nowrap;}
  /* keep the strip to ONE line on phones: show experience + reviews only */
  .trust-strip-inner span:nth-child(2), .trust-strip-inner span:nth-child(4){display:none;}
  .logo-img{height:42px;}
  .btn-red{padding:8px 13px;font-size:.8rem;}
  .nav{gap:10px;}
  #scroll-top{display:none !important;}
}

/* Blog post 2-column layout stacks on mobile/tablet */
@media(max-width:860px){[style*="grid-template-columns:1fr 340px"]{grid-template-columns:1fr !important;}[style*="grid-template-columns:1fr 340px"]>*{min-width:0;max-width:100%;}}

/* Cookie consent banner */
.rde-cookie{position:fixed;left:0;right:0;bottom:0;z-index:1000;background:#1a1f2b;color:#e8eaed;padding:16px 20px;display:flex;flex-wrap:wrap;gap:14px;align-items:center;justify-content:center;box-shadow:0 -2px 18px rgba(0,0,0,.3);font-size:.9rem;}
.rde-cookie[hidden]{display:none;}
.ei{vertical-align:-3px;flex-shrink:0;}
.ei-box{display:inline-block;vertical-align:middle;}
.rde-cookie p{margin:0;max-width:640px;}
.rde-cookie a{color:#ffffff;}
.rde-cookie-btns{display:flex;gap:10px;}
.rde-cookie-btn{border:0;border-radius:6px;padding:10px 20px;font-weight:600;cursor:pointer;font-family:inherit;background:#cf1016;color:#fff;}
.rde-cookie-btn.ghost{background:transparent;border:1px solid rgba(255,255,255,.35);color:#e8eaed;}
@media (max-width:600px){.rde-cookie{flex-direction:column;text-align:center;}}

/* Book Online CTA button */
.btn-book{background:var(--charcoal);color:#fff;}
.btn-book:hover{background:var(--red);color:#fff;}

/* WhatsApp CTA button */
.btn-wa{background:#15803d;color:#fff;}
.btn-wa:hover{background:#116534;color:#fff;}

/* Accessibility: visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
html { scroll-padding-top: 90px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Mobile nav "Services" group heading (non-link) */
.mobile-nav-heading { display: block; padding: 14px 24px 4px; font-weight: 700; color: var(--text-light); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }

/* Card heading links inherit card styling */
.service-card h3 a, .blog-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover, .blog-card h3 a:hover { color: var(--red); }

/* About page CTA row: compact so all three sit inline */
.about-cta-row .btn { padding: 10px 14px; font-size: .85rem; white-space: nowrap; }

/* Balanced 3-column layout for 6-card grids (3+3 instead of 4+2) */
.services-grid.grid-3, .pricing-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .services-grid.grid-3, .pricing-grid.grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid.grid-3, .pricing-grid.grid-3 { grid-template-columns: 1fr; } }

/* Mobile: comparison tables scroll inside their own box instead of stretching the page */
@media (max-width: 760px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Quick Quote chat assistant ── */
.rqb-launch{position:fixed;left:20px;bottom:20px;z-index:1200;display:inline-flex;align-items:center;gap:8px;background:var(--red);color:#fff;border:2px solid #fff;border-radius:26px;padding:12px 19px;font-weight:700;font-size:.92rem;cursor:pointer;box-shadow:0 6px 22px rgba(0,0,0,.35);font-family:inherit;min-height:44px;}
.rqb-launch:hover{background:var(--red-dark);}
.rqb{position:fixed;left:20px;bottom:84px;z-index:1300;width:min(360px,calc(100vw - 40px));max-height:min(560px,calc(100vh - 120px));background:#fff;border-radius:14px;box-shadow:0 18px 60px rgba(0,0,0,.35);display:none;flex-direction:column;overflow:hidden;}
.rqb.open{display:flex;}
.rqb-head{background:var(--charcoal);color:#fff;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;gap:10px;}
.rqb-head strong{font-size:.95rem;}
.rqb-head span{display:block;font-size:.72rem;color:rgba(255,255,255,.65);font-weight:500;}
.rqb-close{background:none;border:0;color:#fff;font-size:1.5rem;line-height:1;cursor:pointer;min-width:44px;min-height:44px;}
.rqb-msgs{padding:14px;overflow-y:auto;flex:1;display:flex;flex-direction:column;gap:8px;background:var(--off-white);}
.rqb-m{max-width:85%;padding:9px 13px;border-radius:12px;font-size:.88rem;line-height:1.5;}
.rqb-m.bot{background:#fff;border:1px solid var(--border);border-bottom-left-radius:4px;align-self:flex-start;color:var(--charcoal);}
.rqb-m.user{background:var(--red);color:#fff;border-bottom-right-radius:4px;align-self:flex-end;}
.rqb-m a{color:var(--red);font-weight:700;text-decoration:underline;}
.rqb-m.user a{color:#fff;}
.rqb-in{padding:10px;background:#fff;border-top:1px solid var(--border);}
.rqb-chips{display:flex;flex-wrap:wrap;gap:7px;}
.rqb-chip{background:#fff;border:1.5px solid var(--charcoal);border-radius:18px;padding:8px 14px;font-size:.84rem;font-weight:600;color:var(--charcoal);cursor:pointer;font-family:inherit;min-height:38px;}
.rqb-chip:hover{background:var(--charcoal);color:#fff;}
.rqb-row{display:flex;gap:8px;}
.rqb-row input{flex:1;border:1.5px solid var(--border);border-radius:8px;padding:10px 12px;font-size:16px;font-family:inherit;min-width:0;}
.rqb-row input:focus{border-color:var(--red);}
.rqb-send{background:var(--red);color:#fff;border:0;border-radius:8px;padding:10px 16px;font-weight:700;cursor:pointer;font-family:inherit;min-height:44px;}
.rqb-send:hover{background:var(--red-dark);}
.rqb-skip{background:none;border:0;color:var(--text-light);font-size:.78rem;cursor:pointer;margin-top:6px;text-decoration:underline;font-family:inherit;}
@media(max-width:600px){.rqb{left:12px;right:12px;width:auto;bottom:78px;}}

/* inc-VAT small print */
.pricing-incvat{font-size:.78rem;color:var(--text-light);margin:-6px 0 10px;}
.eicr-incvat{font-size:.85rem;color:var(--text-light);margin:2px 0 8px;text-align:center;}
