/*
Theme Name: Solid Stone Paving & Resin
Theme URI: https://solidstonepaving.co.uk
Author: Welch Marketing
Author URI: https://welchmarketing.co.uk
Description: A modern, fast-loading WordPress theme for Solid Stone Paving & Resin — Watford & West London's leading driveway and paving contractors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: solidstone
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --ss-navy: #3D3D3D;
  --ss-navy-dark: #2A2A2A;
  --ss-blue: #4A7AB5;
  --ss-blue-light: #5B8EC9;
  --ss-blue-dark: #3A6699;
  --ss-gold: #4A7AB5;
  --ss-gold-light: #5B8EC9;
  --ss-white: #FFFFFF;
  --ss-off-white: #F5F7FA;
  --ss-light-grey: #E2E6EC;
  --ss-mid-grey: #8C95A6;
  --ss-dark-grey: #555555;
  --ss-text: #3D3D3D;
  --ss-green: #2E7D32;
  --ss-green-light: #4CAF50;
  --ss-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --ss-shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --ss-shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --ss-shadow-xl: 0 12px 60px rgba(0,0,0,0.18);
  --ss-radius: 8px;
  --ss-radius-lg: 16px;
  --ss-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ss-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --ss-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --ss-container: 1240px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ss-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ss-text);
  background: var(--ss-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ss-transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ss-font-heading);
  color: var(--ss-navy);
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.ss-container {
  width: 100%;
  max-width: var(--ss-container);
  margin: 0 auto;
  padding: 0 20px;
}
.ss-section {
  padding: 80px 0;
}
.ss-section--grey { background: var(--ss-off-white); }
.ss-section--navy { background: var(--ss-navy); color: var(--ss-white); }
.ss-section--navy h2, .ss-section--navy h3 { color: var(--ss-white); }
.ss-section--navy p { color: rgba(255,255,255,0.85); }

.ss-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.ss-section-header h2 { margin-bottom: 16px; }
.ss-section-header p { color: var(--ss-dark-grey); font-size: 1.05rem; }
.ss-section-header .ss-accent-line {
  width: 60px;
  height: 4px;
  background: var(--ss-blue);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Fade-in on scroll animation */
.ss-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ss-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */
.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--ss-radius);
  font-family: var(--ss-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--ss-transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}
.ss-btn--primary {
  background: var(--ss-blue);
  color: var(--ss-white);
  border-color: var(--ss-blue);
}
.ss-btn--primary:hover {
  background: var(--ss-blue-light);
  border-color: var(--ss-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74,122,181,0.4);
}
.ss-btn--secondary {
  background: var(--ss-navy);
  color: var(--ss-white);
  border-color: var(--ss-navy);
}
.ss-btn--secondary:hover {
  background: var(--ss-blue);
  border-color: var(--ss-blue);
  transform: translateY(-2px);
}.ss-btn--outline {
  background: transparent;
  color: var(--ss-white);
  border-color: var(--ss-white);
}
.ss-btn--outline:hover {
  background: var(--ss-white);
  color: var(--ss-navy);
}
.ss-btn--outline-dark {
  background: transparent;
  color: var(--ss-navy);
  border-color: var(--ss-navy);
}
.ss-btn--outline-dark:hover {
  background: var(--ss-navy);
  color: var(--ss-white);
}
.ss-btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.ss-btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.ss-btn svg { width: 18px; height: 18px; }

.ss-btn--phone {
  background: var(--ss-green);
  color: var(--ss-white);
  border-color: var(--ss-green);
}
.ss-btn--phone:hover {
  background: var(--ss-green-light);
  border-color: var(--ss-green-light);
}

/* ========================================
   TOP BAR
   ======================================== */
