/* Trusted Health Recovery - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0f6b5c;
  --primary-dark: #0a4d3f;
  --primary-light: #e8f6f4;
  --accent: #2a9d8f;
  --accent-light: #c8f2ec;
  --dark: #1a2332;
  --dark-soft: #2c3e50;
  --text: #2d3748;
  --text-muted: #718096;
  --light: #f8fafb;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 40px rgba(15,107,92,0.08);
  --shadow-lg: 0 20px 60px rgba(15,107,92,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; color: var(--dark); line-height: 1.2; letter-spacing: -0.02em; }

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }

a { color: var(--primary); text-decoration: none; transition: all 0.25s ease; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

/* Navigation */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,107,92,0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary) !important;
  letter-spacing: -0.03em;
}

.navbar-brand span { color: var(--accent); }

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  background: var(--primary-light);
  color: var(--primary) !important;
  text-decoration: none;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(15,107,92,0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,107,92,0.25);
  text-decoration: none;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  text-decoration: none;
}

.btn-outline-dark {
  border: 2px solid var(--border);
  color: var(--dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  text-decoration: none;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.hero-section .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-section h1 { color: var(--white); font-size: 3.8rem; letter-spacing: -0.04em; }
.hero-section .lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; }

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 4px solid rgba(255,255,255,0.08);
  max-width: 100%;
  height: auto;
}

/* Sections */
section { padding: 6rem 0; }

.section-header { margin-bottom: 3.5rem; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.6rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  background: var(--white);
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top { transform: scale(1.05); }

.card-body { padding: 1.75rem; }
.card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.card-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }

/* Why Choose Us */
.feature-box {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(15,107,92,0.2);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
  height: 100%;
}

.testimonial-card .quote-icon {
  font-size: 4rem; line-height: 0.5; color: var(--accent-light); font-family: Georgia, serif;
}

.testimonial-card p { font-style: italic; color: var(--text); margin: 1.25rem 0; }

.author { display: flex; align-items: center; gap: 1rem; }
.author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author h6 { margin: 0; font-size: 0.95rem; }
.author span { font-size: 0.8rem; color: var(--text-muted); }

/* Blog */
.blog-card { height: 100%; display: flex; flex-direction: column; }
.blog-card .card-body { flex-grow: 1; display: flex; flex-direction: column; }
.blog-card .card-text { flex-grow: 1; }

/* FAQ */
.accordion { border: none; }
.accordion-item { border: none; border-radius: 16px !important; overflow: hidden; margin-bottom: 1rem; box-shadow: var(--shadow); background: var(--white); }
.accordion-button { background: var(--white); font-weight: 600; padding: 1.25rem 1.5rem; color: var(--dark); border: none; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: var(--primary); color: var(--white); }
.accordion-button:focus { box-shadow: none; }
.accordion-body { padding: 1.25rem 1.5rem; color: var(--text); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 24px;
  padding: 4rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute; left: -40px; bottom: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}

footer h5 { color: var(--white); font-family: 'Playfair Display', serif; margin-bottom: 1.25rem; }

footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: var(--accent); text-decoration: none; }

footer .social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); transition: all 0.2s ease;
}

footer .social-icon:hover { background: var(--primary); color: var(--white); text-decoration: none; }

/* Forms */
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.1);
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.2rem; }
  section { padding: 4rem 0; }
  .section-header h2 { font-size: 1.9rem; }
}


.blog-content {
  text-align: justify;
}

.blog-content img{
  width: 100%;
}

.navbar-brand img{
  width: 250px;
}