/*
  Quality Pro - Handyman & Painting Services
  Custom Stylesheet
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --primary-teal: #0f768a;
  --primary-teal-hover: #0a5868;
  --primary-teal-light: rgba(15, 118, 138, 0.1);
  --primary-pink: #e64a78;
  --primary-pink-hover: #cb3861;
  --primary-pink-light: rgba(230, 74, 120, 0.1);
  --text-dark: #1e2e3d;
  --text-muted: #5e6d7a;
  --text-light: #ffffff;
  --accent-gold: #f4c22b;
  
  /* Backgrounds */
  --bg-soft-gradient: radial-gradient(circle at 75% 40%, rgba(234, 246, 250, 0.75) 0%, rgba(255, 255, 255, 1) 75%);
  --bg-waves: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23eaf4fa' fill-opacity='0.4' d='M0,96L80,112C160,128,320,160,480,154.7C640,149,800,107,960,96C1120,85,1280,107,1360,117.3L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 118, 138, 0.08), 0 4px 6px -2px rgba(15, 118, 138, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(230, 74, 120, 0.1), 0 10px 10px -5px rgba(230, 74, 120, 0.04);
  --shadow-pill: 0 4px 15px rgba(15, 118, 138, 0.2);
  --shadow-pink-pill: 0 4px 15px rgba(230, 74, 120, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radii */
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  background-image: var(--bg-soft-gradient);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 246, 250, 0.6);
  transition: all var(--transition-fast);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 5px 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 95px; /* Reserves space for the scaled logo */
}

.logo img {
  height: 62px;
  width: auto;
  transform: scale(1.95);
  transform-origin: left 15%;
  transition: transform var(--transition-medium);
}

.logo:hover img {
  transform: scale(2.05);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-pink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-pink);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Services Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-icon {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #ffffff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px;
  min-width: 200px;
  display: none;
  opacity: 0;
  list-style: none;
  border: 1px solid rgba(15, 118, 138, 0.08);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 1010;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.header-phone i {
  font-size: 16px;
}

.header-phone:hover {
  color: var(--primary-teal-hover);
  transform: translateY(-2px);
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--border-radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
}

.btn-pink {
  background-color: var(--primary-pink);
  color: var(--text-light);
  box-shadow: var(--shadow-pink-pill);
}

.btn-pink:hover {
  background-color: var(--primary-pink-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 74, 120, 0.4);
}

.btn-pink:active {
  transform: translateY(-1px);
}

.btn-teal {
  background-color: var(--primary-teal);
  color: var(--text-light);
  box-shadow: var(--shadow-pill);
}

.btn-teal:hover {
  background-color: var(--primary-teal-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 118, 138, 0.4);
}

.btn-teal:active {
  transform: translateY(-1px);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--primary-teal);
  border-color: var(--primary-teal);
}

.btn-outline-teal:hover {
  background-color: var(--primary-teal-light);
  transform: translateY(-3px);
}

.btn-outline-teal:active {
  transform: translateY(-1px);
}

.mobile-actions {
  display: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 24px 80px;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.hero-subtitle {
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
}

.hero-title .highlight {
  color: var(--primary-pink);
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
  width: 100%;
  max-width: 500px;
}

.hero-buttons .btn {
  flex: 1;
}

/* Trust Badges Grid */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  width: 100%;
  max-width: 520px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.badge-item i {
  font-size: 18px;
}

.badge-item .fa-check-circle {
  color: var(--accent-gold);
}

.badge-item.blue-check i {
  color: var(--primary-teal);
}

/* Hero Visual & Image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  animation: visualReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.4s;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: var(--border-radius-md);
  z-index: 5;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.hero-visual:hover .hero-img-wrapper img {
  transform: translateY(-8px) scale(1.02);
}

/* Interactive paint roller micro-animation overlay */
.paint-stroke-overlay {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 80%;
  height: 60%;
  background: linear-gradient(135deg, rgba(230, 74, 120, 0.15) 0%, rgba(15, 118, 138, 0.15) 100%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
  animation: paintGlow 6s ease-in-out infinite alternate;
}

/* Background Wavy Canvas */
.hero-bg-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-image: var(--bg-waves);
  background-size: cover;
  background-position: bottom;
  z-index: 2;
  pointer-events: none;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visualReveal {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes paintGlow {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(40px);
  }
  50% {
    transform: translate(10px, -15px) scale(1.05) rotate(5deg);
    filter: blur(50px);
  }
  100% {
    transform: translate(-10px, 10px) scale(0.95) rotate(-5deg);
    filter: blur(35px);
  }
}

/* Floating paint roller brush effect on click */
.paint-drip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  animation: dripAnimation 0.6s ease-out forwards;
  z-index: 9999;
}

@keyframes dripAnimation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 50px) scale(0);
    opacity: 0;
  }
}

