/* =============================================
   ChrysCleaning Design System - Pure CSS
   Primary: #1b7a3d (green trust)
   Secondary: #2d9e52
   ============================================= */

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

:root {
  --primary: #1b7a3d;
  --primary-dark: #145e2f;
  --primary-light: #e8f5e9;
  --secondary: #2d9e52;
  --foreground: #1a2332;
  --muted: #6b7a8d;
  --background: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --shadow-soft: 0 4px 20px -4px rgba(26,35,50,.08);
  --shadow-card: 0 8px 30px -8px rgba(26,35,50,.12);
  --shadow-lg: 0 20px 60px -10px rgba(26,35,50,.18);
  --radius: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--foreground); background: var(--background); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

/* --- Layout Utilities --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--surface); }
.section--dark { background: var(--foreground); color: white; }
.section--primary { background: var(--primary); color: white; }
.text-center { text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: .5rem; background: var(--primary-light); color: var(--primary); padding: .4rem 1rem; border-radius: var(--radius-full); font-size: .85rem; font-weight: 600; margin-bottom: 1rem; }
.section-label .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 1.5s infinite; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.6rem; border-radius: var(--radius-full); font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .2s ease; text-decoration: none; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(27,122,61,.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #f0fdf4; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-rounded { border-radius: var(--radius-full); }
.btn svg { flex-shrink: 0; }

/* --- Navbar --- */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: .4rem; font-size: .875rem; color: var(--muted); transition: color .2s; }
.nav-phone:hover { color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--foreground); border-radius: 2px; transition: all .3s; }
.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 */
.nav-mobile { display: none; border-top: 1px solid var(--border); padding: 1rem 0; }
.nav-mobile.open { display: block; }
.nav-mobile-links { display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile-links .nav-link { display: block; padding: .75rem 1rem; border-radius: var(--radius); }
.nav-mobile-links .nav-link.active, .nav-mobile-links .nav-link:hover { background: var(--primary-light); color: var(--primary); }
.nav-mobile-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.nav-mobile-cta .btn { width: 100%; justify-content: center; }

/* --- Hero --- */
.hero { background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #f0fdf4 100%); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-80px; right:-80px; width:400px; height:400px; background:rgba(27,122,61,.05); border-radius:50%; pointer-events:none; }
.hero::after { content:''; position:absolute; bottom:-60px; left:-60px; width:300px; height:300px; background:rgba(45,158,82,.05); border-radius:50%; pointer-events:none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { animation: fadeInUp .6s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--primary-light); color: var(--primary); padding: .45rem 1rem; border-radius: var(--radius-full); font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 1.5s infinite; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--primary); }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
.trust-badge { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--muted); }
.trust-badge svg { color: var(--secondary); flex-shrink: 0; }
.hero-image { position: relative; animation: fadeInUp .6s .2s ease both; }
.hero-image-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,35,50,.2), transparent); border-radius: var(--radius-xl); }
.hero-stat { position: absolute; bottom: -1.5rem; left: -1.5rem; background: white; border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: .75rem; }
.hero-stat-icon { width: 48px; height: 48px; border-radius: 50%; background: #f0fdf4; display: flex; align-items: center; justify-content: center; }
.hero-stat-icon svg { color: var(--secondary); }
.hero-stat strong { display: block; font-size: 1.5rem; color: var(--foreground); }
.hero-stat span { font-size: .8rem; color: var(--muted); }
.hero-pill { position: absolute; top: -1rem; right: -1rem; background: var(--primary); color: white; border-radius: var(--radius-full); padding: .5rem 1rem; font-size: .875rem; font-weight: 600; box-shadow: 0 4px 12px rgba(27,122,61,.4); }

/* --- Quick Services --- */
.services-strip { background: var(--foreground); padding: 2.5rem 0; }
.services-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.strip-item { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.strip-item:hover { background: rgba(255,255,255,.05); }
.strip-item-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strip-item-icon svg { color: white; }
.strip-item span { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8); }

/* --- Why Choose Us --- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius-xl); border: 1px solid var(--border); background: white; box-shadow: var(--shadow-soft); transition: all .3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--primary-light); }
.why-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.why-icon svg { color: var(--primary); }
.why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-card p { font-size: .875rem; color: var(--muted); }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: white; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: all .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 1.5rem; }
.service-card-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-card-icon svg { color: var(--primary); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.service-card-link { font-size: .875rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.service-card-link:hover { gap: .5rem; }

/* --- How It Works --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::after { content:''; position:absolute; top: 2rem; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--primary-light), var(--primary-light)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--primary); color: white; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; border: 4px solid white; box-shadow: 0 0 0 3px var(--primary-light); }
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; color: var(--muted); }

/* --- Gallery Before/After --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.gallery-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-imgs img { height: 220px; object-fit: cover; }
.gallery-label { position: absolute; bottom: .75rem; left: .75rem; right: .75rem; display: flex; justify-content: space-between; }
.gallery-label span { background: rgba(26,35,50,.75); color: white; font-size: .7rem; font-weight: 700; padding: .25rem .6rem; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .05em; }
.gallery-label span.after { background: var(--primary); }

/* --- Reviews --- */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.review-card { background: white; border-radius: var(--radius-xl); padding: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: all .3s; position: relative; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.review-quote { position: absolute; top: 1rem; right: 1rem; color: rgba(27,122,61,.1); }
.review-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.star { color: #f59e0b; font-size: 1.1rem; }
.review-text { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.review-author { border-top: 1px solid var(--border); padding-top: 1rem; }
.review-author strong { display: block; font-size: .925rem; }
.review-author span { font-size: .8rem; color: var(--muted); }

/* --- Service Area --- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.5rem; }
.area-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.area-item svg { color: var(--primary); flex-shrink: 0; }
.area-map { background: var(--surface); border-radius: var(--radius-xl); padding: 2rem; border: 1px solid var(--border); text-align: center; }
.area-map-icon { font-size: 4rem; margin-bottom: 1rem; }

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: .95rem; font-weight: 600; color: var(--foreground); }
.faq-toggle svg { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-toggle svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-card { background: white; border-radius: var(--radius-xl); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.form-card h2 { margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .875rem; font-weight: 600; color: var(--foreground); margin-bottom: .4rem; }
input, select, textarea { width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9rem; font-family: var(--font); color: var(--foreground); background: white; transition: border-color .2s, box-shadow .2s; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,122,61,.12); }
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%236b7a8d' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }
.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .75rem; }
.form-msg { display: none; padding: 1rem; border-radius: var(--radius); margin-top: 1rem; font-size: .9rem; font-weight: 500; }
.form-msg.success { background: #f0fdf4; color: var(--primary); border: 1px solid #bbf7d0; }
.form-msg.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* Contact Info cards */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info h2 { margin-bottom: .75rem; }
.contact-info > p { color: var(--muted); margin-bottom: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: white; border-radius: var(--radius); padding: 1.25rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: all .25s; }
.contact-card:hover { box-shadow: var(--shadow-card); border-color: var(--primary-light); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.contact-card:hover .contact-card-icon { background: var(--primary); }
.contact-card-icon svg { color: var(--primary); transition: color .25s; }
.contact-card:hover .contact-card-icon svg { color: white; }
.contact-card h4 { font-size: .925rem; font-weight: 700; margin-bottom: .2rem; }
.contact-card p, .contact-card a { font-size: .875rem; color: var(--muted); }
.contact-card-hint { font-size: .78rem; color: var(--primary); margin-top: .2rem; }

/* --- About Page --- */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-hero-img { position: relative; }
.about-hero-img img { border-radius: var(--radius-xl); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-stat-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--primary); color: white; border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-card); }
.about-stat-badge strong { display: block; font-size: 2rem; }
.about-stat-badge span { font-size: .85rem; opacity: .9; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { text-align: center; padding: 2rem 1.25rem; border-radius: var(--radius-xl); transition: background .2s; }
.value-card:hover { background: var(--surface); }
.value-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.value-icon svg { color: var(--primary); }
.value-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: var(--muted); }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: white; border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.mv-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.mv-icon.primary { background: var(--primary-light); }
.mv-icon.secondary { background: #ecfdf5; }
.mv-icon svg { }
.mv-card h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.mv-card p { color: var(--muted); }
.commitment-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.commitment-badge { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15); padding: .5rem 1rem; border-radius: var(--radius-full); font-size: .875rem; }
.commitment-badge svg { flex-shrink: 0; }

/* --- Services Detail Page --- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-content { order: 2; }
.service-detail.reverse .service-detail-img { order: 1; }
.service-detail-img img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.service-detail-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.service-detail-header .svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; }
.service-detail-header .svc-icon svg { color: var(--primary); }
.service-detail p { color: var(--muted); margin-bottom: 1.5rem; }
.includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.25rem; }
.includes-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted); }
.includes-list li svg { color: var(--secondary); flex-shrink: 0; margin-top: .1rem; }
.best-for { background: var(--surface); border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .875rem; margin-bottom: 1.5rem; }
.best-for strong { color: var(--foreground); }
.best-for span { color: var(--muted); }

/* --- Reviews Page --- */
.reviews-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-page-card { background: white; border-radius: var(--radius-xl); padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: all .3s; position: relative; }
.review-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-service-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: .75rem; font-weight: 600; padding: .25rem .75rem; border-radius: var(--radius-full); margin-bottom: 1rem; }
.rating-summary { display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem; }
.rating-score { font-size: 3rem; font-weight: 800; color: var(--foreground); }
.rating-details .stars { display: flex; gap: .2rem; }
.rating-details span { font-size: .8rem; color: var(--muted); }

/* --- Privacy/Terms --- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; margin: 2.5rem 0 .75rem; }
.legal-content p, .legal-content li { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: .75rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
.legal-content a { color: var(--primary); text-decoration: underline; }

/* --- Footer --- */
.footer { background: var(--foreground); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-desc { font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); transition: all .2s; }
.social-link:hover { background: var(--primary); color: white; }
.footer-heading { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; }
.footer-contact-list svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-list a:hover { color: var(--primary); }
.footer-contact-list span { color: rgba(255,255,255,.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-legal a:hover { color: var(--primary); }

/* --- Floating WhatsApp --- */
.floating-whatsapp { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: all .3s; }
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* --- Page Hero --- */
.page-hero { background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #f0fdf4 100%); padding: 4.5rem 0; text-align: center; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-grid, .about-hero-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: none; }
  .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .reviews-page-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .steps-grid::after { display: none; }
  .services-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-content { order: unset; }
  .service-detail.reverse .service-detail-img { order: unset; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid, .reviews-page-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-strip-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .includes-list { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid, .values-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.85rem; }
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
