/* =========================
   GLOBAL CSS VARIABLES
   ========================= *

/* These variables store colors so we can change them easily later */
:root {
  --primary-color: #09539D;   /* Teal – trust & healthcare */
  --secondary-color: #ffffff; /* White – cleanliness */
  --accent-color: #a7c957;    /* Light green – healing */
  --dark-color: #09539D;      /* Dark blue – headings */
  --text-color: #333333;      /* Normal text color */
}

/* =========================
   BASIC RESET
   ========================= */

/* Remove default browser spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Makes layout calculations easier */
}

/* =========================
   BODY STYLING
   ========================= */

body {
  font-family: 'Poppins', sans-serif; /* Clean professional font */
  color: var(--text-color);
  line-height: 1.6; /* Improves readability */
  background-color: #f9f9f9;
}

/* ================= HEADER ================= */

/* Top info bar */
.top-bar{
  height: 50px;
  align-content: center;
  background: var(--dark-color);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.9rem;

}

.site-header {
  position: sticky;
  background: #ffffff;
  top: 40px;
  height: 72px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */
.logo img {
  height: 48px;              /* ✅ CONTROL LOGO SIZE */
  display: block;
  white-space: nowrap;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1f3d3a;
  padding: 6px 0;
  position: relative;
}

/* Active link */
.nav-links a.active {
  color: #1f8a83;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #1f8a83;
}

/* HAMBURGER */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1f3d3a;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px; /* below header */
    left: 0;
    width: 100%;
    background: #f9f9f9 ;
    flex-direction: column;
    display: none;
    z-index: 10000;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    padding: 14px 20px;
    display: block;
  }

  .nav-links.show {
    display: flex;
  }
}


/* =========================
   HERO SECTION
   ========================= */

.hero {
  background: linear-gradient(
    rgba(9, 83, 157, 0.8),
    rgba(57, 189, 177, 0.8)
  ),
  url("assets/images/hero.jpg") center/cover;
  color: white;
  padding: 180px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.8rem;
}

.hero p {
  margin: 20px 0;
  font-size: 1.1rem;
  padding-bottom: 40px;
}

.btn {
  background-color: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: var(--dark-color);
}




/* Menu button (mobile) */
.menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
}

/* Mobile navigation */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.show {
    display: flex;
  }
}


.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ================= SCROLL ANIMATIONS ================= */

/* Hidden initially */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* When visible */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}


/* ================= ADVANCED STATS – LUXURY UI ================= */

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px  60px;
  background: radial-gradient(
    circle at top,
    #0b1c22,
    #03080c 70%
  );
  overflow: hidden;
}

/* Ambient glow background */
.stats::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(57, 189, 177, 0.35),
    transparent 65%
  );
  top: -300px;
  right: -300px;
  filter: blur(160px);
  animation: statsGlow 10s infinite alternate ease-in-out;
}

@keyframes statsGlow {
  from { transform: translateY(0); }
  to   { transform: translateY(120px); }
}

/* Section Title */
.stats .section-title {
  grid-column: 1/-1;
  max-width: 100%;
  z-index: 2;
  text-align: center;
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #ffffff;
  
}


/* Subtle underline accent */
.stats .section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  max-width: 720px;
  margin: 16px auto ;
  background: linear-gradient(
    90deg,
    transparent,
    #00e6c8,
    transparent
  );
  opacity: 0.9;
}


/* Individual stat card */
.stat-box {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(22px);
  border-radius: 28px;
  padding: 55px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 35px 90px rgba(0,0,0,0.6);
  transition:
    transform 0.6s cubic-bezier(.19,1,.22,1),
    box-shadow 0.6s ease,
    border-color 0.6s ease;
  overflow: hidden;
}

/* Light sweep effect */
.stat-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(57,189,177,0.45),
    transparent
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.stat-box:hover::after {
  opacity: 1;
}

/* Hover elevation */
.stat-box:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0 55px 140px rgba(57,189,177,0.45);
  border-color: rgba(57,189,177,0.6);
}

/* Icon */
.stat-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 12px 30px rgba(57,189,177,0.6));
}

/* Animated number */
.stat-number,
.stat-text {
  font-size: 3rem;
  font-weight: 700;
  margin: 12px 0;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Label */
.stat-box p {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aefdf1;
  opacity: 0.85;
}

/* Section title polish */
.section-title {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #0b1c22;
}

/* Responsive spacing */
@media (max-width: 900px) {
  .stats {
    padding: 120px 6% 140px;
  }

  .stats .section-title {
    margin-bottom: 70px;
  }
}

@media (max-width: 600px) {
  .stats {
    padding: 100px 6% 120px;
  }

  .stats .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 1200px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 120px 6% 140px;
  }
}