/* About Us Section Styles */
.about-section {
  padding: 85px 24px 70px;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  border-top: 1px solid rgba(15, 118, 138, 0.05);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.75fr;
  gap: 50px;
  align-items: center;
}

/* 1. Image Collage Styling */
.about-collage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 15px;
  padding-top: 15px;
}

.about-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(var(--accent-gold) 2px, transparent 2px);
  background-size: 10px 10px;
  z-index: 1;
  opacity: 0.85;
}

.collage-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: transform var(--transition-medium);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-large {
  height: 290px;
}

.collage-sub-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: -5px;
}

.img-small {
  height: 180px;
  border: 4px solid #ffffff;
}

.img-left {
  transform: translateY(-10px);
}

.img-right {
  transform: translateY(-10px);
}

.about-collage:hover .img-large {
  transform: translateY(-4px) scale(1.01);
}

.about-collage:hover .img-left {
  transform: translateY(-14px) rotate(-1deg);
}

.about-collage:hover .img-right {
  transform: translateY(-14px) rotate(1deg);
}

/* 2. Content & Text Styling */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-tag {
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.text-highlight {
  font-weight: 600;
  color: var(--text-dark);
}

.about-signature {
  position: relative;
  margin-top: 15px;
  display: inline-block;
}

.signature-text {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  color: var(--primary-teal);
  line-height: 1.1;
  font-weight: 700;
  display: block;
}

.signature-underline {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 18px;
  overflow: visible;
  pointer-events: none;
}

.signature-underline path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

/* 3. Checklist Features Styling */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform var(--transition-fast);
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1.5px solid transparent;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ring-teal {
  border-color: rgba(15, 118, 138, 0.25);
  color: var(--primary-teal);
}

.ring-pink {
  border-color: rgba(230, 74, 120, 0.25);
  color: var(--primary-pink);
}

.ring-gold {
  border-color: rgba(244, 194, 43, 0.4);
  color: var(--accent-gold);
}

.feature-desc {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
}

.feature-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
}

/* 4. Stats Footer Banner Styling */
.stats-bar-wrapper {
  max-width: 1280px;
  margin: 60px auto 0;
  width: 100%;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 249, 252, 0.95);
  border: 1px solid rgba(15, 118, 138, 0.08);
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.stat-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.circle-teal {
  background-color: var(--primary-teal);
}

.circle-pink {
  background-color: var(--primary-pink);
}

.circle-gold {
  background-color: var(--accent-gold);
}

.stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat-value-container {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--text-dark);
  display: flex;
  align-items: baseline;
}

.stat-suffix {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-left: 1px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(15, 118, 138, 0.12);
  margin: 0 25px;
}

.location-text {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.35;
}

.stat-city {
  font-size: 16px;
  color: var(--text-dark);
  display: block;
}

.stat-zip {
  font-size: 13.5px;
  color: var(--text-muted);
  display: block;
  font-weight: 600;
}

/* Responsive Breakpoints */

@media (max-width: 1100px) {
  .hero-title {
    font-size: 3.4rem;
  }
  .nav-menu {
    gap: 20px;
  }
  .header-actions {
    gap: 20px;
  }

  /* About Section Override */
  .about-container {
    grid-template-columns: 1.2fr 1.1fr 0.9fr;
    gap: 30px;
  }
  .about-title {
    font-size: 1.95rem;
  }
  .stats-container {
    padding: 25px 30px;
  }
  .stat-divider {
    margin: 0 15px;
  }
}

