/* ==========================================================================
   West Clean Property Care – Professional Exterior Cleaning Services Across Ireland
   Complete CSS for CodeIgniter 4 Version
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --primary: #1a7a3a;
  --primary-dark: #145e2d;
  --primary-light: #22a34e;
  --primary-lighter: #e6f5ec;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --cta: #ea580c;
  --cta-dark: #c2410c;
  --dark: #111827;
  --dark-2: #1f2937;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-500: #9ca3af;
  --gray-400: #d1d5db;
  --gray-300: #e5e7eb;
  --gray-200: #f3f4f6;
  --gray-100: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --transition: all .3s ease;
  --max-width: 1200px;
  --header-height: 80px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: .5em;
}

/* ---------- Accessibility: Skip to Content ---------- */
.skip-to-content {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white); padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; font-size: .95rem; z-index: 10000;
  transition: top .2s ease;
}
.skip-to-content:focus {
  top: 0; color: var(--white); outline: 3px solid var(--accent); outline-offset: 2px;
}

/* ---------- Accessibility: Focus Visible ---------- */
:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }
a:focus:not(:focus-visible) { outline: none; }

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
address { font-style: normal; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--gray-700); }
.required { color: var(--cta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2rem; font-family: var(--font-heading); font-size: .95rem;
  font-weight: 600; border: 2px solid var(--primary); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); text-align: center;
  line-height: 1.4; white-space: nowrap;
  background: var(--primary); color: var(--white);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--cta); color: var(--white); border-color: var(--cta); }
.btn-accent:hover { background: var(--cta-dark); border-color: var(--cta-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-block { width: 100%; margin-bottom: .75rem; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white); box-shadow: var(--shadow); padding: 0;
  transition: var(--transition);
}
.header.scrolled {
  background: var(--white); box-shadow: var(--shadow); padding: 0;
}

/* .nav is the <nav> inside the header */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.logo {
  display: flex; align-items: stretch;
  height: var(--header-height);
  padding: 0; margin: 0;
  position: relative; z-index: 1003;
}
.logo-img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: opacity .2s ease;
}
.logo:hover .logo-img { opacity: .85; }
.header.scrolled .logo { /* image logo — no colour change needed */ }

/* Header state when mobile menu is open */
.header.menu-open { background: var(--white); box-shadow: var(--shadow); }
.header.menu-open .logo { z-index: 1001; }
.header.menu-open .nav-toggle span { background: var(--gray-800); }

/* Mobile toggle (hamburger) */
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px; position: relative; z-index: 1003;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: var(--radius); transition: var(--transition);
}
.nav-toggle:hover { background: var(--gray-200); }
.header.scrolled .nav-toggle:hover,
.header.menu-open .nav-toggle:hover { background: var(--gray-200); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.header.scrolled .nav-toggle span { background: var(--gray-800); }
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

/* Desktop nav menu (the <ul>) */
.nav-menu {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu > li > a {
  font-family: var(--font-heading); font-size: .9rem; font-weight: 500;
  color: var(--gray-700); padding: .5rem 1rem; border-radius: var(--radius);
  transition: var(--transition); display: inline-flex; align-items: center; gap: .35rem;
}
.nav-menu > li > a:hover { color: var(--primary); background: var(--primary-lighter); }
.header.scrolled .nav-menu > li > a { color: var(--gray-700); }
.header.scrolled .nav-menu > li > a:hover { color: var(--primary); background: var(--primary-lighter); }

/* Get a Quote button in nav */
.nav-menu > li > a.btn {
  background: var(--cta); color: var(--white); border-color: var(--cta);
  padding: .5rem 1.25rem;
}
.nav-menu > li > a.btn:hover {
  background: var(--cta-dark); border-color: var(--cta-dark); color: var(--white);
}
.header.scrolled .nav-menu > li > a.btn { background: var(--cta); color: var(--white); border-color: var(--cta); }
.header.scrolled .nav-menu > li > a.btn:hover { background: var(--cta-dark); border-color: var(--cta-dark); color: var(--white); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a i { font-size: .7rem; transition: var(--transition); }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: .5rem 0; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); z-index: 100; list-style: none;
}
.has-dropdown:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 1.25rem; color: var(--gray-700) !important;
  font-size: .88rem; border-radius: 0;
}
.dropdown li a:hover {
  background: var(--primary-lighter) !important; color: var(--primary) !important;
}
.dropdown li a i {
  width: 20px; text-align: center; color: var(--primary); font-size: .85rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url('../images/hero/hero-pressure-washing.jpg') center/cover no-repeat;
  overflow: hidden; padding-top: var(--header-height);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10, 30, 15, 0.75);
}
.hero > .container { position: relative; z-index: 2; }

