/* ═══════════════════════════════════════════════════════════
   HC360 MAIN STYLESHEET - Healthchecks360.com
   Brand: Purple #681e77 . Orange #fe5e00
   Font: DM Serif Display (headings) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@600;700;800;900&display=swap');

:root {
  --purple:       #681e77;
  --purple-light: #8b2fa0;
  --purple-dark:  #4a1456;
  --purple-pale:  #f5edf7;
  --purple-mid:   #e0c4e6;
  --orange:       #fe5e00;
  --orange-light: #ff7a28;
  --orange-pale:  #fff3ec;
  --orange-dark:  #cc4a00;
  --white:        #ffffff;
  --off-white:    #faf9fb;
  --gray-50:      #f8f6fa;
  --gray-100:     #f0edf3;
  --gray-200:     #e2dde7;
  --gray-400:     #9b92a5;
  --gray-600:     #5c5068;
  --gray-900:     #1a1020;
  --teal:         #0f766e;
  --teal-pale:    #e6faf8;
  --green:        #16a34a;
  --green-pale:   #f0fdf4;
  --red:          #dc2626;
  --red-pale:     #fef2f2;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 3px rgba(104,30,119,0.08);
  --shadow-md:    0 4px 16px rgba(104,30,119,0.10);
  --shadow-lg:    0 8px 32px rgba(104,30,119,0.14);
  --transition:   0.2s ease;
}

/* -- RESET & BASE ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.hc360-page {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* -- TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 36px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; font-family: 'Inter', sans-serif; font-weight: 600; }
.hc360-serif { font-family: 'Sora', 'Inter', sans-serif; }
.hc360-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.hc360-section-title { margin-bottom: 8px; }
.hc360-section-sub { color: var(--gray-600); font-size: 15px; margin-bottom: 32px; }

/* -- LAYOUT ----------------------------------------------- */
.hc360-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hc360-section { padding: 64px 0; }
.hc360-section-sm { padding: 40px 0; }
.hc360-section-header { text-align: center; margin-bottom: 44px; }
.hc360-section-header.left { text-align: left; }

/* -- BUTTONS ---------------------------------------------- */
.hc360-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.hc360-btn-primary {
  background: var(--orange);
  color: white;
}
.hc360-btn-primary:hover { background: var(--orange-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(254,94,0,0.35); }
.hc360-btn-secondary {
  background: white;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.hc360-btn-secondary:hover { background: var(--purple); color: white; }
.hc360-btn-purple {
  background: var(--purple);
  color: white;
}
.hc360-btn-purple:hover { background: var(--purple-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(104,30,119,0.35); }
.hc360-btn-ghost {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.hc360-btn-ghost:hover { background: var(--orange); color: white; }
.hc360-btn-sm { padding: 8px 16px; font-size: 13px; }
.hc360-btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.hc360-btn-full { width: 100%; justify-content: center; }

/* -- NAVBAR ----------------------------------------------- */
.hc360-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}
.hc360-nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 18px;
  flex-wrap: nowrap;
}
.hc360-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
}
.hc360-logo-main {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 22px;
  color: var(--purple);
  line-height: 1;
}
.hc360-logo-main span { color: var(--orange); }
.hc360-logo-tag {
  font-size: 9px;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.hc360-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.hc360-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.hc360-nav-links a:hover { color: var(--purple); background: var(--purple-pale); }
.hc360-nav-links a.active { color: var(--purple); font-weight: 600; }
.hc360-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hc360-nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1.5px solid #25d366;
  transition: all var(--transition);
}
.hc360-nav-wa:hover { background: #25d366; color: white; }
.hc360-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: white;
  cursor: pointer;
  transition: all var(--transition);
}
.hc360-cart-btn:hover { border-color: var(--purple); color: var(--purple); }
.hc360-cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hc360-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hc360-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: all var(--transition); }

/* -- OFFER TICKER ----------------------------------------- */
.hc360-ticker {
  background: var(--purple);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.hc360-ticker-inner {
  display: inline-block;
  animation: hc360Ticker 30s linear infinite;
}
.hc360-ticker-inner:hover { animation-play-state: paused; }
.hc360-ticker span { margin: 0 48px; }
.hc360-ticker span::before { content: ' '; }
@keyframes hc360Ticker {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* -- HERO ------------------------------------------------- */
.hc360-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hc360-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(254,94,0,0.08);
}
.hc360-hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hc360-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hc360-hero-content { color: white; }
.hc360-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,94,0,0.2);
  border: 1px solid rgba(254,94,0,0.4);
  color: #ffb380;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hc360-hero-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hc360-hero-title span { color: #ffb066; }
