
/* Google Fonts - Inter */
/* ==========================================================
   CSS VARIABLES
========================================================== */

:root{

    /* Brand Colors */

    --green-dark:#0F6B45;
    --green:#177245;
    --green-light:#2DA56A;
    --green-soft:#EAF7F0;

    --accent:#F04A43;

    /* Neutral */

    --white:#ffffff;
    --black:#000000;

    --text-dark:#2B2B2B;
    --text-medium:#5F6368;
    --text-light:#8A9099;

    --border:#E5E7EB;

    --background:#ffffff;
    --background-light:#F7FAF8;

    /* Shadows */

    --shadow-xs:0 2px 8px rgba(0,0,0,.05);

    --shadow-sm:0 6px 20px rgba(0,0,0,.08);

    --shadow-md:0 12px 35px rgba(0,0,0,.12);

    --shadow-lg:0 25px 70px rgba(0,0,0,.16);

    /* Radius */

    --radius-sm:8px;

    --radius-md:14px;

    --radius-lg:22px;

    --radius-xl:40px;

    --radius-round:50%;

    /* Transition */

    --transition:.35s ease;

    /* Header Heights */

    --topbar-height:44px;

    --header-height:76px;

    --header-total:
    calc(
    var(--topbar-height)
    +
    var(--header-height)
    );

    /* Max Width */

    --container:1320px;

}
/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}
/* ==========================================================
   HTML
========================================================== */

html{

    scroll-behavior:smooth;

}
/* ==========================================================
   BODY
========================================================== */

html, body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

    color:var(--text-dark);

    background:var(--background);

    line-height:1.7;

    padding-top:120px;
}
/* ==========================================================
   IMAGES
========================================================== */

img{

    max-width:100%;

    display:block;

}
/* ==========================================================
   LINKS
========================================================== */

a{

    text-decoration:none;

    transition:var(--transition);

}
/* ==========================================================
   LISTS
========================================================== */

ul,
ol{

    list-style:none;

}
/* ==========================================================
   BUTTONS
========================================================== */

button{

    font:inherit;

    border:none;

    cursor:pointer;

    background:none;

}
/* ==========================================================
   FORM ELEMENTS
========================================================== */

input,
textarea,
select{

    font:inherit;

    outline:none;

}
/* ==========================================================
   SECTIONS
========================================================== */

section{

    scroll-margin-top:120px;

}
/* ==========================================================
   CONTAINERS
========================================================== */

.container{

    width:min(92%,1320px);

    margin:auto;

}

.container-small{

    width:min(90%,1100px);

    margin:auto;

}

.container-wide{

    width:min(95%,1500px);

    margin:auto;

}
/* ==========================================================
   COMMON SECTION SPACING
========================================================== */

.section{

    padding:90px 0;

}

.section-small{

    padding:60px 0;

}

.section-large{

    padding:120px 0;

}
/* ==========================================================
   DISPLAY UTILITIES
========================================================== */

.d-block{
    display:block;
}

.d-inline{
    display:inline;
}

.d-inline-block{
    display:inline-block;
}

.d-flex{
    display:flex;
}

.d-grid{
    display:grid;
}

.d-none{
    display:none;
}
/* ==========================================================
   FLEX UTILITIES
========================================================== */

.flex-center{
    display:flex;
    align-items:center;
    justify-content:center;
}