/* Hero split layout — text left, quote box right */
.hero-split {
  display: flex; align-items: center; gap: 3rem;
  padding: 4rem 0;
}
.hero-split .hero-content { flex: 1; max-width: 620px; padding: 0; }

.hero-badge {
  display: inline-block; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); border-radius: 2rem;
  padding: .4rem 1.2rem; font-size: .85rem; font-weight: 600;
  color: var(--accent); margin-bottom: 1.25rem; letter-spacing: .03em;
}
.hero-badge i { margin-right: .4rem; }

.hero-content { max-width: 700px; padding: 4rem 0; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }

.hero-subtitle {
  color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 1.25rem;
  max-width: 600px; line-height: 1.8;
}

.hero-segments {
  color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 1.5rem;
  letter-spacing: .04em;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Hero quote box (right side) */
.hero-quote-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; width: 340px; flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  text-align: center;
}
.hero-quote-box h2 {
  font-size: 1.25rem; color: var(--primary-dark); margin-bottom: .5rem;
}
.hero-quote-box > p {
  font-size: .88rem; color: var(--gray-700); margin-bottom: 1.25rem;
}
.btn-block { display: block; width: 100%; text-align: center; margin-bottom: .75rem; }
.hero-quote-box .btn-outline {
  color: var(--primary); border-color: var(--primary);
}
.hero-quote-box .btn-outline:hover {
  background: var(--primary); color: var(--white);
}
.hero-quote-trust {
  display: flex; justify-content: center; gap: 1.25rem; margin-top: .5rem;
  font-size: .8rem; color: var(--gray-600); font-weight: 500;
}
.hero-quote-trust i { color: var(--accent); margin-right: .3rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1rem; }
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
}
.trust-item i { color: var(--accent); font-size: 1.1rem; }

/* Trust Bar — below hero */
.trust-bar { background: var(--primary-dark); padding: 1.5rem 0; }
.trust-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-bar-item {
  display: flex; align-items: center; gap: .75rem; color: var(--white);
}
.trust-bar-item i { font-size: 1.6rem; color: var(--accent); flex-shrink: 0; }
.trust-bar-item strong { display: block; font-size: .95rem; }
.trust-bar-item span { font-size: .8rem; color: rgba(255,255,255,.7); }

/* Why grid — 4 cards like competitor */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.why-card p { font-size: .92rem; color: var(--gray-700); line-height: 1.7; }

/* Small hero for inner pages */
.hero-sm {
  min-height: auto; padding: calc(var(--header-height) + 4.5rem) 0 5.5rem;
  text-align: center;
}
.hero.hero-sm::before {
  background: linear-gradient(155deg, rgba(8,28,14,.9) 0%, rgba(20,70,40,.65) 100%);
}
.hero-sm h1 {
  font-size: clamp(1.875rem, 4.5vw, 3rem); margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero-sm h1::after {
  content: ''; display: block; width: 56px; height: 3px;
  background: var(--accent); border-radius: 2px; margin: .875rem auto 0;
}
.hero-sm p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 650px; margin: 0 auto; }
.hero-sm .hero-content { max-width: 100%; padding: 0; }
.hero-sm .hero-buttons { justify-content: center; }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  padding: 1rem 0; background: var(--gray-100); border-bottom: 1px solid var(--gray-300);
}
.breadcrumb ol {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .88rem; list-style: none; margin: 0; padding: 0;
}
.breadcrumb ol li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb ol li::after { content: '/'; color: var(--gray-400); }
.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb ol li a { color: var(--gray-600); }
.breadcrumb ol li a:hover { color: var(--primary); }
.breadcrumb ol li:last-child span { color: var(--primary); font-weight: 600; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }

