/* ============================================================
   LIFESTYLE DENTAL - FULL ARCH IMPLANTS
   style.css | 2026 Modern Design
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: rgb(190, 18, 60);
  --primary-light: rgb(236, 72, 153);
  --primary-dark: rgb(190, 24, 93);
  --secondary-bg: rgb(255, 228, 230);
  --accent: rgb(249, 115, 22);
  --accent-dark: rgb(194, 65, 12);
  --pink: #e83e8c;
  --info: #17a2b8;
  --danger: #fde9ea;
  --white: #ffffff;
  --dark: #0f0f14;
  --dark-2: #1a1a24;
  --gray: #6b7280;
  --gray-light: #f8f9fa;
  --border: rgba(190, 18, 60, 0.15);
  --tw-text-opacity: 1;
  --headingcolor: rgb(190 18 60 / var(--tw-text-opacity, 1));
  /* Gradients */
  --grad-primary: linear-gradient(135deg, rgb(190, 18, 60) 0%, rgb(236, 72, 153) 50%, rgb(249, 115, 22) 100%);
  --grad-accent: linear-gradient(135deg, rgb(249, 115, 22) 0%, rgb(190, 24, 93) 100%);
  --grad-card: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,228,230,0.5) 100%);
  --grad-dark: linear-gradient(135deg, #0f0f14 0%, #1a0a14 100%);
  --grad-side: linear-gradient(90deg, rgb(190, 18, 60), rgb(249, 115, 22));

  /* Typography */
  --font-main: 'Roboto', sans-serif;
  --font-display: 'PT Serif', serif;
  --font-accent: 'Satisfy', cursive;

  /* Spacing */
  --section-pad: 90px 0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px rgba(190, 18, 60, 0.12);
  --shadow-lg: 0 20px 60px rgba(190, 18, 60, 0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);

  /* Transitions */
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth;overflow-x: hidden; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}
p{
    font-size: 16px;
    line-height: 32px;
    letter-spacing: .5px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== UTILITY CLASSES ===== */
.section-padding { padding: var(--section-pad); }

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(190, 18, 60, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.section-tag {
  display: inline-block;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
/*  text-transform: uppercase;*/
  margin-bottom: 10px;
}

h2, h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
h3, h3.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span {
  background: var(--headingcolor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {  font-size: 1rem; }
.section-subtitle { color: var(--gray); font-size: 0.95rem; }

.btn-primary-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(190, 18, 60, 0.3);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--trans);
}
.btn-primary-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(190, 18, 60, 0.45);
  color: #fff;
}
.btn-primary-main:hover::before { opacity: 1; }

.btn-outline-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.btn-outline-main:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOP INFO BAR ===== */
.topbar-info {
  background: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1002;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.topbar-link { transition: var(--trans); }
.topbar-link:hover { color: var(--accent); }
.topbar-item i { color: var(--accent); font-size: 0.72rem; }
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--trans);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.topbar-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(190,18,60,0.4);
  color: #fff;
}
.topbar-phone i { animation: phonePulse 2s infinite; }

/* ===== OFFER MARQUEE BAR ===== */
.offer-marquee-bar {
  background: var(--grad-primary);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.offer-marquee-wrapper { overflow: hidden; padding: 10px 0; }
.offer-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: offerMarquee 28s linear infinite;
  width: max-content;
}
.offer-marquee-bar:hover .offer-marquee-track { animation-play-state: paused; }
.offer-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.offer-item i { font-size: 0.75rem; opacity: 0.85; }
.offer-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  padding: 0 4px;
}
@keyframes offerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STICKY HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(190,18,60,0.1);
  box-shadow: 0 2px 24px rgba(190, 18, 60, 0.06);
  transition: var(--trans);
}
.site-header.scrolled {
  box-shadow: 0 6px 40px rgba(190, 18, 60, 0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 48px;
  width: auto;
/*  filter: brightness(0) saturate(100%) invert(14%) sepia(96%) saturate(2793%) hue-rotate(322deg) brightness(88%) contrast(98%);*/
  transition: var(--trans);
}
.logo-img:hover { transform: scale(1.04); }
.logo-text-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}
.logo-text-fallback span { color: var(--accent); }

.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.2px;
  padding: 7px 12px;
  border-radius: 8px;
  position: relative;
  transition: var(--trans);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.main-nav a:hover { color: var(--primary); background: rgba(190,18,60,0.05); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--primary); }
