/* ============================================================
   VitaLux Premium Healthcare – Website 3 CSS
   Theme: Premium Minimal | Violet + Mint | Font: Raleway + Playfair Display
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --primary: #6c63ff;
  --primary-light: #8b84ff;
  --primary-dark: #5249d6;
  --secondary: #43b89c;
  --secondary-light: #6dd4be;
  --accent: #f7b731;
  --rose: #f06292;
  --light: #fafbff;
  --light-2: #f4f5ff;
  --dark: #1a1a2e;
  --gray-900: #2d2d44;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --border: #e8e8f5;
  --shadow-sm: 0 2px 12px rgba(108,99,255,.08);
  --shadow-md: 0 8px 32px rgba(108,99,255,.14);
  --shadow-lg: 0 20px 60px rgba(108,99,255,.18);
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: 'Raleway', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

[data-theme="dark"] {
  --light: #0f0f1a;
  --light-2: #13132b;
  --dark: #e8e8f5;
  --gray-900: #c5c6e0;
  --gray-600: #9ca3af;
  --white: #1c1c34;
  --border: #2a2a48;
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.75;
  transition: background .3s, color .3s;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--dark); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
section { padding: 100px 0; }

/* ── Preloader ──────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s;
}
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; letter-spacing: 1px; }
.preloader-logo span { color: var(--primary-light); }
.preloader-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.preloader-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary-light); animation: dotBounce 1.2s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: .2s; background: var(--secondary); }
.preloader-dots span:nth-child(3) { animation-delay: .4s; background: var(--accent); }
@keyframes dotBounce { 0%,80%,100%{transform:scale(0)} 40%{transform:scale(1)} }

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
  background: var(--dark); color: rgba(255,255,255,.75);
  padding: 9px 0; font-size: .8rem; letter-spacing: .3px;
}
.top-bar a { color: rgba(255,255,255,.65); }
.top-bar a:hover { color: var(--primary-light); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar-main {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
}
[data-theme="dark"] .navbar-main { background: rgba(28,28,52,.96) !important; }
.navbar-main.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); letter-spacing: .5px; }
.brand-logo span { color: var(--secondary); }
.navbar-brand small { font-size: .68rem; color: var(--gray-400); font-family: var(--font-body); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }
.nav-link {
  font-weight: 600; color: var(--gray-900) !important; font-size: .87rem;
  letter-spacing: .3px; border-radius: 8px; padding: 6px 14px !important;
  transition: var(--transition); position: relative;
}
.nav-link::after { content: ''; position: absolute; bottom: 3px; left: 50%; right: 50%; height: 2px; background: var(--primary); transition: var(--transition); border-radius: 2px; }
.nav-link:hover::after, .nav-link.active::after { left: 10px; right: 10px; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-cta { background: var(--primary) !important; color: #fff !important; border-radius: 50px !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }
#darkModeToggle {
  background: none; border: 1.5px solid var(--border); border-radius: 50%;
  width: 38px; height: 38px; cursor: pointer; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
#darkModeToggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Search Bar ─────────────────────────────────────────── */
.search-section { background: var(--light-2); padding: 14px 0; border-bottom: 1px solid var(--border); }
.search-wrapper { display: flex; max-width: 580px; margin: 0 auto; }
.search-wrapper .form-control { border-radius: var(--radius) 0 0 var(--radius); border-color: var(--border); font-family: var(--font-body); font-weight: 600; background: var(--white); color: var(--dark); font-size: .9rem; }
.search-wrapper .form-control:focus { box-shadow: none; border-color: var(--primary); }
.search-btn { background: var(--primary); color: #fff; border: none; padding: 0 22px; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: var(--font-body); display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.search-btn:hover { background: var(--primary-dark); }

/* ── Hero Section ───────────────────────────────────────── */
.hero-section { padding: 110px 0 80px; background: var(--white); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(108,99,255,.08); color: var(--primary); font-size: .78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; }
.hero-title { font-family: var(--font-heading); font-size: 3.2rem; line-height: 1.15; margin-bottom: 1.4rem; font-weight: 700; }
.hero-title em { font-style: italic; color: var(--primary); }
.hero-title span { color: var(--secondary); }
.hero-desc { font-size: 1.08rem; color: var(--gray-600); margin-bottom: 2rem; max-width: 500px; font-weight: 500; }
.hero-img { border-radius: 28px; object-fit: cover; width: 100%; max-height: 520px; box-shadow: var(--shadow-lg); }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-item { text-align: center; }
.hero-stat-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.hero-stat-label { font-size: .75rem; color: var(--gray-600); font-weight: 600; letter-spacing: .5px; }
.hero-trust-bar { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: #f4b942; margin-top: 1.2rem; }
@media (max-width:576px) { .hero-title { font-size: 2rem; } .hero-stats { gap: 20px; } }

/* ── Section Headings ───────────────────────────────────── */
.label-pill { display: inline-block; background: rgba(108,99,255,.08); color: var(--primary); font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 10px; }
.section-title { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; line-height: 1.3; }
.section-sub { color: var(--gray-600); font-size: .97rem; margin-top: .5rem; font-weight: 500; }
.divider-dots { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.divider-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.divider-dots span:nth-child(2) { background: var(--secondary); }
.divider-dots span:nth-child(3) { background: var(--accent); }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a5e 60%, #0a2563 100%);
  color: #fff; padding: 65px 0;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.page-hero h1 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; margin: 10px 0 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; font-weight: 500; }

/* ── Category Cards ─────────────────────────────────────── */
.category-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 18px;
  text-align: center; border: 1.5px solid var(--border);
  transition: var(--transition); cursor: pointer; height: 100%;
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.category-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, rgba(108,99,255,.12), rgba(67,184,156,.12));
  border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.category-icon i { font-size: 1.5rem; color: var(--primary); }
.category-card h6 { font-family: var(--font-heading); font-weight: 600; font-size: .93rem; color: var(--dark); margin-bottom: 4px; }
.category-card small { color: var(--gray-400); font-size: .78rem; font-weight: 600; }

/* ── Product Cards ──────────────────────────────────────── */
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border); transition: var(--transition); height: 100%;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 210px; object-fit: cover; transition: transform .45s; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.badge-otc { background: var(--secondary); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: .5px; }
.badge-rx { background: var(--primary); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.badge-sale { background: var(--accent); color: var(--dark); font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.product-quick-btn { position: absolute; inset: 0; background: rgba(26,26,46,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; backdrop-filter: blur(2px); }
.product-quick-btn button { background: #fff; border: none; font-size: .82rem; font-weight: 700; padding: 9px 22px; border-radius: 50px; cursor: pointer; color: var(--primary); font-family: var(--font-body); }
.product-card:hover .product-quick-btn { opacity: 1; }
.product-body { padding: 18px; }
.product-category { font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 3px; color: var(--dark); }
.product-mfg { font-size: .78rem; color: var(--gray-400); margin-bottom: 8px; font-weight: 600; }
.product-rating { font-size: .78rem; color: #f4b942; margin-bottom: 8px; }
.product-rating span { color: var(--gray-400); font-size: .76rem; margin-left: 4px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-current { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.price-original { font-size: .82rem; text-decoration: line-through; color: var(--gray-400); }
.price-discount { font-size: .72rem; font-weight: 700; background: rgba(67,184,156,.12); color: var(--secondary); padding: 2px 8px; border-radius: 50px; }
.btn-enquire {
  width: 100%; border: 2px solid var(--primary); background: transparent; color: var(--primary);
  font-weight: 700; font-size: .85rem; padding: 9px; border-radius: 50px;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-enquire:hover { background: var(--primary); color: #fff; }

/* ── Prescription Banner ─────────────────────────────────── */
.prescription-banner {
  background: linear-gradient(135deg, rgba(108,99,255,.08), rgba(67,184,156,.08));
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 22px 28px; margin: 0 0 40px;
}

/* ── Filter Bar ─────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-btn { border: 1.5px solid var(--border); background: var(--white); color: var(--gray-900); padding: 7px 20px; border-radius: 50px; cursor: pointer; font-size: .84rem; font-weight: 600; transition: var(--transition); font-family: var(--font-body); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(108,99,255,.25); }

/* ── Services ───────────────────────────────────────────── */
.services-section { background: var(--light-2); }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  border: 1.5px solid var(--border); transition: var(--transition); height: 100%;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--primary); }
.service-icon-w3 { width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.6rem; }
.service-card h5 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { color: var(--gray-600); font-size: .9rem; font-weight: 500; }

/* ── Service Detail ─────────────────────────────────────── */
.service-detail-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1.5px solid var(--border); height: 100%; transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); }
.svc-icon-lg { width: 56px; height: 56px; min-width: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.svc-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.svc-content p { color: var(--gray-600); font-size: .9rem; margin-bottom: 14px; font-weight: 500; }
.svc-list { list-style: none; padding: 0; }
.svc-list li { font-size: .85rem; color: var(--dark); margin-bottom: 6px; font-weight: 500; }

/* ── Why Section ────────────────────────────────────────── */
.why-card { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.why-icon-sm { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.why-card h6 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 3px; font-size: .95rem; }
.why-card p { color: var(--gray-600); font-size: .87rem; margin: 0; font-weight: 500; }

/* ── Stats ──────────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, #1a1a2e, #2a0a5e, #0a2563); padding: 70px 0; }
.counter-card { text-align: center; }
.counter-icon { font-size: 2rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.counter-val { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; }
.counter-val::after { content: '+'; font-size: 1.8rem; }
.counter-label { color: rgba(255,255,255,.65); font-size: .85rem; font-weight: 600; margin-top: 6px; letter-spacing: .5px; }

/* ── Team Cards ─────────────────────────────────────────── */
.team-card { background: var(--white); border-radius: var(--radius); padding: 32px 20px; text-align: center; border: 1.5px solid var(--border); transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.team-img-wrap { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid var(--primary); }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 4px; font-size: 1.05rem; }
.team-card p { color: var(--primary); font-size: .85rem; font-weight: 700; margin-bottom: 4px; }
.team-card small { color: var(--gray-400); font-size: .8rem; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1.5px solid var(--border); position: relative; height: 100%;
}
.testimonial-quote { font-family: var(--font-heading); font-size: 5rem; color: var(--primary); opacity: .1; position: absolute; top: -14px; left: 20px; line-height: 1; }
.testimonial-text { color: var(--gray-600); font-size: .93rem; margin-bottom: 20px; position: relative; z-index: 1; font-weight: 500; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.author-name { font-family: var(--font-heading); font-weight: 600; font-size: .92rem; color: var(--dark); }
.author-title { font-size: .78rem; color: var(--gray-400); font-weight: 600; }
.star-rating { color: #f4b942; font-size: .82rem; margin-bottom: 2px; }

/* ── Blog ───────────────────────────────────────────────── */
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); transition: var(--transition); height: 100%; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-img { overflow: hidden; height: 200px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body { padding: 22px; }
.blog-meta { font-size: .76rem; color: var(--gray-400); margin-bottom: 8px; font-weight: 600; }
.blog-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.blog-excerpt { font-size: .87rem; color: var(--gray-600); margin-bottom: 12px; font-weight: 500; }
.blog-tag { display: inline-block; background: rgba(108,99,255,.09); color: var(--primary); font-size: .74rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; }
.blog-article { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.blog-article-img { height: 300px; overflow: hidden; }
.blog-article-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-body { padding: 32px; }
.blog-article-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }

/* ── Sidebar ────────────────────────────────────────────── */
.sidebar-card { background: var(--white); border-radius: var(--radius); padding: 22px; border: 1.5px solid var(--border); }
.sidebar-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li { border-bottom: 1px solid var(--border); }
.sidebar-categories a { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: .87rem; font-weight: 600; color: var(--dark); }
.sidebar-categories a:hover { color: var(--primary); }
.sidebar-categories span { background: rgba(108,99,255,.09); color: var(--primary); font-size: .74rem; font-weight: 700; padding: 2px 9px; border-radius: 50px; }
.sidebar-cta { background: linear-gradient(135deg, var(--primary), var(--secondary)) !important; border-color: transparent !important; }

/* ── Offer Cards ────────────────────────────────────────── */
.offer-card { background: var(--white); border-radius: var(--radius); padding: 30px; border: 1.5px solid var(--border); transition: var(--transition); height: 100%; }
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.featured-offer { border: 2px solid var(--primary); background: rgba(108,99,255,.02); }
.offer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.offer-tag { width: 52px; height: 52px; background: rgba(108,99,255,.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.offer-tag i { font-size: 1.3rem; color: var(--primary); }
.offer-badge { background: var(--primary); color: #fff; font-size: .82rem; font-weight: 700; padding: 5px 16px; border-radius: 50px; }
.offer-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.offer-desc { font-size: .88rem; color: var(--gray-600); margin-bottom: 16px; font-weight: 500; }
.coupon-box { display: flex; align-items: center; justify-content: space-between; background: var(--light-2); border: 2px dashed var(--primary); border-radius: 10px; padding: 10px 16px; margin-bottom: 12px; }
.coupon-box span { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--primary); letter-spacing: 1.5px; }
.copy-coupon { background: none; border: none; color: var(--primary); font-size: .8rem; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
.offer-validity { font-size: .78rem; color: var(--gray-400); font-weight: 600; }
.offer-banner { background: linear-gradient(135deg, var(--primary), #2a0a5e); color: #fff; padding: 20px 0; }

/* ── Contact ────────────────────────────────────────────── */
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  text-align: center; border: 1.5px solid var(--border); transition: var(--transition); height: 100%;
}
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-icon { width: 52px; height: 52px; background: rgba(108,99,255,.09); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.contact-icon i { font-size: 1.2rem; color: var(--primary); }
.contact-info-card h6 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.contact-info-card p { font-size: .88rem; color: var(--gray-600); margin: 0; font-weight: 500; }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 40px; border: 1.5px solid var(--border); }
.whatsapp-box { background: linear-gradient(135deg, #25d366, #128c7e); border-radius: var(--radius); padding: 26px; color: #fff; }
.map-container { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }

/* ── Grid Image ─────────────────────────────────────────── */
.grid-img-block {}

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(135deg, var(--dark) 0%, #2a0a5e 60%, #0a2563 100%); padding: 70px 0; }
.newsletter-form .form-control { border: none; padding: 14px 20px; font-family: var(--font-body); font-weight: 600; border-radius: var(--radius) 0 0 var(--radius) !important; }
.newsletter-form .btn { border-radius: 0 var(--radius) var(--radius) 0; padding: 0 28px; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-card { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 24px; padding: 64px 40px; }
.cta-section { padding: 80px 0; }

/* ── About Accordion ────────────────────────────────────── */
.accordion-button { font-family: var(--font-body); font-weight: 700; color: var(--dark) !important; background: var(--white) !important; }
.accordion-button:not(.collapsed) { color: var(--primary) !important; box-shadow: none; }
.accordion-button:focus { box-shadow: none; }

/* ── Mini Stat Card ─────────────────────────────────────── */
.mini-stat-card { background: var(--light-2); border-radius: var(--radius); padding: 20px; text-align: center; border: 1.5px solid var(--border); }
.mini-stat-card i { font-size: 1.5rem; color: var(--primary); }
.mini-stat-val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-top: 6px; }
.mini-stat-label { font-size: .78rem; color: var(--gray-400); font-weight: 700; }

/* ── Footer ─────────────────────────────────────────────── */
.footer-main { background: var(--dark); color: rgba(255,255,255,.65); padding: 70px 0 0; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-light); margin-bottom: 14px; }
.footer-brand span { color: var(--secondary-light); }
.footer-desc { font-size: .87rem; margin-bottom: 20px; font-weight: 500; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-heading { font-size: .8rem; font-weight: 800; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px; font-family: var(--font-body); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .87rem; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .87rem; }
.footer-contact-item i { color: var(--primary-light); margin-top: 3px; min-width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 50px; padding: 20px 0; }
.footer-bottom p { margin: 0; font-size: .82rem; text-align: center; font-weight: 500; }

/* ── Floating Buttons ───────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 100px; right: 24px; width: 54px; height: 54px;
  background: #25d366; color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.38); z-index: 999; transition: var(--transition);
}
.whatsapp-btn:hover { background: #128c7e; color: #fff; transform: scale(1.1); }
.call-btn {
  position: fixed; bottom: 165px; right: 24px; width: 54px; height: 54px;
  background: var(--primary); color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(108,99,255,.38); z-index: 999; transition: var(--transition);
}
.call-btn:hover { background: var(--primary-dark); color: #fff; transform: scale(1.1); }
#backToTop {
  position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px;
  background: var(--secondary); color: #fff; border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem; z-index: 999;
  display: none; align-items: center; justify-content: center; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(67,184,156,.3);
}
#backToTop:hover { background: var(--primary); }
#backToTop.show { display: flex; }

/* ── Toast ──────────────────────────────────────────────── */
.enquiry-success-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--secondary); color: #fff; padding: 13px 26px; border-radius: 50px;
  font-weight: 700; display: flex; align-items: center; gap: 10px;
  z-index: 9998; box-shadow: 0 4px 24px rgba(0,0,0,.15);
  opacity: 0; transition: all .4s; white-space: nowrap; font-size: .9rem;
}
.enquiry-success-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Enquiry Modal Product Summary ──────────────────────── */
.product-summary { display: flex; align-items: center; gap: 16px; background: var(--light-2); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 22px; }
.product-summary img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; border: 1.5px solid var(--border); }
.product-summary h6 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 3px; }

/* ── Prescription Banner ─────────────────────────────────── */
.prescription-banner { background: linear-gradient(135deg, rgba(108,99,255,.07), rgba(67,184,156,.07)); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px 30px; margin: 0 0 40px; }

/* ── Page Hero Title ─────────────────────────────────────── */
.page-hero-title { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: #fff; margin: 10px 0 12px; }
.page-hero-title em { font-style: italic; color: var(--primary-light); }

/* ── Rx Banner ───────────────────────────────────────────── */
.rx-banner { background: linear-gradient(135deg, rgba(108,99,255,.07), rgba(67,184,156,.07)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; font-size: .9rem; font-weight: 600; }

/* ── Service Detail Card W3 ─────────────────────────────── */
.service-detail-card-w3 { display: flex; align-items: flex-start; gap: 28px; background: var(--white); border-radius: var(--radius); padding: 36px; border: 1.5px solid var(--border); transition: var(--transition); }
.service-detail-card-w3:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.sdc-icon { width: 70px; height: 70px; min-width: 70px; border-radius: 22px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.sdc-body h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.sdc-body p { color: var(--gray-600); font-size: .93rem; margin-bottom: 14px; font-weight: 500; }
.sdc-body ul { list-style: none; padding: 0; margin: 0; }
.sdc-body ul li { position: relative; padding-left: 18px; font-size: .88rem; color: var(--dark); margin-bottom: 7px; font-weight: 500; }
.sdc-body ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
@media (max-width:576px) { .service-detail-card-w3 { flex-direction: column; } }

/* ── Stats ───────────────────────────────────────────────── */
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: #fff; line-height: 1.1; }
.stat-label { color: rgba(255,255,255,.65); font-size: .85rem; font-weight: 600; letter-spacing: .5px; margin-top: 6px; }

/* ── Team Card (direct img) ─────────────────────────────── */
.team-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--primary); display: block; }
.team-role { color: var(--primary); font-size: .82rem; font-weight: 700; margin-bottom: 8px; }
.team-bio { color: var(--gray-600); font-size: .85rem; font-weight: 500; margin-bottom: 10px; }
.team-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.team-tags span { background: rgba(108,99,255,.09); color: var(--primary); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

/* ── Cert Card ────────────────────────────────────────────── */
.cert-card { background: var(--white); border-radius: var(--radius); padding: 30px 20px; border: 1.5px solid var(--border); transition: var(--transition); height: 100%; }
.cert-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px); }

/* ── Offer Hero Banner ────────────────────────────────────── */
.offers-hero-banner { background: linear-gradient(135deg, var(--primary), #2a0a5e); padding: 52px 0; }

/* ── Offer Icon ───────────────────────────────────────────── */
.offer-icon { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px; }
.offer-discount { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

/* ── Terms Box ────────────────────────────────────────────── */
.terms-box { background: var(--white); border-radius: var(--radius); padding: 28px 32px; border: 1.5px solid var(--border); }

/* ── Blog Article Card ────────────────────────────────────── */
.blog-article-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.blog-article-img { height: 320px; overflow: hidden; }
.blog-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.blog-article-card:hover .blog-article-img img { transform: scale(1.04); }
.blog-article-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: .78rem; color: var(--gray-400); font-weight: 600; padding: 20px 24px 0; }
.blog-article-title { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; margin: 14px 24px 0; color: var(--dark); }
.blog-article-card > p, .blog-article-card h5, .blog-article-card > a { padding: 0 24px; }
.blog-article-card > p { color: var(--gray-600); font-size: .93rem; font-weight: 500; margin-top: 12px; }
.blog-article-card h5 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-top: 28px !important; }
.blog-article-card > a { display: inline-block; margin: 16px 24px 28px; }

/* ── Blog Sidebar ─────────────────────────────────────────── */
.blog-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); padding: 22px; border: 1.5px solid var(--border); }
.sidebar-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: var(--dark); }
.sidebar-cat-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: .88rem; font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--border); }
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link:hover { color: var(--primary); }
.sidebar-cat-count { background: rgba(108,99,255,.1); color: var(--primary); font-size: .74rem; font-weight: 700; padding: 2px 9px; border-radius: 50px; }
.sidebar-consult-widget { background: linear-gradient(135deg, rgba(108,99,255,.07), rgba(67,184,156,.07)); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--border); text-align: center; }
.sidebar-post-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-item img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-item a { font-size: .85rem; font-weight: 600; color: var(--dark); display: block; margin-bottom: 4px; line-height: 1.4; }
.sidebar-post-item a:hover { color: var(--primary); }
.sidebar-post-item small { font-size: .75rem; color: var(--gray-400); font-weight: 600; }

/* ── Contact Info Icon ────────────────────────────────────── */
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 26px; text-align: center; border: 1.5px solid var(--border); transition: var(--transition); height: 100%; }
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-info-icon { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.4rem; }
.contact-info-card h5 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 8px; font-size: 1.05rem; }
.contact-info-card p { font-size: .88rem; color: var(--gray-600); margin: 0 0 8px; font-weight: 500; }
.btn-text-link { font-size: .84rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.btn-text-link:hover { color: var(--primary-dark); }

/* ── WhatsApp Contact Widget ──────────────────────────────── */
.whatsapp-contact-widget { background: linear-gradient(135deg, #25d366, #128c7e); border-radius: var(--radius); padding: 28px; }

/* ── Hours Card ───────────────────────────────────────────── */
.hours-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1.5px solid var(--border); }

/* ── Rx Upload Card ───────────────────────────────────────── */
.rx-upload-card { background: linear-gradient(135deg, rgba(108,99,255,.07), rgba(67,184,156,.07)); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--border); text-align: center; }

/* ── Newsletter Form ──────────────────────────────────────── */
.newsletter-form .input-group .form-control { border-top-left-radius: var(--radius) !important; border-bottom-left-radius: var(--radius) !important; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.newsletter-form .input-group .btn { border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; border-top-right-radius: var(--radius) !important; border-bottom-right-radius: var(--radius) !important; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width:991px) {
  .navbar-collapse { background: var(--white); border-radius: var(--radius); padding: 16px; margin-top: 10px; border: 1.5px solid var(--border); }
  [data-theme="dark"] .navbar-collapse { background: var(--white); }
  section { padding: 70px 0; }
}
@media (max-width:767px) {
  .hero-section { padding: 70px 0 50px; }
  .page-hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.7rem; }
  .service-detail-card-w3 { flex-direction: column; padding: 24px; }
  .blog-article-title { font-size: 1.2rem; }
}