.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 3rem; padding: 0 1rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 0; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.05);
  transition: var(--transition); text-align: left;
  border: 1px solid var(--gray-300); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  transform: scaleY(0); transform-origin: top; transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(26,122,58,.14);
  border-color: var(--primary-lighter);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.service-icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--primary-lighter); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h2,
.service-card h3,
.service-card h4 { font-size: 1.1rem; margin-bottom: 0; color: var(--gray-900); }
.service-card p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1.25rem; flex: 1; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--primary); font-weight: 600; font-size: .875rem; margin-top: auto;
}
.service-link:hover { gap: .6rem; color: var(--primary-dark); }
.service-link i { font-size: .8rem; transition: var(--transition); }

/* ==========================================================================
   FEATURES (Why Choose Us) GRID
   ========================================================================== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  text-align: center; transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.feature-icon {
  width: 60px; height: 60px; border-radius: var(--radius-lg);
  background: var(--primary-lighter); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 1rem;
}
.feature-card h3,
.feature-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .92rem; color: var(--gray-600); margin-bottom: 0; }

/* ==========================================================================
   BENEFITS GRID
   ========================================================================== */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.benefit-card {
  background: var(--gray-100); border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--primary);
}
.benefit-card h4 {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; margin-bottom: .5rem; color: var(--gray-900);
}
.benefit-card h4 i { color: var(--primary); }
.benefit-card p { font-size: .92rem; color: var(--gray-600); margin-bottom: 0; }

/* ==========================================================================
   CITIES GRID
   ========================================================================== */
.cities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.city-card {
  display: flex; flex-direction: column; gap: .25rem;
  background: var(--white); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: var(--transition); color: var(--gray-800); text-decoration: none;
}
.city-card:hover {
  border-color: var(--primary); box-shadow: var(--shadow);
  transform: translateY(-4px); color: var(--gray-800);
}
.city-card h3 {
  font-size: 1rem; margin-bottom: 0;
  display: flex; align-items: center; gap: .5rem;
}
.city-card h3 i { color: var(--primary); font-size: .9rem; }
.city-card span { font-size: .82rem; color: var(--gray-600); padding-left: 1.4rem; }

/* ==========================================================================
   TESTIMONIALS GRID
   ========================================================================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; line-height: 1; color: var(--primary-lighter); font-family: Georgia, serif;
}
.testimonial-stars { margin-bottom: 1rem; color: var(--accent); font-size: .9rem; }
.testimonial-stars i { margin-right: 1px; }
.testimonial-card blockquote { margin: 0; }
.testimonial-card blockquote p {
  font-style: italic; color: var(--gray-700); margin-bottom: 1.25rem;
  font-size: .95rem; line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--primary-lighter); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading); font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .95rem; color: var(--gray-900); }
.testimonial-author span { display: block; font-size: .82rem; color: var(--gray-600); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center; position: relative; z-index: 2;
}
.stat-item { padding: 1.5rem; }
.stat-number {
  font-family: var(--font-heading); font-size: 2.75rem; font-weight: 700;
  color: var(--accent); line-height: 1.2;
}
.stat-label { font-size: .95rem; color: rgba(255,255,255,.9); margin-top: .25rem; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 0; position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTENT LAYOUT (sidebar pages)
   ========================================================================== */
.content-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}
.content-main h2 { margin-bottom: 1rem; }
.content-main h3 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--gray-900); }
.content-main h3:first-of-type { margin-top: 1.5rem; }
.content-main ul, .content-main ol { margin-bottom: 1.5rem; }
.content-main ul li,
.content-main ol li {
  padding: .4rem 0; padding-left: 1.5rem; position: relative;
  color: var(--gray-700); font-size: .95rem;
}
.content-main ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); position: absolute; left: 0; top: .85rem;
}
.content-main ol { counter-reset: ol-counter; list-style: none; }
.content-main ol li { counter-increment: ol-counter; }
.content-main ol li::before {
  content: counter(ol-counter) '.'; position: absolute; left: 0; color: var(--primary);
  font-weight: 700; font-family: var(--font-heading);
}