.main-nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-primary);
  color: #fff !important;
  padding: 9px 18px 9px 10px;
  border-radius: 50px;
  box-shadow: 0 3px 16px rgba(190,18,60,0.28);
  transition: var(--trans);
  text-decoration: none;
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(190,18,60,0.45);
  color: #fff;
}
.btn-call-ring {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.btn-call-ring i { animation: phonePulse 2s infinite; }
.btn-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.btn-call-text small { font-size: 0.65rem; opacity: 0.8; font-weight: 500; }
.btn-call-text strong { font-size: 0.88rem; letter-spacing: 0.3px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid rgba(190,18,60,0.2);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: var(--trans);
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}
.hamburger:hover { border-color: var(--primary); background: rgba(190,18,60,0.05); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.99);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 16px;
}
.mobile-nav-inner a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid rgba(190,18,60,0.07);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--trans);
}
.mobile-nav-inner a i { color: var(--primary); width: 16px; text-align: center; font-size: 0.85rem; }
.mobile-nav-inner a:hover { color: var(--primary); padding-left: 8px; }
.mobile-nav-inner a:last-child { border-bottom: none; }
.mobile-call {
  background: var(--grad-primary) !important;
  color: #fff !important;
  padding: 14px 20px !important;
  border-radius: 12px;
  margin-top: 12px;
  text-align: center;
  justify-content: center !important;
  border-bottom: none !important;
  box-shadow: 0 4px 16px rgba(190,18,60,0.3);
}
.mobile-call:hover { padding-left: 20px !important; }

@keyframes phonePulse {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

/* ===========================
   HERO ULTRA SECTION
=========================== */
.hero-ultra {
  position: relative;
  min-height: 100vh;
/*  background: linear-gradient(150deg, #0d0612 0%, #1a0414 40%, #0f0a1a 100%);*/
  background: linear-gradient(135deg,#fff,#ffe7f0,#fff0f5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgb(190,18,60), transparent 70%);
  top: -150px; left: -150px;
  animation-duration: 14s;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgb(249,115,22), transparent 70%);
  bottom: -100px; right: -100px;
  animation-duration: 10s;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgb(236,72,153), transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation-duration: 8s;
  animation-delay: -5s;
  opacity: 0.1;
}
@keyframes blobFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.08); }
}
.hero-blob-3 { animation: blobFloat3 8s ease-in-out infinite alternate; }
@keyframes blobFloat3 {
  0% { transform: translate(-50%,-50%) scale(1); }
  100% { transform: translate(-40%,-55%) scale(1.12); }
}

/* Dot grid background */
.hero-dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Hero layout grid */
.hero-ultra-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* ---- LEFT SIDE ---- */
.hero-left { display: flex; flex-direction: column; gap: 20px; }

.hero-logo-wrap { margin-bottom: 4px; }
.hero-logo {
  height: 82px;
  width: auto;
/*  filter: brightness(0) invert(1);*/
  opacity: 0.9;
  transition: var(--trans);
}
.hero-logo:hover { opacity: 1; transform: scale(1.04); }

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: rgb(249,115,22);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  width: fit-content;
  animation: fadeSlideUp 0.6s ease both;
}
.hero-location-badge i { font-size: 0.72rem; }

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  animation: fadeSlideUp 0.7s ease both;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--trans); }
.hero-breadcrumb a:hover { color: var(--accent); }
.hero-breadcrumb i { font-size: 0.55rem; color: rgba(255,255,255,0.2); }
.hero-breadcrumb span { color: rgba(255,255,255,0.55); font-weight: 600; }

/* Headline slider */
.hero-headline-slider { position: relative; min-height: 160px; }
.hero-headline {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
/*  transform: translateY(20px);*/
/*  transition: opacity 0.7s ease, transform 0.7s ease;*/
  pointer-events: none;
}
.hero-headline.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: all;
}
.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
/*  color: #fff;*/
  margin-bottom: 16px;
