/* ============================================
   PARLAQ HƏYAT RECOVERY CENTER - Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #1B3A5C;
  --primary-light: #264d75;
  --primary-dark: #122840;
  --secondary: #2A7F62;
  --secondary-light: #35a07c;
  --accent: #3DAAA0;
  --bg: #FAFBFC;
  --surface: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #5A6B7D;
  --text-light: #8896A6;
  --warm: #E8C547;
  --cta-green: #25D366;
  --cta-green-hover: #1eba59;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(27,58,92,0.08);
  --shadow-md: 0 4px 16px rgba(27,58,92,0.10);
  --shadow-lg: 0 8px 32px rgba(27,58,92,0.14);
  --shadow-xl: 0 16px 48px rgba(27,58,92,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

/* --- Card List --- */
.card-list {
  margin-top: 16px; color: var(--text-secondary); font-size: 0.95rem;
  list-style: none; padding: 0;
}
.card-list li { padding: 4px 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--primary); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-secondary); font-size: 1.05rem; }
.lead { font-size: 1.2rem; line-height: 1.8; max-width: 680px; }
.section-subtitle {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--secondary); margin-bottom: 12px;
  display: inline-block;
}
.section-title { margin-bottom: 20px; }
.section-desc { max-width: 640px; margin: 0 auto 32px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; transition: var(--transition); position: relative;
  overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; box-shadow: 0 4px 20px rgba(42,127,98,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(42,127,98,0.45); }
.btn-whatsapp {
  background: linear-gradient(135deg, var(--cta-green), #20c157);
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.2); }
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md); padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-size: 1.35rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.navbar.scrolled .nav-logo { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 18px; border-radius: 50px; font-weight: 500;
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.15); color: #fff; }
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--primary); background: rgba(27,58,92,0.06);
}
.nav-cta {
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; margin-left: 8px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,127,98,0.4); }

/* Mobile Menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--primary); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
    height: 100vh; background: var(--primary-dark); flex-direction: column;
    justify-content: center; gap: 8px; padding: 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.8); font-size: 1.1rem; padding: 14px 24px; width: 100%; }
  .nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.1); color: #fff; }
  .nav-cta { margin: 16px 0 0; width: 100%; text-align: center; padding: 14px; }
  .navbar.scrolled .nav-link { color: rgba(255,255,255,0.8); }
  .navbar.scrolled .nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 998; opacity: 0; pointer-events: none; transition: var(--transition);
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* --- Hero Section --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--primary-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(18,40,64,0.92) 0%, rgba(27,58,92,0.8) 50%, rgba(42,127,98,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 3; max-width: 720px;
  padding: 120px 0 80px;
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px; border-radius: 50px; color: rgba(255,255,255,0.9);
  font-size: 0.85rem; font-weight: 500; margin-bottom: 28px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cta-green); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-items {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--primary); font-size: 0.95rem;
}
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(42,127,98,0.1), rgba(61,170,160,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--secondary);
}

/* --- Cards --- */
.card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border); transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(42,127,98,0.1), rgba(61,170,160,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px; color: var(--secondary);
}
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { font-size: 0.95rem; }

.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* --- Process / Steps --- */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 32px; top: 40px; bottom: 40px;
  width: 2px; background: linear-gradient(to bottom, var(--secondary), var(--accent));
  border-radius: 2px;
}
.step {
  display: flex; gap: 28px; align-items: flex-start; padding: 24px 0;
  position: relative;
}
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(42,127,98,0.3);
}
.step-content h3 { margin-bottom: 8px; color: var(--primary); }
.step-content p { font-size: 0.95rem; }

/* --- Differentiators --- */
.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.diff-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 28px; background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition);
}
.diff-item:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.diff-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.diff-item h4 { margin-bottom: 6px; color: var(--primary); }
.diff-item p { font-size: 0.9rem; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,127,98,0.2), transparent 70%);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { justify-content: center; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-weight: 600;
  font-size: 1.05rem; color: var(--primary); text-align: left;
  cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-arrow {
  width: 24px; height: 24px; flex-shrink: 0; transition: 0.3s ease;
  color: var(--text-light);
}
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--secondary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { font-size: 0.95rem; }

/* --- Values Grid --- */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center; padding: 40px 28px;
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(42,127,98,0.1), rgba(61,170,160,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; }

/* --- About Hero / Page Hero --- */
.page-hero {
  position: relative; padding: 160px 0 100px; overflow: hidden;
  background: var(--primary-dark);
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,40,64,0.93), rgba(27,58,92,0.85));
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,0.8); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.9rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--accent); }

/* --- Mission Section --- */
.mission-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.mission-text h2 { margin-bottom: 20px; }
.mission-text p { margin-bottom: 16px; }
.mission-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.stat-card {
  text-align: center; padding: 24px; background: var(--bg);
  border-radius: var(--radius-md);
}
.stat-number {
  font-size: 2.4rem; font-weight: 800; color: var(--secondary);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 6px; }
