:root {
  --bg: #FDFAF6;
  --surface: #FFFFFF;
  --text: #1A1512;
  --text-body: #4A3F37;
  --text-muted: #8A7E74;
  --primary: #8B6A4A;
  --secondary: #C4A882;
  --dark: #1A1512;
  --border-subtle: rgba(139, 106, 74, 0.12);
  --font-headings: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --pico-primary: #8B6A4A;
  --pico-primary-hover: #735839;
  --pico-primary-focus: rgba(139, 106, 74, 0.25);
  --pico-primary-inverse: #FFFFFF;
  --pico-background-color: #FDFAF6;
  --pico-color: #4A3F37;
  --pico-font-family: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s ease;
  padding: 0;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  gap: 0.25rem !important;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links li a:hover {
  color: var(--primary);
  background: rgba(139, 106, 74, 0.06);
}

.lang-toggle {
  background: none;
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.2s;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: var(--primary);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  width: auto;
  box-shadow: none;
  margin: 0;
  --pico-background-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 21, 18, 0.55) 0%, rgba(26, 21, 18, 0.7) 50%, rgba(26, 21, 18, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: #735839;
  border-color: #735839;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 106, 74, 0.4);
  color: white;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== SERVICES ========== */
.section-services {
  padding: 5rem 0;
}

.section-services h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 1px solid var(--border-subtle);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-icon {
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== PARALLAX ========== */
.parallax-section {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  will-change: transform;
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.7);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.parallax-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: white;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

/* ========== ABOUT ========== */
.section-about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background-color: var(--dark);
  min-height: 400px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential {
  background: rgba(139, 106, 74, 0.08);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.certification-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.certification-logos img {
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: opacity 0.3s, filter 0.3s;
}

.certification-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========== PRICING ========== */
.section-pricing {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(139, 106, 74, 0.04) 100%);
}

.section-pricing h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--secondary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.pricing-duration {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-headings);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-left: 1.5rem;
  position: relative;
  list-style: none;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  font-style: italic;
}

/* ========== SERVICE AREAS ========== */
.section-areas {
  padding: 5rem 0;
  text-align: center;
  background-color: rgba(139, 106, 74, 0.045);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0;
}

.section-areas h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.areas-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}

.area-tag {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.area-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ========== REVIEWS ========== */
.section-reviews {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(139, 106, 74, 0.03) 0%, var(--bg) 100%);
}

.section-reviews h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.reviews-header {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.google-icon {
  flex-shrink: 0;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-source {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
}

.review-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

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

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author strong {
  color: var(--text);
  font-size: 0.9rem;
}

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

/* ========== GALLERY ========== */
.section-gallery {
  padding: 5rem 0;
}

.section-gallery h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

/* ========== CONTACT ========== */
.section-contact {
  padding: 5rem 0;
}

.section-contact h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sms-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-align: center;
  border-color: unset;
}

.sms-cta:hover {
  background: #735839;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 106, 74, 0.4);
  color: white;
}

.phone-link {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.phone-link:hover {
  color: var(--dark);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.instagram-link:hover {
  color: var(--primary);
}

.response-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 106, 74, 0.12);
}

.contact-form .btn-primary {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  border: none;
}

.contact-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-result {
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.form-success {
  background: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-error {
  background: rgba(244, 67, 54, 0.12);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.footer-brand strong {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-cities {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cities span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-cities span::after {
  content: '\00B7';
  margin-left: 0.5rem;
}

.footer-cities span:last-child::after {
  content: '';
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0.25rem 0;
}

/* ========== SMS BUBBLE ========== */
.sms-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(139, 106, 74, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: bubblePulse 2s ease-in-out infinite;
}

.sms-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(139, 106, 74, 0.5);
  animation: none;
}

.sms-bubble svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes bubblePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(139, 106, 74, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(139, 106, 74, 0.6); }
}

.sms-tooltip {
  position: fixed;
  bottom: 92px;
  right: 24px;
  background: var(--surface);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.sms-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: var(--surface);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.sms-bubble:hover + .sms-tooltip,
.sms-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 250, 246, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-headings);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .site-header nav .nav-links {
    display: none !important;
  }

  .site-header nav .hamburger {
    display: flex !important;
  }

  .hero-content {
    padding: 7rem 1rem 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .parallax-section {
    height: 40vh;
    min-height: 250px;
  }

  .sms-bubble {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .sms-bubble svg {
    width: 24px;
    height: 24px;
  }

  .sms-tooltip {
    bottom: 76px;
    right: 16px;
  }

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

  .google-rating {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .credential-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

@supports (-webkit-touch-callout: none) {
  .parallax-bg,
  .hero-bg {
    background-attachment: scroll !important;
  }
}
