/* =========================================================
   [Company Name] — Window Washing Website
   Shared Stylesheet
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --blue: #4A90E2;
  --blue-dark: #3178c6;
  --blue-light: #6faee8;
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #F8F8F8;
  --gray-mid: #e5e5e5;
  --gray-text: #666666;
  --gray-muted: #999999;
  --dark-nav: #1a1a1a;
  --dark-footer: #1a1a1a;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-nav: 0 2px 12px rgba(0, 0, 0, 0.08);

  --transition: 0.3s ease;

  --max-width: 1200px;
  --section-padding: 80px 0;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--gray-text);
  margin-bottom: 1em;
}

p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 620px;
}

.section-header {
  margin-bottom: 52px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.35);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-nav);
  color: var(--white);
  border-color: var(--dark-nav);
}

.btn-dark:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-nav);
  transition: box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 200px;
  gap: 24px;
}

.nav-logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a:hover {
  color: var(--blue);
  background: rgba(74, 144, 226, 0.07);
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--gray-light);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 16px 24px 24px;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-mobile a:last-of-type {
  border-bottom: none;
}

.nav-mobile a.active {
  color: var(--blue);
}

.nav-mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* =========================================================
   HERO — FULL HEIGHT
   ========================================================= */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 1;
}

.hero-full .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-full h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
}

.hero-full .hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-family: var(--font-body);
}

.hero-full .hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.75);
  font-size: 1.6rem;
  cursor: pointer;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   HERO — SMALL (50vh)
   ========================================================= */
.hero-small {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-small::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-small .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-small h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-small .hero-breadcrumb {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

.hero-small .hero-breadcrumb a {
  color: rgba(255,255,255,0.75);
}

.hero-small .hero-breadcrumb a:hover {
  color: var(--white);
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  background: var(--gray-light);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  justify-content: center;
}

.trust-item .trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  margin-bottom: 10px;
  color: var(--black);
}

.service-card-body p {
  flex: 1;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.learn-more-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.learn-more-link:hover {
  gap: 10px;
  color: var(--blue-dark);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.why-checklist {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(74, 144, 226, 0.12);
  color: #4A90E2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  display: block;
  font-size: 0.95rem;
}

.why-item-text span {
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 144, 226, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
}

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

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-label {
  color: rgba(255,255,255,0.8);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  display: block;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-text);
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--dark-nav);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* =========================================================
   SERVICES DETAIL (services page)
   ========================================================= */
.service-detail {
  padding: var(--section-padding);
}

.service-detail:nth-child(even) {
  background: var(--gray-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail-grid.reverse .service-detail-img {
  order: 2;
}

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.service-features {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
}

.feature-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(74, 144, 226, 0.12);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================================
   GUTTER ICON SECTION
   ========================================================= */
.gutter-section {
  background: var(--gray-light);
  padding: var(--section-padding);
  text-align: center;
}

.gutter-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

/* =========================================================
   PRICING CARDS
   ========================================================= */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.18);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #444;
}

.pricing-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   ABOUT — OUR STORY
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* =========================================================
   VALUES
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.value-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
}

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.team-avatar {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.team-info span {
  color: var(--blue);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* =========================================================
   TRUST BADGES
   ========================================================= */
.badges-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-mid);
  text-align: center;
  flex: 1 1 160px;
  min-width: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}



.badge:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(74,144,226,0.12);
}

.badge-icon {
  font-size: 2rem;
}

.badge span:last-child {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h2 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

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

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

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Contact Info */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.info-content strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  color: var(--black);
}

.info-content span,
.info-content p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--gray-mid);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.map-placeholder span {
  font-size: 2rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark-footer);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
}

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

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--blue);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item span.fc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   SECTION UTILITY CLASSES
   ========================================================= */
.section-white { background: var(--white); padding: var(--section-padding); }
.section-gray  { background: var(--gray-light); padding: var(--section-padding); }
.section-dark  { background: var(--dark-nav); padding: var(--section-padding); }
.section-blue  { background: var(--blue); padding: var(--section-padding); }

/* =========================================================
   RESPONSIVE — TABLET 768px
   ========================================================= */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: 1fr; gap: 36px; }
  .why-image     { max-width: 600px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-grid.reverse .service-detail-img { order: 0; }
  .story-grid    { grid-template-columns: 1fr; gap: 36px; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px; }
}

/* =========================================================
   RESPONSIVE — MOBILE 768px
   ========================================================= */
@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }

  .services-grid     { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .trust-items       { flex-direction: column; }
  .trust-item        { max-width: 100%; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-bottom     { justify-content: center; text-align: center; }
  .hero-full .hero-btns { flex-direction: column; align-items: center; }
  .hero-full .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; }
  .badges-row        { gap: 12px; flex-wrap: wrap; }
  .badge             { flex: 1 1 140px; padding: 16px 14px; }
}

@media (max-width: 600px) {
  .badges-row { flex-direction: column; align-items: stretch; }
  .badge      { flex: unset; width: 100%; }
}

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

/* SVG icon sizing — replaces emoji */
.trust-icon svg,
.value-icon svg,
.badge-icon svg,
.info-icon svg,
.fc-icon svg,
.check-icon svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.trust-icon svg { width: 36px; height: 36px; stroke: #4A90E2; }
.value-icon svg { width: 48px; height: 48px; stroke: #4A90E2; }
.badge-icon svg { width: 32px; height: 32px; stroke: #4A90E2; }
.info-icon svg  { width: 28px; height: 28px; stroke: #4A90E2; }
.fc-icon svg    { width: 22px; height: 22px; stroke: #4A90E2; }
.check-icon svg { width: 16px; height: 16px; stroke: #4A90E2; stroke-width: 2.5; }
.social-link svg { width: 20px; height: 20px; stroke: currentColor; }
.testimonial-stars svg { width: 18px; height: 18px; margin: 0 1px; }

/* Team avatar photo */
.team-avatar {
    overflow: hidden;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ===================== PROMISE CARDS (replaces gallery) ===================== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.promise-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.15);
}
.promise-icon {
  width: 72px;
  height: 72px;
  background: rgba(74, 144, 226, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.promise-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* ===================== QUOTE CTA BOX (replaces pricing tiers) ===================== */
.quote-cta-box {
  background: var(--white);
  border-radius: var(--radius-xl, 16px);
  box-shadow: var(--shadow-card);
  max-width: 600px;
  margin: 40px auto 0;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.quote-cta-box h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.quote-cta-box p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 460px;
  margin: 0;
}
.quote-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(74, 144, 226, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .quote-cta-box { padding: 32px 20px; }
}

/* ===================== OWNER SECTION (replaces team grid) ===================== */
.owner-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.owner-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
}
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.owner-text .section-label { display: block; margin-bottom: 8px; }
.owner-text p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .owner-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .owner-photo {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }
  .owner-text { text-align: center; }
}

/* ===================== BEFORE & AFTER ===================== */
.before-after-section {
  padding: 80px 0;
  background: #fff;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-pair {
  display: flex;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.ba-img-wrap {
  position: relative;
  flex: 1;
  height: 280px;
  overflow: hidden;
}
.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ba-label.before {
  background: rgba(0,0,0,0.6);
  color: #fff;
}
.ba-label.after {
  background: #4A90E2;
  color: #fff;
}
@media (max-width: 991px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-img-wrap { height: 200px; }
}