/*  text-shadow: 0 4px 30px rgba(0,0,0,0.4);*/
}
.hero-headline h1 span {
/*  background: linear-gradient(90deg, rgb(249,115,22) 0%, rgb(236,72,153) 60%, rgb(190,18,60) 100%);*/

    background: rgb(190 18 60 / var(--tw-text-opacity, 1));
    --tw-text-opacity: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-headline p {
/*  font-size: 1.05rem;*/
/*  color: rgba(255,255,255,0.72);*/
/*  line-height: 1.65;*/
  max-width: 460px;
}
.hero-headline p strong { color: rgb(249,115,22); }

/* Action buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1.1s ease both;
}
.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(190,18,60,0.4);
  transition: var(--trans);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-hero-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--trans);
}
.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(190,18,60,0.55);
  color: #fff;
}
.btn-hero-main:hover::after { opacity: 1; }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255);
/*  color: rgba(255,255,255,0.85) !important;*/
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
    --tw-text1-opacity: 1;
  border: 1px solid rgb(190 18 60/var(--tw-text1-opacity,1));
  transition: var(--trans);
  text-decoration: none;
  backdrop-filter: blur(10px);
}
.btn-hero-outline:hover {
  background: rgba(0,0,0);
/*  border-color: rgba(255,255,255,0.4);*/
  transform: translateY(-3px);
  color: #fff;
}

/* Trust row */
.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1.2s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
}
.hero-trust-item i {
  font-size: 0.85rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
/*  -webkit-text-fill-color: transparent;*/
  background-clip: text;
}

/* Slide dots */
.hero-slide-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
    --tw-text2-opacity: 1;
   
  background: rgb(190 18 60 / var(--tw-text2-opacity, 1));
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.hero-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* ---- RIGHT SIDE ---- */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeSlideUp 0.9s ease both;
}

.form-ribbon {
  background: var(--grad-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: -14px;
  z-index: 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 18px rgba(249,115,22,0.4);
}

.form-glass-card {
  width: 100%;
/*  max-width: 480px;*/
background: rgba(255,255,255);
backdrop-filter: blur(28px);
-webkit-backdrop-filter: blur(28px);
border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 35px 25px 28px;

  box-shadow:
    0 0 0 1px rgba(190,18,60,0.1),
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);

  position: relative;
  overflow: hidden;
}
.form-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 24px 24px 0 0;
}

.form-glass-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-glass-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(190,18,60,0.4);
}
.form-glass-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 3px;
}
.form-glass-header h3 span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-glass-header p { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin: 0; }

.growzy-form-wrap iframe {
  border-radius: 10px;
  display: block;
}

