/* =========================================
   DUBLINGUTTER.IE — SHARED STYLESHEET
   Design: Trust & Authority | Home Services
   Colours: #1E40AF (blue) | #F59E0B (yellow accent)
   Fonts: Poppins + Open Sans
   ========================================= */

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

:root {
  --blue:       #1E40AF;
  --blue-dark:  #1E3A8A;
  --blue-mid:   #2563EB;
  --blue-light: #DBEAFE;
  --blue-xlight:#EFF6FF;
  --yellow:     #F59E0B;
  --yellow-dark:#D97706;
  --yellow-light:#FEF3C7;
  --white:      #ffffff;
  --grey-light: #F8FAFC;
  --grey:       #64748B;
  --grey-dark:  #1E293B;
  --text:       #334155;
  --border:     #E2E8F0;
  --shadow:     0 4px 24px rgba(30,64,175,0.10);
  --shadow-lg:  0 8px 40px rgba(30,64,175,0.15);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; color: var(--grey-dark); line-height: 1.25; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--grey-dark); border-color: var(--yellow); font-weight: 700; }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--grey-dark); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--yellow-light); color: var(--blue-dark); border-color: var(--yellow); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--yellow); color: var(--grey-dark); border-color: var(--yellow); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--grey-dark); border-color: var(--yellow); font-weight: 700; }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--grey-dark); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---- TOP BAR ---- */
.topbar { background: var(--blue-dark); color: rgba(255,255,255,0.88); font-size: 0.82rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; }
.topbar-left span, .topbar-right span { display: flex; align-items: center; gap: 6px; }
.topbar-left i, .topbar-right i { color: rgba(255,255,255,0.65); font-size: 0.75rem; }

