/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Palette */
  --tan-light: #d4c4a8;
  --tan: #c3a984;
  --tan-dark: #a08a64;
  --brown-light: #8b7355;
  --brown: #6b5635;
  --brown-dark: #3d2e1a;
  --brown-darkest: #2a1f11;
  --cream: #f5efe6;
  --cream-dark: #e8dcc8;
  --offwhite: #faf8f4;
  --black-warm: #1a1510;

  /* Functional */
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1ebe57;
  --calendly-blue: #006bff;
  --calendly-hover: #0052cc;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--brown-darkest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brown-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-paw {
  width: 60px;
  height: 60px;
  animation: pawBounce 0.8s ease-in-out infinite alternate;
}

@keyframes pawBounce {
  from { transform: translateY(0) scale(1); opacity: 0.6; }
  to { transform: translateY(-15px) scale(1.1); opacity: 1; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -30px;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bgDrift 25s ease-in-out infinite alternate;
  filter: brightness(0.45) saturate(0.8);
}

@keyframes bgDrift {
  0% { transform: scale(1.08) translate(0, 0); }
  25% { transform: scale(1.12) translate(-8px, -5px); }
  50% { transform: scale(1.06) translate(5px, -10px); }
  75% { transform: scale(1.1) translate(-5px, 5px); }
  100% { transform: scale(1.08) translate(3px, -3px); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(26, 21, 16, 0.6) 70%),
    linear-gradient(to bottom,
      rgba(42, 31, 17, 0.3) 0%,
      transparent 30%,
      transparent 60%,
      rgba(42, 31, 17, 0.85) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
}

/* Logo */
.hero__logo {
  width: clamp(220px, 50vw, 380px);
  height: clamp(220px, 50vw, 380px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.5));
  animation: logoReveal 1.2s var(--ease-out) both;
  animation-delay: 0.3s;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Tagline */
.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--tan-light);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: 0.7s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero__tagline em {
  font-style: italic;
  color: var(--cream);
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: rgba(212, 196, 168, 0.75);
  margin-top: 0.75rem;
  font-weight: 400;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: 0.9s;
  letter-spacing: 0.03em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.hero__cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: 1.1s;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
}

.btn:hover::before {
  opacity: 1;
}

.btn--calendly {
  background: linear-gradient(135deg, var(--tan) 0%, var(--brown-light) 100%);
  color: var(--offwhite);
  box-shadow: 0 4px 20px rgba(195, 169, 132, 0.3);
}

.btn--calendly::before {
  background: linear-gradient(135deg, var(--tan-dark) 0%, var(--brown) 100%);
}

.btn--calendly:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(195, 169, 132, 0.4);
}

.btn--whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp::before {
  background: var(--whatsapp-hover);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: 1.5s;
}

.scroll-indicator__text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(212, 196, 168, 0.5);
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTION STYLES ===== */
section {
  position: relative;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad) 1.5rem;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: linear-gradient(to bottom, rgb(42, 31, 17), var(--black-warm));
}

.problem__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--tan);
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(195, 169, 132, 0.3);
  border-radius: 30px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(212, 196, 168, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.problem__card {
  background: rgba(195, 169, 132, 0.06);
  border: 1px solid rgba(195, 169, 132, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--tan), var(--brown-light));
  opacity: 0;
  transition: opacity 0.4s;
}

.problem__card:hover {
  background: rgba(195, 169, 132, 0.1);
  transform: translateY(-4px);
  border-color: rgba(195, 169, 132, 0.2);
}

.problem__card:hover::before {
  opacity: 1;
}

.problem__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.problem__card p {
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.65);
  line-height: 1.7;
}

/* ===== APPROACH / PHILOSOPHY ===== */
.approach {
  background: var(--black-warm);
  position: relative;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tan), transparent);
  opacity: 0.2;
}

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

