/* ============================================================
   GANGA DEVI HOMOEO HOSPITAL — style.css
   ============================================================ */

/* --- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1a2a3a;
  background: #fff;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- VARIABLES -------------------------------------------- */
:root {
  --blue:    #0D4A8D;
  --blue2:   #0a3a6e;
  --green:   #1AAE6F;
  --green2:  #14925c;
  --grey:    #F4F7FB;
  --dark:    #0d1f35;
  --text:    #3a4a5a;
  --radius:  12px;
  --shadow:  0 8px 32px rgba(13,74,141,.12);
  --shadow2: 0 20px 60px rgba(13,74,141,.18);
  --trans:   .3s ease;
}

/* --- UTILITIES -------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.bg-grey { background: var(--grey); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.hidden { display: none !important; }

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue2); border-color: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,74,141,.3); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,174,111,.35); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); font-size: 0.85rem; padding: 8px 20px; }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- SECTION HEADER --------------------------------------- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(13,74,141,.1); color: var(--blue);
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,.2); color: #fff; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); margin-bottom: 16px; }
.section-line { width: 60px; height: 4px; background: var(--green); border-radius: 4px; margin: 0 auto 16px; }
.section-sub { color: var(--text); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; background: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s, visibility .5s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-ring {
  width: 56px; height: 56px; border: 4px solid #e8f0fb;
  border-top-color: var(--blue); border-radius: 50%;
  animation: spin 0.9s linear infinite; margin: 0 auto 16px;
}
.loader-inner h2 { color: var(--blue); font-size: 1.1rem; margin-bottom: 4px; }
.loader-inner p { color: #999; font-size: 0.85rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar { background: var(--blue); color: rgba(255,255,255,.85); font-size: 0.8rem; padding: 8px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; flex-wrap: wrap; gap: 16px; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; }
.btn-whatsapp-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff; padding: 5px 14px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  transition: background var(--trans);
}
.btn-whatsapp-sm svg { width: 14px; height: 14px; }
.btn-whatsapp-sm:hover { background: var(--green2); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky; top: 0; z-index: 1000; background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.06); transition: box-shadow var(--trans);
}
#header.scrolled { box-shadow: 0 4px 30px rgba(13,74,141,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon svg { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--blue); line-height: 1.1; }
.logo-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: .12em; color: var(--green); }
nav ul { display: flex; gap: 4px; align-items: center; }
nav ul li a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500;
  color: var(--text); transition: all var(--trans);
}
nav ul li a:hover, nav ul li a.active { color: var(--blue); background: rgba(13,74,141,.07); }
.header-btns { display: flex; gap: 10px; }
.header-btns .btn { padding: 9px 20px; font-size: 0.82rem; }
#menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
#menu-toggle span { width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all var(--trans); display: block; }
#menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: linear-gradient(135deg, #0D4A8D 0%, #0a3570 50%, #073060 100%);
  padding: 100px 0 120px; overflow: hidden; color: #fff;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-block; background: rgba(26,174,111,.25); color: #6feac0;
  border: 1px solid rgba(26,174,111,.4); padding: 6px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: .08em; margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff;
  font-weight: 800; margin-bottom: 20px; line-height: 1.15;
}
.hero-content h1 .highlight { color: #6feac0; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 580px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 70px; }
.stat-card {
  text-align: center; padding: 24px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform var(--trans), box-shadow var(--trans);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.stat-num { display: inline; font-family: 'Poppins',sans-serif; font-size: 2.4rem; font-weight: 800; color: #fff; }
.stat-plus { font-size: 1.8rem; font-weight: 800; color: #6feac0; }
.stat-label { display: block; font-size: 0.82rem; color: rgba(255,255,255,.7); margin-top: 6px; font-weight: 500; letter-spacing: .02em; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text p { color: var(--text); margin-bottom: 18px; font-size: 1rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px;
  background: #fff; border-radius: var(--radius); border: 1px solid #e8eef8;
  box-shadow: 0 4px 16px rgba(13,74,141,.06); transition: all var(--trans);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(13,74,141,.15); }
.fc-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fc-icon.green { background: rgba(26,174,111,.1); color: var(--green); }
.fc-icon.blue { background: rgba(13,74,141,.1); color: var(--blue); }
.fc-icon svg { width: 20px; height: 20px; }
.feature-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.feature-card p { font-size: 0.8rem; color: var(--text); }

/* ============================================================
   LEGACY TIMELINE
   ============================================================ */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--blue), var(--green));
  transform: translateX(-50%);
}
.tl-item { display: flex; width: 50%; padding-bottom: 50px; position: relative; }
.tl-item.left { align-self: flex-start; padding-right: 60px; justify-content: flex-end; }
.tl-item.right { align-self: flex-start; padding-left: 60px; margin-left: 50%; }
.tl-dot {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--blue);
  top: 8px;
}
.tl-item.left .tl-dot { right: -9px; }
.tl-item.right .tl-dot { left: -9px; }
.tl-dot.active { background: var(--green); box-shadow: 0 0 0 3px var(--green); }
.tl-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid #e8eef8; max-width: 480px; width: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}
.tl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.tl-card.current { border-left: 4px solid var(--green); }
.tl-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; margin-bottom: 10px;
  background: rgba(13,74,141,.1); color: var(--blue);
}
.tl-badge.founder { background: rgba(26,174,111,.1); color: var(--green); }
.tl-badge.current-badge { background: rgba(26,174,111,.15); color: var(--green2); }
.tl-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 10px; }
.tl-desc { color: var(--text); font-size: 0.92rem; margin-bottom: 12px; }
.tl-spec { font-size: 0.85rem; color: var(--blue); margin-bottom: 12px; }
.tl-photo-wrap {
  width: 100%; height: 220px; overflow: hidden;
  border-radius: 10px; margin-bottom: 18px;
}
.tl-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .5s ease;
}
.tl-card:hover .tl-photo { transform: scale(1.05); }
.tl-card blockquote {
  font-style: italic; color: var(--text); border-left: 3px solid var(--green);
  padding-left: 14px; font-size: 0.9rem; margin-top: 12px;
}
.tl-expertise { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.tl-expertise span {
  background: rgba(13,74,141,.08); color: var(--blue); padding: 4px 12px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid #e8eef8; box-shadow: 0 4px 16px rgba(13,74,141,.06);
  text-align: center; transition: all var(--trans);
}
.why-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow2);
  border-color: var(--green);
}
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(13,74,141,.1), rgba(26,174,111,.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); transition: all var(--trans);
}
.why-card:hover .why-icon { background: var(--blue); color: #fff; }
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text); }

