
/* ============================================
   WELLNESS HEALTH CENTER - GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&family=Raleway:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
  --primary: #2e7d5e;
  --primary-dark: #1a5c43;
  --primary-light: #4caf87;
  --accent: #f0c040;
  --accent-dark: #d4a800;
  --secondary: #5b8fa8;
  --light-green: #e8f5ee;
  --light-bg: #f9fafb;
  --white: #ffffff;
  --dark: #1c2b25;
  --text: #3a4a42;
  --text-light: #6b7c74;
  --border: #d9e8e0;
  --shadow: 0 4px 20px rgba(46, 125, 94, 0.12);
  --shadow-hover: 0 8px 35px rgba(46, 125, 94, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--primary-dark);
  color: #cce8d8;
  padding: 8px 0;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--accent); transition: var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(46,125,94,0.3);
}
.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary-dark);
  line-height: 1.1;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--light-green);
  color: var(--primary);
}
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 30px !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   CONTAINER
   ============================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a5c43 0%, #2e7d5e 45%, #4caf87 100%);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1400&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,192,64,0.25);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 34px;
  max-width: 560px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1493612276216-ee3925520721?w=1400&q=80') center/cover;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-top: 14px;
  opacity: 0.8;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.4px;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(240,192,64,0.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240,192,64,0.5);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-green {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(46,125,94,0.35);
}
.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(46,125,94,0.45);
}
.btn-lg { padding: 15px 38px; font-size: 1rem; }

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--text-light);
  font-size: 1.02rem;
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  background: var(--light-green);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.card-text { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; align-items: center; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
}
.stat-item p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ============================================
   FEATURES / ICONS
   ============================================ */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-box:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}

/* ============================================
   TEAM / LEADERSHIP CARDS
   ============================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card-body { padding: 22px 20px 26px; }
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-card .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.social-links { display: flex; justify-content: center; gap: 10px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--primary-light);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.testimonial-card p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--light-green); }
.reviewer-info h4 { font-size: 0.95rem; color: var(--dark); font-weight: 700; }
.reviewer-info span { font-size: 0.82rem; color: var(--text-light); }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; }

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card img { width: 100%; height: 240px; object-fit: cover; }
.product-card-body { padding: 20px; }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 6px; }
.product-card p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 14px; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.product-price del { font-size: 0.9rem; color: var(--text-light); font-weight: 400; margin-left: 8px; }
.product-card .btn-green { width: 100%; justify-content: center; margin-top: 14px; padding: 10px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,67,0.75), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   CONTACT
   ============================================ */
.contact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46,125,94,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact-info-box p { opacity: 0.85; font-size: 0.95rem; margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.88rem; opacity: 0.75; margin-bottom: 3px; }
.contact-item-text p { opacity: 1; font-weight: 600; margin: 0; font-size: 0.97rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1a5c43 0%, #2e7d5e 60%, #4caf87 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80') center/cover;
  opacity: 0.1;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: #a8c4b4;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text h1 { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-text span { color: #a8c4b4; }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #a8c4b4;
}
.footer-heading {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: #a8c4b4;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #a8c4b4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-newsletter input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 10px;
  outline: none;
  font-family: 'Lato', sans-serif;
}
.footer-newsletter input::placeholder { color: #708878; }
.footer-newsletter input:focus { border-color: var(--primary-light); }
.footer-newsletter .btn-green { width: 100%; justify-content: center; border-radius: 8px; padding: 11px; font-size: 0.88rem; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: #6a8878;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--primary-light); }

/* ============================================
   UTILITIES
   ============================================ */
.bg-light { background: var(--light-bg); }
.bg-white { background: var(--white); }
.bg-green { background: var(--light-green); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 40px; }
.gap-center { display: flex; justify-content: center; margin-top: 40px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-green);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li::before {
  content: '\u2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); z-index: 100; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 56px 0; }
  .hero { min-height: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .topbar .container { flex-direction: column; text-align: center; }
}