/* Narrow content (privacy, terms) */
.content-narrow { max-width: 800px; margin: 0 auto; }
.content-narrow h2 { margin-top: 2rem; font-size: 1.4rem; }
.content-narrow ul li {
  padding: .4rem 0 .4rem 1.5rem; position: relative; color: var(--gray-700);
}
.content-narrow ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); position: absolute; left: 0; top: .85rem;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.content-sidebar { position: sticky; top: calc(var(--header-height) + 1.5rem); }

.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); margin-bottom: 1.5rem;
}
.sidebar-card h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.sidebar-card p { font-size: .92rem; color: var(--gray-600); margin-bottom: 1rem; }
.sidebar-card .btn-outline { color: var(--primary); border-color: var(--primary); }
.sidebar-card .btn-outline:hover { background: var(--primary); color: var(--white); }

.sidebar-links { list-style: none; margin: 0; padding: 0; }
.sidebar-links li { margin-bottom: .4rem; }
.sidebar-links li a {
  display: flex; align-items: center; gap: .5rem; padding: .5rem .75rem;
  border-radius: var(--radius); color: var(--gray-700); font-size: .9rem;
  transition: var(--transition);
}
.sidebar-links li a:hover { background: var(--primary-lighter); color: var(--primary); }
.sidebar-links li a i { width: 18px; text-align: center; color: var(--primary); font-size: .85rem; }

.quick-facts { list-style: none; margin: 0; padding: 0; }
.quick-facts li {
  display: flex; gap: .5rem; padding: .6rem 0;
  border-bottom: 1px solid var(--gray-200); font-size: .9rem; color: var(--gray-700);
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts li i { color: var(--primary); margin-top: .15rem; width: 18px; text-align: center; }

/* ==========================================================================
   PROCESS LIST
   ========================================================================== */
.process-list {
  list-style: none; margin: 0 0 2.5rem; padding: 0;
  counter-reset: process;
}
.process-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; margin-bottom: .75rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); font-size: .95rem; color: var(--gray-700);
  transition: var(--transition);
}
.process-list li:hover { border-color: var(--primary-lighter); box-shadow: var(--shadow-sm); }
.process-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}

/* Small process list (used in quote sidebar) */
.process-list-sm { list-style: none; margin: 0; padding: 0; }
.process-list-sm li {
  padding: .6rem 0; border-bottom: 1px solid var(--gray-200);
  font-size: .9rem; color: var(--gray-700);
}
.process-list-sm li:last-child { border-bottom: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { margin-bottom: 2rem; }

.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); margin-bottom: .75rem;
  overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer; font-family: var(--font-heading);
  font-weight: 600; font-size: 1rem; color: var(--gray-800);
  background: none; border: none; width: 100%; text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-question i {
  font-size: .85rem; transition: transform .3s ease; color: var(--gray-500);
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem; color: var(--gray-600);
  font-size: .95rem; line-height: 1.7; margin: 0;
}
.faq-item.active .faq-answer { max-height: 500px; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.contact-form { max-width: 100%; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block; font-family: var(--font-heading); font-weight: 500;
  font-size: .9rem; color: var(--gray-800); margin-bottom: .4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .85rem 1rem; font-family: var(--font-body);
  font-size: .95rem; color: var(--gray-800); background: var(--white);
  border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,122,58,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Input error state */
.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
  border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

/* Alert / flash message banners */
.alert {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.4rem; border-radius: var(--radius);
  margin-bottom: 1.75rem; font-size: .93rem; line-height: 1.6;
}
.alert > i { font-size: 1.3rem; margin-top: .1rem; flex-shrink: 0; }
.alert strong { display: block; font-family: var(--font-heading); font-size: 1rem; margin-bottom: .2rem; }
.alert p { margin: 0; }
.alert-list { margin: .35rem 0 0 1.2rem; padding: 0; }
.alert-list li { margin-bottom: .2rem; }

.alert-success {
  background: #f0fdf4; border: 1.5px solid #86efac; color: #166534;
}
.alert-success > i { color: #16a34a; }

.alert-error {
  background: #fef2f2; border: 1.5px solid #fca5a5; color: #991b1b;
}
.alert-error > i { color: #dc2626; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--dark); color: var(--gray-400); padding-top: 4rem; }

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col h3 {
  color: var(--white); font-size: 1rem; margin-bottom: 1.25rem;
  position: relative; padding-bottom: .75rem;
}
.footer-col h3::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--primary);
}

.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo .logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-col p { font-size: .9rem; line-height: 1.7; color: var(--gray-400); }
.footer-col address p { margin-bottom: .5rem; }
.footer-col address a { color: var(--gray-400); }
.footer-col address a:hover { color: var(--white); }
.footer-col address i { color: var(--primary); width: 18px; margin-right: .4rem; }

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: var(--gray-400); font-size: .9rem; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); transform: translateX(3px); display: inline-block; }