.flex-between{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.flex-start{
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.flex-end{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.flex-column{
    display:flex;
    flex-direction:column;
}

.flex-wrap{
    flex-wrap:wrap;
}
/* ==========================================================
   GRID UTILITIES
========================================================== */

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
/* ==========================================================
   TEXT ALIGNMENT
========================================================== */

.text-left{
    text-align:left;
}

.text-center{
    text-align:center;
}

.text-right{
    text-align:right;
}
/* ==========================================================
   WIDTH UTILITIES
========================================================== */

.w-100{
    width:100%;
}

.h-100{
    height:100%;
}
/* ==========================================================
   BORDER RADIUS
========================================================== */

.radius-sm{
    border-radius:var(--radius-sm);
}

.radius-md{
    border-radius:var(--radius-md);
}

.radius-lg{
    border-radius:var(--radius-lg);
}

.radius-xl{
    border-radius:var(--radius-xl);
}

.radius-round{
    border-radius:50%;
}
/* ==========================================================
   SHADOW UTILITIES
========================================================== */

.shadow-xs{
    box-shadow:var(--shadow-xs);
}

.shadow-sm{
    box-shadow:var(--shadow-sm);
}

.shadow-md{
    box-shadow:var(--shadow-md);
}

.shadow-lg{
    box-shadow:var(--shadow-lg);
}
/* ==========================================================
   BACKGROUND HELPERS
========================================================== */

.bg-white{
    background:var(--white);
}

.bg-light{
    background:var(--background-light);
}

.bg-green{
    background:var(--green);
}

.bg-soft{
    background:var(--green-soft);
}
/* ==========================================================
   OVERFLOW
========================================================== */

.overflow-hidden{
    overflow:hidden;
}

.position-relative{
    position:relative;
}

.position-absolute{
    position:absolute;
}
/* ==========================================================
   OBJECT FIT
========================================================== */

.object-cover{
    object-fit:cover;
}

.object-contain{
    object-fit:contain;
}
/* ==========================================================
   BUTTON SYSTEM
========================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    cursor:pointer;

    border:none;

    transition:var(--transition);

    white-space:nowrap;

}
/* ==========================================================
   PRIMARY BUTTON
========================================================== */

.btn-primary{

    background:var(--green);

    color:var(--white);

    padding:15px 34px;

    border-radius:999px;

    box-shadow:var(--shadow-sm);

}

.btn-primary:hover{

    background:var(--green-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}
/* ==========================================================
   SECONDARY BUTTON
========================================================== */

.btn-secondary{

    background:var(--white);

    color:var(--green);

    border:2px solid var(--green);

    padding:15px 34px;

    border-radius:999px;

}

.btn-secondary:hover{

    background:var(--green-soft);

}
/* ==========================================================
   OUTLINE BUTTON
========================================================== */

.btn-outline{

    background:transparent;

    color:var(--white);

    border:2px solid rgba(255,255,255,.65);

    padding:15px 34px;

    border-radius:999px;

}

.btn-outline:hover{

    background:rgba(255,255,255,.12);

}
/* ==========================================================
   SMALL BUTTON
========================================================== */

.btn-small{

    padding:11px 24px;

    font-size:14px;

} 
/* ==========================================================
   LARGE BUTTON
========================================================== */

.btn-large{

    padding:18px 42px;

    font-size:18px;

}
/* ==========================================================
   ICON BUTTONS
========================================================== */

.btn i{

    font-size:1em;

}
/* ==========================================================
   SECTION BADGE
========================================================== */

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    border-radius:999px;

    background:var(--green-soft);

    color:var(--green);

    font-size:13px;

    font-weight:700;

    letter-spacing:1.8px;

    text-transform:uppercase;

}
/* ==========================================================
   DIVIDER
========================================================== */

.divider{

    width:80px;

    height:4px;

    background:var(--green);

    border-radius:999px;

    margin:20px auto;

}
/* ==========================================================
   ICON CIRCLE
========================================================== */

.icon-circle{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--green-soft);

    color:var(--green);

    font-size:28px;

    flex-shrink:0;

}
/* ==========================================================
   CARD
========================================================== */

.card{

    background:#fff;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}
/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title{

    font-size:clamp(32px,4vw,52px);

    font-weight:700;

    line-height:1.2;

    color:var(--green-dark);

}
/* ==========================================================
   SECTION SUBTITLE
========================================================== */

.section-subtitle{

    margin-top:18px;

    max-width:760px;

    font-size:18px;

    color:var(--text-medium);

    line-height:1.8;

}
/* ==========================================================
   HOVER LIFT
========================================================== */

.hover-lift{

    transition:var(--transition);

}

.hover-lift:hover{

    transform:translateY(-6px);

}
/* ==========================================================
   FADE
========================================================== */

.fade{

    transition:var(--transition);

}
/* ==========================================================
   TEXT SELECTION
========================================================== */

::selection{

    background:var(--green);

    color:#fff;

}
/* ==========================================================
   ACCESSIBILITY
========================================================== */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{

    outline:3px solid rgba(23,114,69,.35);

    outline-offset:3px;

    border-radius:8px;

}

/* ==========================================================
   AUTO-HIDING SCROLLBAR SYSTEM
========================================================== */
html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.4s ease;
}

html.is-scrolling {
  scrollbar-color: rgba(15, 107, 69, 0.5) transparent;
}

/* WebKit Custom Scrollbar (Chrome, Edge, Safari, Opera, Brave) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background-color 0.4s ease;
}

/* Show subtle scrollbar thumb when active scrolling occurs or when hovering on scrollbar area */
html.is-scrolling ::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 107, 69, 0.55);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(15, 107, 69, 0.85);
}

