/*
Theme Name: Cornwall Movers
Theme URI: https://cornwallmovers.co.uk
Author: Cornwall Movers
Author URI: https://cornwallmovers.co.uk
Description: Custom Elementor-compatible theme for Cornwall Movers — Cornwall's trusted moving company. Features scroll animations, responsive design, and full Elementor Pro integration.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
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: cornwall-movers
Tags: custom-logo, custom-menu, elementor, moving-company, responsive

Cornwall Movers WordPress Theme
Designed and built from Figma designs.
*/

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  /* Primary - Teal/Cyan palette */
  --primary-100: #c1eaef;
  --primary-200: #92d1e0;
  --primary-300: #5cc0d0;
  --primary-400: #34a2b4;
  --primary-500: #24727e;
  --primary-600: #5cc0d0;
  --primary-gradient: linear-gradient(135deg, #34a2b4 0%, #5cc0d0 50%, #92d1e0 100%);
  --primary-hero-gradient: linear-gradient(135deg, #1a6b7a 0%, #34a2b4 40%, #5cc0d0 100%);

  /* Secondary - Blue palette */
  --secondary-100: #b0a8c6;
  --secondary-200: #8597c2;
  --secondary-300: #3b85b6;
  --secondary-400: #233b60;
  --secondary-500: #01729;

  /* Neutral palette */
  --neutral-50: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-200: #e8e8e8;
  --neutral-300: #d2d2d2;
  --neutral-400: #b0b0b0;
  --neutral-500: #9a9a9a;
  --neutral-600: #8e8e8e;
  --neutral-700: #777777;
  --neutral-800: #606060;
  --neutral-900: #4a4a4a;
  --neutral-1000: #333333;
  --neutral-1100: #1a1a2e;

  /* Feedback */
  --red-100: #fb3748;
  --red-200: #d00416;
  --yellow-100: #f0b043;
  --yellow-200: #dfb450;
  --green-100: #84ebb4;
  --green-200: #10c16b;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Roboto', sans-serif;

  /* Heading sizes */
  --h1-size: 60px;
  --h1-line: 60px;
  --h2-size: 36px;
  --h2-line: 45px;
  --h3-size: 24px;
  --h3-line: 32px;
  --h4-size: 20px;
  --h4-line: 28px;
  --body-size: 16px;
  --body-line: 26px;
  --small-size: 14px;
  --small-line: 22px;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Dark background (header/footer) */
  --dark-bg: #1a1a2e;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--neutral-1000);
  background: var(--neutral-50);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--neutral-1100);
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line);
}

h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line);
}

h4 {
  font-size: var(--h4-size);
  line-height: var(--h4-line);
}

p {
  margin-bottom: 1em;
  color: var(--neutral-700);
}

.section-label {
  font-family: var(--font-heading);
  font-size: var(--small-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-400);
  margin-bottom: 8px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--gray {
  background-color: var(--neutral-100);
}

.section--dark {
  background-color: var(--dark-bg);
  color: var(--neutral-50);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--neutral-50);
}

.section--dark p {
  color: var(--neutral-300);
}

.text-center {
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

.btn--primary {
  background: linear-gradient(135deg, #34a2b4 0%, #5cc0d0 100%);
  color: var(--neutral-50);
  box-shadow: 0 2px 8px rgba(52, 162, 180, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 162, 180, 0.35);
}

.btn--outline {
  background: var(--neutral-50);
  color: var(--neutral-1100);
  box-shadow: inset 0 0 0 2px var(--neutral-50);
}

.btn--outline:hover {
  background: transparent;
  color: var(--neutral-50);
}

.btn--outline-dark {
  background: transparent;
  color: var(--neutral-1100);
  box-shadow: inset 0 0 0 2px var(--neutral-1100);
}

.btn--outline-dark:hover {
  background: var(--neutral-1100);
  color: var(--neutral-50);
}

.btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--neutral-50);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px 24px;
}