.social-links { display: flex; gap: .75rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: var(--white); }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem;
  padding: 1.5rem 0; font-size: .82rem; color: var(--gray-600);
}
.footer-credit { margin: 0; }
.footer-credit a { color: var(--gray-600); text-decoration: underline; }
.footer-credit a:hover { color: var(--accent); }

/* ==========================================================================
   FLOATING CTA & BACK TO TOP
   ========================================================================== */
.floating-cta {
  position: fixed; bottom: 8.5rem; right: 1.5rem; z-index: 97;
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--cta); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: var(--shadow-lg);
  transition: var(--transition); margin-bottom: 0.5rem;
}
.floating-cta:hover {
  background: var(--cta-dark); color: var(--white);
  transform: scale(1.1);
}

.floating-whatsapp {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 97;
  width: 55px; height: 55px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.floating-whatsapp:hover {
  background: #1ebe57; color: var(--white);
  transform: scale(1.1);
}

.back-to-top {
  position: fixed; bottom: 2rem; right: 1.5rem;
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md); cursor: pointer;
  border: none; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: var(--transition); z-index: 99;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.scroll-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Mobile nav toggle visible */
  .nav-toggle { display: flex; }

  /* Mobile nav panel */
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 85vw); height: 100vh; height: 100dvh;
    background: var(--white); box-shadow: -4px 0 25px rgba(0,0,0,.15);
    flex-direction: column; align-items: stretch;
    padding-top: 5rem;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; z-index: 1002; gap: 0;
  }
  .nav-menu.active { right: 0; }

  .nav-menu > li > a {
    color: var(--gray-800); padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200); border-radius: 0;
    padding: 0.5rem 1.5rem;
    font-size: .95rem; font-weight: 600;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-menu > li:first-child > a { border-top: 1px solid var(--gray-200); }
  .nav-menu > li > a:hover { color: var(--primary); background: transparent; }

  /* CTA button in mobile nav */
  .nav-menu > li > a.btn {
    margin-top: 1.5rem; border-radius: var(--radius-full);
    justify-content: center; padding: 1rem 2rem;
    font-weight: 700; font-size: 1rem;
    border-top: none; border-bottom: none;
    background: var(--cta); color: var(--white); border-color: var(--cta);
  }
  .nav-menu > li > a.btn:hover { background: var(--cta-dark); color: var(--white); border-color: var(--cta-dark); }

  /* Mobile dropdown accordion */
  .has-dropdown > a i.fa-chevron-down {
    margin-left: auto; font-size: .65rem;
    transition: transform .3s ease;
    width: 24px; height: 24px; display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: var(--radius-full); background: var(--gray-200);
  }
  .has-dropdown.open > a i.fa-chevron-down {
    transform: rotate(180deg); background: var(--primary-lighter);
    color: var(--primary);
  }
  .has-dropdown > .dropdown {
    position: static; box-shadow: none; opacity: 1; visibility: visible;
    transform: none; display: none;
    padding: .5rem 0; margin: 0 0 .25rem;
    background: var(--gray-100); border-radius: var(--radius);
    max-height: 0; overflow: hidden;
  }
  .has-dropdown.open > .dropdown {
    display: block; max-height: 800px;
  }
  .dropdown li a {
    padding: .6rem 1rem; color: var(--gray-700) !important;
    font-size: .88rem; font-weight: 500; border-radius: var(--radius);
  }
  .dropdown li a:hover {
    background: var(--primary-lighter) !important;
    color: var(--primary) !important;
  }
  .dropdown li a i { width: 20px; text-align: center; color: var(--primary); }

  /* Mobile overlay */
  .nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 999;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
    opacity: 0; transition: opacity .35s ease;
  }
  .nav-overlay.active { display: block; opacity: 1; }

  .hero { min-height: auto; }
  .hero-split { flex-direction: column; padding: 3rem 0 2rem; gap: 2rem; }
  .hero-split .hero-content { max-width: 100%; }
  .hero-quote-box { width: 100%; }
  .hero-content { padding: 3rem 0 2rem; }
  .hero-sm { padding: calc(var(--header-height) + 2.5rem) 0 3rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-trust { gap: 1rem; }

  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .cities-grid { grid-template-columns: 1fr; }
  .floating-cta { bottom: 8rem; right: 1rem; width: 48px; height: 48px; }
  .floating-whatsapp { bottom: 4.5rem; right: 1rem; width: 48px; height: 48px; }
  .back-to-top { right: 1rem; }
}