.ss-topbar {
  background: var(--ss-navy-dark);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.ss-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ss-topbar__phones {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ss-topbar__phones a {
  color: var(--ss-white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ss-topbar__phones a:hover { color: var(--ss-blue); }
.ss-topbar__phones svg { width: 14px; height: 14px; }
.ss-topbar__cta { color: var(--ss-blue); font-weight: 600; }

/* ========================================
   HEADER / NAV
   ======================================== */
.ss-header {
  background: var(--ss-white);
  box-shadow: var(--ss-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--ss-transition);
}
.ss-header.scrolled {
  box-shadow: var(--ss-shadow-md);
}
.ss-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  max-width: var(--ss-container);
  margin: 0 auto;
}
.ss-header__logo img {
  height: 65px !important;
  width: auto !important;
  max-width: none;
  max-height: none;
}
.ss-nav { display: flex; align-items: center; gap: 4px; }
.ss-nav a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ss-navy);
  border-radius: var(--ss-radius);
  position: relative;
}
.ss-nav a:hover, .ss-nav a.current {
  color: var(--ss-blue-light);
  background: rgba(44,74,124,0.06);
}
.ss-nav__dropdown { position: relative; }
.ss-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.ss-nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: var(--ss-transition);
}
.ss-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ss-white);
  min-width: 220px;
  box-shadow: var(--ss-shadow-lg);
  border-radius: var(--ss-radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--ss-transition);
  z-index: 100;
}
.ss-nav__dropdown:hover .ss-nav__dropdown-menu,
.ss-nav__dropdown.is-open .ss-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ss-nav__dropdown:hover .ss-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}
.ss-nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
}
.ss-nav__dropdown-menu a:hover {
  background: var(--ss-off-white);
}
.ss-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ss-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ss-navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.ss-header__phone svg { width: 18px; height: 18px; color: var(--ss-green); }
.ss-header__phone:hover { color: var(--ss-green); }

/* Hamburger */
.ss-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.ss-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--ss-navy);
  border-radius: 2px;
  transition: var(--ss-transition);
}
.ss-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ss-hamburger.is-active span:nth-child(2) { opacity: 0; }
.ss-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav */
.ss-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--ss-white);
  box-shadow: var(--ss-shadow-xl);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.ss-mobile-nav.is-open { right: 0; }
.ss-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ss-navy);
  border-bottom: 1px solid var(--ss-light-grey);
}
.ss-mobile-nav a:hover { color: var(--ss-blue-light); padding-left: 8px; }
.ss-mobile-nav__sub a {
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--ss-dark-grey);
}
.ss-mobile-nav__phones {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16px;
  border-top: 2px solid var(--ss-light-grey);
}
.ss-mobile-nav__phones a {
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ss-blue);
  padding: 12px 0;
  font-size: 0.9rem;
}
.ss-mobile-nav__phones a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ss-blue);
}
.ss-mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(15,29,51,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ss-mobile-overlay.is-visible { opacity: 1; }

/* ========================================
   HERO SECTION
   ======================================== */
.ss-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ss-navy-dark);
}
.ss-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ss-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,51,0.88) 0%, rgba(27,46,74,0.7) 60%, rgba(44,74,124,0.5) 100%);
  z-index: 2;
}
.ss-hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--ss-container);
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ss-hero__text h1 {
  color: var(--ss-white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
.ss-hero__text h1 span { color: var(--ss-blue-light); }
.ss-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}
.ss-hero__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.ss-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ss-white);
  font-size: 0.95rem;
  font-weight: 500;
}
.ss-hero__badge svg {
  width: 20px;
  height: 20px;
  color: var(--ss-blue);
  flex-shrink: 0;
}
.ss-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Quote Form */
.ss-hero__form-card {
  background: var(--ss-white);
  border-radius: var(--ss-radius-lg);
  padding: 36px;
  box-shadow: var(--ss-shadow-xl);
}
.ss-hero__form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.ss-hero__form-card .ss-form-subtitle {
  color: var(--ss-dark-grey);
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.ss-quote-form { display: flex; flex-direction: column; gap: 12px; }
.ss-quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ss-quote-form input,
.ss-quote-form select,
.ss-quote-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ss-light-grey);
  border-radius: var(--ss-radius);
  font-family: var(--ss-font-body);
  font-size: 0.9rem;
  color: var(--ss-text);
  transition: var(--ss-transition);
  background: var(--ss-white);
}
.ss-quote-form input:focus,
.ss-quote-form select:focus,
.ss-quote-form textarea:focus {
  outline: none;
  border-color: var(--ss-blue);
  box-shadow: 0 0 0 3px rgba(44,74,124,0.1);
}
.ss-quote-form textarea { min-height: 80px; resize: vertical; }
.ss-quote-form .ss-btn { width: 100%; justify-content: center; }

/* ========================================
   TRUST BAR
   ======================================== */
.ss-trust-bar {
  background: var(--ss-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--ss-light-grey);
}
.ss-trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ss-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ss-navy);
}
.ss-trust-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--ss-blue);
}

/* ========================================
   SERVICES GRID
   ======================================== */
