/* =========================================
   Klean & co. — Main Stylesheet
   Built by GetMoLeads | getmoleads.com
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --pink:        #E8847A;
  --pink-dark:   #d4655a;
  --pink-light:  #f2a89f;
  --rose:        #f5e6e4;
  --cream:       #fdf8f7;
  --white:       #ffffff;
  --charcoal:    #2c2c2c;
  --gray:        #6b6b6b;
  --gray-light:  #e8e4e3;
  --gold:        #c9a96e;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(232,132,122,0.12);
  --shadow-md:   0 8px 40px rgba(44,44,44,0.10);
  --transition:  all 0.25s ease;
  --max-width:   1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--pink); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--pink-dark); }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

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

strong { font-weight: 600; }

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

.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--rose { background: var(--rose); }
.section--pink { background: var(--pink); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.section--pink .section-label,
.section--charcoal .section-label { color: rgba(255,255,255,0.75); }

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section--pink .section-subtitle,
.section--charcoal .section-subtitle { color: rgba(255,255,255,0.8); }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,132,122,0.4);
}

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

.btn--white {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--cream);
  color: var(--pink-dark);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 2px 16px rgba(44,44,44,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--pink);
  white-space: nowrap;
  letter-spacing: 0.01em;
  font-style: italic;
}
.site-logo:hover { color: var(--pink-dark); }

.header-nav { display: flex; align-items: center; gap: 0.25rem; }
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
}
.header-nav a:hover,
.header-nav a.active { color: var(--pink); background: var(--rose); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}
.header-phone:hover { color: var(--pink); }

/* --- Mobile Nav --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 1rem 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rose);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--pink); background: var(--rose); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose) 60%, #f0d4d0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,248,247,0.92) 0%, rgba(245,230,228,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--pink-light);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
  line-height: 1.15;
}

.hero h1 span { color: var(--pink); font-style: normal; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}
.trust-item svg { color: var(--pink); flex-shrink: 0; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--charcoal);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-bar-item svg { color: var(--pink-light); flex-shrink: 0; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--pink-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--rose);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--pink);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

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

/* --- Review Cards --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--rose);
  position: relative;
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.review-text {
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--pink);
  flex-shrink: 0;
  font-weight: 500;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.review-location {
  font-size: 0.8rem;
  color: var(--gray);
}

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-light); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.4;
}
.faq-question:hover { color: var(--pink); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--pink); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0.75rem 0 0.25rem;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
}
.faq-item.open .faq-answer { display: block; }

/* --- About Split --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  filter: contrast(1.05) brightness(1.03);
  image-rendering: auto;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--pink);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.about-badge-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content .section-label { margin-bottom: 0.5rem; }
.about-features { margin: 1.5rem 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-feature svg { color: var(--pink); flex-shrink: 0; margin-top: 0.2rem; }

/* --- Stats Row --- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--pink);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-style: italic; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Service Areas --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.area-card:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.area-card h3 { color: var(--pink); margin-bottom: 0.75rem; font-size: 1.25rem; }
.area-card p { color: var(--gray); font-size: 0.93rem; line-height: 1.65; }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--rose);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ba-item-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  color: var(--gray);
}
.ba-item-label.before { color: var(--gray); }
.ba-item-label.after { color: var(--pink); }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--rose);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 0.2rem; font-family: var(--font-body); }
.contact-info-text p, .contact-info-text a { color: var(--charcoal); font-weight: 500; font-size: 1rem; }

/* --- Form --- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,132,122,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05252;
}
.form-error-msg {
  font-size: 0.8rem;
  color: #e05252;
  margin-top: 0.3rem;
  display: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none !important; }

/* --- Quote Estimate Box --- */
.quote-estimate {
  background: var(--rose);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.quote-estimate.visible {
  max-height: 200px;
  opacity: 1;
  padding: 1.25rem 1.5rem;
}
.quote-estimate-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.35rem;
}
.quote-estimate-range {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.quote-estimate-meta {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.quote-estimate-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* --- Thank You --- */
.thank-you-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose) 100%);
  padding: 80px 1.5rem;
}
.thank-you-inner { max-width: 560px; }
.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
}
.thank-you-inner h1 { font-style: italic; margin-bottom: 1rem; }
.thank-you-inner p { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--gray-light);
}
.page-hero h1 { font-style: italic; margin-bottom: 0.75rem; }
.page-hero p { color: var(--gray); max-width: 540px; font-size: 1.05rem; }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--pink); }
.breadcrumb-sep { color: var(--gray-light); }

/* --- Service Detail --- */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-detail-content .section-label { margin-bottom: 0.5rem; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { color: var(--gray); margin-bottom: 1rem; }
.service-features { margin: 1.25rem 0; }
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.93rem;
  color: var(--charcoal);
}
.service-feature-item svg { color: var(--pink); flex-shrink: 0; margin-top: 0.15rem; }

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

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