@media (max-width: 991px) {
  header {
    padding: 10px 0;
  }
  
  .header-container {
    padding: 10px 20px;
  }

  .mobile-nav-toggle {
    display: block;
    z-index: 1100;
  }

  /* Nav Menu overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 25px;
    transition: right var(--transition-medium);
    z-index: 1050;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    margin-top: 10px;
    display: none;
    opacity: 1;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  .header-actions {
    display: none; /* Hide header items in mobile header, show in menu bottom */
  }

  .nav-menu .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(15, 118, 138, 0.1);
    padding-top: 25px;
  }

  .nav-menu .mobile-actions .header-phone {
    justify-content: center;
  }

  /* Hero adjustments */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding-top: 20px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-badges {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    transform: translateY(20px) scale(0.98);
    animation: fadeInUp 1s ease forwards;
  }

  /* About Section Override */
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .about-collage {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
  }
  .about-dot-pattern {
    left: -10px;
  }
  .about-content {
    align-items: center;
  }
  .about-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
  }
  .feature-item {
    flex: 1 1 240px;
    justify-content: center;
    text-align: left;
  }
  .stats-bar-wrapper {
    margin-top: 40px;
  }
  .stats-container {
    flex-wrap: wrap;
    gap: 30px 15px;
    justify-content: center;
    padding: 30px;
  }
  .stat-item {
    flex: 1 1 200px;
    justify-content: center;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 110px 16px 60px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 12px;
    width: fit-content;
    margin: 0 auto;
  }

  .logo img {
    height: 50px;
  }

  /* About Section Override */
  .about-section {
    padding: 60px 16px 50px;
  }
  .about-title {
    font-size: 1.75rem;
  }
  .about-text {
    font-size: 14.5px;
  }
  .signature-text {
    font-size: 32px;
  }
  .img-large {
    height: 210px;
  }
  .collage-sub-group {
    gap: 12px;
  }
  .img-small {
    height: 140px;
    border-width: 3px;
  }
  .feature-item {
    flex: 1 1 100%;
  }
  .stats-container {
    padding: 25px 20px;
  }
  .stat-item {
    flex: 1 1 130px;
    gap: 12px;
  }
  .stat-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .stat-value-container {
    font-size: 1.7rem;
  }
  .stat-suffix {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 11px;
  }
  .stat-city {
    font-size: 14.5px;
  }
  .stat-zip {
    font-size: 12px;
  }

  /* Services Section Override */
  .services-section {
    padding: 60px 16px 70px;
  }
  .services-title {
    font-size: 1.75rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-card {
    padding: 24px 20px 20px;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: 90px 24px 80px;
  position: relative;
  background: linear-gradient(180deg, rgba(234, 246, 250, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
}

/* Subtle radial glow behind the section */
.services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(15, 118, 138, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Section Header ---- */
.services-header {
  text-align: center;
  margin-bottom: 55px;
}

.services-tag {
  display: inline-block;
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* Three-bar animated accent */
.services-title-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.accent-bar {
  display: block;
  height: 4px;
  border-radius: 4px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
}

.accent-bar.bar-teal {
  width: 40px;
  background-color: var(--primary-teal);
}
.accent-bar.bar-pink {
  width: 60px;
  background-color: var(--primary-pink);
}
.accent-bar.bar-gold {
  width: 30px;
  background-color: var(--accent-gold);
}

/* ---- Services Grid ---- */
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* ---- Individual Service Card ---- */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(15, 118, 138, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(15, 118, 138, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Top-edge coloured bar that grows on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 118, 138, 0.13), 0 8px 20px rgba(0,0,0,0.06);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* ---- Card Header (icon + title row) ---- */
.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.card-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .card-icon-badge {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.badge-pink  { background: var(--primary-pink); }
.badge-teal  { background: var(--primary-teal); }
.badge-gold  { background: var(--accent-gold);  }

.card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

/* ---- Card Image ---- */
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(15, 118, 138, 0.12) 100%
  );
  pointer-events: none;
}

/* ---- Bullet Feature List ---- */
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.4;
  transition: color 0.2s ease, transform 0.2s ease;
}

.card-features li:hover {
  color: var(--text-dark);
  transform: translateX(3px);
}

.card-features li .fa-circle-check {
  font-size: 15px;
  flex-shrink: 0;
  color: var(--primary-teal);
}

/* Gold-icon variant for Handyman card */
#handyman .card-features li .fa-circle-check {
  color: var(--accent-gold);
}

/* ---- Card CTA Link ---- */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.25s ease, opacity 0.2s ease;
}

.card-cta:hover {
  gap: 13px;
  opacity: 0.85;
}

.card-cta .fa-arrow-right {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.card-cta:hover .fa-arrow-right {
  transform: translateX(4px);
}

.cta-pink  { color: var(--primary-pink); }
.cta-teal  { color: var(--primary-teal); }
.cta-gold  { color: var(--accent-gold);  }

/* ============================================
   SERVICES RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .services-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 70px 20px 60px;
  }
  .services-title {
    font-size: 1.85rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .card-image-wrap {
    height: 150px;
  }
  .service-card {
    padding: 22px 18px 18px;
  }
}


/* ============================================
   PROJECTS SECTION
   ============================================ */

.projects-section {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

/* Subtle dot-matrix decoration behind header */
.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(15, 118, 138, 0.12) 2px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
}
.projects-section::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 3%;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(230, 74, 120, 0.10) 2px, transparent 2px);
  background-size: 12px 12px;
  pointer-events: none;
}

/* ---- Section Header ---- */
.projects-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 36px;
}