.approach__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.approach__text > p {
  font-size: 1rem;
  color: rgba(212, 196, 168, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.approach__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tan);
  line-height: 1;
  min-width: 2.5rem;
  opacity: 0.7;
}

.pillar__content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.pillar__content p {
  font-size: 0.88rem;
  color: rgba(212, 196, 168, 0.6);
  line-height: 1.7;
}

/* Round Image */
.approach__image-wrapper {
  display: flex;
  justify-content: center;
}

.round-image {
  width: clamp(300px, 55vw, 480px);
  height: clamp(300px, 55vw, 480px);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(195, 169, 132, 0.25);
  box-shadow:
    0 0 0 8px rgba(195, 169, 132, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.round-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.round-image:hover img {
  transform: scale(1.05);
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(to bottom, var(--black-warm), var(--brown-darkest));
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(195, 169, 132, 0.05);
  border: 1px solid rgba(195, 169, 132, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.service-card:hover {
  background: rgba(195, 169, 132, 0.1);
  transform: translateY(-6px);
  border-color: rgba(195, 169, 132, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__features {
  list-style: none;
  text-align: left;
}

.service-card__features li {
  font-size: 0.85rem;
  color: rgba(212, 196, 168, 0.55);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(195, 169, 132, 0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__features li::before {
  content: '✓';
  color: var(--tan);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== ABOUT JAMES ===== */
.about {
  background: var(--brown-darkest);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tan), transparent);
  opacity: 0.2;
}

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

.about__image-wrapper {
  display: flex;
  justify-content: center;
}

.about__text-block {
  max-width: 560px;
}

.about__text-block .section-label {
  margin-bottom: 1rem;
}

.about__text-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about__text-block p {
  font-size: 0.95rem;
  color: rgba(212, 196, 168, 0.7);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about__text-block p strong {
  color: var(--tan-light);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(195, 169, 132, 0.12);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--tan);
  font-weight: 700;
  display: block;
}

.stat__label {
  font-size: 0.75rem;
  color: rgba(212, 196, 168, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
  display: block;
}

/* ===== CONTACT / BOOKING ===== */
.contact {
  background: linear-gradient(to bottom, var(--brown-darkest), var(--black-warm));
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact__info p {
  font-size: 0.95rem;
  color: rgba(212, 196, 168, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(212, 196, 168, 0.7);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(195, 169, 132, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Contact Form */
.contact__form {
  background: rgba(195, 169, 132, 0.05);
  border: 1px solid rgba(195, 169, 132, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(195, 169, 132, 0.08);
  border: 1px solid rgba(195, 169, 132, 0.15);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(212, 196, 168, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--tan);
  background: rgba(195, 169, 132, 0.12);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c3a984' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--brown-darkest);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn--wa-submit {
  width: 100%;
  justify-content: center;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn--wa-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  background: var(--whatsapp-hover);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-warm);
  border-top: 1px solid rgba(195, 169, 132, 0.08);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.footer__text {
  font-size: 0.8rem;
  color: rgba(212, 196, 168, 0.4);
  line-height: 1.6;
}

.footer__text a {
  color: var(--tan);
  transition: color 0.3s;
}

.footer__text a:hover {
  color: var(--cream);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease-out);
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(42, 31, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__links {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(212, 196, 168, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tan);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--cream);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav__menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--tan);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(42, 31, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cream);
  transition: color 0.3s;
}

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

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

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

@media (min-width: 768px) {
  .approach__content {
    grid-template-columns: 1fr 1fr;
  }

  .about__content {
    grid-template-columns: auto 1fr;
  }

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

@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }

  .nav__menu-btn {
    display: none;
  }

  .problem__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero__bg img {
    animation: none;
    transform: scale(1.05);
  }
}

/* ===== AREA TAG ===== */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(212, 196, 168, 0.5);
  margin-top: 1rem;
  animation: fadeUp 1s var(--ease-out) both;
  animation-delay: 1.3s;
}

.area-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