/* ---------- Print ---------- */
@media print {
  .header, .footer, .back-to-top, .gdpr-float-btn, .floating-cta, .floating-whatsapp, .cta-section, .breadcrumb { display: none; }
  .hero { min-height: auto; background: var(--white); }
  .hero h1, .hero p { color: var(--gray-900); }
  body { font-size: 12pt; }
}

/* ---------- Gallery Section ---------- */
.gallery-section { margin: 2rem 0; }
.gallery-section h3 { margin-bottom: 1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.gallery-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}
.gallery-badge--before {
  background: rgba(0,0,0,0.65);
  color: #fff;
}
.gallery-badge--after {
  background: var(--primary, #1a8a3e);
  color: #fff;
}

/* ---------- Inline CTA ---------- */
.inline-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #146b30));
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 2.5rem 0;
}
.inline-cta h2,
.inline-cta h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.inline-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.inline-cta .hero-buttons {
  justify-content: center;
}
.inline-cta .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.inline-cta .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ---------- Sidebar Card Accent ---------- */
.sidebar-card-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #146b30));
  color: var(--white);
}
.sidebar-card-accent h3 {
  color: var(--white);
}
.sidebar-card-accent p {
  color: rgba(255,255,255,0.9);
}
.sidebar-card-accent .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.sidebar-card-accent .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ---------- Pricing Table ---------- */
.pricing-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin: 1.5rem 0;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-table thead th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}
.pricing-table td strong {
  color: var(--primary);
  font-size: 1.1rem;
}
.pricing-note {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}
.pricing-note i {
  color: var(--primary);
  margin-right: 0.3rem;
}

/* ---------- Hero Price ---------- */
.hero-price {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.9);
}
.hero-price strong {
  color: var(--white);
  font-size: 1.25rem;
}

/* ---------- Sidebar Price ---------- */
.sidebar-price {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: rgba(255,255,255,0.95);
}

/* ---------- Service-page Testimonial Cards ---------- */
.content-main .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.content-main .testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin: 0;
}
.content-main .testimonial-card .stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.content-main .testimonial-card p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.content-main .testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.content-main .testimonial-card .testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-lighter); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading); font-size: 0.9rem;
  flex-shrink: 0;
}
.content-main .testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* ---------- Sidebar Stars ---------- */
.sidebar-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ---------- Reviews Page ---------- */
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-header strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-900);
}
.review-location {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.review-card .stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.review-card p {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .reviews-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-date {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.blog-date i {
  margin-right: 0.3rem;
}
.blog-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.blog-card h2 a {
  color: var(--gray-900);
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: var(--primary);
}
.blog-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}
.blog-read-more {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: 1rem;
}
.blog-read-more:hover {
  color: var(--primary-dark);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Blog article body */
.blog-article h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.blog-article h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
.blog-article p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.blog-article ul,
.blog-article ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.blog-article li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.blog-article-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  display: block;
}
.hero .blog-date {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Gallery responsive ---------- */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .gallery-item img {
    height: 200px;
  }
  .inline-cta {
    padding: 1.5rem;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 1rem;
  }
}

/* ==========================================================================
   ACCESSIBILITY: Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal { opacity: 1; transform: none; }
  .back-to-top { transition: none; }
}

/* ==========================================================================
   GDPR COOKIE CONSENT
   ========================================================================== */
.gdpr-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 99998; opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.gdpr-overlay.active { opacity: 1; visibility: visible; }

.gdpr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: var(--white); box-shadow: 0 -4px 30px rgba(0,0,0,.15);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-height: 90vh; overflow-y: auto;
}
.gdpr-banner.active { transform: translateY(0); }

.gdpr-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 1.5rem;
}