@media (max-width: 650px) {
  .stats {
    grid-template-columns: 1fr;
    padding: 100px 6% 120px;
  }
}


/* ================= ADVANCED SERVICES OVERVIEW ================= */

.services-advanced {
  padding: 60px 20px;
  background: #ffffff;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 10px auto 60px;
  color: #555;
  font-size: 1.05rem;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Icon */
.service-icon {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

/* Description */
.service-desc {
  margin: 12px 0 18px;
  color: #555;
}

/* Bullet points */
.service-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
}

.service-points li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  font-size: 0.95rem;
}

.service-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Service button */
.service-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-btn:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

/* Bottom CTA */
.services-cta {
  margin-top: 50px;
  text-align: center;
}


/* ================= CARE PROCESS – ENTERPRISE ADVANCED ================= */

.care-process-pro {
  padding: 60px 20px;
  background: #ffffff;
}

/* Header */
.process-header {
  max-width: 100%;
  margin-bottom: 20px;
}

.process-header .section-title {
  margin-bottom: 20px;
}

.process-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 10px auto 60px;
}

/* Timeline container */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Vertical line */
.process-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.25;
}

/* Process node */
.process-node {
  position: relative;
  display: flex;
  gap: 30px;
  padding: 35px 0 35px 0;
}

/* Step number */
.node-index {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Content */
.node-content {
  background: #f9fbfb;
  padding: 30px 35px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.node-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Title */
.node-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #111;
}

/* Text */
.node-content p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
}

/* Assurance strip */
.process-assurance {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
  .process-header {
    margin-bottom: 70px;
    text-align: center;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-node {
    gap: 20px;
  }

  .node-content {
    padding: 25px;
  }
}


/* ================= ABOUT LUXURY BRAND EXPERIENCE ================= */

.about-luxury {
  position: relative;
  padding: 80px 20px;
  padding-left: 0px;
  background: radial-gradient(circle at top, #0f2027, #000);
  color: #fff;
  overflow: hidden;
  
  margin-left: -200px;
}

/* Floating glow */
.luxury-glow {
  position: absolute;
  padding-left: 0px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,200,180,0.35), transparent 60%);
  top: -200px;
  
  filter: blur(120px);
  animation: glowMove 8s infinite alternate ease-in-out;
}

@keyframes glowMove {
  from { transform: translateY(0); }
  to { transform: translateY(80px); }
}

/* Layout */
.luxury-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left */
.luxury-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: #8fffe0;
}

.luxury-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  margin: 20px 0;
  line-height: 1.1;
}

.luxury-title span {
  color: #8fffe0;
}

.luxury-description {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Stats */
.luxury-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.luxury-stats .stat strong {
  font-size: 1.6rem;
}

.luxury-stats .stat span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Button */
.luxury-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00e5c0, #00bfa5);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(57,189,177,0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 80px rgba(57, 189, 177,0.7);
}

/* Right cards */
.luxury-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.luxury-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 35px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  transform: translateX(80px);
  opacity: 0;
  animation: slideIn 1s forwards ease;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ================= LUXURY ABOUT – RESPONSIVE ================= */

@media (max-width: 1024px) {

  .luxury-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .luxury-left,
  .luxury-right {
    width: 100%;
  }

}

/* Tablet */
@media (max-width: 768px) {

  .about-luxury {
    padding: 80px 6%;
  }

  .luxury-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .luxury-description {
    font-size: 1rem;
  }

  .luxury-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .luxury-stats .stat {
    flex: 1 1 45%;
  }

  .luxury-btn {
    display: inline-block;
    margin-top: 20px;
  }

  .luxury-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .luxury-card {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .about-luxury {
    padding: 70px 20px;
  }

  .luxury-title {
    font-size: 1.8rem;
  }

  .luxury-stats {
    flex-direction: column;
    gap: 20px;
  }

  .luxury-stats .stat {
    width: 100%;
  }

}

/* ================= WHY CHOOSE US – ULTRA MINIMAL ================= */

.why-minimal {
  padding: 60px 20px;
  background: #ffffff;
}

/* Title */
.why-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #111;
}