.form-glass-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.form-glass-footer span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-glass-footer span i { color: rgba(249,115,22,0.6); }
.form-glass-footer a { color: rgba(249,115,22,0.8); font-weight: 600; }
.form-glass-footer a:hover { color: rgb(249,115,22); }

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  background: #e55425;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 5;
  animation: statFloat 4s ease-in-out infinite alternate;
}
.hero-stat-card strong {
  font-size: 1.2rem;
  font-weight: 900;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-card small {
  font-size: 0.68rem;
  color: #ead7d7;
  font-weight: 600;
  white-space: nowrap;
}
.hero-stat-1 {
  bottom: 120px;
  left: -65px;
  animation-delay: 0s;
}
.hero-stat-2 {
  top: 70px;
  right: -58px;
  animation-delay: -2s;
}
@keyframes statFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.swiper-pagination-bullet-active {
    
    background: #fff!important;
}
/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: fadeIn 2s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* Entrance animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Legacy form-note kept for rest of page */
.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
  margin-bottom: 0;
}
.form-note i { color: var(--primary); margin-right: 4px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--secondary-bg);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-item i {
  font-size: 1.2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.section-bg-icon {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  color: rgb(103 103 103 / 8%);
  pointer-events: none;
  z-index: 0;
}
.about-section .container { position: relative; z-index: 1; }

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
/*  aspect-ratio: 4/3;*/
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -10px;
  right: -20px;
  padding: 6px 10px;
  text-align: center;
  min-width: 120px;
}
.badge-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  background: rgba(249, 115, 22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge-text {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}

.about-stat {
  background: var(--secondary-bg);
  border-radius: var(--radius);
  padding: 6px 8px;
  text-align: center;
  border: 1px solid var(--border);
}
.stat-num {
  display: block;

  font-size: 20px;
  /*font-weight: 900;
*/
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--gray); font-weight: 600; }

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, rgba(255,255,255,1) 100%);
}
.benefit-card {
  padding: 25px 19px;
 
  transition: var(--trans);
  height: 100%;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 54px;
  height: 54px;
 
  background: var(--grad-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(190,18,60,0.25);
  transition: var(--trans);
}
.benefit-card:hover .benefit-icon { transform: scale(1.1) rotate(-5deg); }
.benefit-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.benefit-card p {  margin: 0; }

/* ===== CTA BANNER 1 ===== */
.cta-banner-1 {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
.cta-left-img {
  overflow: hidden;
  position: relative;
}
.cta-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}
.cta-banner-1:hover .cta-left-img img { transform: scale(1.05); }
.cta-content {
  background: var(--grad-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-content h2 span { color: rgba(255,255,255,0.7); }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; position: relative; }
.cta-content .btn-primary-main {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  width: fit-content;
}
.cta-content .btn-primary-main:hover {
  background: #fff;
  color: var(--primary) !important;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--white);
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.stars { color: #fbbc04; font-size: 1.2rem; letter-spacing: 2px; }
.google-rating span { color: var(--gray); font-size: 0.88rem; font-weight: 600; }

.review-card {
  padding: 24px;
  height: 100%;
  transition: var(--trans);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-header strong { font-size: 0.9rem; display: block; }
.review-stars { color: #fbbc04; font-size: 0.8rem; letter-spacing: 1px; }
.review-card p { font-size: 0.88rem; color: #444; font-style: italic; line-height: 1.6; margin-bottom: 12px; }
.review-date { font-size: 0.75rem; color: var(--gray); }

/* ===== VIDEO REVIEWS ===== */
.video-reviews-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0814 100%);
  position: relative;
  overflow: hidden;
}
.video-reviews-section .section-bg-icon { color: rgba(249,115,22,0.05); }
.video-reviews-section .section-tag {
  background: linear-gradient(90deg, rgb(249,115,22), rgb(236,72,153));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-reviews-section .section-title { color: #fff; }
.video-reviews-section .container { position: relative; z-index: 1; }

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--trans);
  background: var(--dark-2);
}
.video-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(249,115,22,0.25); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}
.video-card:hover .video-thumb img { transform: scale(1.1); }
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.play-overlay i {
  font-size: 3.5rem;
  color: #fff;
  filter: drop-shadow(0 0 20px rgba(249,115,22,0.8));
  transition: var(--trans);
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.3); }
.video-card:hover .play-overlay i { transform: scale(1.15); }
.video-info {
  padding: 18px 20px;
}
.video-info strong { color: #fff; font-size: 0.95rem; display: block; margin-bottom: 4px; }
.video-info p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }

.carousel-btn {
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: rgb(249,115,22);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 6px;
  font-size: 0.9rem;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: rgb(249,115,22); color: #fff; }

/* ===== BEFORE & AFTER ===== */
.before-after-section {
  background: linear-gradient(135deg, #0f0f14 0%, #1a0814 100%);
}
.before-after-section .section-title { color: #fff; }
.before-after-section .section-subtitle { color: rgba(255,255,255,0.5); }

.ba-card {
  padding: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.ba-comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
.ba-after-img,
.ba-before-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after-img img,
.ba-before-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-img {
  width: 50%;
  border-right: 3px solid #fff;
  box-shadow: 4px 0 20px rgba(0,0,0,0.4);
  transition: width 0.05s linear;
}
.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: col-resize;
  transition: left 0.05s linear;
}
.ba-slider-handle::before {
  content: '◀ ▶';
  background: var(--grad-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  box-shadow: 0 4px 15px rgba(190,18,60,0.5);
  letter-spacing: -1px;
}
.ba-label-before,
.ba-label-after {
  position: absolute;
  top: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}
.ba-label-before {
  left: 10px;
  background: rgba(190,18,60,0.9);
  color: #fff;
}
.ba-label-after {
  right: 10px;
  background: rgba(34,197,94,0.9);
  color: #fff;
}
.ba-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 10px 6px 4px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}
.process-section .container { position: relative; z-index: 1; }

.process-card {
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.process-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(190,18,60,0.07);
  line-height: 1;
  font-family: var(--font-display);
}
.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--grad-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(190,18,60,0.3);
}
.process-card:hover .process-icon { transform: rotate(-10deg) scale(1.1); }
.process-card h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ===== TIMELINE ===== */
.timeline-section { background: var(--white); }
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-primary);
  border-radius: 3px;
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  padding-left: 12px;
}
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-primary);
  flex-shrink: 0;
  margin-top: 18px;
  box-shadow: 0 0 0 4px rgba(190,18,60,0.15);
  position: relative;
  z-index: 1;
}
.timeline-content {
  flex: 1;
  padding: 18px 20px;
  transition: var(--trans);
}
.timeline-content:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.timeline-time {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 50px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.timeline-content h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ===== PATIENT JOURNEY ===== */
.journey-section {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.journey-section .container { position: relative; z-index: 1; }

.journey-step {
  text-align: center;
  position: relative;
  padding: 20px 10px;
}
.journey-step::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 40px;
  font-size: 1.5rem;
  color: rgba(190,18,60,0.3);
}
.col-lg-2:last-child .journey-step::after { display: none; }
.journey-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: var(--grad-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(190,18,60,0.3);
  transition: var(--trans);
}
.journey-step:hover .journey-icon { transform: scale(1.1) translateY(-4px); }
.journey-step-num {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  margin-bottom: 8px;
  text-align: center;
}
.journey-step h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.journey-step p { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }
.why-img { width: 100%; border-radius: var(--radius-lg);}
.why-list { display: flex; flex-direction: column;  margin-top: 13px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
/*  padding: 16px;*/
/*
  border-radius: var(--radius);
  background: rgba(255,228,230,0.4);
  border: 1px solid rgba(190,18,60,0.08);
*/
  transition: var(--trans);
}

.why-icon {
  font-size: 1.3rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.why-item p {  margin: 0; }

/* ===== WHO IS THIS FOR ===== */
.who-section {
  background: #fde9ea;
  position: relative;
  overflow: hidden;
}
.who-section .section-title { color: #000; }
.who-section .section-bg-icon { color: rgba(249,115,22,0.04); }
.who-section .container { position: relative; z-index: 1; }

.who-card {
  padding: 28px 24px;
  height: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.who-card h4 {
/*  font-size: 1rem;*/
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.who-yes h4 { color: #be123c; }
.who-no h4 { color: #fff; }
.who-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  
  color: #000;
}
.who-card li:last-child { border-bottom: none; }
.who-yes li i { color: #be123c; }
.who-no li i { color: #fff; }

/* ===== COMPARISON ===== */
.comparison-section { background: var(--secondary-bg); }
.comparison-table {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: var(--grad-primary);
  padding: 18px 24px;
}
.comp-col {
  font-size: 0.9rem;
  font-weight: 700;
}
.comparison-header .comp-col { color: #fff; }
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: rgba(190,18,60,0.04); }
.comparison-row .comp-col { font-size: 0.88rem; color: var(--dark); display: flex; align-items: center; gap: 4px; }
.comparison-row .comp-col:first-child { font-weight: 600; }
.comparison-row .comp-col .fa-star { color: #fbbc04; font-size: 0.8rem; }
.comp-4 { color: var(--primary) !important; font-weight: 600; }
.comp-6 { color: var(--accent) !important; font-weight: 600; }

/* ===== DOCTOR ===== */
.doctor-section {
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}
.doctor-section .container { position: relative; z-index: 1; }
.doctor-img-wrapper {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
}
.doctor-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
/*  aspect-ratio: 3/4;*/
  object-fit: cover;
}
.doctor-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.doctor-badge i {
  font-size: 1.3rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.doctor-badge span { font-size: 0.82rem; font-weight: 700; }
.doctor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.doctor-credentials span {
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.doctor-credentials span i { color: var(--primary); }

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0814 100%);
}
.pricing-section .section-title { color: #fff; }

.pricing-card {
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(190,18,60,0.3);
}
.pricing-featured {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(249,115,22,0.5) !important;
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-8px) !important; }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.pricing-header h4 { font-size: 1rem; font-weight: 700; color: #fff; max-width: 65%; }
.pricing-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.price-tag { margin-bottom: 16px; }
.old-price { text-decoration: line-through; color: rgba(255,255,255,0.35); font-size: 0.9rem; display: block; }
.new-price {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.saving-badge {
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(249,115,22);
  margin-bottom: 16px;
}
.pricing-features { flex: 1; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #4ade80; }
.pricing-card .btn-primary-main { margin-top: auto; justify-content: center; }
.pricing-card .btn-outline-main {
  margin-top: auto;
  justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.3);
}
.pricing-card .btn-outline-main:hover {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
}
.finance-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}
.finance-note i { margin-right: 6px; color: rgb(249,115,22); }

/* ===== CTA BANNER 2 ===== */
.cta-banner-2 {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 360px;
  overflow: hidden;
}
.cta2-content {
  background: var(--grad-primary);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta2-content::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta2-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta2-content h2 span { color: rgba(255,255,255,0.65); }
.cta2-content p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; position: relative; z-index: 1; }
.cta2-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.cta2-right-img { overflow: hidden; }
.cta2-right-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--trans-slow); }


/* ===== FAQ ===== */
.faq-section {
  background: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}
.faq-section .container { position: relative; z-index: 1; }
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--trans);
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon { transition: var(--trans); color: var(--primary); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
/*  font-size: 0.88rem;*/
 
  line-height: 1.7;
}

/* ===== AFTERCARE ===== */
.aftercare-section { background: var(--white); }
.aftercare-card {
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: var(--trans);
}
.aftercare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.aftercare-card > i {
  font-size: 2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}
.aftercare-card h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 10px; }
.aftercare-card p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ===== FINANCE SECTION ===== */
.finance-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0814 100%);
  position: relative;
  overflow: hidden;
}
.finance-section .section-title { color: #fff; }
.finance-section .container { position: relative; z-index: 1; }
.finance-card {
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.finance-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 840px;
  padding: 12px;
  background: rgba(15,5,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
}
.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--trans);
  box-shadow: 0 4px 15px rgba(190,18,60,0.4);
}
.modal-close:hover { background: var(--accent); transform: scale(1.1); }
.modal-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.modal-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: 70px 0 50px; }
.footer-brand p {
 
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}
.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}
.footer-logo-text span { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}
.site-footer h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact p {
  
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact p i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a {
 
  color: rgba(255,255,255,0.35);
  transition: var(--trans);
}
.footer-bottom a:hover { color: var(--accent); }

/* ===== STICKY CALL BUTTON ===== */
.sticky-call-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(190,18,60,0.45);
  text-decoration: none;
  transition: var(--trans);
  animation: floatPulse 3s ease-in-out infinite;
}
.sticky-call-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 40px rgba(190,18,60,0.6);
  color: #fff;
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 6px 30px rgba(190,18,60,0.45); }
  50% { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(190,18,60,0.55); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--grad-primary); border-radius: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
  .hero-ultra-container { gap: 32px; }
  .hero-stat-1 { left: -10px; }
  .hero-stat-2 { right: -10px; }
}

