/* ===============================
   CSS RESET + BASE
================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2ecc71;
  --secondary: #1abc9c;
  --dark: #0f172a;
  --light: #ffffff;
  --muted: #64748b;
  --bg: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
}

/* ===============================
   GLOBAL ELEMENTS
================================ */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

section {
  padding: 4rem 1.5rem;
}

header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

header p {
  color: var(--muted);
  max-width: 600px;
}

/* ===============================
   NAVBAR
================================ */
header {
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

/* CTA button */
nav div:last-child a {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
}

/* ===============================
   HERO SECTION
================================ */
/* ===== HERO SECTION ===== */

/* ===============================
   HERO BACKGROUND IMAGE (IMG NO.1)
================================ */
.hero {
  position: relative;
  background: url("https://i.ibb.co/680bba7e-d063-4ff2-a23a-1c2366c491bd.png")
    center / cover no-repeat;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  padding: 6.5rem 1.5rem;
  overflow: hidden;
}

/* Dark + soft overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.45)
  );
  z-index: 1;
}

/* Keep content above background */
.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}


.hero {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 1.5rem;
  display: grid;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #16a34a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero p {
  color: #64748b;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #2ecc71;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid #2ecc71;
  color: #2ecc71;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Desktop layout */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}


/* ===============================
   SERVICES & PROGRAMS GRID
================================ */
/* ===============================
   SERVICES SECTION
================================ */
#services {
  background: var(--light);
  padding: 4rem 1.5rem;
}

/* Section heading */
#services .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

#services .section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Grid layout */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

/* Service card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

/* Image */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Text */
.service-card h3 {
  font-size: 1.3rem;
  margin: 1.2rem 1.2rem 0.5rem;
}

.service-card p {
  margin: 0 1.2rem 1.5rem;
  color: var(--muted);
}

/* ===============================
   RESPONSIVE GRID
================================ */

/* Desktop – horizontal row */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ABOUT SECTION
================================ */
/* ===============================
   WHY CHOOSE US
================================ */
.why-choose-us {
  background: #f8fafc;
  padding: 5rem 1.5rem;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 4rem;
  align-items: center;
}

.section-tag {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #16a34a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-content h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.why-content p {
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 520px;
}

.why-image img {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.why-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.why-list li {
  margin-bottom: 1.2rem;
}

.why-list strong {
  display: block;
  font-weight: 600;
}

.why-list span {
  color: #64748b;
  font-size: 0.95rem;
}

/* Desktop */
@media (min-width: 768px) {
  .why-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===============================
   WELLNESS PROGRAMS
================================ */
.programs {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.programs .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.programs-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

.program-card {
  background: #f8fafc;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.program-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 1.3rem;
}

.program-card p {
  color: #64748b;
}

/* Program tag */
.program-tag {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #16a34a;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Desktop */
@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet */
@media (max-width: 767px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   TESTIMONIALS
================================ */
/* ===============================
   TESTIMONIALS
================================ */
.testimonials {
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.08),
    rgba(26, 188, 156, 0.12)
  );
  padding: 5rem 1.5rem;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
}

.testimonial-text {
  color: #475569;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #64748b;
}

/* Desktop */
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}


/* ===============================
   PREMIUM BLOG SECTION
================================ */
.articles-modern {
  background: #f8fafc;
  padding: 5.5rem 1.5rem;
}

.articles-modern .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.articles-modern .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

.articles-modern .section-header p {
  color: #64748b;
  max-width: 620px;
  margin: 0.6rem auto 0;
}

/* Blog grid */
.articles-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

/* Blog card */
.article-item {
  background: #ffffff;
  padding: 2.4rem 2.6rem;
  border-radius: 18px;
  border-left: 6px solid #2ecc71;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* Tag */
.article-tag {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #16a34a;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Title */
.article-item h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

/* Description */
.article-item p {
  color: #64748b;
  max-width: 650px;
  margin-bottom: 1.2rem;
}

/* Read link */
.article-item a {
  font-weight: 600;
  color: #16a34a;
  position: relative;
  display: inline-block;
}

.article-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: width 0.3s ease;
}

.article-item a:hover::after {
  width: 100%;
}

/* ===============================
   RESPONSIVE LAYOUT
================================ */

/* Desktop */
@media (min-width: 768px) {
  .articles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 767px) {
  .articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .articles-list {
    grid-template-columns: 1fr;
  }

  .article-item {
    padding: 2rem;
  }
}




/* ===============================
   FINAL CALL TO ACTION
================================ */
.final-cta {
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.95),
    rgba(26, 188, 156, 0.95)
  );
  padding: 6rem 1.5rem;
  text-align: center;
  color: #ffffff;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #16a34a;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Mobile spacing */
@media (max-width: 480px) {
  .final-cta {
    padding: 5rem 1.25rem;
  }
}


/* ===============================
   PREMIUM FOOTER
================================ */
.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 5rem 1.5rem 2rem;
}

/* Main grid */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 3.5rem;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  max-width: 420px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Headings */
.footer-links h4,
.footer-contact h4,
.footer-location h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Links */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
  color: #cbd5f5;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #2ecc71;
}