/* Description */
.why-description {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Divider */
.why-divider {
  width: 60px;
  height: 2px;
  background: #111;
  margin: 0 auto 80px;
  opacity: 0.15;
}

/* Values layout */
.why-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* Individual value */
.why-value h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.why-value p {
  font-size: 0.98rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-values {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}


/* ================= NURSING QUALITY & SAFETY – LUXURY UI ================= */

.nurse-quality {
  position: relative;
  padding: 60px 20px;
  background: radial-gradient(
    circle at top,
    #0e1f26,
    #050b0f 70%
  );
  color: #ffffff;
  overflow: hidden;
}

/* Soft ambient glow */
.nurse-quality::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(57, 189, 177, 0.35),
    transparent 60%
  );
  top: -250px;
  left: -250px;
  filter: blur(140px);
  animation: glowFloat 9s infinite alternate ease-in-out;
}

@keyframes glowFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(120px); }
}

/* Heading */
.nurse-quality .section-title {
  text-align: center;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  color: #ffffff;
}

.nurse-quality .section-subtitle {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* Grid */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  
  position: relative;
  z-index: 2;
}

/* Card */
.quality-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  border-radius: 26px;
  padding: 45px 35px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition:
    transform 0.5s cubic-bezier(.19,1,.22,1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
  overflow: hidden;
}

/* Neon edge glow on hover */
.quality-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(57, 189, 177, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.quality-card:hover::after {
  opacity: 1;
}

/* Hover lift */
.quality-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 45px 120px rgba(57,189, 177,0.45);
  border-color: rgba(57, 189, 177, 0.6);
}

/* Icon */
.quality-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 10px 25px rgba(57, 189, 177,0.6));
}

/* Title */
.quality-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #ffffff;
}

/* Text */
.quality-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Trust Badge */
.trust-badge {
  margin-top: 100px;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #a8fff1;
  opacity: 0.9;
}

/* Subtle underline glow */
.trust-badge strong {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(57, 189, 177,0.8);
}

/* Responsive */
@media (max-width: 1400px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .nurse-quality {
    padding: 120px 20px;
  }
}



/* ================= TESTIMONIAL PREVIEW (ADVANCED) ================= */

.testimonials-preview {
  padding: 100px 20px;
  background: #f2f7f7;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 10px auto 60px;
  color: #555;
  font-size: 1.05rem;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* Card */
.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* Stars */
.testimonial-stars {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}

/* Author */
.testimonial-author strong {
  display: block;
  color: var(--dark-color);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #777;
}

/* CTA */
.testimonial-cta {
  margin-top: 60px;
  text-align: center;
}



/* ================= SERVICES PAGE ================= */

/* ================= SERVICES HERO – ENTERPRISE ================= */

.services-hero-pro {
  position: relative;
  min-height: 90vh;
  padding: 40px 20px;
  overflow: hidden;
  background: #ffffff;
}

/* Soft gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,150,136,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,150,136,0.06), transparent 45%);
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Layout */
.hero-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
}

/* Left */
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 18px 0;
  color: #111;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-description {
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* Metrics */
.hero-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-metrics div strong {
  font-size: 1.4rem;
  color: #111;
}

.hero-metrics div span {
  display: block;
  font-size: 0.85rem;
  color: #666;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.hero-primary {
  padding: 14px 34px;
  border-radius: 40px;
}

.hero-link {
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
}

/* Right Panel */
.hero-panel {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.hero-panel h3 {
  margin-bottom: 18px;
  color: #111;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.hero-panel ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.panel-note {
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    flex-wrap: wrap;
  }
}



/* ================= CARE PATHWAYS – LUXURY ADVANCED ================= */

.care-pathways {
  position: relative;
  max-width: 100%;
  padding: 60px 20px;
  background: radial-gradient(
    circle at top,
    #0b1c22,
    #02070a 70%
  );
  color: #ffffff;
  overflow: hidden;
}

/* Ambient glow */
.care-pathways::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(57, 189, 177, 0.35),
    transparent 65%
  );
  top: -350px;
  left: -350px;
  filter: blur(160px);
  animation: pathwayGlow 10s infinite alternate ease-in-out;
}

@keyframes pathwayGlow {
  from { transform: translateY(0); }
  to   { transform: translateY(140px); }
}

/* Header */
.pathways-header {
  max-width: 100%;
  margin-bottom: 110px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pathways-header .section-title {
  font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  color: #ffffff;
}

.pathways-intro {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* Layout */
.pathways-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Card */
.pathway-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(22px);
  border-radius: 32px;
  padding: 50px 40px 55px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 120px rgba(0,0,0,0.65);
  transition:
    transform 0.7s cubic-bezier(.19,1,.22,1),
    box-shadow 0.7s ease,
    border-color 0.7s ease;
  overflow: hidden;
}

/* Neon edge sweep */
.pathway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(57, 189, 177, 0.45),
    transparent
  );
  opacity: 0;
  transition: opacity 0.7s ease;
}