.hc360-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hc360-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hc360-hero-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hc360-hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hc360-hero-stat-num {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 28px;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.hc360-hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* -- LEAD FORM CARD --------------------------------------- */
.hc360-lead-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hc360-lead-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 20px;
  color: var(--purple);
  margin-bottom: 6px;
}
.hc360-lead-card p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.hc360-form-field {
  margin-bottom: 14px;
}
.hc360-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hc360-form-field input,
.hc360-form-field select,
.hc360-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-900);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}
.hc360-form-field input:focus,
.hc360-form-field select:focus,
.hc360-form-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(104,30,119,0.08);
}
.hc360-form-field input::placeholder { color: var(--gray-400); }
.hc360-form-msg {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  display: none;
}
.hc360-form-msg.success { background: var(--green-pale); color: #166534; display: block; }
.hc360-form-msg.error   { background: var(--red-pale); color: var(--red); display: block; }
.hc360-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hc360-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray-600);
}
.hc360-trust-badge::before { content: ''; color: var(--green); font-weight: 700; }

/* -- CATEGORY TILES --------------------------------------- */
.hc360-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.hc360-cat-tile {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--gray-900);
  display: block;
}
.hc360-cat-tile:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--purple);
}
.hc360-cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
}
.hc360-cat-name {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
}
.hc360-cat-count { font-size: 11px; color: var(--gray-400); margin-top: 4px; }

