/* ═══════════════════════════════════════════════════
   Anna Redy Homeclean — style.css
   Design: Mint Fresh — Scandinavian Cleanliness
   Brand: #0D9488 (mint), #134E4A (deep teal), #F59E0B (amber CTA)
   Fonts: Space Grotesk (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #334155;
  background: #fff;
  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; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; color: #134E4A; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }
p { color: #64748b; }

/* ── Container ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Utility ── */
.text-mint { color: #0D9488; }
.text-teal { color: #134E4A; }
.text-muted { color: #64748b; }
.text-light { color: #94a3b8; }
.bg-mint { background-color: #0D9488; }
.bg-teal { background-color: #134E4A; }
.bg-mint-light { background-color: #f0fdfa; }
.bg-gray-light { background-color: #f8fafb; }
.font-display { font-family: 'Space Grotesk', sans-serif; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.fw-bold { font-weight: 700; }
.fw-semi { font-weight: 600; }
.inline-block { display: inline-block; }
.block { display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: #0D9488; color: #fff; box-shadow: 0 4px 14px rgba(13,148,136,0.25); }
.btn-primary:hover { background: #134E4A; box-shadow: 0 6px 20px rgba(19,78,74,0.3); }
.btn-outline { border: 2px solid #0D9488; color: #0D9488; background: transparent; }
.btn-outline:hover { background: #0D9488; color: #fff; }
.btn-white { background: #fff; color: #134E4A; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn-white:hover { background: #f0fdfa; }
.btn-ghost { border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8rem; }

/* ── Badge / Pill ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(13,148,136,0.1);
  color: #0D9488;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pill-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #0D9488; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.price-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: #f0fdfa;
  color: #0D9488;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Section Spacing ── */
.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
@media (max-width: 768px) { .section { padding: 3rem 0; } .section-lg { padding: 4rem 0; } }

.section-header { max-width: 48rem; margin: 0 auto 3.5rem; text-align: center; }
.section-header p { margin-top: 1rem; line-height: 1.7; }

/* ── Grid ── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: rgba(13,148,136,0.3); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: #e2e8f0; box-shadow: 0 1px 10px rgba(0,0,0,0.04); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .navbar-inner { height: 4.5rem; } }
.navbar-logo img { height: 3.5rem; width: auto; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #0D9488; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0D9488;
  border-radius: 1px;
}
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  color: #134E4A;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 1rem;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: #f0fdfa; color: #0D9488; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ── Hero ── */
.hero {
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 50%, #f8fafb 100%);
}
.hero-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(13,148,136,0.05);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(33%, -50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 3rem; }
}
.hero-content { padding: 2rem 0 3rem; }
@media (min-width: 1024px) { .hero-content { padding: 4rem 0 6rem; } }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content h1 span { color: #0D9488; }
.hero-content p { max-width: 36rem; }
.hero-content p + p { margin-top: 0.75rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.hero-stats .stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: #134E4A; }
.hero-stats .stat-label { font-size: 0.75rem; color: #64748b; margin-top: 0.125rem; }
.hero-stats .stat-divider { width: 1px; height: 2.5rem; background: #e2e8f0; }

.hero-banner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media (min-width: 640px) { .hero-banner { height: 360px; } }
@media (min-width: 1024px) { .hero-banner { height: 420px; } }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff, transparent);
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; margin-bottom: 0; }

/* ── Inquiry Form ── */
.inquiry-form-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}
.inquiry-form-card h3 { margin-bottom: 0.25rem; }
.inquiry-form-card .form-subtitle { color: #64748b; font-size: 0.875rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: #334155;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0D9488;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-submit {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: #0D9488;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover { background: #134E4A; }
.form-note { text-align: center; margin-top: 0.75rem; font-size: 0.8rem; color: #94a3b8; }
.form-note a { color: #0D9488; font-weight: 600; }

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #0D9488;
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ── Service Cards (home) ── */
.service-card .card-icon.icon-mint { background: #f0fdfa; color: #0D9488; }
.service-card .card-icon.icon-amber { background: rgba(254,249,195,0.4); color: #d97706; }
.service-card .card-icon.icon-blue { background: #eff6ff; color: #2563eb; }
.service-card .card-icon.icon-pink { background: #fdf2f8; color: #db2777; }
.service-card .card-icon.icon-purple { background: #f5f3ff; color: #7c3aed; }
.service-card .card-icon.icon-green { background: #ecfdf5; color: #059669; }

.feature-list { margin-bottom: 1rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 0.375rem;
}
.feature-list li .check { color: #0D9488; font-weight: 700; }

/* ── Steps / How It Works ── */
.step-card { position: relative; }
.step-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #0D9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(13,148,136,0.25);
  margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; }

/* ── Why Us ── */
.why-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  height: 100%;
}
.why-card:hover { border-color: rgba(13,148,136,0.2); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.why-card .why-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #0D9488;
}
.why-card h4 { margin-bottom: 0.5rem; }
.why-card p { font-size: 0.75rem; }

/* ── Team / Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
}
.stat-box .stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem; font-weight: 700; color: #0D9488; margin-bottom: 0.25rem; }
.stat-box .stat-desc { font-size: 0.875rem; color: #64748b; }

.team-section { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .team-section { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.team-img-wrap { position: relative; }
.team-img-wrap img { border-radius: 1rem; box-shadow: 0 10px 40px rgba(0,0,0,0.1); width: 100%; }
.team-badge {
  position: absolute;
  bottom: -1.25rem;
  right: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.team-badge .badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D9488;
  font-size: 1.25rem;
}

/* ── Pricing Table ── */
.pricing-table {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.pricing-header {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 4fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #134E4A;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-row {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 4fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  align-items: center;
  border-top: 1px solid #f1f5f9;
}
.pricing-row:nth-child(even) { background: #f8fafb; }
.pricing-row .service-name { font-weight: 600; color: #134E4A; }
.pricing-row .price-val { font-weight: 700; color: #0D9488; }
.pricing-row .price-note { font-size: 0.75rem; color: #64748b; }
@media (max-width: 640px) {
  .pricing-header, .pricing-row { grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.8rem; }
  .pricing-row .price-note { grid-column: 1 / -1; }
}

/* ── Testimonials ── */
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.stars { display: flex; gap: 0.125rem; color: #F59E0B; font-size: 1rem; }
.service-badge { font-size: 0.625rem; font-weight: 600; color: #0D9488; background: #f0fdfa; padding: 0.25rem 0.5rem; border-radius: 9999px; }
.testimonial-card blockquote { font-size: 0.875rem; color: #475569; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.testimonial-footer { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid #f1f5f9; }
.avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #0D9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.testimonial-footer .name { font-size: 0.875rem; font-weight: 600; color: #134E4A; }
.testimonial-footer .city { font-size: 0.75rem; color: #94a3b8; }

/* ── Service Area ── */
.area-box {
  background: #f0fdfa;
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 1024px) { .area-box { padding: 3rem; } }
.area-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .area-grid { grid-template-columns: 1fr auto; } }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.area-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  color: #134E4A;
  border: 1px solid rgba(13,148,136,0.2);
}
.area-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  text-align: center;
}
.area-card .map-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #0D9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

/* ── CTA Section ── */
.cta-section { background: #134E4A; color: #fff; text-align: center; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.7); }
.cta-section .sub-text { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }

/* ── Footer ── */
.footer { background: #134E4A; color: #fff; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; } }
.footer-logo img { height: 2.75rem; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); font-size: 0.875rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-links a:hover { color: #5EEAD4; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-contact li .icon { color: #5EEAD4; font-size: 1.125rem; flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #5EEAD4; }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #5EEAD4; }
.footer-disclaimer {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #0D9488;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(13,148,136,0.4);
  animation: float-pulse 3s infinite ease-in-out;
  transition: transform 0.2s;
}
.floating-cta a:hover { transform: scale(1.1); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(13,148,136,0.4); }
  50% { box-shadow: 0 4px 30px rgba(13,148,136,0.6); }
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Legal Pages ── */
.legal-hero { background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%); padding: 8rem 0 3rem; text-align: center; }
.legal-hero p { margin-top: 0.75rem; }
.legal-content { max-width: 48rem; margin: 0 auto; padding: 3rem 1rem; }
.legal-content h2 { font-size: 1.35rem; margin: 2.5rem 0 0.75rem; padding-top: 1.5rem; border-top: 1px solid #f1f5f9; }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p { margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.8; }
.legal-content ul { margin: 0.75rem 0 1.5rem 1.5rem; }
.legal-content ul li { font-size: 0.9rem; color: #64748b; margin-bottom: 0.5rem; position: relative; padding-left: 1rem; }
.legal-content ul li::before { content: '•'; position: absolute; left: 0; color: #0D9488; font-weight: 700; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e2e8f0; }

/* ── About Page ── */
.about-hero { position: relative; padding: 8rem 0 4rem; overflow: hidden; }
.about-hero .hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #f0fdfa 0%, #fff 50%, #f8fafb 100%); z-index: 0; }
.about-hero .container { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.value-card { text-align: center; padding: 2rem 1.5rem; }
.value-card .value-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #0D9488;
}

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.contact-info-card {
  background: #134E4A;
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .ci-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5EEAD4;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-info-item .ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-info-item .ci-value { font-size: 0.9rem; color: #fff; }
.contact-info-item a { color: #5EEAD4; }

/* ── FAQ Accordion ── */
.faq-item { border: 1px solid #e2e8f0; border-radius: 0.75rem; margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #134E4A;
  background: #fff;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: #f8fafb; }
.faq-question .faq-toggle { font-size: 1.25rem; color: #0D9488; transition: transform 0.3s; font-weight: 400; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.25rem 1rem; }
.faq-answer p { font-size: 0.85rem; line-height: 1.7; }

/* ── Services Detail Page ── */
.service-detail { padding: 3rem 0; border-bottom: 1px solid #f1f5f9; }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }
.service-detail-img { border-radius: 1rem; overflow: hidden; }
.service-detail-img img { width: 100%; height: 300px; object-fit: cover; border-radius: 1rem; }
.inclusion-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1rem 0; }
.inclusion-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #475569; }
.inclusion-list li .check { color: #0D9488; }
.process-steps { margin: 1.5rem 0; }
.process-step { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.process-step .step-dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #f0fdfa;
  color: #0D9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.process-step p { font-size: 0.85rem; }
.service-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.service-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #475569; }
.service-meta-item .meta-icon { color: #0D9488; }

/* ── Booking Steps ── */
.booking-step { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.booking-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #0D9488;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Responsive helpers ── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 1024px) { .hide-desktop { display: none; } }