.pathway-card:hover::after {
  opacity: 1;
}

/* Hover lift */
.pathway-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 60px 160px rgba(57, 189, 177, 0.5);
  border-color: rgba(57, 189, 177, 0.6);
}

/* Badge */
.pathway-badge {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8fffe0;
}

/* Title */
.pathway-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Description */
.pathway-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 28px;
}

/* Points */
.pathway-points {
  list-style: none;
  padding: 0;
}

.pathway-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.pathway-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00e6c8;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .pathways-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .pathways-layout {
    grid-template-columns: 1fr;
  }

  .care-pathways {
    padding: 140px 20px;
  }
}


.service-process {
  padding: 110px 20px;
  background: #ffffff;
}

.process-list {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.process-step span {
  font-weight: 600;
  color: var(--primary-color);
}

.process-step p {
  color: #555;
}

/* ================= SERVICE ASSURANCE – LUXURY ADVANCED ================= */

.service-assurance-advanced {
  position: relative;
  padding: 60px 20px;
  background: #f9fbfb;
  
  overflow: hidden;
}

/* Ambient glow */
.assurance-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  
  bottom: -250px;
  right: -250px;
  filter: blur(140px);
  animation: assuranceGlow 9s infinite alternate ease-in-out;
}

@keyframes assuranceGlow {
  from { transform: translateY(0); }
  to   { transform: translateY(-120px); }
}

/* Section heading */
.service-assurance-advanced .section-title {
  text-align: center;
  font-size: clamp(2.6rem, 4.5vw, 3.3rem);
  margin-bottom: 18px;
  color: #111;
}

.service-assurance-advanced .section-subtitle {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* Grid */
.assurance-grid-advanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Card */
.assurance-card {
  position: relative;
  background:white;
  backdrop-filter: blur(22px);
  padding: 45px 35px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Hover glow sweep */
.assurance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.assurance-card:hover::after {
  opacity: 1;
}

.assurance-card:hover {
  transform: translateY(-16px) scale(1.04);
  
}

/* Icon */
.assurance-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 12px 30px rgba(57, 189, 177, 0.6));
}

/* Title */
.assurance-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #555;
}

/* Text */
.assurance-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* Trust line */
.assurance-trust {
  margin-top: 90px;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #2a9d8f;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1200px) {
  .assurance-grid-advanced {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .assurance-grid-advanced {
    grid-template-columns: 1fr;
  }

  .service-assurance-advanced {
    padding: 120px 20px;
  }
}



/* ================= ABOUT US Page ================= */
/* =========================================================
   ABOUT US – ADVANCED / PREMIUM HEALTHCARE UI
   ========================================================= */

/* ---------- GLOBAL HELPERS (ABOUT PAGE ONLY) ---------- */

.about-page section {
  padding: 120px 20px;
}

.about-page .container {
  max-width: 1100px;
  margin: auto;
}

.about-page .section-title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 35px;
  color: #111;
}