.projects-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.projects-highlight {
  color: var(--primary-pink);
}

/* ---- Filter Tabs ---- */
.projects-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px;
  margin-bottom: 44px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(15, 118, 138, 0.18);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  background: var(--primary-teal-light);
}

.filter-btn.active {
  background-color: var(--primary-teal);
  color: #ffffff;
  border-color: var(--primary-teal);
  box-shadow: 0 4px 14px rgba(15, 118, 138, 0.3);
}

/* ---- Slider Wrapper ---- */
.projects-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ---- Arrow Buttons ---- */
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-teal);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(15, 118, 138, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  z-index: 10;
  position: relative;
}

.slider-arrow:hover {
  transform: scale(1.12);
  background-color: var(--primary-teal-hover);
  box-shadow: 0 6px 22px rgba(15, 118, 138, 0.45);
}

.slider-arrow:active {
  transform: scale(0.96);
}

.arrow-prev { margin-left: 24px; }
.arrow-next { margin-right: 24px; }

/* ---- Slider Track ---- */
.projects-slider {
  flex: 1;
  overflow: hidden;
  padding: 20px 0;          /* breathing room for card shadows */
}

.projects-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  /* padding adds peekaboo effect on edges */
  padding: 0 12px;
  cursor: grab;
  user-select: none;
}

.projects-track:active {
  cursor: grabbing;
}

/* Cards hidden by filter get display:none */
.proj-card.hidden {
  display: none;
}

/* ---- Project Card ---- */
.proj-card {
  flex: 0 0 calc(20% - 18px);   /* show ~5 per view */
  min-width: 0;
}

