/* ===========================
   ABOUT PAGE STYLES
=========================== */

/* ---------- HERO ---------- */
.about-hero {
  background: 
    linear-gradient(rgba(255, 242, 241, 0.85), rgba(255, 242, 241, 0.85)), 
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?q=80&w=1200&auto=format&fit=crop") center/cover no-repeat;
  /* 👆 you can replace the Unsplash URL with your spa image */
  
  text-align: center;
  padding: 160px 20px; /* increased height */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh; /* responsive height */
}

.about-hero__content {
  max-width: 700px;
}

.about-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: var(--text, #222);
}

.about-hero__subtitle {
  font-size: 1.25rem;
  color: var(--muted, #444);
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 20px;
    min-height: 60vh;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero__subtitle {
    font-size: 1.05rem;
  }
}

/* ---------- STORY SECTION ---------- */
.story-section {
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ---------- STORY STATS ---------- */
.story-stats{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:2rem;
  margin-top:3rem;
  align-items:stretch;              /* ensure equal track heights */
}

.stat-item{
  display:flex;                     /* make all cards behave the same */
  flex-direction:column;
  justify-content:center;           /* center vertically */
  align-items:center;               /* center horizontally */
  gap:.35rem;
  background:#fff;
  border:1px solid var(--line, #f0e8e7);
  border-radius:12px;
  padding:18px 20px;
  height:100%;                      /* fill the grid cell */
  text-align:center;
  transition:transform .2s ease, box-shadow .2s ease;
}

.stat-item:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.stat-number{
  line-height:1;                    /* prevents tall line boxes */
  font-size:1.8rem;
  font-weight:700;
  color:var(--primary, #ff6b6b);
}

.stat-label{
  font-size:.65rem;
  color:var(--muted, #666);
}

/* Responsive columns */
@media (max-width: 900px){
  .story-stats{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .story-stats{ grid-template-columns:1fr; }
}


/* ---------- WHY CHOOSE US / FEATURES ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.feature i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.feature p {
  color: var(--muted);
}

/* ---------- VALUES SECTION ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--bg-alt, #fff2f1);
  padding: 80px 0;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-box__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiles (≤768px) */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .story-section {
    padding: 60px 0;
  }

  .story-content h2 {
    font-size: 2rem;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .cta-box__buttons {
    flex-direction: column;
  }
}

/* Small Mobiles (≤480px) */
@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero__subtitle {
    font-size: 1rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .feature, .value-card {
    padding: 1.5rem;
  }
}



/* ---------- ABOUT PAGE CTA ---------- */
.about-cta {
  background: #fff2f1;
  padding: 80px 0;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text, #222);
  margin: 0;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff6b6b;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-phone i {
  font-size: 1.1rem;
}

.cta-phone:hover {
  background: #ff4b4b;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .about-cta h2 {
    font-size: 1.6rem;
  }

  .cta-phone {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