.about-page .light-bg {
  background: #f7faf9;
}

    /* =========================================================
       ABOUT HERO – PREMIUM LIGHT UI (COMPLETE CSS)
       ========================================================= */

    
    @keyframes textReveal {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ---------- HERO SECTION ---------- */
    .about-hero-premium {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding: 0 20px;
      background: linear-gradient(180deg, #ffffff, #f2fbf9);
      overflow: hidden;
    }

    /* Soft floating shapes */
    .about-shape {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      filter: blur(140px);
      opacity: 0.55;
    }

    .shape-one {
      background: #b8f1ea;
      top: -200px;
      left: -200px;
      animation: floatA 12s infinite alternate ease-in-out;
    }

    .shape-two {
      background: #d8f6d1;
      bottom: -220px;
      right: -220px;
      animation: floatB 14s infinite alternate ease-in-out;
    }

    @keyframes floatA {
      from { transform: translateY(0); }
      to   { transform: translateY(90px); }
    }

    @keyframes floatB {
      from { transform: translateY(0); }
      to   { transform: translateY(-90px); }
    }

    /* Layout */
    .about-hero-layout {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* ---------- TEXT SIDE ---------- */
    .about-hero-text > * {
      opacity: 0;
      animation: textReveal 1s ease forwards;
    }

    .about-eyebrow {
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #00a896;
      animation-delay: 0.2s;
    }

    .about-hero-title {
      margin: 18px 0;
      font-size: clamp(3rem, 5vw, 4.2rem);
      font-weight: 600;
      letter-spacing: -0.6px;
      color: #0b2e2a;
      line-height: 1.1;
      animation-delay: 0.4s;
    }

    .about-hero-title span {
      color: #00a896;
    }

    .about-hero-description {
      max-width: 640px;
      font-size: 1.15rem;
      line-height: 1.9;
      color: #3f6460;
      margin-bottom: 40px;
      animation-delay: 0.6s;
    }

    .about-hero-divider {
      width: 90px;
      height: 4px;
      border-radius: 10px;
      background: linear-gradient(
        90deg,
        transparent,
        #00c9a7,
        transparent
      );
      animation-delay: 0.8s;
    }

    /* ---------- PROOF BLOCK ---------- */
    .about-hero-proof {
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(18px);
      padding: 42px;
      border-radius: 28px;
      box-shadow: 0 40px 90px rgba(0,0,0,0.08);
      display: grid;
      gap: 26px;
      animation: textReveal 1s ease forwards;
      animation-delay: 1s;
      opacity: 0;
    }

    .proof-item strong {
      display: block;
      font-size: 1.6rem;
      color: #0b2e2a;
    }

    .proof-item span {
      font-size: 0.9rem;
      color: #4f7571;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
      .about-hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .about-hero-proof {
        max-width: 420px;
      }

      .about-hero-title {
        font-size: 2.6rem;
      }
    }


/* ================= BRAND STORY – DARK LUXURY ================= */

.about-story-dark {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at top, #0e2a2a, #050a0c 65%);
  overflow: hidden;
}

/* Layout */
.story-dark-layout {
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---------------- TEXT ---------------- */

.story-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7ff3df;
  opacity: 0.85;
}

.story-dark-title {
  font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 26px;
}

.story-dark-title span {
  color: #7ff3df;
}

.story-dark-lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #cfeeed;
  margin-bottom: 18px;
}

.story-dark-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #a9cfcf;
  max-width: 520px;
}

/* Divider */
.story-dark-divider {
  width: 90px;
  height: 4px;
  margin-top: 36px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    transparent,
    #7ff3df,
    transparent
  );
}

/* ---------------- IMAGE ---------------- */

.story-dark-visual {
  position: relative;
}

.story-image-shell {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 60px 140px rgba(0,0,0,0.7);
}

.story-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Controlled glow behind image */
.story-image-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(57, 189, 177, 0.35);
  filter: blur(160px);
  bottom: -120px;
  right: -120px;
  z-index: -1;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .story-dark-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .story-dark-title {
    font-size: 2.4rem;
  }

  .story-dark-body {
    max-width: 100%;
  }
}



/* ================= VISION / MISSION / VALUES – LIGHT ADVANCED ================= */

.about-values-light {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff, #f6fcfb);
}

/* Header */
.values-header {
  max-width: 760px;
  margin-bottom: 90px;
}

.values-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 16px;
}

.values-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #0b2e2a;
  margin-bottom: 22px;
}

.values-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4f6f6b;
}

/* Grid */
.values-grid-advanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Panel */
.value-panel {
  position: relative;
  padding: 55px 40px;
  border-radius: 30px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transition:
    transform 0.6s cubic-bezier(.19,1,.22,1),
    box-shadow 0.6s ease;
}

.value-panel:hover {
  transform: translateY(-14px);
  box-shadow: 0 45px 120px rgba(0,168,150,0.25);
}

/* Icon */
.value-icon {
  font-size: 2.6rem;
  margin-bottom: 22px;
}

/* Text */
.value-panel h3 {
  font-size: 1.35rem;
  color: #0b2e2a;
  margin-bottom: 16px;
}

.value-panel p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4b6f6b;
}

.value-list {
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* ---------- Subtle animation ---------- */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 900px) {
  .values-grid-advanced {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values-light {
    padding: 120px 20px;
  }
}



/* ================= OUR JOURNEY – ADVANCED UI ================= */

.about-journey-advanced {
  padding: 160px 20px;
  background: linear-gradient(180deg, #ffffff, #f6fbfa);
}

/* Header */
.journey-header {
  max-width: 760px;
  margin-bottom: 110px;
}

.journey-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a896;
  display: inline-block;
  margin-bottom: 14px;
}

.journey-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #0b2e2a;
  margin-bottom: 22px;
}

