/* ============================================================
   SELF CARE CENTER — CUSTOM STYLESHEET
   v1.0 | Production Ready | All Pages
   Color Palette:
     Navy:    #003366  |  Orange:  #FF6600
     White:   #FFFFFF  |  Peach:   #FFF5F0
     Text:    #333333  |  Muted:   #666666
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --navy:        #003366;
  --navy-dark:   #002244;
  --navy-mid:    #004080;
  --orange:      #FF6600;
  --orange-dark: #e55a00;
  --orange-light:#FFF0E6;
  --white:       #ffffff;
  --peach:       #FFF5F0;
  --text:        #333333;
  --muted:       #666666;
  --light:       #F8F9FA;
  --border:      #E4EBF3;
  --shadow-xs:   0 2px 8px rgba(0,51,102,0.06);
  --shadow-sm:   0 4px 16px rgba(0,51,102,0.09);
  --shadow-md:   0 8px 32px rgba(0,51,102,0.14);
  --shadow-lg:   0 16px 56px rgba(0,51,102,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- BASE RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
img { max-width: 100%; height: auto; }
a { transition: var(--transition); }

/* ---- UTILITY ---- */
.text-orange       { color: var(--orange) !important; }
.text-navy         { color: var(--navy) !important; }
.bg-navy           { background-color: var(--navy) !important; }
.section-padding   { padding: 96px 0; }
.section-navy      { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.text-white-75     { color: rgba(255,255,255,0.85) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 28px;
  transition: var(--transition);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.25s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

/* Orange (primary CTA) */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 14px rgba(255,102,0,0.25);
}
.btn-orange:hover, .btn-orange:focus {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,102,0,0.35);
}

/* Navy */
.btn-navy {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.btn-navy:hover, .btn-navy:focus {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,51,102,0.3);
}

/* Outline Navy */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover, .btn-outline-navy:focus {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,51,102,0.3);
}

/* Outline Orange */
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover, .btn-outline-orange:focus {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* White Solid (on dark bg) */
.btn-white-solid {
  background: #fff;
  color: var(--navy);
  border: 2px solid #fff;
  font-weight: 700;
}
.btn-white-solid:hover, .btn-white-solid:focus {
  background: #f0f4f9;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.25);
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  background: rgba(255,102,0,0.1);
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title  { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 18px; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin: 0 auto; }
.section-text { color: var(--muted); font-size: 1rem; margin-bottom: 14px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 1050;
}
#mainNav.scrolled, #mainNav.scrolled-inner {
  background: var(--navy) !important;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
/* Inner pages always show solid nav */
nav.scrolled { background: var(--navy) !important; padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.18); }

.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-icon  { font-size: 26px; color: var(--orange); line-height: 1; }
.brand-text  { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name  { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.brand-tagline { font-size: 0.68rem; color: rgba(255,255,255,0.65); letter-spacing: 0.4px; }

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 13px !important;
  color: rgba(255,255,255,0.9) !important;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,34,68,0.93) 0%,
    rgba(0,51,102,0.82) 55%,
    rgba(0,64,128,0.55) 100%
  );
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,102,0,0.18);
  border: 1px solid rgba(255,102,0,0.4);
  color: #ffb380;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.18;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 510px;
  margin-bottom: 34px;
  line-height: 1.8;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat-item    { display: flex; flex-direction: column; }
.stat-number  { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label   { font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); }