.site-logo img,
.site-logo .custom-logo,
.site-logo .custom-logo-link img {
  height: 40px !important;
  width: auto !important;
  max-height: 40px !important;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-900);
  transition: color var(--transition-fast);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-400);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-400);
  transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--neutral-1000);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--primary-400);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-1000);
  margin: 5px 0;
  transition: all var(--transition-base);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero--home {
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--neutral-50);
}

.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(26, 107, 122, 0.5));
  z-index: 1;
}

.hero--home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero--home .container {
  position: relative;
  z-index: 2;
}

.hero--page {
  background: var(--primary-hero-gradient);
  padding: 130px 0 60px;
  color: var(--neutral-50);
}

.hero--page h1 {
  color: var(--neutral-50);
  font-size: 42px;
  margin-bottom: 12px;
}

.hero--page p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-badge svg {
  color: #fbbf24;
}

.hero h1 {
  color: var(--neutral-50);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--neutral-50);
}

.testimonial-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: var(--primary-400);
  color: var(--neutral-50);
  border-color: var(--primary-400);
}

.testimonial-card--featured p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-500);
}

.testimonial-card--featured .testimonial-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: var(--neutral-50);
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-date {
  font-size: 13px;
  color: var(--neutral-500);
}

.testimonial-card--featured .testimonial-date {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonials-source {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--neutral-500);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  padding: 60px 0;
  background: var(--neutral-50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  color: var(--primary-400);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: var(--neutral-600);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--neutral-100);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  text-align: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-400);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--neutral-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--neutral-600);
  max-width: 260px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-200);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-400);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--neutral-600);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-400);
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   QUOTE FORM SECTIONS
   ============================================ */
.quote-section {
  padding: var(--section-padding);
  background: var(--neutral-50);
}

.quote-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.quote-hero {
  background: var(--primary-hero-gradient);
  padding: 130px 0 60px;
  color: var(--neutral-50);
}

.quote-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-hero-content h1 {
  color: var(--neutral-50);
  font-size: 42px;
  margin-bottom: 16px;
}

.quote-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.quote-hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-hero-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.quote-hero-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary-100);
  flex-shrink: 0;
}

.quote-hero-form {
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.quote-hero-form h3 {
  margin-bottom: 4px;
}

.quote-hero-form .form-subtitle {
  color: var(--neutral-600);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Form elements */
.form-group {
  margin-bottom: 16px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--neutral-900);
}

.form-label .required {
  color: var(--red-100);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--neutral-1000);
  background: var(--neutral-50);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(52, 162, 180, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--neutral-400);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--neutral-500);
  margin-top: 12px;
}

/* Icon inputs */
.input-with-icon {
  position: relative;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--neutral-400);
}

.input-with-icon .form-input {
  padding-left: 42px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary-hero-gradient);
  padding: 60px 0;
  text-align: center;
  color: var(--neutral-50);
}

.cta-banner h2 {
  color: var(--neutral-50);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   WHY CHOOSE US / FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary-400);
}

.feature-card h4 {
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* ============================================
   PROMISES / CHECKLIST
   ============================================ */
.promises-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  max-width: 600px;
  margin: 32px auto 0;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--neutral-900);
}

.promise-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-400);
  flex-shrink: 0;
}

/* ============================================
   LOCATIONS PAGE
   ============================================ */
.location-search {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 480px;
  margin: -30px auto 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
}

.location-search label {
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  width: 18px;
  height: 18px;
}

.search-input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 15px;
}

.map-section {
  padding: 48px 0;
  text-align: center;
}

.map-container {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.featured-locations {
  padding: var(--section-padding);
}

.locations-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.location-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.location-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.location-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-400);
}

.location-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.location-card p {
  font-size: 14px;
  color: var(--neutral-600);
  margin-bottom: 12px;
}

.all-locations {
  padding: var(--section-padding);
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.region h3 {
  font-size: 18px;
  color: var(--primary-400);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-200);
  margin-bottom: 16px;
}