.footer-brand .site-logo {
  display: block;
  margin-bottom: 1rem;
  color: var(--pink-light);
  font-size: 1.5rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--pink-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg { color: var(--pink-light); flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--pink-light); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--pink-light); }

/* --- Floating Mobile CTA --- */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: none;
}
.floating-cta .btn {
  box-shadow: 0 6px 30px rgba(232,132,122,0.5);
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
}

/* --- Utility --- */
.text-pink { color: var(--pink); }
.text-center { text-align: center; }
.text-gray { color: var(--gray); }
.italic { font-style: italic; }
.fw-600 { font-weight: 600; }
.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-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 2rem 0;
}

/* --- Success Message --- */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--rose);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-light);
}
.form-success h3 { color: var(--pink); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray); margin: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .section { padding: 56px 0; }
  .header-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 90vh; padding-bottom: 2rem; }
  .hero-content { padding: 3.5rem 0 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { gap: 1rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .header-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.82rem; }
  .floating-cta { display: block; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .stats-row { justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}

/* --- Nav Dropdown --- */
.nav-item { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: var(--transition);
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--pink); background: var(--rose); }

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-item:hover .nav-dropdown-toggle svg,
.nav-item.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(44,44,44,0.13);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}
.nav-dropdown a:hover { background: var(--rose); color: var(--pink); }
.nav-dropdown a svg { color: var(--pink); flex-shrink: 0; }

.nav-dropdown-divider {
  height: 1px;
  background: var(--gray-light);
  margin: 0.35rem 0.5rem;
}

/* Mobile dropdown */
.mobile-nav .mobile-dropdown { display: none; }
.mobile-nav .mobile-dropdown.open { display: block; }
.mobile-nav .mobile-dropdown a {
  padding-left: 2.5rem;
  font-size: 0.88rem;
  color: var(--gray);
  background: var(--cream);
}
.mobile-nav-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rose);
}
.mobile-nav-toggle-row a { border-bottom: none; flex: 1; }
.mobile-nav-toggle-row button {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.85rem;
}

/* --- Interactive Quiz Widget --- */
.quiz-widget-section {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.quiz-widget-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,132,122,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.quiz-widget-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.quiz-intro { color: var(--white); }
.quiz-intro .section-label { color: var(--pink-light); }
.quiz-intro h2 { color: var(--white); font-style: italic; margin-bottom: 1rem; }
.quiz-intro p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 0; }

.quiz-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative;
  min-height: 420px;
}

/* Progress bar */
.quiz-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.quiz-progress-pip {
  flex: 1;
  height: 4px;
  background: var(--gray-light);
  border-radius: 4px;
  transition: background 0.4s ease;
}
.quiz-progress-pip.active { background: var(--pink); }
.quiz-progress-pip.done { background: var(--pink-light); }

/* Step */
.quiz-step { display: none; animation: fadeSlideIn 0.35s ease forwards; }
.quiz-step.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.quiz-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}

.quiz-question {
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.quiz-options { display: flex; flex-direction: column; gap: 0.7rem; }

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.quiz-option:hover {
  border-color: var(--pink);
  background: var(--rose);
}
.quiz-option.selected {
  border-color: var(--pink);
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(232,132,122,0.15);
}
.quiz-option-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}
.quiz-option-text { font-size: 0.93rem; font-weight: 500; color: var(--charcoal); line-height: 1.35; }
.quiz-option-sub { font-size: 0.78rem; color: var(--gray); font-weight: 400; }

/* Result */
.quiz-result { display: none; animation: fadeSlideIn 0.4s ease forwards; }
.quiz-result.active { display: block; }

.quiz-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rose);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.quiz-result-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.quiz-result-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.quiz-result-includes {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}
.quiz-result-includes h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.6rem;
}
.quiz-result-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.quiz-result-item svg { color: var(--pink); flex-shrink: 0; }

.quiz-result-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.quiz-result-actions .btn { flex: 1; min-width: 140px; justify-content: center; font-size: 0.88rem; }

.quiz-restart {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-decoration: underline;
  width: 100%;
}
.quiz-restart:hover { color: var(--pink); }

@media (max-width: 900px) {
  .quiz-widget-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .quiz-intro { text-align: center; }
}
@media (max-width: 768px) {
  .quiz-widget-section { padding: 60px 0; }
  .quiz-card { padding: 1.75rem; min-height: auto; }
}

/* --- Accessibility: Focus Styles --- */
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

/* Skip-to-content link (hidden until focused) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--pink);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

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

/* --- Print --- */
@media print {
  .site-header, .floating-cta, .cta-banner { display: none; }
}
