
    :root {
      --navy: #0B2A5B;
      --navy-light: #153D7A;
      --gold: #C8942A;
      --gold-light: #E8AF3A;
	  --yellow: #f2a618;
      --saffron: #FF6B1A;
      --cream: #FDF8F0;
      --white: #FFFFFF;
	  --background: #edf2f8;
      --text-dark: #1A1A2E;
      --text-muted: #5A6478;
      --green: #1c8742;
      --green-light: #E8F5EE;
      --border: #E2D9C8;
	  --border-2: #d6dee7;
      --shadow: 0 8px 40px rgba(11,42,91,0.12);
      --shadow-lg: 0 20px 60px rgba(11,42,91,0.18);

    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Hind', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      color: #b8ccee;
      font-size: 0.8rem;
      padding: 7px 0;
      text-align: center;
    }
    .topbar a { color: var(--gold-light); text-decoration: none; }
    .topbar span { margin: 0 12px; }

    /* ── HEADER ── */
    header {
      background: var(--white);
      position: sticky; top: 0; z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .header-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 24px;
    }
    .logo-wrap {
		display: flex;
		align-items: center;
		gap: 12px;
		text-decoration: none;
	}
    .logo-icon {
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background: linear-gradient(135deg, var(--navy), var(--navy-light));
		display: flex;
		align-items: center;
		justify-content: center;
		/* font-size: 22px; */
		border: 1px solid oklch(90% .015 250);
	}
    .logo-text h1 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); line-height: 1.1; }
    .logo-text p { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.5px; }

    nav { display: flex; gap: 28px; align-items: center; }
    nav a {
      text-decoration: none; color: var(--text-dark);
      font-size: 0.88rem; font-weight: 500;
      transition: color 0.2s;
    }
    nav a:hover { color: var(--navy); }

    .btn-call {
		background: var(--gold);
		color: white;
		border: none;
		border-radius: 30px;
		padding: 10px 22px;
		font-size: 0.88rem;
		font-weight: 600;
		cursor: pointer;
		text-decoration: none;
		transition: background 0.2s, transform 0.1s;
		display: inline-flex;
		align-items: center;
		gap: 6px;
	}
	a.btn-call svg {
    width: 16px;
    }
    .btn-call:hover { background: #e05a0f; transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3f7a 55%, #0d3060 100%);
      color: white; position: relative; overflow: hidden;
      padding: 80px 24px 70px;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(200,148,42,0.18) 0%, transparent 65%);
    }
    .hero-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
      position: relative;
    }
    .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.2);
      border-radius: 100px; padding: 6px 16px; font-size: 0.78rem;
      color: #c8e0ff; margin-bottom: 20px;
    }
    .hero-badge span { width: 8px; height: 8px; background: #4caf82; border-radius: 50%; }
    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2; margin-bottom: 12px;
    }
    .hero h2 em { color: var(--gold-light); font-style: normal; }
    .hero-tagline {
      font-size: 1rem; color: #b0c8ef; margin-bottom: 24px; line-height: 1.6;
      font-style: italic;
    }
    .hero-desc { color: #c8d8f0; font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
		background: var(--gold);
		color: white;
		border: none;
		border-radius: 30px;
		padding: 14px 28px;
		font-size: 0.95rem;
		font-weight: 600;
		cursor: pointer;
		text-decoration: none;
		transition: all 0.2s;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,148,42,0.4); }
    .btn-outline {
		background: transparent;
		color: white;
		border: 2px solid rgba(255,255,255,0.4);
		border-radius: 30px;
		padding: 13px 26px;
		font-size: 0.95rem;
		font-weight: 500;
		cursor: pointer;
		text-decoration: none;
		transition: all 0.2s;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

    .hero-stats {
      display: flex; gap: 28px; margin-top: 36px;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item { text-align: center; }
    .stat-item strong { display: block; font-size: 1.6rem; font-family: 'Playfair Display', serif; color: var(--gold-light); }
    .stat-item span { font-size: 0.75rem; color: #8aabda; }

    /* Hero Card */
    .hero-card {
      background: white; border-radius: 20px;
      padding: 32px; box-shadow: var(--shadow-lg);
      animation: floatCard 3s ease-in-out infinite alternate;
    }
    @keyframes floatCard {
      from { transform: translateY(0); }
      to { transform: translateY(-10px); }
    }
    .hero-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 6px; }
    .hero-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
      border-radius: 8px; font-family: 'Hind', sans-serif; font-size: 0.88rem;
      color: var(--text-dark); background: white; transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus { border-color: var(--navy); }
    .form-group textarea { resize: none; height: 80px; }
    .btn-whatsapp {
      width: 100%; background: #25D366; color: white; border: none;
      border-radius: 10px; padding: 13px; font-size: 0.95rem;
      font-weight: 600; cursor: pointer; display: flex; align-items: center;
      justify-content: center; gap: 8px; transition: background 0.2s;
      font-family: 'Hind', sans-serif;
    }
    .btn-whatsapp:hover { background: #1fb855; }
    .form-note { font-size: 0.73rem; color: #999; text-align: center; margin-top: 10px; }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: var(--navy); color: white;
      padding: 18px 24px;
    }
    .trust-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
    }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
    .trust-item .icon { font-size: 1.3rem; }

    /* ── SECTIONS COMMON ── */
    section { padding: 72px 24px; }
    .section-inner { max-width: 1180px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
      color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: var(--navy); line-height: 1.25; margin-bottom: 16px;
    }
    .section-subtitle { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 580px; }
    .divider {
      width: 52px; height: 4px; background: var(--gold);
      border-radius: 2px; margin: 18px 0 32px;
    }

    /* ── WHY CHOOSE US ── */
    .why-bg { background: var(--white); }
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
    }
    .feature-card {
      background: #fff; border-radius: 16px;
      padding: 28px 24px; border: 1px solid var(--border-2);
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .feature-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--gold); transform: scaleX(0);
      transition: transform 0.3s; transform-origin: left;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .feature-card:hover::before { transform: scaleX(1); }
    .feature-icon {
		width: 52px;
		height: 52px;
		background: #e8f3ec;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		margin-bottom: 16px;
	}
	.feature-icon svg {
		stroke: var(--green);
	}
	.feature-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
    .feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* ── SERVICES ── */
    .services-bg {
		background: var(--background);
	}
    .services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
    .service-item {
      background: white; border-radius: 12px; padding: 16px 18px;
      border: 1px solid var(--border); display: flex; align-items: center;
      gap: 12px; cursor: default; transition: all 0.2s;
    }
    .service-item:hover { border-color: var(--gold); background: #fff9f0; transform: translateX(4px); }
    .service-item .dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    .service-item span { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }

    .services-visual {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 24px; padding: 40px 36px; color: white; position: relative; overflow: hidden;
    }
    .services-visual::before {
      content: '🏥'; font-size: 120px; position: absolute;
      right: -20px; bottom: -20px; opacity: 0.08;
    }
    .services-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 16px; }
    .services-visual p { color: #b8ccee; line-height: 1.7; margin-bottom: 24px; font-size: 0.9rem; }
    .services-visual .btn-primary { background: var(--gold); }

    /* ── ADDICTIONS ── */
    .addictions-bg { background: var(--white); }
    .addictions-grid {
      display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
    }
    .addiction-tag {
		background: var(--background);
		border: 1.5px solid var(--border-2);
		border-radius: 100px;
		padding: 9px 20px;
		font-size: 0.85rem;
		font-weight: 500;
		color: var(--text-dark);
		transition: all 0.2s;
		cursor: default;
	}
    .addiction-tag:hover {
      background: var(--navy); color: white; border-color: var(--navy);
      transform: translateY(-2px);
    }
    .addiction-tag .hi { font-size: 0.78rem; color: var(--text-muted); }
    .addiction-tag:hover .hi { color: #90acda; }

    /* ── TEAM ── */
    .team-bg {
		background: var(--background);
	}
    .team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 40px;
	}
    .team-card {
      background: white; border-radius: 20px; padding: 32px 24px;
      text-align: center; border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .team-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      font-size: 36px; margin: 0 auto 16px;
    }
    .team-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .team-card .role { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
		.team-card p {
		font-size: 0;
		color: var(--text-muted);
		line-height: 1.6;
		margin: 0!important;
		}

    /* ── CTA ── */
   .cta-section {
		background: linear-gradient(rgba(10, 26, 58, 0.825), rgba(26, 63, 122, 0.85)),
			url('../images/recovery.jpg');
		color: white;
		text-align: center;
		padding: 72px 24px;
		background-position: center;
	}
	.yellow-iocn svg {
    stroke: oklch(78% .16 75);
}
    .cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 14px; }
    .cta-section p { color: #b0c8ef; font-size: 1.05rem; margin-bottom: 36px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ── FOOTER ── */
    footer {
      background: #071d3e; color: #8090a8;
      padding: 60px 24px 28px;
    }
    .footer-grid {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.3rem; margin-bottom: 8px; }
    .footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-bottom: 16px; }
    .reg-badge {
      display: inline-block; background: rgba(200,148,42,0.15);
      border: 1px solid rgba(200,148,42,0.4); border-radius: 8px;
      padding: 6px 14px; font-size: 0.75rem; color: var(--gold-light);
    }
    .footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: #8090a8; text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-col address { font-style: normal; font-size: 0.82rem; line-height: 1.7; }
    .footer-bottom {
      max-width: 1180px; margin: 24px auto 0;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom a { color: var(--gold-light); text-decoration: none; }

    /* ── FLOATING WA ── */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px;
      background: #25D366; color: white; width: 58px; height: 58px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
      cursor: pointer; z-index: 999; text-decoration: none;
      animation: pulse-wa 2.5s infinite;
      transition: transform 0.2s;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      /* .hero-card { display: none; } */
      .hero-stats { gap: 16px; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .services-layout { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .trust-inner { gap: 20px; }
    }
    @media (max-width: 520px) {
      .features-grid { grid-template-columns: 1fr; }
      .services-list { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; }
    }

    /* animations */
    .fade-up {
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.7s forwards ease;
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }


.footer-brand .logo img {
    width: 62px;
    border-radius: 50px;
}

.footer-brand .logo {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
    text-decoration: none;
}

/* ── LIFE AT THE CENTRE ── */
.life-bg {
    background: var(--white);
}
.life-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px;
}
.life-card {
  background: white; border-radius: 18px;
  border: 1px solid var(--border-2); overflow: hidden;
  transition: all 0.3s;
}
.life-card img {
    width: 100%;
    aspect-ratio: 7/5;
    object-fit: cover;
    margin-bottom: -15px;
}
.life-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.life-card-img {
  height: 180px; background-size: cover; background-position: center;
  background-color: #c8d8ee;
  position: relative;
}
.life-img-1 { background-image: linear-gradient(135deg, #1a3f7a 0%, #2e6bac 100%); }
.life-img-2 { background-image: linear-gradient(135deg, #1c6e42 0%, #2db36d 100%); }
.life-img-3 { background-image: linear-gradient(135deg, #7a1a3f 0%, #ac2e6b 100%); }
.life-img-4 { background-image: linear-gradient(135deg, #5a4a1a 0%, #c8942a 100%); }
/* Decorative pattern overlay */
.life-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255,255,255,0.04) 10px, rgba(255,255,255,0.04) 20px
  );
}
.life-card-body { padding: 22px 20px; }
.life-icon {
  font-size: 28px; margin-bottom: 10px; display: block;
}
.life-card-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.life-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── RECOVERY PROCESS ── */
.process-bg {
    background: var(--white);
}
.process-track { margin-top: 48px; position: relative; }
.process-steps {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
  position: relative;
}
/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(100% / 14); right: calc(100% / 14);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 8px; position: relative; z-index: 1;
}
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 18px; border: 4px solid white;
  box-shadow: 0 4px 18px rgba(11,42,91,0.2);
  transition: all 0.3s; flex-shrink: 0;
}
.process-step:hover .step-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.1);
}
.step-content h3 { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-content p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* ── FAQ ── */
.faq-bg { background: var(--background); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-right { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: white; border-radius: 14px;
  border: 1.5px solid var(--border-2); overflow: hidden;
  cursor: pointer; transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.active { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,148,42,0.12); }
.faq-item:hover { border-color: var(--navy); }

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; gap: 16px;
}
.faq-q span { font-size: 0.93rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--background); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--navy); font-weight: 700;
  flex-shrink: 0; transition: all 0.2s;
}
.faq-item.active .faq-icon {
  background: var(--gold); border-color: var(--gold); color: white;
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 22px 18px; font-size: 0.87rem;
  color: var(--text-muted); line-height: 1.7;
  border-top: 1px solid var(--border-2);
  padding-top: 14px;
}

/* ── RESPONSIVE FOR NEW SECTIONS ── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .process-steps::before { display: none; }
  .life-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .life-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; }
}
@media (max-width: 520px) {
  .life-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  a.btn-call {
    display: none;
 }
}
