/* ============================================
   Mireia Ruiz Moya — Cleaning Services
   Styles v1.0
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --c-primary: #2E7D32;
  --c-primary-dark: #1B5E20;
  --c-primary-light: #4CAF50;
  --c-primary-bg: #E8F5E9;
  --c-accent: #FF6F00;
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #128C7E;
  --c-paypal: #003087;
  --c-text: #1a1a2e;
  --c-text-light: #555;
  --c-text-muted: #777;
  --c-bg: #ffffff;
  --c-bg-alt: #f7faf7;
  --c-bg-dark: #0f1f0f;
  --c-border: #e0e0e0;
  --c-star: #FFC107;

  /* Typography */
  --ff-heading: 'Montserrat', system-ui, sans-serif;
  --ff-body: 'Open Sans', system-ui, sans-serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.77rem + 0.2vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 0.75rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 5rem;
  --sp-section: clamp(3rem, 2.5rem + 3vw, 6rem);

  /* Radius */
  --r-sm: 0.375rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  /* Container */
  --container-max: 1200px;
  --container-px: clamp(1rem, 0.5rem + 2vw, 2rem);
}

/* ---- Reset & Base ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--c-primary-dark); }

ul, ol { list-style: none; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-primary);
  color: #fff;
  padding: var(--sp-sm) var(--sp-md);
  z-index: 9999;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: #fff;
  border-color: var(--c-whatsapp);
}
.btn--whatsapp:hover {
  background: var(--c-whatsapp-dark);
  border-color: var(--c-whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-xs);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-header__badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: var(--c-primary);
  background: var(--c-primary-bg);
  padding: 0.375rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-md);
}

.section-header__desc {
  font-size: var(--fs-md);
  color: var(--c-text-light);
  line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base);
}
.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  color: var(--c-text);
  flex-shrink: 0;
}
.header__logo img {
  width: 42px;
  height: 42px;
}
.header__brand {
  display: flex;
  flex-direction: column;
}
.header__name {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: var(--fs-sm);
  line-height: 1.2;
  color: var(--c-primary-dark);
}
.header__tagline {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: 1.2;
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.header__link {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.header__link:hover,
.header__link.active {
  color: var(--c-primary);
  background: var(--c-primary-bg);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: var(--c-primary-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: var(--c-primary-dark);
  transition: all var(--t-fast);
}
.lang-switcher__btn:hover {
  border-color: var(--c-primary);
}
.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 140px;
  z-index: 100;
}
.lang-switcher__menu.open {
  display: block;
  animation: fadeSlideDown 0.2s ease;
}
.lang-switcher__option {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  border: none;
  background: none;
  text-align: left;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background var(--t-fast);
  color: var(--c-text);
}
.lang-switcher__option:hover,
.lang-switcher__option.active {
  background: var(--c-primary-bg);
  color: var(--c-primary-dark);
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 1023px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: var(--sp-xl);
    z-index: 999;
  }
  .header__nav.open {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  .header__menu {
    flex-direction: column;
    gap: var(--sp-xs);
  }
  .header__link {
    font-size: var(--fs-md);
    padding: var(--sp-md);
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
  .header__burger {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: calc(72px + var(--sp-3xl)) 0 var(--sp-3xl);
  background: linear-gradient(135deg, var(--c-primary-bg) 0%, #fff 50%, #f0faf0 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(46,125,50,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  background: var(--c-primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
}

.hero__title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--sp-lg);
  line-height: 1.1;
}
.hero__title br { display: none; }

.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--c-text-light);
  max-width: 560px;
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xl);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.hero__stat-number::after {
  content: '\f067';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
}
.hero__stat span {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: 0.25rem;
}

.hero__image {
  display: none;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero__title br { display: block; }
  .hero__image { display: block; }
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--c-bg);
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--c-border);
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
}

.trust-bar__label {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xl);
  align-items: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--c-text-light);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--sp-section) 0;
  background: var(--c-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-primary-light);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-bg);
  border-radius: var(--r-md);
  color: var(--c-primary);
  margin-bottom: var(--sp-lg);
}

.service-card__title {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-sm);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  margin-bottom: var(--sp-md);
  flex-grow: 1;
}

.service-card__features {
  margin-bottom: var(--sp-lg);
}
.service-card__features li {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-card__features li::before {
  content: '\f00c';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--c-primary);
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.before-after {
  padding: var(--sp-section) 0;
  background: var(--c-bg-alt);
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

@media (min-width: 768px) {
  .before-after__grid { grid-template-columns: repeat(3, 1fr); }
}

.ba-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.ba-card:hover {
  box-shadow: var(--shadow-lg);
}

.ba-card__slider {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-card__before,
.ba-card__after {
  position: absolute;
  inset: 0;
}
.ba-card__before img,
.ba-card__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-card__after {
  clip-path: inset(0 50% 0 0);
}

.ba-card__label {
  position: absolute;
  bottom: 12px;
  padding: 0.25rem 0.75rem;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  border-radius: var(--r-sm);
  z-index: 2;
  pointer-events: none;
}
.ba-card__label--before {
  right: 12px;
  background: rgba(198, 40, 40, 0.85);
  color: #fff;
}
.ba-card__label--after {
  left: 12px;
  background: rgba(46, 125, 50, 0.85);
  color: #fff;
}

.ba-card__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
}

.ba-card__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.ba-card__divider::after {
  content: '\f337';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}

.ba-card__caption {
  padding: var(--sp-md);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-align: center;
  color: var(--c-text);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--sp-section) 0;
  background: var(--c-bg);
}

.reviews__summary {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  justify-content: center;
  margin-top: var(--sp-md);
  flex-wrap: wrap;
}
.reviews__stars {
  color: var(--c-star);
  font-size: var(--fs-lg);
  letter-spacing: 2px;
}
.reviews__avg {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--c-text);
}
.reviews__count {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 640px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  transition: all var(--t-base);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary-bg);
  color: var(--c-primary);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-size: var(--fs-sm);
}

.review-card__stars {
  color: var(--c-star);
  font-size: var(--fs-sm);
  letter-spacing: 1px;
}

.review-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.review-card__date {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--sp-section) 0;
  background: var(--c-bg-alt);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
@media (min-width: 768px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-align: center;
  transition: all var(--t-base);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--c-primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 0.25rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: var(--sp-xl);
}
.pricing-card__header h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-sm);
}

.pricing-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card__from {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.pricing-card__amount {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--c-primary);
}
.pricing-card__amount small {
  font-size: var(--fs-sm);
  font-weight: 600;
}

.pricing-card__features {
  margin-bottom: var(--sp-xl);
  text-align: left;
}
.pricing-card__features li {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '\f00c';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--c-primary);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--sp-section) 0;
  background: var(--c-bg);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-sm);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq__item[open] {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-base);
  padding: var(--sp-lg);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  transition: background var(--t-fast);
}
.faq__question:hover {
  background: var(--c-primary-bg);
}
.faq__question::after {
  content: '\f067';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 1rem;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

/* Remove default marker */
.faq__question::-webkit-details-marker { display: none; }

