/* ============================================
   MOUNTAIN WEST SURFACE - Complete Stylesheet
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Primary Colors */
  --primary: #1a1a2e;
  --primary-light: #2d2d44;
  --accent: #e94560;
  --accent-hover: #ff6b6b;
  --secondary: #0f3460;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #0d0d0d;

  /* Functional */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1200px;
  --container-padding: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(233, 69, 96, 0.3);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--gray-700);
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 20px 45px;
  font-size: 1rem;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a4e;
  letter-spacing: -0.02em;
}

.logo-text .sub {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a1a4e;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

/* Responsive logo sizing */
@media (min-width: 768px) {
  .logo-text .main {
    font-size: 1.8rem;
  }

  .logo-text .sub {
    font-size: 0.8rem;
  }
}

/* Footer logo - white version */
.footer .logo-text .main,
.footer .logo-text .sub {
  color: white;
}

/* Legacy image logo support */
.logo-img {
  height: 140px;
  width: auto;
}

@media (min-width: 768px) {
  .logo-img {
    height: 180px;
  }
}

.footer .logo-img {
  height: 200px;
}

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

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray-700);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

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

.nav-cta {
  padding: 12px 24px;
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-fast);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.95) 0%,
    rgba(15, 52, 96, 0.85) 50%,
    rgba(26, 26, 46, 0.9) 100%
  );
  z-index: 1;
}

/* Background image - replace with your image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  animation: fadeUp 1s ease-out forwards;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--white), var(--accent), var(--white));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating decoration */
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: var(--accent);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(15px); opacity: 0.5; }
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
  padding: 160px 20px 80px;
  background: var(--primary);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 52, 96, 0.9));
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
}

.section-light {
  background: var(--off-white);
}

.section-dark {
  background: var(--primary);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--off-white);
  padding: 60px 20px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.stat {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-stars {
  color: var(--warning);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-top: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  transition: all var(--transition-smooth);
}

.badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

.badge svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

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

.service-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
  pointer-events: none;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  margin-bottom: 10px;
}

.service-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

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

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

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--off-white);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--warning);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-top: 40px;
  transition: all var(--transition-smooth);
}

.google-reviews-link:hover {
  border-color: #4285F4;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--primary);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.3), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---------- QUOTE CALCULATOR ---------- */
.calculator-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 40px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.calculator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 24px 24px 0 0;
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator-header h2 {
  margin-bottom: 10px;
}

.calculator-step {
  margin-bottom: 35px;
}

.calculator-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-option {
  cursor: pointer;
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all var(--transition-smooth);
  text-align: center;
}

.service-option-card:hover {
  background: var(--white);
  border-color: var(--gray-300);
}

.service-option input:checked + .service-option-card {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.service-option-card svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-option-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.service-option-price {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.input-field {
  width: 100%;
  padding: 18px 80px 18px 20px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--off-white);
  transition: all var(--transition-fast);
  -moz-appearance: textfield;
}

.input-field::-webkit-outer-spin-button,
.input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-field:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.input-suffix {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--gray-600);
}

.presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preset-btn {
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-btn:hover {
  background: var(--gray-200);
}

.select-field {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--off-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%236c757d' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.select-field:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--white);
}

.calculate-btn {
  width: 100%;
  padding: 20px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
}

.calculator-results {
  display: none;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-200);
  text-align: center;
  animation: fadeUp 0.5s ease forwards;
}

.calculator-results.visible {
  display: block;
}

.estimate-badge {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(233, 69, 96, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
}

.estimate-amount {
  margin-bottom: 15px;
}

.estimate-currency {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: top;
}

.estimate-value {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.estimate-range {
  display: block;
  font-size: 1rem;
  color: var(--gray-600);
  margin-top: 5px;
}

.estimate-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto 30px;
}

.results-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

@media (max-width: 600px) {
  .calculator-wrapper {
    padding: 35px 25px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-method a {
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition-fast);
}

.contact-method a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

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

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

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

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

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

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

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all var(--transition-smooth);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(233, 69, 96, 0.4);
  transition: all var(--transition-smooth);
}

.sticky-cta a:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(233, 69, 96, 0.6);
}

.sticky-cta svg {
  width: 20px;
  height: 20px;
}

/* Pulse effect */
.sticky-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 54px;
  background: var(--accent);
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }

  .sticky-cta a {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- ANIMATIONS ---------- */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate, .animate-left, .animate-right {
    opacity: 1;
    transform: none;
  }
}

/* ---------- UTILITIES ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ---------- CONTENT TEXT FORMATTING ---------- */
.content-text {
  line-height: 1.8;
}

.content-text h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.content-text h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-text ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