/* ==========================================================
   BOTANICAL / LEAF BACKGROUND PATTERN (Dr. Batra's Style)
   Subtle, elegant, medical/wellness aesthetic with warm cream background
   ========================================================== */

body {
  background-color: #FAF8F3;
}

.botanical-bg {
  position: relative;
  background-color: #FDFBF7 !important;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%23d1cec5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M200,350 C200,350 150,250 100,200 C50,150 20,180 20,180 C20,180 80,100 200,100 C320,100 380,180 380,180 C380,180 350,150 300,200 C250,250 200,350 200,350 Z M200,350 C200,350 200,200 200,100' /%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%23d1cec5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M200,350 C200,350 150,250 100,200 C50,150 20,180 20,180 C20,180 80,100 200,100 C320,100 380,180 380,180 C380,180 350,150 300,200 C250,250 200,350 200,350 Z M200,350 C200,350 200,200 200,100' /%3E%3C/svg%3E") !important;
  background-position: left -150px top 100px, right -150px bottom 100px !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 500px auto, 500px auto !important;
}

.botanical-bg > * {
  position: relative;
  z-index: 1;
}

/* Lighter variant for already-dark backgrounds */
.botanical-bg-light::before {
  opacity: 0.02;
}

/* ==========================================================
   DISEASE PAGE HERO (Standardized)
   ========================================================== */

.page-hero {
  background: linear-gradient(135deg, #0a5638 0%, #0F6B45 40%, #177245 100%);
  padding: 55px 40px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M30 170c0-40 25-70 50-90C60 110 45 140 30 170z' fill='%23ffffff'/%3E%3Cpath d='M80 80c10-30 35-55 60-65C120 35 100 60 80 80z' fill='%23ffffff'/%3E%3Cpath d='M150 150c-15-25-10-55 5-80C145 95 145 125 150 150z' fill='%23ffffff'/%3E%3Cpath d='M170 40c-20 15-45 15-65 5C125 30 150 30 170 40z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 280px 280px;
}

.page-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb a:hover {
  color: #fff;
}

.page-hero .breadcrumb .separator {
  margin: 0 8px;
  opacity: 0.5;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.page-hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: var(--green-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-hero .btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.page-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Trust bar inside hero */
.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.hero-trust-badges .badge-item i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-trust-badges .badge-item strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 20px 35px;
  }

  .hero-trust-badges {
    gap: 18px;
  }

  .hero-trust-badges .badge-item {
    font-size: 12px;
  }
}

/* ==========================================================
   DISEASE CONTENT SECTIONS (Standardized)
   ========================================================== */

.disease-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px;
}

.disease-content-wrapper h2 {
  color: var(--green-dark);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.disease-content-wrapper h2 i {
  color: var(--green);
  font-size: 0.85em;
}

.disease-content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.disease-content-wrapper ul {
  padding-left: 0;
  list-style: none;
}

.disease-content-wrapper li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.disease-content-wrapper li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--green);
  font-size: 14px;
}

/* Symptom grid */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 20px 0 30px;
}

.symptom-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #f8faf9;
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.symptom-card i {
  color: var(--green);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.symptom-card strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 15px;
}

.symptom-card span {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: linear-gradient(135deg, #eef3f0 0%, #e3ebe7 100%);
  border: 2px dashed #c5d4cc;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto;
  color: #8fa69a;
  font-size: 14px;
  font-weight: 500;
}

.img-placeholder i {
  font-size: 36px;
  opacity: 0.5;
}

/* Disease CTA banner */
.disease-cta-banner {
  background: linear-gradient(135deg, #EAF7F0, #f0fdf4);
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  margin: 50px 0;
}

.disease-cta-banner h2 {
  justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}

.disease-cta-banner p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: var(--text-medium);
}

.disease-cta-banner .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Whatsapp Float (single) */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    padding: 10px 16px;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-sticky-cta .cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--green-dark);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
  }

  .whatsapp-float {
    bottom: 90px;
  }
}