@media (max-width: 991.98px) {
  :root { --section-pad: 60px 0; }
    .md-mb-30{
        margin-bottom: 30px;
    }
  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-call-text small { display: none; }
  .btn-call-text strong { font-size: 0.82rem; }
  .topbar-item span { display: none; }

  /* Hero */
  .hero-ultra-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 60px;
  }
  .hero-stat-1, .hero-stat-2 { display: none; }
  .hero-headline-slider { min-height: auto; }
  .hero-headline { position: relative; transform: none; }
  .hero-headline:not(.active) { display: none; }

  /* Other sections */
  .cta-banner-1 { grid-template-columns: 1fr; }
  .cta-left-img { height: 250px; }
  .cta-banner-2 { grid-template-columns: 1fr; }
  .cta2-right-img { height: 250px; }
  .about-badge { right: -6px;
        bottom: -15px; }
  .doctor-img-wrapper { padding: 0; }
  .doctor-badge { position: static; margin-top: 16px; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 12px 16px; }
}

@media (max-width: 767.98px) {
  .hero-slider { min-height: 400px; }
  .slide-content { padding: 40px 24px; }
  .slide-content h1 { font-size: 1.8rem; }
  .hero-form { flex-direction: column; }
  .form-group { min-width: 100%; }
  .timeline::before { left: 16px; }
  .timeline-item { padding-left: 6px; }
  .timeline-dot { width: 16px; height: 16px; }
  .comparison-header, .comparison-row { grid-template-columns: 1.2fr 1fr 1fr; padding: 10px 12px; font-size: 0.82rem; }
  .journey-step::after { display: none; }
  .slider-btn { width: 38px; height: 38px; font-size: 0.85rem; }
  .pricing-featured { transform: scale(1); }
  .cta2-content { padding: 40px 24px; }
  .cta-content { padding: 40px 24px; }
  .finance-card { padding: 24px 16px; }
}