.ss-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.ss-service-card {
  background: var(--ss-white);
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  box-shadow: var(--ss-shadow-sm);
  transition: var(--ss-transition);
  border: 1px solid var(--ss-light-grey);
}
.ss-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ss-shadow-lg);
  border-color: var(--ss-blue);
}
.ss-service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.ss-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ss-service-card:hover .ss-service-card__img img {
  transform: scale(1.05);
}
.ss-service-card__body {
  padding: 28px;
}
.ss-service-card__body h3 { margin-bottom: 10px; }
.ss-service-card__body p {
  color: var(--ss-dark-grey);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.ss-service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.ss-service-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--ss-off-white);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--ss-dark-grey);
  font-weight: 500;
}
.ss-service-card__feature svg { width: 12px; height: 12px; color: var(--ss-green); }
.ss-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ss-blue);
  font-weight: 600;
  font-size: 0.9rem;
}
.ss-service-card__link:hover { gap: 10px; color: var(--ss-blue); }
.ss-service-card__link svg { width: 16px; height: 16px; }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.ss-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.ss-why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--ss-radius-lg);
  background: var(--ss-white);
  box-shadow: var(--ss-shadow-sm);
  border: 1px solid var(--ss-light-grey);
  transition: var(--ss-transition);
}
.ss-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ss-shadow-md);
  border-color: var(--ss-blue);
}
.ss-why-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ss-navy) 0%, var(--ss-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ss-why-card__icon svg { width: 30px; height: 30px; color: var(--ss-white); }
.ss-why-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.ss-why-card p { color: var(--ss-dark-grey); font-size: 0.9rem; }

/* ========================================
   GALLERY / PROJECTS
   ======================================== */
.ss-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.ss-gallery-item {
  position: relative;
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.ss-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ss-gallery-item:hover img { transform: scale(1.08); }
.ss-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,29,51,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--ss-transition);
}
.ss-gallery-item:hover .ss-gallery-item__overlay { opacity: 1; }
.ss-gallery-item__overlay span {
  color: var(--ss-white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Before / After */
.ss-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.ss-before-after__side {
  position: relative;
  aspect-ratio: 4/3;
}
.ss-before-after__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-before-after__label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ss-navy);
  color: var(--ss-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   PARTNERS / ACCREDITATIONS
   ======================================== */
.ss-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ss-partners img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--ss-transition);
}
.ss-partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   AREAS WE COVER
   ======================================== */
.ss-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.ss-area-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  background: var(--ss-white);
  border: 1px solid var(--ss-light-grey);
  border-radius: var(--ss-radius);
  font-weight: 500;
  color: var(--ss-navy);
  transition: var(--ss-transition);
}
.ss-area-link svg { width: 16px; height: 16px; color: var(--ss-blue); flex-shrink: 0; }
.ss-area-link:hover {
  background: var(--ss-navy);
  color: var(--ss-white);
  border-color: var(--ss-navy);
  transform: translateX(4px);
}
.ss-area-link:hover svg { color: var(--ss-blue); }

/* ========================================
   CTA BANNER
   ======================================== */
.ss-cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.ss-cta-banner__bg {
  position: absolute;
  inset: 0;
}
.ss-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,51,0.92) 0%, rgba(44,74,124,0.85) 100%);
}
.ss-cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.ss-cta-banner__content h2 {
  color: var(--ss-white);
  margin-bottom: 16px;
}
.ss-cta-banner__content p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.ss-cta-banner__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.ss-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.ss-testimonial-card {
  background: var(--ss-white);
  padding: 32px;
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-sm);
  border: 1px solid var(--ss-light-grey);
  transition: var(--ss-transition);
}
.ss-testimonial-card:hover {
  box-shadow: var(--ss-shadow-md);
}
.ss-testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.ss-testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--ss-blue);
}
.ss-testimonial-card__text {
  font-style: italic;
  color: var(--ss-dark-grey);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.ss-testimonial-card__author {
  font-weight: 700;
  color: var(--ss-navy);
  font-size: 0.9rem;
}

/* ========================================
   QUOTE FORM (Standalone)
   ======================================== */
.ss-quote-section { background: var(--ss-off-white); }
.ss-quote-section .ss-quote-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--ss-white);
  padding: 40px;
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-md);
}

/* ========================================
   FOOTER
   ======================================== */