/* -- SERVICE CARDS ---------------------------------------- */
.hc360-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hc360-service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.hc360-service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--purple-mid);
  transform: translateY(-2px);
}
.hc360-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.hc360-service-card:hover::before { transform: scaleX(1); }
.hc360-card-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}
.badge-lab_test   { background: #ede9fe; color: #6d28d9; }
.badge-scan       { background: #dbeafe; color: #1d4ed8; }
.badge-profile    { background: #dcfce7; color: #166534; }
.badge-package    { background: var(--orange-pale); color: var(--orange-dark); }
.badge-membership { background: var(--purple-pale); color: var(--purple); }
.hc360-card-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
  flex: 1;
}
.hc360-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.hc360-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--gray-600);
}
.hc360-card-price {
  margin-bottom: 14px;
}
.hc360-price-offer {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  font-family: 'Sora', 'Inter', sans-serif;
}
.hc360-price-mrp {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 6px;
}
.hc360-price-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
}
.hc360-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* -- HEALTH FINDER PROMO ---------------------------------- */
.hc360-finder-section { background: var(--purple-pale); }
.hc360-finder-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hc360-finder-tile {
  background: white;
  border: 1.5px solid var(--purple-mid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--gray-900);
  display: block;
}
.hc360-finder-tile:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.hc360-finder-tile:hover .hc360-finder-icon { background: rgba(255,255,255,0.15); }
.hc360-finder-tile:hover .hc360-finder-sub { color: rgba(255,255,255,0.75); }
.hc360-finder-icon {
  width: 64px; height: 64px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  transition: background var(--transition);
}
.hc360-finder-label { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.hc360-finder-sub { font-size: 12px; color: var(--gray-400); transition: color var(--transition); }

/* -- WHY CHOOSE US ---------------------------------------- */
.hc360-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hc360-why-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.hc360-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hc360-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
}
.hc360-why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.hc360-why-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--purple);
  margin-bottom: 8px;
}
.hc360-why-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* -- OFFERS GRID ------------------------------------------ */
.hc360-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hc360-offer-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.hc360-offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hc360-offer-img {
  height: 140px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
}
.hc360-offer-discount-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.hc360-offer-body { padding: 18px; }
.hc360-offer-title { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.hc360-offer-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.hc360-offer-validity { font-size: 11px; color: var(--gray-400); margin-bottom: 14px; }
.hc360-offer-expiring { color: var(--red); font-weight: 600; }

/* -- PARTNERS STRIP --------------------------------------- */
.hc360-partners-section { background: white; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.hc360-partners-strip {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
  align-items: center;
}
.hc360-partners-strip::-webkit-scrollbar { display: none; }
.hc360-partner-logo {
  flex-shrink: 0;
  height: 48px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all var(--transition);
  display: flex; align-items: center;
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
}
.hc360-partner-logo:hover { opacity: 1; filter: none; }

/* -- TESTIMONIALS ----------------------------------------- */
.hc360-testimonials { background: var(--gray-50); }
.hc360-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hc360-testi-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.hc360-testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.hc360-testi-text { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.hc360-testi-author { font-weight: 600; font-size: 13px; color: var(--gray-900); }
.hc360-testi-service { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

/* -- BLOG CARDS ------------------------------------------- */
.hc360-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hc360-blog-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.hc360-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hc360-blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--purple-pale), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.hc360-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hc360-blog-body { padding: 18px; }
.hc360-blog-cat {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--orange); margin-bottom: 6px;
}
.hc360-blog-title { font-weight: 600; font-size: 15px; margin-bottom: 8px; line-height: 1.35; color: var(--gray-900); }
.hc360-blog-title:hover { color: var(--purple); }
.hc360-blog-date { font-size: 11px; color: var(--gray-400); }

/* -- FOOTER ----------------------------------------------- */
.hc360-footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 0 0;
}
.hc360-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hc360-footer-logo-main {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 4px;
}
.hc360-footer-logo-main span { color: var(--orange); }
.hc360-footer-tagline { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.hc360-footer-about { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.hc360-footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.hc360-footer-contact-item a { color: rgba(255,255,255,0.65); }
.hc360-footer-contact-item a:hover { color: var(--orange); }
.hc360-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.hc360-footer-col ul { list-style: none; }
.hc360-footer-col ul li { margin-bottom: 10px; }
.hc360-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.hc360-footer-col ul li a:hover { color: var(--orange); }
.hc360-footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.hc360-footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background var(--transition);
}
.hc360-footer-social a:hover { background: var(--orange); }
.hc360-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.hc360-footer-bottom a { color: rgba(255,255,255,0.5); }
.hc360-footer-bottom a:hover { color: var(--orange); }

/* -- FLOATING WHATSAPP ------------------------------------ */
.hc360-wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.hc360-wa-btn {
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  animation: hc360WaPulse 2.5s ease-in-out infinite;
}
.hc360-wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.hc360-wa-label {
  background: var(--gray-900);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}
.hc360-wa-float:hover .hc360-wa-label { opacity: 1; transform: translateX(0); }
@keyframes hc360WaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

/* -- MOBILE STICKY BOOK NOW ------------------------------- */
.hc360-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 12px 20px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

/* -- LISTING PAGE ----------------------------------------- */
.hc360-page-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 44px 0 48px;
  color: white;
}
.hc360-page-hero h1 { color: white; margin-bottom: 8px; }
.hc360-page-hero p { color: rgba(255,255,255,0.75); font-size: 15px; }
.hc360-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.hc360-breadcrumb a { color: rgba(255,255,255,0.55); }
.hc360-breadcrumb a:hover { color: white; }
.hc360-breadcrumb span { color: rgba(255,255,255,0.35); }

.hc360-listing-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 36px 0;
}
.hc360-filter-sidebar {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 80px;
}
.hc360-filter-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.hc360-filter-group { margin-bottom: 20px; }
.hc360-filter-group label {
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-900);
  display: block;
  margin-bottom: 8px;
}
.hc360-filter-group .hc360-check-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-600);
  padding: 5px 0; cursor: pointer;
}
.hc360-filter-group .hc360-check-item input { accent-color: var(--purple); }

.hc360-search-bar {
  position: relative;
  margin-bottom: 20px;
}
.hc360-search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}
.hc360-search-bar input:focus { border-color: var(--purple); }
.hc360-search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 16px;
}

.hc360-listing-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap; gap: 12px;
}
.hc360-result-count { font-size: 13px; color: var(--gray-600); }
.hc360-sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}
.hc360-type-tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
  background: var(--gray-100);
  padding: 4px; border-radius: var(--radius-lg);
  width: fit-content;
}
.hc360-type-tab {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500;
  color: var(--gray-600);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; border: none; background: none;
}
.hc360-type-tab.active, .hc360-type-tab:hover {
  background: white; color: var(--purple);
  box-shadow: var(--shadow-sm); font-weight: 600;
}