@media (max-width: 575.98px) {
  h2,h2.section-title { font-size: 1.8rem; }
    h3,h3.section-title { font-size: 1.4rem; }
  .slide-content h1 { font-size: 2.2rem; }
  .hero-form-card { padding: 24px 20px; }
  .trust-item { font-size: 0.8rem; }
  .sticky-call-btn { bottom: 16px; right: 16px; padding: 11px 18px; font-size: 0.82rem; }
}
.finance-section {
  padding: 80px 20px;
  background: #f4f6f9;
}

.finance-container {
  max-width: 1200px;
  margin: auto;
}

.finance-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #e55425, #ff7a50);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* LEFT */
.finance-left {
  padding: 50px;
  color: #fff;
}

.finance-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.finance-left p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.finance-note {
  font-size: 13px;
  opacity: 0.7;
}

.finance-review {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 10px 15px;
  border-radius: 50px;
  margin-top: 20px;
  width: fit-content;
}

.finance-review span {
  color: gold;
  font-size: 20px;
}

/* RIGHT */
.finance-right {
  background: #fff;
  padding: 50px;
}

.finance-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.finance-right input,
.finance-right select,
.finance-right textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.finance-right input:focus,
.finance-right select:focus,
.finance-right textarea:focus {
  border-color: #e55425;
}