.ss-footer {
  background: var(--ss-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.ss-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.ss-footer__brand img {
  height: 45px !important;
  width: auto !important;
  max-width: none;
  margin-bottom: 16px;
}
.ss-footer__brand p { font-size: 0.9rem; margin-bottom: 20px; }
.ss-footer__social {
  display: flex;
  gap: 12px;
}
.ss-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ss-transition);
}
.ss-footer__social a:hover {
  background: var(--ss-blue);
  color: var(--ss-navy-dark);
}
.ss-footer__social svg { width: 18px; height: 18px; }
.ss-footer h4 {
  color: var(--ss-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: var(--ss-font-body);
  font-weight: 700;
}
.ss-footer ul li { margin-bottom: 10px; }
.ss-footer ul a { font-size: 0.9rem; }
.ss-footer ul a:hover { color: var(--ss-blue); padding-left: 4px; }
.ss-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.ss-footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--ss-blue);
  flex-shrink: 0;
  margin-top: 3px;
}
.ss-footer__contact-item a:hover { color: var(--ss-blue); }
.ss-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.ss-footer__bottom a:hover { color: var(--ss-blue); }

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.ss-page-hero {
  position: relative;
  padding: 100px 0 60px;
  background: var(--ss-navy-dark);
  overflow: hidden;
}
.ss-page-hero__bg {
  position: absolute;
  inset: 0;
}
.ss-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.ss-page-hero__content {
  position: relative;
  z-index: 2;
}
.ss-page-hero__content h1 {
  color: var(--ss-white);
  margin-bottom: 12px;
}
.ss-page-hero__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
}
.ss-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.ss-breadcrumbs a { color: var(--ss-blue); }
.ss-breadcrumbs span { color: rgba(255,255,255,0.5); }

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.ss-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ss-content-grid--reverse { direction: rtl; }
.ss-content-grid--reverse > * { direction: ltr; }
.ss-content-img {
  border-radius: var(--ss-radius-lg);
  overflow: hidden;
  box-shadow: var(--ss-shadow-md);
}
.ss-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-content-text h2 { margin-bottom: 16px; }
.ss-content-text p { color: var(--ss-dark-grey); margin-bottom: 12px; }
.ss-content-text .ss-check-list { margin: 20px 0; }
.ss-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.ss-check-list svg { width: 18px; height: 18px; color: var(--ss-green); flex-shrink: 0; margin-top: 3px; }

/* About page */
.ss-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.ss-stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--ss-white);
  border-radius: var(--ss-radius-lg);
  box-shadow: var(--ss-shadow-sm);
}
.ss-stat-card__number {
  font-family: var(--ss-font-heading);
  font-size: 2.4rem;
  color: var(--ss-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.ss-stat-card__label {
  color: var(--ss-dark-grey);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Contact page */
.ss-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.ss-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--ss-off-white);
  border-radius: var(--ss-radius);
  margin-bottom: 16px;
}
.ss-contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ss-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ss-contact-info-card__icon svg { width: 20px; height: 20px; color: var(--ss-blue); }
.ss-contact-info-card h4 {
  font-family: var(--ss-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ss-navy);
}
.ss-contact-info-card p, .ss-contact-info-card a {
  font-size: 0.9rem;
  color: var(--ss-dark-grey);
}
.ss-contact-info-card a:hover { color: var(--ss-blue); }

/* ========================================
   LOCATION PAGE SPECIFICS
   ======================================== */
.ss-location-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.ss-location-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--ss-white);
  border-radius: var(--ss-radius);
  border: 1px solid var(--ss-light-grey);
  font-weight: 500;
  transition: var(--ss-transition);
}
.ss-location-service-item:hover {
  border-color: var(--ss-blue);
  box-shadow: var(--ss-shadow-sm);
}
.ss-location-service-item svg { width: 24px; height: 24px; color: var(--ss-blue); }

/* Schema / FAQ */
.ss-faq-list { max-width: 800px; margin: 0 auto; }
.ss-faq-item {
  border: 1px solid var(--ss-light-grey);
  border-radius: var(--ss-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--ss-white);
}
.ss-faq-item__q {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--ss-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--ss-transition);
}
.ss-faq-item__q:hover { background: var(--ss-off-white); }
.ss-faq-item__q svg {
  width: 20px;
  height: 20px;
  color: var(--ss-mid-grey);
  transition: var(--ss-transition);
  flex-shrink: 0;
}
.ss-faq-item.is-open .ss-faq-item__q svg { transform: rotate(180deg); }
.ss-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ss-faq-item.is-open .ss-faq-item__a { max-height: 500px; }
.ss-faq-item__a-inner {
  padding: 0 24px 20px;
  color: var(--ss-dark-grey);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .ss-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 20px;
  }
  .ss-content-grid { grid-template-columns: 1fr; gap: 30px; }
  .ss-content-grid--reverse { direction: ltr; }
  .ss-footer__grid { grid-template-columns: 1fr 1fr; }
  .ss-contact-grid { grid-template-columns: 1fr; }
  .ss-about-stats { grid-template-columns: repeat(2, 1fr); }
  .ss-header__logo img { height: 55px !important; }
}