.proj-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.proj-card:hover .proj-img-wrap {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.proj-card:hover .proj-img-wrap img {
  transform: scale(1.07);
}

/* Gradient overlay – slides up on hover */
.proj-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 14px 14px;
  background: linear-gradient(
    to top,
    rgba(15, 30, 45, 0.82) 0%,
    rgba(15, 30, 45, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.proj-card:hover .proj-overlay {
  transform: translateY(0);
  opacity: 1;
}

.proj-category-tag {
  display: inline-block;
  background-color: var(--primary-pink);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
}

.proj-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  line-height: 1.3;
}

/* ---- Dot Indicators ---- */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 0 24px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(15, 118, 138, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease, transform 0.25s ease, width 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-teal);
  width: 24px;
  border-radius: 4px;
  transform: scaleY(1);
}

/* ============================================
   PROJECTS RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .proj-card {
    flex: 0 0 calc(25% - 17px);
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 70px 0 60px;
  }
  .projects-title {
    font-size: 1.9rem;
  }
  .proj-card {
    flex: 0 0 calc(33.333% - 15px);
  }
  .arrow-prev { margin-left: 12px; }
  .arrow-next { margin-right: 12px; }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .projects-title {
    font-size: 1.6rem;
  }
  .proj-card {
    flex: 0 0 calc(65% - 11px);
  }
  .arrow-prev { margin-left: 8px; }
  .arrow-next { margin-right: 8px; }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .filter-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* ============================================
   TESTIMONIALS + CONTACT SECTIONS
   ============================================ */

.section-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 760px;
}