/* -- SINGLE SERVICE PAGE ---------------------------------- */
.hc360-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: 40px 0 60px;
}
.hc360-single-main {}
.hc360-single-sidebar {
  position: sticky; top: 80px; height: fit-content;
}
.hc360-price-box {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.hc360-big-price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.hc360-big-offer { font-size: 34px; font-weight: 700; color: var(--purple); font-family: 'Sora', 'Inter', sans-serif; }
.hc360-big-mrp { font-size: 17px; text-decoration: line-through; color: var(--gray-400); }
.hc360-big-save {
  background: var(--green-pale); color: var(--green);
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}
.hc360-service-meta-list { margin: 14px 0; }
.hc360-service-meta-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray-600);
  padding: 6px 0; border-bottom: 1px solid var(--gray-100);
}
.hc360-service-meta-list li:last-child { border-bottom: none; }
.hc360-service-meta-list li strong { color: var(--gray-900); }
.hc360-service-meta-list .meta-icon { width: 18px; text-align: center; }

.hc360-content-section {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.hc360-content-section h4 {
  font-weight: 700; font-size: 14px; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 2px solid var(--purple-pale);
}
.hc360-content-section p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 10px; }
.hc360-included-list { list-style: none; padding: 0; }
.hc360-included-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: var(--radius-sm);
  margin-bottom: 6px; background: var(--gray-50);
  font-size: 13px;
}
.hc360-included-list li .item-name { font-weight: 500; color: var(--gray-900); }
.hc360-included-list li .item-price { color: var(--gray-400); font-size: 12px; }
.hc360-included-list li .item-type { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--purple); background: var(--purple-pale); padding: 2px 6px; border-radius: 3px; }

