/* ============================================================
   X-ZELL DIAGNOSTICS — HDmall-inspired Marketplace Design
   ============================================================ */

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

:root {
  --brand:       #C84B6A;
  --brand-dk:    #A0394F;
  --brand-light: #FDF0F3;
  --brand-pale:  #FFF5F7;
  --green:       #00A86B;
  --orange:      #FF6B35;
  --bg:          #F5F5F7;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-2:      #4A4A6A;
  --muted:       #8A8A9A;
  --border:      #E8E8F0;
  --border-2:    #D4D4E0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.10);
  --r-sm:        8px;
  --r-md:        12px;
  --r-lg:        16px;
  --r-xl:        20px;
  --r-full:      9999px;
  --font:        'Noto Sans Thai', 'Thai Fallback', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.container-fluid { width: 100%; padding: 0 16px; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
  background: var(--brand);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.top-bar a { color: rgba(255,255,255,0.9); font-weight: 500; }
.top-bar a:hover { color: white; }

/* ── MAIN HEADER ────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo img { width: 36px; height: 36px; object-fit: contain; }
.site-logo-text { line-height: 1; }
.site-logo-name { font-size: 16px; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; }
.site-logo-sub  { font-size: 9px; color: var(--muted); letter-spacing: 0.05em; margin-top: 2px; }

/* Search bar */
.search-wrap {
  flex: 1;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { border-color: var(--brand); background: white; }
.search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.search-btn svg { width: 16px; height: 16px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-line-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #06C755;
  color: white;
  padding: 9px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.btn-line-hd svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-line-hd:hover { background: #05A847; }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CATEGORY NAV ───────────────────────────────────────────── */
.cat-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  padding: 0 16px;
}
.cat-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 12px;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
}
.cat-nav-item:hover { color: var(--brand); }
.cat-nav-item.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; }
.cat-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ── HERO BANNER ────────────────────────────────────────────── */
.hero-banner {
  background: linear-gradient(135deg, #1C1917 0%, #3D1520 60%, #C84B6A 100%);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,75,106,0.3);
  border: 1px solid rgba(200,75,106,0.5);
  color: #F9B8C8;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-title span { color: #F9B8C8; }
.hero-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--brand);
  color: white;
  padding: 11px 24px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-hero-primary:hover { background: var(--brand-dk); transform: translateY(-1px); }
.btn-hero-line {
  background: #06C755;
  color: white;
  padding: 11px 20px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-hero-line:hover { background: #05A847; transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 20px;
  border-radius: var(--r-lg);
}
.hero-stat-val {
  font-size: 26px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ── SECTION ────────────────────────────────────────────────── */
.section { padding: 24px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title-icon { font-size: 20px; }
.section-link { font-size: 13px; color: var(--brand); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.section-link:hover { text-decoration: underline; }

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: white;
  border-top: 3px solid var(--brand);
  padding: 16px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
  font-size: 13px;
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.trust-item-icon svg { width: 18px; height: 18px; }
.trust-item-title { font-weight: 700; font-size: 13px; color: var(--text); }
.trust-item-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ── PACKAGE CARDS GRID ─────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ── PACKAGE CARD ───────────────────────────────────────────── */
.pkg-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.pkg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--brand-light);
}

/* Card illustration header */
.pkg-card-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 36px;
}
.pkg-card-img.cat-sti       { background: linear-gradient(135deg, #C84B6A22, #C84B6A44); }
.pkg-card-img.cat-hormone    { background: linear-gradient(135deg, #7C3AED22, #7C3AED44); }
.pkg-card-img.cat-allergy    { background: linear-gradient(135deg, #059669 22, #05966944); }
.pkg-card-img.cat-cardio     { background: linear-gradient(135deg, #DC262622, #DC262644); }
.pkg-card-img.cat-tumor      { background: linear-gradient(135deg, #D9770622, #D9770644); }
.pkg-card-img.cat-checkup    { background: linear-gradient(135deg, #0284C722, #0284C744); }

/* Popular badge */
.pkg-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pkg-badge.badge-new   { background: var(--green); }
.pkg-badge.badge-hot   { background: var(--orange); }

/* Card body */
.pkg-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pkg-cat-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pkg-name-th {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-name-en {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-desc {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
}
.pkg-rating { display: flex; align-items: center; gap: 2px; color: #F59E0B; }
.pkg-rating-val { color: var(--text-2); font-weight: 600; }
.pkg-location { color: var(--muted); }

/* Card footer */
.pkg-card-footer {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pkg-price {
  display: flex;
  flex-direction: column;
}
.pkg-price-label { font-size: 10px; color: var(--muted); }
.pkg-price-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pkg-price-val .currency { font-size: 13px; font-weight: 600; }
.pkg-book-btn {
  background: var(--brand);
  color: white;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: all 0.2s;
  white-space: nowrap;
}
.pkg-book-btn:hover { background: var(--brand-dk); }
.pkg-book-btn svg { width: 14px; height: 14px; }

/* ── CATEGORY CARDS ──────────────────────────────────────────── */
.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 10px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cat-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.cat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cat-card-name { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.cat-card-count { font-size: 11px; color: var(--muted); }

/* Category card colors */
.cat-card.sti    .cat-card-icon { background: #FDF0F3; }
.cat-card.hormone .cat-card-icon { background: #F5F3FF; }
.cat-card.allergy .cat-card-icon { background: #ECFDF5; }
.cat-card.cardio .cat-card-icon { background: #FEF2F2; }
.cat-card.tumor  .cat-card-icon { background: #FFF7ED; }
.cat-card.checkup .cat-card-icon { background: #EFF6FF; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin: 0 auto 12px;
}
.step-icon { font-size: 28px; margin-bottom: 8px; }
.step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
}
.review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand);
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-pkg  { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0;
}
.cta-banner-text h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 6px; }
.cta-banner-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.cta-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cta-white {
  background: white;
  color: var(--brand);
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-cta-white:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.btn-cta-line {
  background: #06C755;
  color: white;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-cta-line:hover { background: #05A847; transform: translateY(-1px); }

/* ── FILTER TABS (Services page) ──────────────────────────────── */
.filter-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 20px;
}
.filter-bar-title { font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--brand); color: var(--brand); }
.filter-tab.active { background: var(--brand); color: white; border-color: var(--brand); font-weight: 700; }
.filter-tab .tab-count { font-size: 11px; opacity: 0.75; }

/* Services page header */
.page-hero {
  background: linear-gradient(135deg, #1C1917 0%, #3D1520 100%);
  padding: 32px 0 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,75,106,0.25);
  border: 1px solid rgba(200,75,106,0.4);
  color: #F9B8C8;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero h1 { font-size: 26px; font-weight: 800; color: white; margin-bottom: 6px; }
.page-hero p { font-size: 14px; color: rgba(255,255,255,0.6); }

/* Services layout */
.services-layout { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.services-sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sidebar-section-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px 8px;
  border-bottom: 1px solid var(--border);
}
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  color: var(--text-2);
}
.sidebar-item:hover { background: var(--bg); color: var(--brand); }
.sidebar-item.active { background: var(--brand-pale); color: var(--brand); font-weight: 700; border-left: 3px solid var(--brand); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-count {
  font-size: 11px;
  background: var(--bg);
  color: var(--muted);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.sidebar-item.active .sidebar-count { background: var(--brand-light); color: var(--brand); }

/* Category heading for services */
.cat-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 14px;
}
.cat-heading-icon { font-size: 22px; }
.cat-heading-text { font-size: 16px; font-weight: 800; color: var(--text); }
.cat-heading-line { flex: 1; height: 1px; background: var(--border); }
.cat-heading-count { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-logo img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand-name { font-size: 16px; font-weight: 800; color: white; }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col-title { font-size: 11px; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-contact-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-contact-row svg { width: 14px; height: 14px; color: var(--brand); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--brand); }

/* ── FLOATING LINE BTN ────────────────────────────────────────── */
.floating-line {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: white;
  padding: 13px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(6,199,85,0.4);
  animation: floatPop 3s ease-in-out infinite;
}
.floating-line:hover { background: #05A847; transform: scale(1.04); }
.floating-line svg { width: 20px; height: 20px; }

@keyframes floatPop {
  0%, 100% { box-shadow: 0 4px 20px rgba(6,199,85,0.4); }
  50%       { box-shadow: 0 8px 32px rgba(6,199,85,0.6); }
}

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu .m-cta { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu .m-cta a { border: none; }

/* ── SCROLL TOP ───────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  color: var(--text);
  transition: all 0.2s;
  z-index: 998;
}
#scroll-top:hover { background: var(--brand); color: white; border-color: var(--brand); }
#scroll-top.visible { display: flex; }

/* ── UTILITIES ────────────────────────────────────────────────── */
.bg-white { background: white; }
.text-brand { color: var(--brand); }
.text-muted { color: var(--muted); }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.10s; }
.d3 { transition-delay: 0.15s; }
.d4 { transition-delay: 0.20s; }
.d5 { transition-delay: 0.25s; }
.d6 { transition-delay: 0.30s; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .services-layout { grid-template-columns: 1fr; }
  .services-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}
@media (max-width: 768px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .header-actions .btn-line-hd span { display: none; }
  .search-wrap { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .floating-line .label { display: none; }
  .floating-line { padding: 13px 14px; }
}