.mission-visual {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mission-visual img { width: 100%; height: 400px; object-fit: cover; }

/* --- Confidentiality --- */
.confidential-section { background: var(--primary-dark); padding: 80px 0; }
.confidential-inner {
  display: flex; gap: 48px; align-items: center; color: #fff;
}
.confidential-icon {
  width: 100px; height: 100px; border-radius: 24px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
}
.confidential-inner h2 { color: #fff; margin-bottom: 12px; }
.confidential-inner p { color: rgba(255,255,255,0.75); }

/* --- Footer --- */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 { color: #fff; margin-bottom: 12px; font-size: 1.3rem; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #fff; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0; text-align: center; font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.developer-credit {
  margin-top: 5px;
}

/* --- Floating WhatsApp --- */
.float-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cta-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition); animation: float-bounce 3s infinite ease-in-out;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* --- Alt BG --- */
.bg-light { background: var(--bg); }
.bg-white { background: var(--surface); }

/* --- Responsive --- */
@media (max-width: 992px) {
  .mission-block { grid-template-columns: 1fr; }
  .mission-visual { order: -1; }
  .mission-visual img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .confidential-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .trust-items { gap: 24px; }
  .trust-item { font-size: 0.85rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps::before { left: 22px; }
  .step-number { width: 48px; height: 48px; font-size: 1rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .hero-content { padding: 140px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .diff-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 28px 20px; }
  .hero-content { padding: 120px 0 40px; }
  .trust-items { flex-direction: column; align-items: center; gap: 16px; }
}

/* --- Nav Logo Image --- */
.nav-logo-img {
  width: 44px; height: 44px; border-radius: 12px;
  object-fit: contain; flex-shrink: 0;
  background: rgba(255,255,255,0.9);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo-img {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* --- Stats Counter Section --- */
.stats-counter {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-counter::before {
  content: ''; position: absolute; top: -60%; right: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,170,160,0.15), transparent 70%);
}
.stats-counter::after {
  content: ''; position: absolute; bottom: -40%; left: -5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,127,98,0.12), transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.stat-item .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 0;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item .stat-number { font-size: 2.2rem; }
  .stats-counter { padding: 40px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item { padding: 16px 8px; }
  .stat-item .stat-number { font-size: 1.8rem; }
}

/* --- Director / Leader Section --- */
.director-section {
  padding: 80px 0;
}
.director-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.director-photo-wrap {
  position: relative;
}
.director-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-xl);
  opacity: 0.3;
}
.director-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3 / 4;
}
.director-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.director-badge {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; padding: 8px 24px;
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(42,127,98,0.4);
  white-space: nowrap;
}
.director-info h2 {
  margin-bottom: 4px;
}
.director-name-role {
  font-size: 0.9rem; font-weight: 600;
  color: var(--secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px !important;
}
.director-bio p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.director-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.director-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.director-highlight:hover {
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.director-highlight-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(42,127,98,0.1), rgba(61,170,160,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.director-highlight h4 {
  font-size: 0.95rem; margin-bottom: 2px;
}
.director-highlight p {
  font-size: 0.82rem !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
@media (max-width: 992px) {
  .director-block {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .director-photo { max-height: 480px; }
}
@media (max-width: 576px) {
  .director-highlights { grid-template-columns: 1fr; }
  .director-section { padding: 60px 0; }
}

/* --- Instagram Reels Slider --- */
.reels-section {
  padding: 80px 0;
  background: var(--bg);
}
.reels-section .section-header {
  text-align: center; margin-bottom: 40px;
}
.reels-slider-wrap {
  position: relative;
  padding: 0 48px;
}
.reels-slider-wrap .swiper {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.reel-slide {
  width: 200px;
  height: 356px;
  flex-shrink: 0;
}
.reel-card {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: #0a0a0a;
}
.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.reel-card img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.reel-card:hover img {
  transform: scale(1.06);
}
.reel-card .reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.reel-card:hover .reel-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}
.reel-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.reel-card:hover .reel-play-btn {
  transform: scale(1.1);
  background: #fff;
}
.reel-play-btn svg {
  width: 22px; height: 22px;
  fill: var(--primary-dark);
  margin-left: 3px;
}
.reel-card .reel-ig-badge {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-size: 0.75rem; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.reel-ig-badge svg {
  width: 16px; height: 16px; fill: #fff;
}

/* Swiper nav arrows */
.reels-slider-wrap .swiper-button-next,
.reels-slider-wrap .swiper-button-prev {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  color: var(--primary);
  transition: var(--transition);
}
.reels-slider-wrap .swiper-button-next:hover,
.reels-slider-wrap .swiper-button-prev:hover {
  background: var(--primary);
  color: #fff;
}
.reels-slider-wrap .swiper-button-next::after,
.reels-slider-wrap .swiper-button-prev::after {
  font-size: 16px; font-weight: 700;
}
.reels-slider-wrap .swiper-pagination {
  position: relative; margin-top: 24px;
}
.reels-slider-wrap .swiper-pagination-bullet {
  background: var(--primary); opacity: 0.2;
  width: 8px; height: 8px;
}
.reels-slider-wrap .swiper-pagination-bullet-active {
  opacity: 1; background: var(--secondary);
  width: 24px; border-radius: 4px;
}

@media (max-width: 768px) {
  .reels-slider-wrap { padding: 0; }
  .reels-slider-wrap .swiper-button-next,
  .reels-slider-wrap .swiper-button-prev { display: none; }
  .reel-slide { width: 170px; height: 302px; }
  .reels-section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .reel-slide { width: 150px; height: 267px; }
}