.hero-img-wrapper { position: relative; padding: 24px 24px 50px; }
.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-quote-card {
  position: absolute;
  bottom: 0;
  left: -10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 310px;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-quote-card p {
  font-size: 0.875rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
  margin: 8px 0 6px;
}
.hero-quote-card span { font-size: 0.8rem; color: var(--orange); font-weight: 600; font-family: 'Poppins', sans-serif; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2.2s infinite;
}
.hero-scroll a {
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  text-decoration: none;
}
.hero-scroll a:hover { color: var(--orange); }
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40%                  { transform: translateX(-50%) translateY(-12px); }
  60%                  { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   CHALLENGE SECTION
   ============================================================ */
.challenge-card-wrapper { position: relative; }
.challenge-img { width: 100%; height: 420px; object-fit: cover; }
.challenge-quote-card {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 275px;
  box-shadow: var(--shadow-md);
}
.challenge-quote-icon {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: #fff;
}
.challenge-quote-card p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 8px;
}

/* ============================================================
   GOAL SECTION
   ============================================================ */
.goal-items { display: flex; flex-direction: column; gap: 24px; }
.goal-item  { display: flex; align-items: flex-start; gap: 16px; }
.goal-icon  {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,102,0,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--orange);
}
.goal-item h5 { color: #fff; font-size: 1rem; margin-bottom: 3px; }
.goal-item p  { color: rgba(255,255,255,0.72); font-size: 0.875rem; margin: 0; }

/* ============================================================
   MEMBERSHIP PLANS
   ============================================================ */
.plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.plan-card-featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--navy);
  position: relative; overflow: hidden;
  color: #fff;
}
.plan-card-featured * { color: #fff !important; }
.plan-card-featured .plan-badge { background: rgba(255,255,255,0.18); }
.plan-card-featured ul li { border-color: rgba(255,255,255,0.12) !important; }
.plan-card-featured .price-period, .plan-card-featured .plan-desc { color: rgba(255,255,255,0.72) !important; }
.plan-card-featured:hover { border-color: var(--orange); }

.plan-popular-badge {
  position: absolute; top: 24px; right: -32px;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700;
  padding: 5px 42px;
  transform: rotate(45deg);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.plan-header { margin-bottom: 28px; }
.plan-badge {
  display: inline-block;
  background: rgba(255,102,0,0.1); color: var(--orange);
  font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.plan-price { display: flex; align-items: flex-start; margin-bottom: 8px; }
.price-dollar { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-top: 10px; color: var(--navy); }
.price-amount { font-family: 'Poppins', sans-serif; font-size: 3.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period { font-size: 0.95rem; color: var(--muted); margin-top: 18px; margin-left: 4px; }
.plan-card-featured .price-dollar, .plan-card-featured .price-amount { color: #fff !important; }
.plan-desc { color: var(--muted); font-size: 0.875rem; margin: 0; }

.plan-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; line-height: 1.55;
}
.plan-features li i { margin-top: 2px; flex-shrink: 0; font-size: 0.95rem; }
.plan-features li.text-muted { opacity: 0.55; }

/* ============================================================
   SAFETY NET / GUARANTEE
   ============================================================ */
.guarantee-img-wrapper { position: relative; padding: 16px; }
.guarantee-img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); }
.guarantee-badge {
  position: absolute; top: 0; right: 0;
  background: var(--orange); color: #fff;
  border-radius: var(--radius);
  padding: 16px 18px; text-align: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.guarantee-badge i { font-size: 1.4rem; display: block; margin-bottom: 6px; }

.guarantee-features { display: flex; flex-direction: column; gap: 12px; }
.guarantee-feature {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; font-weight: 500;
}
.guarantee-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
}

/* ============================================================
   MEMBERSHIP BENEFITS
   ============================================================ */
.price-highlight { font-size: 1.05rem; color: var(--text); }
.benefit-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.benefit-item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.benefit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.benefit-item h6 { color: var(--navy); margin-bottom: 3px; font-size: 0.9rem; }
.benefit-item p  { color: var(--muted); font-size: 0.83rem; margin: 0; }
.benefit-quote {
  border-left: 4px solid var(--orange);
  padding: 12px 18px;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--navy);
  font-weight: 600; font-size: 0.95rem;
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #cc4400 100%);
  padding: 80px 0;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 0; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 148px 0 88px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,34,68,0.84);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.page-hero .breadcrumb { justify-content: center; margin-bottom: 18px; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; }
.page-hero .breadcrumb-item a:hover { color: var(--orange); }
.page-hero .breadcrumb-item.active { color: var(--orange); font-size: 0.875rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   ABOUT PAGE — What We Do Cards
   ============================================================ */
.wwd-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  margin-bottom: 12px;
}
.wwd-card:last-child { margin-bottom: 0; }
.wwd-card:hover { box-shadow: var(--shadow-sm); transform: translateX(5px); }
.wwd-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  margin-bottom: 10px;
}
.wwd-card h4 { font-size: 0.95rem; margin-bottom: 5px; }
.wwd-card p  { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* About Benefit Cards */
.about-benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--orange);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.about-benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.abc-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--orange);
  margin: 0 auto 16px;
}
.about-benefit-card h4 { font-size: 1rem; margin-bottom: 10px; }
.about-benefit-card p  { color: var(--muted); font-size: 0.875rem; margin: 0; }