.journey-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4f6f6b;
}

/* Timeline spine */
.journey-timeline-advanced {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-left: 60px;
}

.journey-timeline-advanced::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    transparent,
    #00c9a7,
    transparent
  );
  opacity: 0.6;
}

/* Node */
.journey-node {
  position: relative;
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}

/* Year bubble */
.journey-year {
  position: absolute;
  left: -8px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #00a896;
  z-index: 2;
}

/* Card */
.journey-card {
  margin-left: 80px;
  padding: 40px 45px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(.19,1,.22,1),
              box-shadow 0.5s ease;
}

.journey-card h4 {
  font-size: 1.3rem;
  color: #0b2e2a;
  margin-bottom: 12px;
}

.journey-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b6f6b;
}

/* Hover */
.journey-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 120px rgba(57, 189, 177, 0.25);
}

/* Animations */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slide-left {
  opacity: 0;
  animation: slideLeft 1s ease forwards;
}

.slide-right {
  opacity: 0;
  animation: slideRight 1s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-timeline-advanced {
    padding-left: 40px;
  }

  .journey-card {
    margin-left: 60px;
    padding: 32px;
  }

  .journey-year {
    width: 60px;
    height: 60px;
  }
}



/* ================= WHY TRUST US – SPLIT ADVANCED ================= */

.about-trust-split {
  padding: 160px 20px;
  background: linear-gradient(180deg, #ffffff, #f7fcfb);
}

/* Layout */
.trust-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.trust-content {
  max-width: 520px;
}

.trust-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 16px;
  display: inline-block;
}

.trust-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #0b2e2a;
  line-height: 1.1;
  margin-bottom: 24px;
}

.trust-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4f6f6b;
  margin-bottom: 30px;
}

.trust-footer {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4b6f6b;
}

/* RIGHT CARDS */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.trust-card {
  padding: 40px 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transition:
    transform 0.6s cubic-bezier(.19,1,.22,1),
    box-shadow 0.6s ease;
}

.trust-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 120px rgba(57, 189, 177, 0.25);
}

.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.trust-card h4 {
  font-size: 1.2rem;
  color: #0b2e2a;
  margin-bottom: 14px;
}

.trust-card p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4b6f6b;
}

/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1000px) {
  .trust-split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }
}


/* ---------- CTA ---------- */

.about-page .cta {
  background: linear-gradient(135deg, #00e6c8, #00bfa5);
  color: #002b26;
  text-align: center;
}

.about-page .cta h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
}

.about-page .cta .btn {
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 1rem;
  background: #002b26;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .about-trust .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-trust .cards {
    grid-template-columns: 1fr;
  }

  .about-hero h2 {
    font-size: 2.4rem;
  }
}





/* ================= Home care Guidance ================= */


.container {
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
  padding: 0 5x;
}

/* ================= PREMIUM HERO ================= */

.guide-hero-premium {
  padding: 60px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #eef7f5 100%
  );
}

/* Layout */
.hero-shell {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: center;
}

/* TEXT */
.hero-text {
  animation: fadeSlideUp 1s ease forwards;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008f7a;
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: clamp(3rem, 4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 600;
  color: #0b2e2a;
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: #008f7a;
}

.hero-text p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #4f6f6b;
  max-width: 640px;
}

/* META */
.hero-meta {
  margin-top: 34px;
  font-size: 0.9rem;
  color: #6a8f8a;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT PANEL */
.hero-panel {
  position: relative;
  padding: 46px 40px;
  background: #ffffff;
  border-left: 4px solid #008f7a;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
  animation: fadeSlideUp 1.2s ease forwards;
}

.hero-panel p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6a8f8a;
  margin-bottom: 16px;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
}

.hero-panel li {
  font-size: 1rem;
  color: #0b2e2a;
  padding: 10px 0;
  border-bottom: 1px solid #e4f0ee;
}

.hero-panel li:last-child {
  border-bottom: none;
}

/* Animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }
}


/* ================= CARE BY PATIENT TYPE – ADVANCED ================= */

.patient-types-advanced {
  padding: 100px 0;
  background: #ffffff;
}

.patient-types-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.patient-types-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Header */
.patient-types-header {
  max-width: 680px;
  margin-bottom: 32px;
}

.patient-types-header h2 {
  font-size: 1.9rem;
  color: #0b2e2a;
  margin-bottom: 10px;
}

.patient-types-header p {
  font-size: 1.05rem;
  color: #4f6f6b;
  line-height: 1.7;
}