/* ---- HEADER ---- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon i { color: var(--white); font-size: 1.2rem; }
.logo-main { display: block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--blue-dark); line-height: 1.1; }
.logo-dot { color: var(--blue-mid); }
.logo-sub { display: block; font-size: 0.7rem; color: var(--grey); font-weight: 500; }
.logo-light .logo-main { color: var(--white); }
.logo-light .logo-sub { color: rgba(255,255,255,0.65); }
.logo-light .logo-icon { background: rgba(255,255,255,0.15); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.9rem; color: var(--grey-dark); transition: all var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-xlight); }

.header-cta { padding: 10px 22px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--grey-dark); transition: all var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #3B82F6 100%);
  min-height: 680px; display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; background: rgba(30,58,138,0.3); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--grey-dark); padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; margin-bottom: 18px; border: 1px solid var(--yellow-dark); }
.hero-seo { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 400; margin-bottom: 10px; font-family: 'Open Sans', sans-serif; }
.hero-headline { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 24px; max-width: 520px; }
.hero-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.hero-list li { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 0.95rem; }
.hero-list i { color: #4ADE80; font-size: 1rem; flex-shrink: 0; }
.hero-stats { display: flex; gap: 32px; margin-bottom: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 2px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Form */
.hero-form-wrap { display: flex; justify-content: center; }
.hero-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); width: 100%; max-width: 420px; }
.form-header { text-align: center; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.form-header h3 { font-size: 1.3rem; color: var(--blue-dark); margin-bottom: 4px; }
.form-header p { font-size: 0.85rem; color: var(--grey); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--grey-dark); margin-bottom: 5px; font-family: 'Poppins', sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--grey); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--blue-dark); padding: 20px 0; border-top: 3px solid var(--yellow); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--white); padding: 16px 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.trust-item:last-child { border-right: none; }
.trust-item > i { font-size: 1.6rem; color: var(--yellow); flex-shrink: 0; }
.trust-item strong { display: block; font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; }
.trust-item span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 1px; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-light { background: var(--grey-light); }
.section-dark { background: var(--blue-dark); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.section-header p { color: var(--grey); font-size: 1rem; }
.section-tag { display: inline-block; background: var(--yellow-light); color: var(--yellow-dark); font-size: 0.75rem; font-weight: 700; font-family: 'Poppins', sans-serif; padding: 5px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; border: 1px solid #FDE68A; }
.section-tag.light { background: rgba(255,255,255,0.15); color: var(--white); }
.section-dark .section-header h2, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-decoration: none; color: inherit; transition: all var(--transition); display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; background: var(--yellow-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: background var(--transition); }
.service-card:hover .service-icon { background: var(--yellow); }
.service-icon i { font-size: 1.3rem; color: var(--yellow-dark); transition: color var(--transition); }
.service-card:hover .service-icon i { color: var(--grey-dark); }
.service-card h3 { font-size: 1.05rem; color: var(--grey-dark); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.6; flex: 1; }
.service-link { margin-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--yellow-dark); font-family: 'Poppins', sans-serif; display: flex; align-items: center; gap: 6px; }

/* ---- WHY US ---- */
.why-inner { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin: 28px 0 36px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 46px; height: 46px; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon i { color: var(--white); font-size: 1.1rem; }
.why-point h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.why-point p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.why-img-wrap { background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); aspect-ratio: 4/3; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); overflow: hidden; }
.why-img-wrap::before { content: '\f015'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 5rem; color: rgba(255,255,255,0.1); }
.why-badge { position: absolute; bottom: 20px; right: 20px; background: var(--white); border-radius: 12px; padding: 14px 18px; text-align: center; box-shadow: var(--shadow); }
.badge-num { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--yellow-dark); line-height: 1; }
.badge-text { display: block; font-size: 0.75rem; color: var(--grey); font-weight: 600; margin-top: 2px; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.review-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.review-stars { color: #F59E0B; margin-bottom: 14px; font-size: 0.9rem; display: flex; gap: 3px; }
.review-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-author strong { display: block; font-size: 0.9rem; color: var(--grey-dark); }
.review-author span { font-size: 0.78rem; color: var(--grey); }
.reviews-cta { text-align: center; }

/* ---- PROCESS ---- */
.process-steps { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.process-step { flex: 1; text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); position: relative; }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--grey-dark); width: 28px; height: 28px; border-radius: 50%; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
.step-icon { width: 60px; height: 60px; background: var(--yellow-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon i { font-size: 1.4rem; color: var(--yellow-dark); }
.process-step h3 { font-size: 1rem; color: var(--grey-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--grey); }
.process-arrow { flex-shrink: 0; color: var(--blue); font-size: 1.2rem; padding: 0 12px; }
.process-cta { text-align: center; }

/* ---- AREAS ---- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
.area-pill { display: flex; align-items: center; gap: 6px; background: var(--blue-xlight); color: var(--blue); padding: 9px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; font-family: 'Poppins', sans-serif; border: 1.5px solid var(--blue-light); transition: all var(--transition); text-decoration: none; }
.area-pill:hover { background: var(--yellow); color: var(--grey-dark); border-color: var(--yellow-dark); }
.area-pill i { color: var(--yellow-dark); }
.area-pill i { font-size: 0.78rem; }
.areas-note { text-align: center; color: var(--grey); font-size: 0.9rem; }
.areas-note a { color: var(--blue); font-weight: 600; }

/* ---- FAQ ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--grey-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background var(--transition); }
.faq-q:hover { background: var(--blue-xlight); color: var(--blue); }
.faq-item.open .faq-q { background: var(--yellow); color: var(--grey-dark); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-q i { flex-shrink: 0; transition: transform var(--transition); font-size: 0.85rem; }
.faq-a { display: none; padding: 16px 20px; border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- MAP ---- */
.map-section iframe { width: 100%; height: 350px; border: none; display: block; }

/* ---- FOOTER ---- */
.footer { background: var(--grey-dark); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.92rem; font-family: 'Poppins', sans-serif; margin-bottom: 16px; font-weight: 700; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact i { color: var(--yellow); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ---- FLOATING CTAS ---- */
.float-ctas { position: fixed; bottom: 28px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: transform var(--transition); color: var(--white); }
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-phone { background: var(--blue); }
.float-whatsapp { background: #25D366; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); padding: 60px 0; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---- SERVICE PAGE SPECIFIC ---- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { background: var(--blue-xlight); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.service-detail-img i { font-size: 5rem; color: var(--blue-light); }
.service-detail-content h2 { font-size: 1.7rem; margin-bottom: 14px; }
.service-detail-content p { color: var(--grey); margin-bottom: 14px; line-height: 1.75; }
.service-detail-content ul { margin: 14px 0 24px; display: flex; flex-direction: column; gap: 8px; }
.service-detail-content li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.92rem; }
.service-detail-content li i { color: var(--blue); }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-img { background: var(--blue-xlight); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-img i { font-size: 5rem; color: var(--blue-light); }
.about-content h2 { font-size: 1.8rem; margin-bottom: 14px; }
.about-content p { color: var(--grey); margin-bottom: 14px; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.about-stat { text-align: center; background: var(--blue-xlight); border-radius: var(--radius); padding: 20px; }
.about-stat-num { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); }
.about-stat-label { font-size: 0.8rem; color: var(--grey); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.team-avatar { width: 70px; height: 70px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.team-avatar i { font-size: 1.8rem; color: var(--white); }
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--grey); }

/* ---- CONTACT / QUOTE PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: 1.7rem; margin-bottom: 14px; }
.contact-info p { color: var(--grey); margin-bottom: 28px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--yellow-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon i { color: var(--yellow-dark); font-size: 1.1rem; }
.contact-detail h4 { font-size: 0.88rem; color: var(--grey-dark); margin-bottom: 2px; }
.contact-detail p { font-size: 0.88rem; color: var(--grey); }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.9rem; color: var(--grey); margin-bottom: 24px; }

/* ---- NEAR ME PAGE ---- */
.areas-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: all var(--transition); text-decoration: none; color: inherit; display: flex; align-items: flex-start; gap: 14px; }
.area-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.area-card-icon { width: 42px; height: 42px; background: var(--yellow-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-card-icon i { color: var(--yellow-dark); font-size: 1.1rem; }
.area-card h3 { font-size: 0.95rem; color: var(--grey-dark); margin-bottom: 4px; }
.area-card p { font-size: 0.82rem; color: var(--grey); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { display: none; }
  .hero-inner { text-align: center; }
  .hero-list { align-items: center; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 24px; border-bottom: 2px solid var(--blue); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { gap: 20px; }
  .hero-ctas { flex-direction: column; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