.section-heading-center {
  text-align: center;
  margin: 0 auto 40px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.12;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-copy {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.testimonials-section {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(234, 246, 250, 0.42) 0%, rgba(255, 255, 255, 1) 100%);
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 4%;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(rgba(230, 74, 120, 0.11) 2px, transparent 2px);
  background-size: 16px 16px;
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 6%;
  width: 280px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(15, 118, 138, 0.12) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 118, 138, 0.08);
  border-radius: 24px;
  padding: 30px 28px 26px;
  box-shadow: 0 18px 40px rgba(15, 118, 138, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
  color: rgba(230, 74, 120, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 74, 120, 0.18);
  box-shadow: 0 24px 50px rgba(15, 118, 138, 0.12);
}

.testimonial-card.featured {
  background: linear-gradient(180deg, rgba(15, 118, 138, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(15, 118, 138, 0.14);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  color: var(--accent-gold);
  font-size: 15px;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.contact-section {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(234, 246, 250, 0.35) 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: auto -12% -120px -12%;
  height: 280px;
  background: radial-gradient(circle at 20% 30%, rgba(230, 74, 120, 0.16) 0%, transparent 45%), radial-gradient(circle at 80% 50%, rgba(15, 118, 138, 0.16) 0%, transparent 48%);
  opacity: 0.9;
  pointer-events: none;
}

.contact-wave {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 150px;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.75;
  pointer-events: none;
}

.contact-wave-one {
  top: 22px;
  background: linear-gradient(90deg, rgba(15, 118, 138, 0) 0%, rgba(15, 118, 138, 0.16) 18%, rgba(230, 74, 120, 0.22) 50%, rgba(244, 194, 43, 0.18) 82%, rgba(244, 194, 43, 0) 100%);
  clip-path: polygon(0 54%, 7% 38%, 16% 62%, 27% 32%, 39% 58%, 52% 24%, 66% 58%, 78% 34%, 90% 60%, 100% 44%, 100% 100%, 0 100%);
  animation: paintWaveDrift 11s ease-in-out infinite alternate;
}

.contact-wave-two {
  top: 66px;
  background: linear-gradient(90deg, rgba(230, 74, 120, 0) 0%, rgba(230, 74, 120, 0.15) 20%, rgba(15, 118, 138, 0.16) 55%, rgba(244, 194, 43, 0.14) 84%, rgba(244, 194, 43, 0) 100%);
  clip-path: polygon(0 62%, 11% 38%, 23% 66%, 35% 28%, 48% 64%, 60% 34%, 73% 58%, 85% 42%, 100% 60%, 100% 100%, 0 100%);
  animation: paintWaveDrift 13s ease-in-out infinite alternate-reverse;
}

.contact-shell {
  position: relative;
  z-index: 2;
}

.contact-heading {
  text-align: center;
  margin: 0 auto 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 118, 138, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(15, 118, 138, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-summary {
  padding: 34px;
}

.contact-summary-top h3,
.contact-form-head h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-summary-top p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-label {
  display: inline-block;
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(15, 118, 138, 0.08);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 10px 16px rgba(15, 118, 138, 0.16);
}

.contact-detail-icon.teal { background: var(--primary-teal); }
.contact-detail-icon.pink { background: var(--primary-pink); }
.contact-detail-icon.gold { background: var(--accent-gold); }

.contact-detail-item span,
.contact-detail-item strong {
  display: block;
}

.contact-detail-item span {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 4px;
}

.contact-detail-item strong {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.35;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form-panel {
  padding: 34px;
  background: linear-gradient(135deg, rgba(15, 118, 138, 0.08) 0%, rgba(255, 255, 255, 0.98) 58%);
}

.form-swipe {
  position: absolute;
  top: 16px;
  right: -20px;
  width: 260px;
  height: 120px;
  background: linear-gradient(135deg, rgba(230, 74, 120, 0.22), rgba(15, 118, 138, 0.18), rgba(244, 194, 43, 0.18));
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.85;
  transform: rotate(-12deg);
  animation: paintFloat 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.contact-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid rgba(15, 118, 138, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 138, 0.12);
}

.contact-form-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-form-actions p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}

.contact-form-actions .btn {
  min-width: 170px;
}

@keyframes paintWaveDrift {
  from {
    transform: translateX(-50%) translateY(0) scaleX(1);
  }
  to {
    transform: translateX(-50%) translateY(10px) scaleX(1.02);
  }
}

@keyframes paintFloat {
  from {
    transform: rotate(-12deg) translateX(0) translateY(0);
  }
  to {
    transform: rotate(-8deg) translateX(-10px) translateY(8px);
  }
}

@media (max-width: 1100px) {
  .section-title {
    font-size: 2.1rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid .featured {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-section,
  .contact-section {
    padding: 70px 0 80px;
  }

  .section-shell {
    padding: 0 20px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .testimonials-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .contact-summary,
  .contact-form-panel {
    padding: 24px;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.55rem;
  }

  .section-copy {
    font-size: 15px;
  }

  .testimonial-quote {
    font-size: 15px;
  }

  .contact-detail-item {
    align-items: flex-start;
  }

  .contact-quick-links {
    flex-direction: column;
  }

  .contact-quick-links .btn {
    width: 100%;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.site-footer {
  position: relative;
  background: #ffffff;
  border-top: 1px solid rgba(15, 118, 138, 0.08);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15, 118, 138, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px 24px;
  display: grid;
  grid-template-columns: 1.45fr 1.55fr;
  gap: 36px;
  align-items: start;
}

.footer-brand-block {
  padding-right: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 94px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-teal));
  box-shadow: 0 8px 18px rgba(230, 74, 120, 0.18);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 118, 138, 0.22);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 6px;
}

.footer-links-col {
  position: relative;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col:not(:first-child) {
  border-left: 1px solid rgba(15, 118, 138, 0.08);
}

.footer-links-col h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--primary-teal);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-links-col a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  width: fit-content;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--primary-pink);
  transform: translateX(3px);
}

.footer-bar {
  background: linear-gradient(90deg, var(--primary-teal) 0%, #2a98ab 100%);
  margin-top: 8px;
}

.footer-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  font-weight: 500;
}

.footer-call-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary-pink);
  box-shadow: 0 14px 28px rgba(230, 74, 120, 0.32);
  z-index: 1200;
  text-decoration: none;
  animation: callPulse 2.8s ease-in-out infinite;
}

.footer-call-btn i {
  font-size: 20px;
}

.footer-call-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--primary-pink-hover);
}

@keyframes callPulse {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(230, 74, 120, 0.32), 0 0 0 0 rgba(230, 74, 120, 0.2);
  }
  50% {
    box-shadow: 0 14px 28px rgba(230, 74, 120, 0.32), 0 0 0 14px rgba(230, 74, 120, 0);
  }
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    padding-right: 0;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 36px 20px 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links-col {
    padding-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 118, 138, 0.08);
  }

  .footer-links-col:not(:first-child) {
    border-left: 0;
  }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-brand img {
    height: 78px;
  }

  .footer-about {
    font-size: 14px;
  }

  .footer-call-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