.faq__answer {
  padding: 0 var(--sp-lg) var(--sp-lg);
  color: var(--c-text-light);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--sp-section) 0;
  background: linear-gradient(135deg, var(--c-primary-bg) 0%, #fff 100%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
}
@media (min-width: 768px) {
  .contact__inner { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.contact__method {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-text);
  transition: all var(--t-base);
  text-decoration: none;
}
.contact__method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-light);
  color: var(--c-text);
}

.contact__method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__method-icon--whatsapp { background: #dcf8e6; color: var(--c-whatsapp-dark); }
.contact__method-icon--email { background: var(--c-primary-bg); color: var(--c-primary); }
.contact__method-icon--phone { background: #e3f2fd; color: #1565C0; }

.contact__method strong {
  display: block;
  font-size: var(--fs-sm);
}
.contact__method span {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

.contact__payment {
  margin-top: var(--sp-xl);
}
.contact__payment h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
  color: var(--c-text-muted);
}
.contact__payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.contact__payment-method {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-sm);
  color: var(--c-text-light);
}

.contact__map {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__map-placeholder {
  text-align: center;
  padding: var(--sp-2xl);
  background: var(--c-bg);
  border: 2px dashed var(--c-border);
  border-radius: var(--r-lg);
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
}
.contact__map-placeholder p {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--c-primary);
  font-size: var(--fs-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-bg-dark);
  color: #ccc;
  padding: var(--sp-2xl) 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.footer__brand strong {
  display: block;
  color: #fff;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
}
.footer__brand span {
  font-size: var(--fs-xs);
  color: #999;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.footer__links a {
  color: #aaa;
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: #fff; }

.footer__legal {
  font-size: var(--fs-xs);
  color: #888;
}
.footer__legal a {
  color: #aaa;
}
.footer__legal a:hover { color: #fff; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--c-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--t-base);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ---- Animations ---- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

/* ---- Scroll Reveal (JS adds these classes) ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Print ---- */
@media print {
  .header, .whatsapp-float, .lang-switcher { display: none; }
  body { font-size: 12pt; }
  .hero { padding-top: 0; }
}