.region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.region-list a {
  font-size: 15px;
  color: var(--neutral-700);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.region-list a:hover {
  color: var(--primary-400);
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.review-score {
  text-align: center;
}

.review-score .score-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--neutral-1100);
}

.review-score .score-total {
  font-size: 20px;
  color: var(--neutral-500);
}

.review-score .score-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 8px 0;
}

.review-score .score-stars svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-400);
}

.review-score .score-count {
  font-size: 14px;
  color: var(--primary-400);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  gap: 12px;
  align-items: center;
}

.rating-bar-row .star-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--neutral-600);
}

.rating-bar-row .star-label svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
}

.rating-bar {
  height: 10px;
  background: var(--neutral-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.rating-percent {
  font-size: 14px;
  color: var(--neutral-600);
  text-align: right;
}

.featured-reviews {
  padding: var(--section-padding);
  background: var(--neutral-100);
}

.reviews-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--neutral-200);
  background: var(--neutral-50);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--primary-400);
  color: var(--neutral-50);
  border-color: var(--primary-400);
}

.review-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-card-stars {
  display: flex;
  gap: 2px;
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-400);
}

.review-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-100);
  color: var(--primary-500);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.review-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 20px;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card-author {
  font-weight: 700;
  font-size: 14px;
}

.review-card-date {
  font-size: 13px;
  color: var(--neutral-500);
}

.load-more-btn {
  display: block;
  margin: 40px auto 0;
  padding: 12px 32px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.load-more-btn:hover {
  border-color: var(--primary-400);
  color: var(--primary-400);
}

/* ============================================
   LOCATION DETAIL PAGE
   ============================================ */
.location-detail-intro {
  padding: var(--section-padding);
}

.location-detail-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: var(--section-padding);
  background: var(--neutral-100);
}

.intro-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.intro-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-400);
}

.intro-feature h4 {
  font-size: 16px;
}

.intro-feature p {
  font-size: 13px;
  color: var(--neutral-600);
}

/* FAQ Accordion */
.faq-section {
  padding: var(--section-padding);
  background: var(--neutral-100);
}

.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--neutral-100);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary-400);
  text-decoration: underline;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  text-align: center;
  padding: 32px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-400);
}

.contact-card h4 {
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--primary-400);
  font-weight: 600;
}

.contact-card .contact-detail {
  font-size: 14px;
  color: var(--neutral-500);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-bg);
  color: var(--neutral-300);
  padding: 60px 0 0;
}

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

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand .site-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  color: var(--neutral-400);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--neutral-50);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-300);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-300);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--neutral-300);
}

.footer-contact-item a:hover {
  color: var(--primary-300);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-400);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--neutral-50);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--neutral-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--neutral-500);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--neutral-300);
}

/* ============================================
   BLOCK EDITOR CONTENT
   ============================================ */
.cm-page-content {
  width: 100%;
}

.cm-page-content .entry-content {
  width: 100%;
}

.cm-page-content .entry-content > *:first-child {
  margin-top: 0;
}

/* Ensure full-width HTML blocks render correctly */
.cm-page-content .entry-content .wp-block-html {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================
   AOS ANIMATION OVERRIDES
   ============================================ */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --h1-size: 42px;
    --h1-line: 48px;
    --h2-size: 30px;
    --h2-line: 38px;
    --section-padding: 60px 0;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .locations-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-size: 32px;
    --h1-line: 38px;
    --h2-size: 26px;
    --h2-line: 34px;
    --section-padding: 48px 0;
    --container-padding: 0 16px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--neutral-50);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .hero--home {
    min-height: 420px;
    padding: 120px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid,
  .features-grid,
  .testimonials-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-cards {
    grid-template-columns: 1fr;
  }

  .regions-grid {
    grid-template-columns: 1fr;
  }

  .review-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promises-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .location-detail-intro .container {
    grid-template-columns: 1fr;
  }

  .intro-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --h1-size: 28px;
    --h1-line: 34px;
  }

  .stat-number {
    font-size: 36px;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }
}