/* ============================================================
   TREATMENTS
   ============================================================ */
.treatments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.treatment-card {
  background: #fff; border-radius: var(--radius); padding: 24px 20px;
  border: 1px solid #e8eef8; box-shadow: 0 4px 12px rgba(13,74,141,.06);
  text-align: center; transition: all var(--trans); cursor: default;
}
.treatment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green); }
.tc-icon { font-size: 2rem; margin-bottom: 12px; }
.treatment-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; font-weight: 600; }
.treatment-card p { font-size: 0.82rem; color: var(--text); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(135deg, #0a3570 0%, #0D4A8D 50%, #0a5c2a 100%);
  color: #fff;
}
.testimonials .section-header h2 { color: #fff; }
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); }
.slider { display: flex; transition: transform .5s ease; }
.slide {
  min-width: 100%; padding: 50px 60px; background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}
.stars { font-size: 1.4rem; color: #fbbf24; margin-bottom: 20px; letter-spacing: 3px; }
.review { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.88); margin-bottom: 28px; font-style: italic; }
.patient { display: flex; align-items: center; gap: 14px; }
.patient-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.patient strong { display: block; font-size: 1rem; color: #fff; }
.patient span { font-size: 0.82rem; color: rgba(255,255,255,.6); }
.slider-dots { text-align: center; margin-top: 24px; }
.slider-dots span {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3); margin: 0 4px; cursor: pointer; transition: all var(--trans);
}
.slider-dots span.active { background: #fff; transform: scale(1.3); }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); color: #fff; font-size: 1.2rem;
  cursor: pointer; transition: all var(--trans); display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,.25); border-color: #fff; }
.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

/* ============================================================
   APPOINTMENT FORM
   ============================================================ */
.appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.appt-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--dark); margin: 10px 0 16px; }
.appt-info p { color: var(--text); margin-bottom: 24px; }
.appt-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.appt-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); }
.check { background: var(--green); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.appt-contact { display: flex; flex-direction: column; gap: 10px; }
.appt-link { display: flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: 0.92rem; }
.appt-link:hover { color: var(--green); }
.appt-form-wrap {
  background: #fff; border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow2); border: 1px solid #e8eef8;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 2px solid #e8eef8; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: #f8fafd; outline: none; transition: border-color var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.err { color: #e53e3e; font-size: 0.78rem; min-height: 18px; }
.form-success {
  text-align: center; padding: 40px 20px;
}
.success-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--green);
  color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 10px; }
.form-success p { color: var(--text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 800px; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: #fff; border-radius: var(--radius); border: 1px solid #e8eef8; overflow: hidden; box-shadow: 0 2px 12px rgba(13,74,141,.06); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--dark); text-align: left; transition: color var(--trans);
}
.acc-head:hover { color: var(--blue); }
.acc-head.open { color: var(--blue); }
.acc-icon { font-size: 1.4rem; font-weight: 300; color: var(--green); transition: transform var(--trans); flex-shrink: 0; }
.acc-head.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 24px; }
.acc-body.open { padding-bottom: 20px; }
.acc-body p { color: var(--text); font-size: 0.92rem; line-height: 1.75; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 24px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 0.85rem; color: var(--dark); font-weight: 600; margin-bottom: 4px; }
.contact-list span, .contact-list a { display: block; color: var(--text); font-size: 0.9rem; }
.contact-list a:hover { color: var(--blue); }
.map-placeholder {
  background: linear-gradient(135deg, #e8f0fb 0%, #f0f9f4 100%);
  border-radius: 20px; min-height: 320px; display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(13,74,141,.2); position: relative; overflow: hidden;
}
.map-inner { text-align: center; padding: 40px; }
.map-pin { font-size: 3rem; margin-bottom: 12px; }
.map-inner h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.map-inner p { color: var(--text); font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; display: block; }
.footer-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: .12em; color: var(--green); }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--trans);
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 0.88rem; transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact li { color: rgba(255,255,255,.6); font-size: 0.85rem; }
.footer-contact li a { color: rgba(255,255,255,.6); }
.footer-contact li a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.45); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btns { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 14px; z-index: 999; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.22); transition: all var(--trans); position: relative;
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn.call { background: var(--blue); color: #fff; }
.float-btn.whatsapp { background: var(--green); color: #fff; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}
.float-btn.call::before { background: rgba(13,74,141,.3); }
.float-btn.whatsapp::before { background: rgba(26,174,111,.3); }
.float-tooltip {
  position: absolute; right: 68px; background: var(--dark); color: #fff;
  padding: 6px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--trans);
}
.float-btn:hover .float-tooltip { opacity: 1; }
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s !important; }
.delay-2 { transition-delay: .24s !important; }
.delay-3 { transition-delay: .36s !important; }
.delay-4 { transition-delay: .48s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid, .appt-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 20px; }
  .tl-item { width: 100%; padding-left: 60px !important; padding-right: 0 !important; margin-left: 0 !important; justify-content: flex-start !important; }
  .tl-item.left .tl-dot { right: auto; left: 11px; }
  .tl-item.right .tl-dot { left: 11px; }
  .slide { padding: 36px 28px; }
  .slider-btn.prev { left: 0; }
  .slider-btn.next { right: 0; }
}

@media (max-width: 768px) {
  nav, .header-btns { display: none; }
  nav.open { display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,20,40,.95); z-index: 2000; flex-direction: column; align-items: center; justify-content: center; }
  nav.open ul { flex-direction: column; gap: 0; }
  nav.open ul li a { font-size: 1.3rem; padding: 16px 40px; color: #fff; border-radius: 0; }
  nav.open ul li a:hover { background: rgba(255,255,255,.1); }
  #menu-toggle { display: flex; z-index: 2001; }
  #menu-toggle.open span { background: #fff; }
  .hero { padding: 70px 0 90px; }
  .hero-content h1 { font-size: 2rem; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .top-bar-left { gap: 8px; font-size: 0.74rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.8rem; }
  .slide { padding: 28px 20px; }
  .review { font-size: 0.9rem; }
  .appt-form-wrap { padding: 24px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btns { bottom: 20px; right: 16px; }
}
