/* --- CSS RESET & ROOT SYSTEMS --- */
:root {
  /* 🛍️ Color Swatches (Bottom Row) */
  --primary-orange: #F57C42;
  --deep-orange: #F28A4B;
  --yellow: #FDBB13;
  --magenta: #BE2A6A;
  --plum-purple: #50234B;
  --pink: #E16A9C;
  --coral: #E06C6A;

  /* 📑 Individual Counseling Colors */
  --grief-and-loss: #502348;
  --stress-anxiety-depression: #8E2A6A;
  --trauma-emotional-healing: #C04A6B;
  --relationship-family: #E06C6A;
  --life-transitions: #F28A4B;
  --burnout: #F57C42;

  /* 📑 Group and Couple Counseling Colors */
  --couple-counseling: #D85BBC;
  --pre-marital-counseling: #E16A9C;
  --reconnection-therapy: #ED7B9F;
  --family-parenting: #F28BAF;
  --trauma-debriefing-group: #F7A9B8;

  /* 📑 Employee Wellness Colors */
  --corporate-debriefing: #F7941D;
  --capacity-building: #F8A93C;
  --mental-health-awareness: #FDC864;
  --workplace-stress-burnout: #F6D79A;

  /* 📑 Chronic Support and Care Colors */
  --hiv-pre-post: #7A1F6A;
  --enhance-adherence: #812A7A;
  --emotional-resilience: #D24C8F;
  --hiv-disclosure: #E170A8;

  /* Text Legibility & Background Inversions */
  --text-dark-slate: #22121c;
  --text-muted-gray: #6b5c65;
  --bg-warm-linen: #fffbfc;

  /* Unified UI Gradients */
  --gradient-sunset: linear-gradient(135deg, var(--deep-orange) 0%, var(--primary-orange) 100%);
  --gradient-berry: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-warm-linen);
  color: var(--text-dark-slate);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- FLOATING INTERACTIVE NAVBAR --- */
.floating-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 138, 75, 0.2); 
  padding: 14px 28px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px -10px rgba(80, 35, 75, 0.15); 
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-navbar.scrolled {
  top: 12px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px -12px rgba(80, 35, 75, 0.25);
}

.nav-logo {
  color: var(--text-dark-slate);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo i {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--magenta);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-sunset);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  color: var(--text-muted-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-login:hover {
  color: var(--magenta);
}

.btn-cta {
  background: var(--gradient-berry);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px 0 rgba(190, 42, 106, 0.2); 
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(190, 42, 106, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark-slate);
  cursor: pointer;
}

/* --- HERO BODY CONTENT --- */
.hero-section {
  padding: 220px 24px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
 
}

.hero-badge {
  display: inline-block;
  background-color: rgba(245, 124, 66, 0.1); 
  color: var(--primary-orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-dark-slate);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-section h1 span {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section p {
  font-size: 18px;
  color: var(--text-muted-gray);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero-btn-primary {
  background: var(--gradient-sunset);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 20px -5px rgba(245, 124, 66, 0.3);
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(245, 124, 66, 0.45);
}

.hero-btn-secondary {
  background-color: #ffffff;
  color: var(--text-muted-gray);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  border: 2px solid rgba(80, 35, 75, 0.15); 
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}





/* ========7. FIXED & MODERN BRIGHT FOOTER STYLES ========= */

.modern-footer {
  background-color: #f4f7f5;
  color: #4a5d53;
  padding: 80px 24px 40px;
  font-size: 14px;
  border-top: 1px solid #e0e9e4;
  margin-top: auto;/ Aligns layout footer to screen baseline */width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  text-align: left;
  /* Resolves link alignment errors */
}

/* Column 1: Brand Info Box */
.footer-brand .brand-logo {
  color: #2c3e35;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .brand-logo i {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand .brand-text {
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.social-links a {
  color: #0d9488;
  background-color: #e6f7f4;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  /* Modern crisp squircle look */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2);
}

/* Columns 2 & 3: Link Layout Lists */
.footer-links h4 {
  color: #2c3e35;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #4a5d53;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #0d9488;
  transform: translateX(4px);
}

/* Column 4: Newsletter Box Frame */
.footer-newsletter h4 {
  color: #2c3e35;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-newsletter p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.subscribe-form input[type="email"] {
  flex: 1;
  background-color: #ffffff;
  border: 2px solid #e0e9e4;
  padding: 12px 16px;
  border-radius: 10px;
  color: #2c3e35;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: #0d9488;
}

.subscribe-form button {
  background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.1);
}

.subscribe-form button:hover {
  box-shadow: 0 6px 20px 0 rgba(13, 148, 136, 0.25);
}

/* Structural Divider Element */
.footer-divider {
  border: 0;
  height: 1px;
  background: #e0e9e4;
  margin: 60px 0 30px;
}

/* Baseline Legal Row */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #71877c;
}

.utility-links {
  display: flex;
  gap: 24px;
}

.utility-links a {
  color: #71877c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.utility-links a:hover {
  color: #0d9488;
}

/* ==========================================================================
   4. BIOGRAPHY SECTION
   ========================================================================== */
.bio-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.bio-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 64px;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
}

.bio-image {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
  box-shadow: 0 20px 40px -15px rgba(44, 62, 53, 0.15);
}

.bio-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #14b8a6;
  border-radius: 32px;
  z-index: -1;
}

.bio-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.bio-subtitle {
  display: inline-block;
  background-color: #f5f3ff;
  color: #7c3aed;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.bio-text {
  font-size: 16px;
  color: #4a5d53;
  line-height: 1.7;
  margin-bottom: 16px;
}

.bio-credentials {
  list-style: none;
  margin-top: 24px;
}

.bio-credentials li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #2c3e35;
  font-weight: 600;
  margin-bottom: 12px;
}