/* Contact */
.footer-contact p {
  margin-bottom: 0.6rem;
  color: #cbd5f5;
}

/* Location */
.footer-location p {
  margin-bottom: 0.8rem;
  color: #cbd5f5;
}

.footer-location iframe {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 14px;
  margin-top: 1rem;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-legal a {
  color: #94a3b8;
}

.footer-legal span {
  margin: 0 0.5rem;
}

/* ===============================
   FOOTER MAP (SEPARATE)
================================ */
/* ===============================
   FOOTER MAP (POLISHED)
================================ */
.footer-map {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.footer-map iframe {
  width: 100%;
  height: 260px;          /* control size */
  border: 0;
  border-radius: 18px;   /* smooth rounded corners */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  filter: grayscale(70%) brightness(0.95);
}

@media (max-width: 480px) {
  .footer-map iframe {
    height: 220px;
    border-radius: 14px;
  }
}


/* Desktop layout */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===============================
   CSS RESET + BASE
================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2ecc71;
  --secondary: #1abc9c;
  --dark: #0f172a;
  --light: #ffffff;
  --muted: #64748b;
  --bg: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

/* ===============================
   GLOBAL ELEMENTS
================================ */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

section {
  padding: 4rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ===============================
   NAVBAR
================================ */
header {
  background: var(--light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a:hover {
  color: var(--primary);
}

nav div:last-child a {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
}

/* ===============================
   HERO SECTION (FIXED)
================================ */
.hero {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 6.5rem 1.5rem;
  display: grid;
  gap: 4rem;
  align-items: center;
  background: url("https://i.ibb.co/680bba7e-d063-4ff2-a23a-1c2366c491bd.png")
    center / cover no-repeat;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.45)
  );
  z-index: 1;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #16a34a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: white;
}

.hero p {
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Desktop */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===============================
   SERVICES
================================ */
#services {
  background: var(--light);
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.service-card h3 {
  margin: 1.2rem;
}

.service-card p {
  margin: 0 1.2rem 1.5rem;
  color: var(--muted);
}

/* Grid */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   PROGRAMS / TESTIMONIALS / BLOG
================================ */
.programs-grid,
.testimonials-grid,
.articles-list {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .programs-grid,
  .articles-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .programs-grid,
  .articles-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .programs-grid,
  .articles-list {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CTA
================================ */
.final-cta {
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.95),
    rgba(26, 188, 156, 0.95)
  );
  text-align: center;
  color: white;
  padding: 6rem 1.5rem;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.cta-button {
  background: white;
  color: #16a34a;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
}

/* ===============================
   FOOTER + MAP
================================ */
.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-map {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
  .footer-map iframe {
    height: 220px;
  }
}

/* ===============================
   FOOTER ONE-LINE FIX
================================ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  white-space: nowrap;
}

/* Optional: add divider style */
.footer-bottom p::after {
  content: "•";
  margin: 0 0.6rem;
  opacity: 0.6;
}

/* animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   UNIVERSAL RESPONSIVE FIXES
================================ */

/* Prevent horizontal scroll everywhere */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fluid typography for all screens */
h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
}

p {
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
}

/* Buttons scale nicely */
.btn-primary,
.btn-secondary,
.cta-button {
  white-space: nowrap;
}

/* Images always scale correctly */
img {
  max-width: 100%;
  height: auto;
}

/* ===============================
   NAVBAR – SMALL DEVICES
================================ */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  nav div:last-child {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   HERO – ALL DEVICES
================================ */
@media (max-width: 1024px) {
  .hero {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5rem 1.25rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image img {
    max-width: 420px;
    margin: auto;
  }
}

/* ===============================
   SERVICES / PROGRAMS / BLOG
================================ */
@media (max-width: 1024px) {
  .services-grid,
  .programs-grid,
  .articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid,
  .programs-grid,
  .articles-list {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   WHY CHOOSE US
================================ */
@media (max-width: 768px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-image {
    order: -1;
  }

  .why-list {
    text-align: left;
  }
}

/* ===============================
   TESTIMONIALS
================================ */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CTA – SMALL DEVICES
================================ */
@media (max-width: 480px) {
  .final-cta {
    padding: 4.5rem 1.25rem;
  }

  .final-cta h2 {
    font-size: 1.9rem;
  }
}

/* ===============================
   FOOTER – ALL DEVICES
================================ */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-map iframe {
    height: 220px;
  }
}

/* ===============================
   LARGE SCREENS (4K SAFETY)
================================ */
@media (min-width: 1600px) {
  section {
    padding: 6rem 1.5rem;
  }

  .hero {
    padding: 8rem 1.5rem;
  }
}