/* Safety Net Cards */
.safety-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.safety-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.safety-card img { width: 100%; height: 210px; object-fit: cover; }
.safety-card-body { padding: 22px 24px; }
.safety-card-body h5 { font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.safety-card-body p  { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* Mission/Vision Cards */
.mv-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  height: 100%;
}
.mv-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); }
.mv-icon {
  width: 54px; height: 54px;
  background: var(--orange);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  margin-bottom: 18px;
}
.mv-card h4 { color: #fff; margin-bottom: 12px; }
.mv-card p  { color: rgba(255,255,255,0.78); font-size: 0.875rem; line-height: 1.8; margin: 0; }

/* ============================================================
   SERVICES PAGE — How It Works
   ============================================================ */
.how-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.how-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.how-card-featured { border-color: var(--orange); background: var(--orange-light); }
.how-step {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(0,51,102,0.06);
  position: absolute; top: 16px; right: 20px;
  line-height: 1;
}
.how-card-featured .how-step { color: rgba(255,102,0,0.12); }
.how-icon {
  width: 54px; height: 54px;
  background: var(--orange); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  margin-bottom: 18px;
}
.how-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.how-card p  { color: var(--muted); font-size: 0.875rem; margin: 0; }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table thead th {
  background: var(--navy); color: #fff;
  padding: 18px 22px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  text-align: left;
}
.comparison-table thead th.highlight { background: var(--orange); }
.comparison-table tbody tr:nth-child(even) { background: #f4f7fb; }
.comparison-table tbody tr:hover { background: #EBF2FF; }
.comparison-table tbody td {
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem; vertical-align: middle;
}
.comparison-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.comparison-table tfoot td { padding: 18px 22px; background: #f8f9fa; }

/* Why Choose Cards */
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card i { font-size: 1.8rem; color: var(--orange); margin-bottom: 12px; display: block; }
.why-card h5 { font-size: 0.95rem; margin-bottom: 8px; }
.why-card p  { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* ============================================================
   DONATE PAGE
   ============================================================ */
.impact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.impact-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.impact-card.impact-featured { border-color: var(--orange); background: var(--orange-light); }
.impact-icon {
  width: 52px; height: 52px;
  background: var(--orange-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange);
  margin: 0 auto 14px;
}
.impact-card.impact-featured .impact-icon { background: rgba(255,102,0,0.2); }
.impact-amount { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.impact-card p { font-size: 0.83rem; color: var(--muted); margin: 0; }

.donate-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.donate-amount-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.donate-amount-card:hover, .donate-amount-card.active {
  border-color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,102,0,0.18);
}
.donate-amount-card .amount { display: block; font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.donate-amount-card .desc   { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.donate-amount-card.active .amount, .donate-amount-card.active .desc { color: var(--orange); }

.donate-info-list { display: flex; flex-direction: column; gap: 18px; }
.donate-info-item { display: flex; align-items: flex-start; gap: 14px; }
.donate-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--orange-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--orange);
}
.donate-info-item h6 { color: var(--navy); margin-bottom: 3px; font-size: 0.875rem; }
.donate-info-item p  { color: var(--muted); font-size: 0.83rem; margin: 0; }

/* Testimonials */
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
}
.testimonial-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { color: #fff; display: block; font-size: 0.9rem; }
.testimonial-author span   { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 0.925rem;
  transition: var(--transition);
  color: var(--text);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
  outline: none;
}
.contact-form .form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  color: var(--navy); margin-bottom: 7px;
}
.contact-form .form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }

/* Same styles for donate form */
.donate-form-wrapper .form-control,
.donate-form-wrapper .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 0.925rem;
  transition: var(--transition);
}
.donate-form-wrapper .form-control:focus,
.donate-form-wrapper .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}
.donate-form-wrapper .form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  color: var(--navy); margin-bottom: 7px;
}
.donate-form-wrapper .form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }

/* Hours Card */
.hours-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.hours-card h4 { color: #fff; margin-bottom: 18px; }
.hours-list { display: flex; flex-direction: column; }
.hours-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
}
.hours-item:last-child { border: none; }
.hours-day  { color: rgba(255,255,255,0.68); }
.hours-time { color: var(--orange); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.83rem; }

/* Contact Info Card */
.contact-info-card {
  background: var(--peach);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.contact-info-item:last-child { margin: 0; }
.contact-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--orange); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem;
}
.contact-info-item h6 {
  color: var(--muted); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 2px; font-weight: 600;
}
.contact-info-item p { color: var(--text); font-size: 0.9rem; margin: 0; font-weight: 500; }

/* Contact Social Links */
.contact-social-links { display: flex; justify-content: center; gap: 10px; }
.contact-social-links a {
  width: 38px; height: 38px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.9rem; transition: var(--transition);
}
.contact-social-links a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

/* FAQ Accordion */
.faq-item {
  border: 2px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  box-shadow: none !important;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--orange); background: var(--orange-light); }
.faq-item .accordion-button::after { filter: none; }
.faq-item .accordion-button:not(.collapsed)::after { filter: invert(44%) sepia(98%) saturate(1500%) hue-rotate(1deg) brightness(102%) contrast(102%); }
.faq-item .accordion-body { font-size: 0.9rem; color: var(--muted); line-height: 1.75; background: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin-bottom: 14px;
  display: flex; align-items: center;
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 18px; }
.footer-contact-info p { font-size: 0.875rem; margin-bottom: 7px; color: rgba(255,255,255,0.7); }
.footer-heading {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.875rem; transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
.footer-hours-title { font-family: 'Poppins', sans-serif; font-weight: 600; color: #fff; font-size: 0.875rem; margin-bottom: 4px; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 22px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--orange); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 9000;
  box-shadow: 0 4px 16px rgba(255,102,0,0.4);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — TABLET (max 991px)
   ============================================================ */
@media (max-width: 991px) {
  .section-padding { padding: 68px 0; }
  .hero-title       { font-size: 2rem; }
  .challenge-quote-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    border-radius: var(--radius);
  }
  .page-hero h1     { font-size: 2rem; }
  .contact-form-wrapper { padding: 30px 22px; }
  .donate-form-wrapper  { padding: 30px 22px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================================ */
@media (max-width: 767px) {
  .section-padding { padding: 52px 0; }
  .hero-title       { font-size: 1.8rem; }
  .hero-stats       { gap: 20px; }
  .stat-number      { font-size: 1.5rem; }
  .stat-divider     { display: none; }
  .cta-banner h2    { font-size: 1.6rem; }
  .guarantee-img    { height: 280px; }
  .challenge-img    { height: 280px; }
  .plan-card        { padding: 28px 20px; }
  .hero-quote-card  { max-width: 100%; }
  .footer-bottom    { text-align: center; justify-content: center; }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 12px; font-size: 0.8rem; }
  .donate-form-wrapper, .contact-form-wrapper { padding: 24px 16px; }
  .hours-card { padding: 24px 20px; }
  .contact-info-card { padding: 22px 20px; }
}

/* ============================================================
   AOS OVERRIDE
   ============================================================ */
[data-aos] { transition-duration: 0.65s !important; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-section { background-attachment: scroll; }
}