.bio-credentials li i {
  color: #14b8a6;
  font-size: 20px;
}

/* 



/* ==========================================================================
   5. 3-COLUMN SERVICE CARDS
   ========================================================================== */
.features-section {
  padding: 90px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.features-grid.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e0e9e4;
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px -2px rgba(44, 62, 53, 0.02);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 20px 40px -15px rgba(44, 62, 53, 0.08);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: #e6f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrapper i {
  font-size: 28px;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e35;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #4a5d53;
  line-height: 1.6;
}

/* Custom Bullet Styles for Services Grid Cards */
.card-bullet-list {
  list-style: none;
  margin-top: 12px;
}

.card-bullet-list li {
  font-size: 15px;
  color: #4a5d53;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Adds custom subtle dots instead of raw native lists */
.card-bullet-list li::before {
  content: "•";
  color: #0d9488;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

/* Tablet view adjustment breakpoint updates */
@media (max-width: 1100px) {
  .features-grid.four-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .features-grid.four-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- Service Cards Default State --- */
.features-grid .feature-card {
  background-color: #ffffff;
  /* Clean white background before hover */
  border: 1px solid #e0e9e4;
  border-radius: 24px;
  padding: 40px 32px;
  /* Smooth transform transition properties */
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px -2px rgba(44, 62, 53, 0.02);
}

/* --- Service Cards Hover State --- */
.features-grid .feature-card:hover {
  background-color: #f2faf8;
  /* Soft, warm mental-wellness teal tint on hover */
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(44, 62, 53, 0.08);
}



/* ==========================================================================
   6. CONTACT SECTION & SECURE BOOKING FORM STYLES
   ========================================================================== */
.contact-section {
  padding: 80px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  background-color: #ffffff;
  border: 1px solid #e0e9e4;
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 10px 40px -20px rgba(44, 62, 53, 0.05);
}

.contact-info-block h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-info-block h2 span {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  font-size: 15px;
  color: #4a5d53;
  line-height: 1.6;
  margin-bottom: 40px;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item i {
  font-size: 24px;
  color: #0d9488;
  background-color: #e6f7f4;
  padding: 12px;
  border-radius: 12px;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e35;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14px;
  color: #4a5d53;
}

.modern-booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #2c3e35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: #faf9f6;
  border: 2px solid #e0e9e4;
  padding: 12px 16px;
  border-radius: 10px;
  color: #2c3e35;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d9488;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.05);
}

.modern-booking-form input[type="date"] {
  cursor: pointer;
}

.form-group select {
  cursor: pointer;
}