/* Type list */
.patient-type-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Individual type */
.patient-type-item {
  padding-left: 20px;
  border-left: 3px solid #00a896;
}

.patient-type-item h4 {
  font-size: 1.1rem;
  color: #0b2e2a;
  margin-bottom: 6px;
}

.patient-type-item p {
  font-size: 0.95rem;
  color: #4f6f6b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .patient-types-grid {
    grid-template-columns: 1fr;
  }

  .patient-types-image {
    order: -1;
  }
}


/* ================= DAILY CARE – ADVANCED ================= */

.daily-care-advanced {
  padding: 90px 0;
  background: #f7fcfb;
}

/* Header */
.daily-care-header {
  max-width: 720px;
  margin-bottom: 34px;
}

.daily-care-header h2 {
  font-size: 1.9rem;
  color: #0b2e2a;
  margin-bottom: 10px;
}

.daily-care-header p {
  font-size: 1.05rem;
  color: #4f6f6b;
  line-height: 1.7;
}

/* List */
.daily-care-list {
  list-style: none;
  padding-left: 0;
  max-width: 780px;
  border-left: 3px solid #00a896;
}

.daily-care-list li {
  padding: 18px 0 18px 24px;
  font-size: 1.05rem;
  color: #2f5f5a;
  line-height: 1.6;
  border-bottom: 1px solid #e6f2f0;
}

.daily-care-list li:last-child {
  border-bottom: none;
}


/* ================= PATIENT SAFETY – DARK ================= */

.patient-safety-dark {
  padding: 100px 0;
  background: #0f2f2b;
}

/* Header */
.safety-header {
  max-width: 720px;
  margin-bottom: 36px;
}

.safety-header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.safety-header p {
  font-size: 1.05rem;
  color: #cfe9e5;
  line-height: 1.7;
}

/* List */
.safety-list {
  list-style: none;
  padding-left: 0;
  max-width: 760px;
  border-left: 3px solid #e63946;
}

.safety-list li {
  padding: 18px 0 18px 24px;
  font-size: 1.05rem;
  color: #eaf6f4;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.safety-list li:last-child {
  border-bottom: none;
}

/* Emergency note */
.safety-note {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #ffd6d6;
  max-width: 760px;
}

/* ================= MEDICATION SAFETY – NO CARDS ================= */

.medication-safety {
  padding: 90px 0;
  background: #ffffff;
}

/* Header */
.med-header {
  max-width: 680px;
  margin-bottom: 36px;
}

.med-header h2 {
  font-size: 1.9rem;
  color: #0b2e2a;
  margin-bottom: 10px;
}

.med-header p {
  font-size: 1.05rem;
  color: #4f6f6b;
  line-height: 1.7;
}

/* List */
.med-list {
  list-style: none;
  padding-left: 0;
  max-width: 760px;
  border-left: 3px solid #00a896;
}

.med-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid #e6f2f0;
}

.med-list li:last-child {
  border-bottom: none;
}

.med-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.med-text {
  font-size: 1.05rem;
  color: #2f5f5a;
  line-height: 1.6;
}

/* Warning */
.med-warning {
  margin-top: 28px;
  font-size: 0.95rem;
  color: #8b1e2d;
  max-width: 720px;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .guide-hero h1 {
    font-size: 2.2rem;
  }

  .type-list {
    grid-template-columns: 1fr;
  }
}



/* ================= GALLERY HERO – CLEAN ================= */

.gallery-hero-clean {
  padding: 80px 20px;
  background: #f7fcfb;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.hero-text {
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 600;
  color: #0b2e2a;
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4f6f6b;
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 300px;
  }
}


/* ================= GALLERY Images Section ================= */

.gallery-simple {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Images */
.gallery-grid img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* Simple hover */
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }
}



/* ================= REVIEWS HERO ================= */

.reviews-hero-advanced {
  padding: 120px 20px 90px;
  background: linear-gradient(180deg, #ffffff, #f4fbf9);
}

.reviews-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #00a896;
  margin-bottom: 14px;
  display: inline-block;
}

.reviews-hero-advanced h1 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 600;
  color: #0b2e2a;
  margin-bottom: 22px;
}

.reviews-hero-advanced p {
  font-size: 1.1rem;
  color: #4f6f6b;
  max-width: 680px;
  line-height: 1.9;
}


/* ================= RATING OVERVIEW ================= */