/* Checkbox */
.finance-check {
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Button */
.finance-right button {
  padding: 15px;
  border: none;
  background: #e55425;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.finance-right button:hover {
  background: #0f766e;
}

.finance-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}
.yellowicon{
    color: #facc15!important;
}
.yellowiconbg{
    background: #facc15!important;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-glass-card{
        padding: 28px 15px 20px;
    }
    .hero-form-submit{
        padding: 14px 8px;
    }
    .bf-badge-overlay{
        bottom: -30px;
    }
  .finance-box {
    grid-template-columns: 1fr;
  }

  .finance-left,
  .finance-right {
    padding: 30px;
  }
}
@media (max-width: 991px) {
    .text-m-center{
        text-align: center;
    }
    .justify-content-center-md{
            justify-content: center;
    }
    .hero-headline p {
  max-width: 100%;
}
}
@media (min-width: 1199px) {
    .text-lg-justify{
        text-align: justify;
    }
    
}

.cta-wrap-1 { text-align: center; }
.cta-btn-1 {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #fff; 
 padding: 16px 40px;
  border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(185,28,28,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn-1:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(185,28,28,0.36);
    background: #ea580c;
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  min-width: 480px;
}
.responsive-table thead tr {
  background: rgba(0,0,0,0.2);
}
.responsive-table th,
.responsive-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.responsive-table thead th {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.responsive-table tbody td:first-child {
  color: #fff;
  font-weight: 700;
}
.responsive-table tr:last-child td {
  border-bottom: none;
}
/* SMOOTH SCROLL */
.responsive-table {
  scroll-behavior: smooth;
}

/* MOBILE TOUCH SCROLL */
.responsive-table {
  -webkit-overflow-scrolling: touch;
}
/* SCROLLBAR - SMALL + MODERN */
.responsive-table::-webkit-scrollbar {
  height: 6px;
}

.responsive-table::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

.responsive-table::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #0ea5a4, #06b6d4);
  border-radius: 10px;
}

.responsive-table::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #0f766e, #0891b2);
}

/* FIREFOX SUPPORT */
.responsive-table {
  scrollbar-width: thin;
  scrollbar-color: #06b6d4 rgba(255,255,255,0.08);
}


/* TABLE UI IMPROVEMENT */
.responsive-table {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}



/* ROW HOVER EFFECT */
.responsive-table tbody tr {
  transition: all 0.3s ease;
}

.responsive-table tbody tr:hover {
  background: rgba(255,255,255,0.08);
  transform: scale(1.01);
}

/* FIRST COLUMN HIGHLIGHT */
.responsive-table tbody td:first-child {
  color: #fff;
  font-weight: 700;
}

/* ICON COLORS (BETTER VISUAL) */
.responsive-table td {
  position: relative;
}