/* -- LEAD FORM INLINE ------------------------------------- */
.hc360-inline-lead-form {
  background: var(--purple-pale);
  border: 1.5px solid var(--purple-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.hc360-inline-lead-form h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 18px; color: var(--purple);
  margin-bottom: 4px;
}
.hc360-inline-lead-form p { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; }

/* -- HEALTH FINDER PAGE ----------------------------------- */
.hc360-finder-organs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.hc360-organ-tile {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.hc360-organ-tile:hover, .hc360-organ-tile.selected {
  border-color: var(--purple);
  background: var(--purple-pale);
}
.hc360-organ-tile.selected { box-shadow: 0 0 0 3px rgba(104,30,119,0.15); }
.hc360-organ-emoji { font-size: 28px; display: block; margin-bottom: 6px; }
.hc360-organ-name { font-size: 11px; font-weight: 500; color: var(--gray-600); }

/* -- CART PAGE -------------------------------------------- */
.hc360-cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding: 36px 0 60px;
}
.hc360-cart-item {
  display: flex; align-items: center; gap: 16px;
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 16px 20px;
  margin-bottom: 10px;
}
.hc360-cart-item-info { flex: 1; }
.hc360-cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.hc360-cart-item-type { font-size: 11px; color: var(--gray-400); }
.hc360-cart-item-price { font-weight: 700; font-size: 16px; color: var(--purple); }
.hc360-cart-remove { background: none; border: none; cursor: pointer; color: var(--gray-400); font-size: 18px; padding: 4px; transition: color var(--transition); }
.hc360-cart-remove:hover { color: var(--red); }
.hc360-upsell-box {
  background: linear-gradient(135deg, var(--orange-pale), #fff8f0);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-lg); padding: 20px;
  margin-bottom: 20px;
}
.hc360-upsell-box h4 { color: var(--orange-dark); font-size: 14px; margin-bottom: 4px; }
.hc360-upsell-box p { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.hc360-cart-summary {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 80px;
}
.hc360-summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.hc360-summary-row:last-child { border-bottom: none; }
.hc360-summary-row.total { font-weight: 700; font-size: 16px; color: var(--gray-900); }
.hc360-summary-row.savings { color: var(--green); font-weight: 600; }

/* -- UTILITIES -------------------------------------------- */
.hc360-divider { border: none; border-top: 1px solid var(--gray-200); margin: 32px 0; }
.hc360-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; padding: 3px 10px;
  border-radius: 20px; background: var(--gray-100); color: var(--gray-600);
}
.hc360-badge-popular {
  background: var(--orange); color: white;
  font-size: 9px; font-weight: 700; padding: 2px 7px;
  border-radius: 3px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hc360-empty-state {
  text-align: center; padding: 60px 20px;
}
.hc360-empty-state .empty-icon { font-size: 56px; margin-bottom: 16px; }
.hc360-empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.hc360-empty-state p { color: var(--gray-600); margin-bottom: 20px; }
.hc360-loading {
  display: flex; justify-content: center; align-items: center;
  padding: 40px; gap: 8px; color: var(--gray-400);
}
.hc360-spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: hc360Spin 0.7s linear infinite;
}
@keyframes hc360Spin { to { transform: rotate(360deg); } }

/* -- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .hc360-services-grid { grid-template-columns: repeat(3, 1fr); }
  .hc360-categories { grid-template-columns: repeat(5, 1fr); }
  .hc360-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hc360-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hc360-nav-links { display: none; }
  .hc360-hamburger { display: flex; }
  .hc360-nav-wa span { display: none; }
  .hc360-hero-inner { grid-template-columns: 1fr; }
  .hc360-hero-inner .hc360-lead-card { max-width: 100%; }
  .hc360-categories { grid-template-columns: repeat(3, 1fr); }
  .hc360-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hc360-finder-tiles { grid-template-columns: 1fr; }
  .hc360-testi-grid { grid-template-columns: 1fr; }
  .hc360-offers-grid { grid-template-columns: 1fr; }
  .hc360-blogs-grid { grid-template-columns: 1fr; }
  .hc360-footer-grid { grid-template-columns: 1fr; }
  .hc360-listing-layout { grid-template-columns: 1fr; }
  .hc360-single-layout { grid-template-columns: 1fr; }
  .hc360-single-sidebar { position: static; }
  .hc360-cart-layout { grid-template-columns: 1fr; }
  .hc360-finder-organs { grid-template-columns: repeat(4, 1fr); }
  .hc360-mobile-sticky { display: flex; }
  .hc360-why-grid { grid-template-columns: 1fr; }
  .hc360-hero-stats { gap: 20px; }
  .hc360-wa-float { bottom: 80px; }
}

@media (max-width: 480px) {
  .hc360-categories { grid-template-columns: repeat(2, 1fr); }
  .hc360-services-grid { grid-template-columns: 1fr; }
  .hc360-finder-organs { grid-template-columns: repeat(3, 1fr); }
  .hc360-hero { padding: 48px 0 56px; }
}

/* -- NAVBAR FIX v1.0.2 ------------------------------------- */
.hc360-nav-inner {
  gap: 16px; /* tighter gap so items fit */
}
.hc360-nav-links {
  gap: 0;
  flex-shrink: 1;
  overflow: visible;
}
.hc360-nav-links a {
  font-size: 13px;
  padding: 6px 9px;
  white-space: nowrap;
}
.hc360-nav-search {
  max-width: 220px; /* smaller search so nav has room */
  flex-shrink: 1;
  min-width: 0;     /* allow search to shrink so actions stay inline */
}
.hc360-nav-actions { flex-shrink: 0; flex-wrap: nowrap; gap: 8px; align-items: center; }
.hc360-nav-wa span.wa-text { display: none; } /* hide "WhatsApp" text in nav, keep icon (floating WA exists) */
.hc360-nav-inner { flex-wrap: nowrap !important; }
.hc360-nav-search { max-width: 200px; }
@media (min-width: 1280px) {
  .hc360-nav-search { max-width: 240px; }
}

/* -- LOGO IMAGE -------------------------------------------- */
.hc360-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.hc360-logo { flex-shrink: 0; }

/* -- INLINE EDIT HIGHLIGHT --------------------------------- */
.hc360-editable {
  outline: 2px dashed transparent;
  border-radius: 3px;
  transition: outline 0.2s;
  cursor: text;
}
body.hc360-edit-mode .hc360-editable:hover {
  outline-color: #fe5e00;
  background: rgba(254,94,0,0.04);
}
#hc360-edit-toolbar {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 99990; background: #1a1020; color: white;
  padding: 10px 20px; border-radius: 30px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  white-space: nowrap;
}
#hc360-edit-toolbar .edit-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fe5e00; animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* -- LOGO IMAGE FIX v1.0.3 --------------------------------- */
.hc360-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  mix-blend-mode: multiply;   /* makes black bg transparent on white navbar */
  object-fit: contain;
}
/* On purple/dark backgrounds (hero, footer) the logo needs different blend */
.hc360-hero .hc360-logo-img,
.hc360-footer .hc360-logo-img { mix-blend-mode: screen; }

/* ═══════════════════════════════════════════════════════
   MOBILE-FIRST IMPROVEMENTS v1.0.3
═══════════════════════════════════════════════════════ */