.gdpr-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.gdpr-header h3 {
  font-family: var(--font-heading); font-size: 1.15rem; margin: 0;
  display: flex; align-items: center; gap: .5rem; color: var(--gray-900);
}
.gdpr-header h3 i { color: var(--primary); }

.gdpr-text { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.25rem; }
.gdpr-text a { color: var(--primary); text-decoration: underline; }

.gdpr-categories {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}

.gdpr-category {
  background: var(--gray-100); border-radius: var(--radius); padding: 1rem;
  border: 1px solid var(--gray-200);
}
.gdpr-category-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .4rem;
}
.gdpr-category-header strong {
  font-family: var(--font-heading); font-size: .9rem; color: var(--gray-800);
}
.gdpr-category p {
  font-size: .8rem; color: var(--gray-600); margin: 0; line-height: 1.5;
}

/* Toggle switch */
.gdpr-toggle {
  position: relative; width: 42px; height: 24px; flex-shrink: 0;
}
.gdpr-toggle input { opacity: 0; width: 0; height: 0; }
.gdpr-toggle-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--gray-400); border-radius: var(--radius-full);
  transition: var(--transition);
}
.gdpr-toggle-slider::before {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.gdpr-toggle input:checked + .gdpr-toggle-slider {
  background: var(--primary);
}
.gdpr-toggle input:checked + .gdpr-toggle-slider::before {
  transform: translateX(18px);
}
.gdpr-toggle input:disabled + .gdpr-toggle-slider {
  opacity: .6; cursor: not-allowed;
}
.gdpr-toggle input:focus-visible + .gdpr-toggle-slider {
  outline: 3px solid var(--accent); outline-offset: 2px;
}

.gdpr-buttons {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.gdpr-btn {
  padding: .65rem 1.5rem; font-family: var(--font-heading);
  font-size: .88rem; font-weight: 600; border: 2px solid transparent;
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
  line-height: 1.4;
}
.gdpr-btn-accept {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.gdpr-btn-accept:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.gdpr-btn-reject {
  background: transparent; color: var(--gray-700); border-color: var(--gray-300);
}
.gdpr-btn-reject:hover { border-color: var(--gray-500); color: var(--gray-900); }
.gdpr-btn-save {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.gdpr-btn-save:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.gdpr-btn-settings {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.gdpr-btn-settings:hover { background: var(--primary-lighter); }

/* Compact mode (initial view) */
.gdpr-banner .gdpr-categories { display: none; }
.gdpr-banner.gdpr-expanded .gdpr-categories { display: grid; }
.gdpr-banner.gdpr-expanded .gdpr-btn-settings { display: none; }
.gdpr-banner:not(.gdpr-expanded) .gdpr-btn-save { display: none; }

/* Footer settings link */
.gdpr-settings-link {
  cursor: pointer; background: none; border: none; padding: 0;
  color: var(--gray-400); font-size: .9rem; font-family: var(--font-body);
  transition: var(--transition); text-decoration: underline;
}
.gdpr-settings-link:hover { color: var(--white); }

/* Floating bottom-left GDPR toggle button (mirrors back-to-top) */
.gdpr-float-btn {
  position: fixed; bottom: 2rem; left: 1.5rem;
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md); cursor: pointer;
  border: none; transition: var(--transition); z-index: 99;
}
.gdpr-float-btn:hover { background: var(--primary-dark); transform: translateY(-3px); }
.gdpr-float-btn span { display: none; }

@media (max-width: 768px) {
  .gdpr-inner { padding: 1.25rem; }
  .gdpr-categories { grid-template-columns: 1fr; }
  .gdpr-buttons { flex-direction: column; }
  .gdpr-btn { width: 100%; text-align: center; }
}

/* County town cards */
.county-towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.county-town-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow .2s ease, transform .2s ease;
}
.county-town-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.county-town-card h3 {
  font-size: 1rem;
  margin: 0 0 .5rem;
  color: var(--dark);
}
.county-town-card h3 i {
  color: var(--primary);
  margin-right: .4rem;
}
.county-town-card p {
  font-size: .9rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   CITY PAGES — distinct from county pages
   ===================================================== */

/* Hero variant */
.hero-city {
  background: linear-gradient(155deg, rgba(8,28,14,.92) 0%, rgba(20,70,40,.72) 100%),
              url('../images/hero/hero-pressure-washing.jpg') center/cover no-repeat;
  padding: calc(var(--header-height) + 2.5rem) 0 4rem;
}
.hero-city .breadcrumb-nav { margin-bottom: 1.25rem; text-align: center; }
.hero-city .breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: .35rem .75rem;
  margin: 0 auto;
  font-size: .8rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2rem;
  letter-spacing: .02em;
}
.hero-city .breadcrumbs li { color: rgba(255,255,255,.6); display: flex; align-items: center; }
.hero-city .breadcrumbs li a { color: rgba(255,255,255,.8); text-decoration: none; padding: 0 .35rem; transition: color .2s; }
.hero-city .breadcrumbs li a:hover { color: var(--accent); }
.hero-city .breadcrumbs li + li::before { content: '\203A'; margin: 0 .1rem; color: rgba(255,255,255,.35); font-size: 1rem; line-height: 1; }
.hero-city .breadcrumbs li:last-child span { color: var(--accent); font-weight: 600; padding: 0 .35rem; }
.hero-city .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  max-width: 700px;
  margin: .75rem 0 1.5rem;
  line-height: 1.6;
}
.hero-city .btn-light { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-city .btn-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* City intro section */
.city-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 2rem;
}
.city-intro p { margin-bottom: 1rem; }

/* Keyword service blocks — alternating layout */
.city-service-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  background: var(--gray-50, #f8f9fa);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.city-service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}
.city-service-block--right::before {
  left: auto;
  right: 0;
  background: var(--accent);
}
.city-service-block--right {
  background: var(--white);
  border-color: var(--gray-200);
}
.city-service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.city-service-block--right .city-service-icon {
  background: var(--accent);
}
.city-service-body h2 {
  font-size: 1.35rem;
  margin: 0 0 .75rem;
  color: var(--dark);
}
.city-service-body p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* City features grid — different from county whyChoose */
.city-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}
.city-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.city-feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.city-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #1a5276));
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
.city-feature-card h3 {
  font-size: 1rem;
  margin: 0 0 .4rem;
  color: var(--dark);
}
.city-feature-card p {
  font-size: .85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* City testimonials — horizontal scroll on small screens */
.city-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 1rem;
}
.city-testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
}

/* City sidebar key services */
.city-key-services li a {
  font-weight: 600;
}

/* Dropdown mega enhancements for areas */
.dropdown-areas {
  min-width: 220px;
}
.dropdown-heading {
  padding: .5rem 1rem .25rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  pointer-events: none;
}
.dropdown-divider {
  height: 0;
  margin: .4rem 0;
  border-top: 1px solid var(--gray-200);
}

/* Section title used in city pages */
.section-title {
  font-size: 1.4rem;
  margin: 2rem 0 .5rem;
  color: var(--dark);
}

/* Responsive city pages */
@media (max-width: 768px) {
  .hero-city { padding: calc(var(--header-height) + 1.5rem) 0 2.5rem; }
  .hero-city h1 { font-size: 1.5rem; }
  .hero-city .hero-subtitle { font-size: 1rem; }
  .city-service-block {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
  }
  .city-service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .city-features-grid {
    grid-template-columns: 1fr;
  }
  .city-testimonials {
    grid-template-columns: 1fr;
  }
  .dropdown-heading,
  .dropdown-divider {
    display: list-item;
  }
}