.content-text p {
  margin-bottom: 1rem;
}

/* Footer legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-top: 15px;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

/* ---------- FAQ STYLES ---------- */
.faq-category {
  margin-bottom: 60px;
}

.faq-category-title {
  font-size: 1.75rem;
  margin-bottom: 30px;
  color: var(--primary);
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent);
}

.faq-item {
  margin-bottom: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question[aria-expanded="true"] {
  background: var(--accent);
  color: var(--white);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.open {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.faq-answer-content {
  padding: 20px 30px 30px;
  background: var(--off-white);
}

.faq-answer p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.faq-answer ul {
  margin: 1rem 0 1rem 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer strong {
  color: var(--accent);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 20px;
  }

  .faq-answer-content {
    padding: 15px 20px 25px;
  }
}

/* ---------- LOCATION CARDS ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.location-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.location-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.location-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.location-card p {
  margin-bottom: 20px;
  color: var(--gray-700);
  line-height: 1.6;
}

.location-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.location-card:hover .location-link {
  gap: 12px;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

/* ---------- CALCULATOR SUCCESS MESSAGE ---------- */
.calculator-success {
  background: var(--off-white);
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 30px;
  animation: slideIn 0.5s ease-out;
}

.calculator-success h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.calculator-success p {
  margin-bottom: 10px;
  line-height: 1.6;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- GALLERY STYLES ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 1rem;
  font-family: var(--font-heading);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
}

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

.gallery-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  cursor: col-resize;
  background: var(--gray-200);
}

@media (max-width: 768px) {
  .comparison-slider {
    height: 250px;
  }
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.comparison-image.after {
  clip-path: inset(0 0 0 50%);
}

.comparison-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}

.before .comparison-label {
  left: 20px;
}

.after .comparison-label {
  right: 20px;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: col-resize;
  z-index: 10;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .slider-button {
    width: 40px;
    height: 40px;
  }
}

.slider-button::before,
.slider-button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.slider-button::before {
  left: 8px;
  border-width: 8px 12px 8px 0;
  border-color: transparent var(--accent) transparent transparent;
}

.slider-button::after {
  right: 8px;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent var(--accent);
}

@media (max-width: 768px) {
  .slider-button::before {
    left: 6px;
    border-width: 6px 9px 6px 0;
  }

  .slider-button::after {
    right: 6px;
    border-width: 6px 0 6px 9px;
  }
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--accent);
  pointer-events: none;
  z-index: 4;
}

/* Gallery Info */
.gallery-info {
  padding: 25px;
}

.gallery-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.gallery-info p {
  color: var(--gray-600);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--off-white);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--off-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Dark background variant for CTA sections */
.cta-section .trust-badges {
  margin-bottom: 30px;
}

.cta-section .trust-badge {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-section .trust-badge:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.cta-section .badge-icon {
  color: var(--white);
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 15px;
  }

  .trust-badge {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .badge-icon {
    width: 20px;
    height: 20px;
  }
}

/* ---------- TEAM SECTION ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--gray-200);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 30px;
}

.team-info h3 {
  font-size: 1.75rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--gray-700);
}

.team-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  padding: 6px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

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

  .team-photo {
    height: 300px;
  }
}

/* ---------- BLOG STYLES ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

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

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--gray-200);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.blog-category {
  padding: 5px 12px;
  background: var(--accent);
  color: var(--white);
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.8rem;
}

.blog-meta time {
  color: var(--gray-600);
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-content h2 a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.blog-content h2 a:hover {
  color: var(--accent);
}

.blog-content p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.blog-link:hover {
  gap: 12px;
}

/* Blog Post Page */
.blog-post {
  background: var(--white);
}

.post-header {
  padding: 60px 0 40px;
  text-align: center;
}

.post-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 20px 0;
  line-height: 1.2;
}

.post-excerpt {
  font-size: 1.25rem;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.post-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
  padding: 40px 0;
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.post-content h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.post-content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.post-content a:hover {
  text-decoration: none;
}

.post-content strong {
  font-weight: 600;
  color: var(--primary);
}

.post-faq {
  background: var(--off-white);
  padding: 30px;
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
  border-radius: 8px;
}

.post-faq h3 {
  margin-top: 0;
  color: var(--accent);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 40px;
  background: var(--off-white);
  border-radius: 12px;
  margin: 60px 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-300);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.author-info p {
  margin: 0;
  color: var(--gray-700);
}

.post-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
}

.post-cta h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--white);
}

.post-cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.related-posts {
  margin: 60px 0;
}

.related-posts h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  color: var(--primary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .post-author {
    flex-direction: column;
    text-align: center;
  }

  .post-cta {
    padding: 40px 30px;
  }
}