/* Touch targets - min 44px for all clickable elements on mobile */
@media (max-width: 768px) {
  .hc360-btn { min-height: 44px; }
  .hc360-cat-tile { padding: 18px 10px; }
  .hc360-card-actions { grid-template-columns: 1fr; gap: 8px; }
  .hc360-card-actions .hc360-btn { width: 100%; justify-content: center; }
  .hc360-hero { padding: 40px 0 48px; }
  .hc360-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hc360-lead-card { padding: 24px 20px; }
  .hc360-hero-title { font-size: clamp(28px, 8vw, 42px); }
  .hc360-section { padding: 48px 0; }
  .hc360-section-sm { padding: 32px 0; }
  .hc360-container { padding: 0 16px; }
  /* Services grid - 1 col on small mobile, 2 col on larger */
  .hc360-services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .hc360-categories { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hc360-finder-tiles { grid-template-columns: 1fr; }
  .hc360-why-grid { grid-template-columns: 1fr; gap: 14px; }
  .hc360-testi-grid { grid-template-columns: 1fr; }
  .hc360-offers-grid { grid-template-columns: 1fr; }
  .hc360-blogs-grid { grid-template-columns: 1fr; }
  .hc360-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hc360-footer { padding: 44px 0 0; }
  /* Single service page */
  .hc360-single-layout { grid-template-columns: 1fr; }
  .hc360-single-sidebar { position: static; }
  /* Cart */
  .hc360-cart-layout { grid-template-columns: 1fr; }
  /* Listing */
  .hc360-listing-layout { grid-template-columns: 1fr; }
  .hc360-filter-sidebar { position: static; }
  /* Mobile sticky bar */
  .hc360-mobile-sticky { display: flex; }
  /* Push content above mobile sticky */
  body.hc360-page { padding-bottom: 72px; }
  /* Nav */
  .hc360-nav-links { display: none; }
  .hc360-hamburger { display: flex; }
  .hc360-nav-search { display: none; } /* hide search in nav on mobile - use hero search */
  .hc360-nav-wa .wa-text { display: none; }
  /* Hero stats */
  .hc360-hero-stats { gap: 16px; flex-wrap: wrap; }
  /* WA float above mobile sticky */
  .hc360-wa-float { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
  .hc360-categories { grid-template-columns: repeat(2, 1fr); }
  .hc360-hero-tags { display: none; } /* save space on very small screens */
  .hc360-section-header h2 { font-size: 24px; }
  .hc360-finder-tiles { gap: 12px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hc360-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hc360-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hc360-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hc360-nav-links a { font-size: 12.5px; padding: 6px 7px; }
  .hc360-nav-search { max-width: 180px; }
}

/* -- Smooth scroll & focus styles for accessibility -- */
html { scroll-behavior: smooth; }
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
.hc360-btn:focus-visible { outline-offset: 2px; }

/* -- Print styles -- */
@media print {
  .hc360-nav, .hc360-wa-float, .hc360-mobile-sticky,
  .hc360-ticker, .hc360-admin-topbar, #hc360-edit-bar { display: none !important; }
  .hc360-hero { background: #681e77 !important; -webkit-print-color-adjust: exact; }
}

/* WhatsApp button icon via CSS */
.hc360-wa-btn::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  background: #25d366;
}

.hc360-logo-img { height: 52px; width: auto; max-width: 220px; }

/* Fix card button alignment - buttons always stick to bottom */
.hc360-service-card {
  display: flex;
  flex-direction: column;
}
.hc360-service-card .hc360-card-actions {
  margin-top: auto;
}
/* Better card hover */
.hc360-service-card:hover {
  box-shadow: 0 8px 32px rgba(104,30,119,.15);
  border-color: #d4b8dc;
  transform: translateY(-2px);
  transition: all .2s;
}
/* Listing page card hover */
[style*="border-radius:14px"]:hover {
  box-shadow: 0 8px 24px rgba(104,30,119,.12) !important;
}


/* =====================================================
   v1.0.15 FIXES
   ===================================================== */

/* 1. Better Inter font rendering */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
}

/* 2. Logo size */
.hc360-logo-img {
  height: 54px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
}
.hc360-logo-fallback .hc360-logo-text {
  font-size: 20px !important;
}

/* 3. Nav search box - ensure visible */
@media (max-width: 768px) {
  .hc360-nav-search {
    display: none;
  }
}

/* 4. Service cards - equal height grid with buttons at bottom */
.hc360-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hc360-service-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

.hc360-card-actions {
  margin-top: auto !important;
  padding-top: 12px;
}

/* 5. Hero lead card improvements */
.hc360-lead-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.hc360-lead-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1020;
  margin-bottom: 6px;
}

.hc360-lead-card p {
  font-size: 13px;
  color: #7c7189;
  margin-bottom: 16px;
}

/* 6. Hero tags - make clickable and visible */
.hc360-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .2s;
}
.hc360-hero-tag:hover {
  background: rgba(255,255,255,.3);
  color: white;
}