.reviews-overview {
  background: #ffffff;
  padding: 80px 20px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.rating-score h2 {
  font-size: 3.5rem;
  color: #00a896;
}

.rating-score .stars {
  font-size: 1.4rem;
  margin: 6px 0;
}

.rating-score p {
  font-weight: 600;
  color: #0b2e2a;
}

.rating-score span {
  font-size: 0.95rem;
  color: #4f6f6b;
}

.rating-points p {
  font-size: 1.05rem;
  color: #4b6f6b;
  margin-bottom: 12px;
}


/* ================= REVIEWS EXPERIENCE – LUXURY ================= */

.reviews-experience {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff, #f2fbf9);
}

/* Layout */
.reviews-layout {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 120px;
  padding: 0 40px;
  align-items: center;
}

/* ---------- LEFT PANEL ---------- */

.reviews-index {
  position: sticky;
  top: 140px;
}

.reviews-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  color: #00a896;
}

.reviews-index h2 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #0b2e2a;
  margin: 26px 0 40px;
}

/* Counter */
.review-counter {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #4f6f6b;
}

.review-counter .divider {
  width: 40px;
  height: 1px;
  background: #00a896;
  margin: 0 12px;
}

/* Nav */
.review-nav {
  margin-top: 40px;
  display: flex;
  gap: 14px;
}

.review-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(57, 189, 177, 0.4);
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-nav button:hover {
  background: #00a896;
  color: #ffffff;
}

/* ---------- RIGHT STAGE ---------- */

.reviews-stage {
  position: relative;
  min-height: 360px;
}

.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.review.active {
  opacity: 1;
  transform: translateY(0);
}

/* Content */
.review .stars {
  font-size: 1.4rem;
  color: #00a896;
  margin-bottom: 24px;
}

.review blockquote {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.8;
  color: #2f5f5a;
  margin-bottom: 40px;
}

.review-author strong {
  font-size: 1.05rem;
  color: #0b2e2a;
}

.review-author span {
  display: block;
  font-size: 0.9rem;
  color: #6a8a86;
  margin-top: 4px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .reviews-index {
    position: relative;
    top: auto;
  }
}


/* ================= CONTACT HERO ================= */

.contact-hero {

  background: linear-gradient(180deg, #ffffff, #f3fbf9);
  position: relative;
  overflow: hidden;
  height: auto;
  padding-bottom: 480px;
  
  
}

/* Grid layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
  color: #00a896;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

/* Heading */
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 18px 0;
  color: #0b2e2a;
  line-height: 1.15;
}

/* Description */
.hero-text p {
  font-size: 1.05rem;
  color: #4f6f6b;
  line-height: 1.8;
  max-width: 520px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats strong {
  font-size: 2.2rem;
  color: #00a896;
}

.hero-stats span {
  display: block;
  font-size: 0.95rem;
  color: #4f6f6b;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 900px) {

  .contact-hero {
    padding: 70px 6% 380px;
    
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 600px) {

  .contact-hero {
    padding: 70px 20px 420px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}


/* ================= CONTACT METHODS ================= */

.contact-section {
  padding: 80px 0 90px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}




/* Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: fit-content;
  margin: 0 auto;
  align-items: center;
  
}

/* Card */
.contact-cards {
  background: #f7fcfb;
  padding: 32px 28px;
  border-radius: 14px;
  text-align: center;
  
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

/* Icon */
.assurance-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

/* Title */
.contact-cards h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0b2e2a;
}

/* Text */
.contact-cards p {
  font-size: 0.95rem;
  color: #4f6f6b;
  margin-bottom: 6px;
  word-break: break-word;
}

/* Small text */
.contact-cards small {
  font-size: 0.8rem;
  color: #6a8f8a;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .contact-methods {
    grid-template-columns: 1fr;
    max-width: 480px;
    align-items: center;
  }
}




/* ================= WHATSAPP ================= */

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  z-index: 9999;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .hero-grid,
  .methods-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }
}


/* =========================
   FOOTER
   ========================= */

   /* ================= Footer CTA (ADVANCED) ================= */

.cta-advanced {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    #1f8a83
  );
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Soft overlay for depth */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

/* Content above overlay */
.cta-content {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* Subtitle text */
.cta-subtext {
  margin: 20px auto 40px;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Buttons container */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Primary CTA */
.cta-primary {
  background: white;
  color: black;
}

/* Secondary CTA */
.cta-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* WhatsApp CTA */
.cta-whatsapp {
  background: #25D366;
  color: white;
}

/* Button hover effects */
.cta-buttons .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Trust line */
.cta-trust {
  margin-top: 40px;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
  }
}


footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding-bottom: 4px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