@media (max-width: 768px) {
  /* Header */
  .ss-nav, .ss-header__cta .ss-btn, .ss-header__phone { display: none; }
  .ss-hamburger { display: flex; }
  .ss-header__logo img { height: 45px !important; }
  .ss-header__inner { padding: 8px 16px; }

  /* Top bar — only show first landline on mobile */
  .ss-topbar__phones a:nth-child(2),
  .ss-topbar__phones a:nth-child(3) { display: none; }
  .ss-topbar__phones { gap: 0; }
  .ss-topbar__inner { justify-content: space-between; }
  .ss-topbar { padding: 6px 0; font-size: 0.8rem; }

  /* Mobile Nav */
  .ss-mobile-nav { display: block; }
  .ss-mobile-nav a {
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 500;
  }
  .ss-mobile-nav__sub { padding-left: 0; }
  .ss-mobile-nav__sub a {
    padding: 12px 0 12px 20px;
    font-size: 0.9rem;
    color: var(--ss-dark-grey);
    border-bottom: 1px solid var(--ss-light-grey);
  }
  .ss-mobile-nav__phones {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid var(--ss-light-grey);
  }
  .ss-mobile-nav__phones a {
    border-bottom: none;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ss-blue);
  }
  .ss-mobile-nav__phones a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Sections */
  .ss-section { padding: 50px 0; }
  .ss-hero { min-height: auto; }
  .ss-hero__content { padding: 50px 16px; }
  .ss-hero__text h1 { font-size: 1.8rem; }
  .ss-hero__form-card { padding: 24px 20px; }
  .ss-quote-form__row { grid-template-columns: 1fr; }
  .ss-services-grid { grid-template-columns: 1fr; }
  .ss-gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ss-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .ss-footer__bottom { flex-direction: column; text-align: center; }
  .ss-trust-bar__inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .ss-trust-bar__item { font-size: 0.78rem; gap: 6px; }
  .ss-trust-bar__item svg { width: 16px; height: 16px; }
  .ss-areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ss-area-link { padding: 14px 16px; font-size: 0.85rem; }
  .ss-before-after { grid-template-columns: 1fr; }
  .ss-testimonials-grid { grid-template-columns: 1fr; }
  .ss-cta-banner { padding: 50px 0; }
  .ss-cta-banner__content h2 { font-size: 1.5rem; }
  .ss-partners { gap: 20px; }
  .ss-partners img { height: 36px; }
  .ss-section-header { margin-bottom: 30px; }
  .ss-section-header h2 { font-size: 1.4rem; }
  .ss-page-hero { padding: 70px 0 40px; }
  .ss-page-hero__content h1 { font-size: 1.6rem; }
  .ss-why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ss-why-card { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .ss-header__logo img { height: 40px !important; }
  .ss-hero__text h1 { font-size: 1.5rem; }
  .ss-hero__btns { flex-direction: column; }
  .ss-hero__btns .ss-btn { width: 100%; justify-content: center; }
  .ss-hero__badges { gap: 6px; }
  .ss-hero__badge { font-size: 0.82rem; }
  .ss-hero__badge svg { width: 16px; height: 16px; }
  .ss-areas-grid { grid-template-columns: 1fr; }
  .ss-about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ss-stat-card { padding: 20px 12px; }
  .ss-gallery-grid { grid-template-columns: 1fr; }
  .ss-why-grid { grid-template-columns: 1fr; }
  .ss-service-card__body { padding: 20px; }
  .ss-topbar__cta { display: none; }
}

/* ========================================
   STICKY MOBILE CTA BAR
   ======================================== */
.ss-sticky-cta {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--ss-white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  padding: 10px 12px;
  gap: 10px;
}
.ss-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--ss-radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0.3px;
}
.ss-sticky-cta__call {
  background: var(--ss-green);
  color: var(--ss-white) !important;
}
.ss-sticky-cta svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px;
  max-height: 16px;
  flex-shrink: 0;
}
.ss-sticky-cta__quote {
  background: var(--ss-blue);
  color: var(--ss-white) !important;
}

@media (max-width: 768px) {
  .ss-sticky-cta { display: flex !important; }
  body { padding-bottom: 76px; }
}

/* Print */
@media print {
  .ss-header, .ss-topbar, .ss-mobile-nav, .ss-mobile-overlay,
  .ss-cta-banner, .ss-footer { display: none; }
}