/* 7. Hero stats bar */
.hc360-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}

.hc360-hero-stat-num {
  font-size: 22px;
  font-weight: 900;
  color: #fbbf24;
  display: block;
  line-height: 1;
}

.hc360-hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
}

/* 8. Listing page card grid - equal height */
#services-grid, .listing-grid {
  align-items: stretch !important;
}

/* Cards inside listing pages */
[style*="grid-template-columns:repeat(auto-fill,minmax(270px"] > div {
  display: flex;
  flex-direction: column;
}

/* 9. Better section headings */
.hc360-section-label {
  font-size: 11px;
  font-weight: 700;
  color: #fe5e00;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.hc360-section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #1a1020;
  margin-bottom: 8px;
  font-family: 'Sora', 'Inter', sans-serif;
}

/* 10. FAQ accordion chevron */
.faq-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* 11. Cart page layout on mobile */
@media (max-width: 768px) {
  #cartLayout {
    grid-template-columns: 1fr !important;
  }
  #cartLayout > div:last-child {
    position: static !important;
  }
}

/* 12. Checkout form grid on mobile */
@media (max-width: 640px) {
  #checkoutForm [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* 13. Hero slider height consistency */
.hc360-slide > div {
  min-height: 420px;
}

@media (max-width: 768px) {
  .hc360-slide > div {
    min-height: auto;
  }
}

/* 14. Search result dropdown */
.hc360-search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1a1020;
  font-size: 13px;
  border-bottom: 1px solid #f3f0f5;
  transition: background .15s;
}
.hc360-search-result-item:hover {
  background: #f5edf7;
}
.hc360-search-result-item:last-child {
  border-bottom: none;
}

/* 15. Presence page gallery responsive */
@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(12,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-column:span 8"] {
    grid-column: span 2 !important;
  }
  [style*="grid-column:span 4"] {
    grid-column: span 1 !important;
  }
  [style*="grid-row:span 2"] {
    grid-row: span 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE COMPATIBILITY v2.0 — All Pages
   Full-site mobile-first overrides
═══════════════════════════════════════════════════════════ */

/* ── Full-desc rendered HTML content styling ──────────────── */
.hc360-full-desc h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1020;
  margin: 24px 0 10px;
  font-family: 'Sora','Inter',sans-serif;
}
.hc360-full-desc h4 {
  font-size: 15px;
  font-weight: 700;
  color: #681e77;
  margin: 20px 0 8px;
  font-family: 'Inter',sans-serif;
}
.hc360-full-desc p {
  font-size: 14px;
  color: #5c5068;
  line-height: 1.75;
  margin-bottom: 12px;
}
.hc360-full-desc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.hc360-full-desc ul li {
  font-size: 13px;
  color: #5c5068;
  line-height: 1.65;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #f5edf7;
}
.hc360-full-desc ul li:last-child { border-bottom: none; }
.hc360-full-desc ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: #681e77;
  border-radius: 50%;
}
.hc360-full-desc ul li strong {
  font-weight: 700;
  color: #1a1020;
}
.hc360-full-desc > h3:first-child { margin-top: 0; }

/* ── Base mobile rules (applies ≤768px) ───────────────────── */
@media (max-width: 768px) {

  /* Viewport & overflow */
  html, body { overflow-x: hidden; }
  .hc360-container { padding: 0 16px; }

  /* ── Single service page layout ── */
  .hc360-service-main-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hc360-service-main-grid > div:last-child {
    position: static !important;
  }
  .hc360-why-inner-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Contact & About 2-col layouts ── */
  .hc360-two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ── Cart layout ── */
  #cartMainLayout {
    grid-template-columns: 1fr !important;
  }
  #cartMainLayout > div:last-child {
    position: static !important;
  }

  /* ── Checkout layout ── */
  #checkoutGrid {
    grid-template-columns: 1fr !important;
  }
  #checkoutGrid > div:last-child {
    position: static !important;
  }
  /* Checkout name/date row */
  #checkoutGrid [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Listing pages: package/profile/lab-test cards ── */
  [style*="grid-template-columns:repeat(auto-fill,minmax(270px"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Service detail: meta info boxes (wrap on mobile) ── */
  [style*="grid-template-columns:1fr 360px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 320px"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Hero slider: 2-col inner ── */
  .hc360-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .hc360-lead-card { max-width: 100% !important; }

  /* ── Sticky sidebars become static on mobile ── */
  [style*="position:sticky"] {
    position: static !important;
  }

  /* ── Footer ── */
  .hc360-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .hc360-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ── Nav ── */
  .hc360-nav-links { display: none !important; }
  .hc360-hamburger { display: flex !important; }
  .hc360-nav-search { display: none !important; }
  .hc360-nav-wa .wa-text { display: none !important; }

  /* ── Why grid (home page) ── */
  .hc360-why-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* ── Testimonials ── */
  .hc360-testi-grid { grid-template-columns: 1fr !important; }

  /* ── Offers ── */
  .hc360-offers-grid { grid-template-columns: 1fr !important; }

  /* ── Blogs ── */
  .hc360-blogs-grid { grid-template-columns: 1fr !important; }

  /* ── Category tiles ── */
  .hc360-categories { grid-template-columns: repeat(3,1fr) !important; gap: 10px !important; }

  /* ── Services grid ── */
  .hc360-services-grid { grid-template-columns: repeat(auto-fill,minmax(240px,1fr)) !important; }

  /* ── Full-desc on mobile ── */
  .hc360-full-desc h3 { font-size: 16px; }
  .hc360-full-desc h4 { font-size: 14px; }

  /* ── Health finder organ grid ── */
  .hc360-finder-organs { grid-template-columns: repeat(4,1fr) !important; }

  /* ── Section spacing ── */
  .hc360-section { padding: 44px 0 !important; }
  .hc360-section-sm { padding: 28px 0 !important; }

  /* ── Buttons full-width on mobile in action rows ── */
  .hc360-card-actions { grid-template-columns: 1fr !important; }

  /* ── Mobile sticky book-now bar ── */
  .hc360-mobile-sticky { display: flex !important; }
  body.hc360-page { padding-bottom: 74px; }
  .hc360-wa-float { bottom: 80px !important; right: 16px !important; }

  /* ── Tables: horizontal scroll ── */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* ── Form inputs full width ── */
  .hc360-form-field input,
  .hc360-form-field select,
  .hc360-form-field textarea { font-size: 16px; } /* prevent iOS zoom */

  /* ── Listing page — hide sidebar on mobile ── */
  .hc360-filter-sidebar { position: static !important; }
  .hc360-listing-layout { grid-template-columns: 1fr !important; }
}

/* ── Very small phones (≤480px) ─────────────────────────── */
@media (max-width: 480px) {
  .hc360-categories { grid-template-columns: repeat(2,1fr) !important; }
  .hc360-hero-tags { flex-wrap: wrap; gap: 6px; }
  .hc360-hero-stats { flex-wrap: wrap; gap: 14px; }
  .hc360-finder-organs { grid-template-columns: repeat(3,1fr) !important; }
  .hc360-services-grid { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(auto-fill,minmax(270px"] {
    grid-template-columns: 1fr !important;
  }
  /* Stat boxes wrap nicely */
  [style*="display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px"] {
    flex-direction: column;
  }
  /* Section headings */
  .hc360-section-title { font-size: 22px !important; }
  h1 { font-size: 26px !important; }
}

/* ── Tablet (769–1024px) ─────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hc360-service-main-grid {
    grid-template-columns: 1fr 300px !important;
    gap: 24px !important;
  }
  .hc360-services-grid { grid-template-columns: repeat(2,1fr) !important; }
  .hc360-categories { grid-template-columns: repeat(4,1fr) !important; }
  .hc360-why-grid { grid-template-columns: repeat(2,1fr) !important; }
  .hc360-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }
  .hc360-testi-grid { grid-template-columns: repeat(2,1fr) !important; }
  .hc360-blogs-grid { grid-template-columns: repeat(2,1fr) !important; }
  .hc360-two-col { gap: 28px !important; }
  #checkoutGrid { grid-template-columns: 1fr 300px !important; }
  #cartMainLayout { grid-template-columns: 1fr 280px !important; }
}
