/* ════════════════════════════════════════════
   DEARNESS PHARMACY — Complete New Design
   Palette: Navy #1B2A70 · Sky #29B6E8 · White
   ════════════════════════════════════════════ */

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

:root {
  --navy:        #1B2A70;
  --navy-dark:   #0d1a4a;
  --navy-mid:    #243491;
  --sky:         #29B6E8;
  --sky-light:   #e0f4fd;
  --sky-mid:     #7dd3f0;
  --white:       #ffffff;
  --off-white:   #f8fafd;
  --text:        #1a2236;
  --muted:       #607080;
  --border:      #dde8f0;

  --font-body:   'Plus Jakarta Sans', sans-serif;
  --font-serif:  'Fraunces', serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  --shadow-sm:  0 2px 8px rgba(27,42,112,.08);
  --shadow-md:  0 8px 30px rgba(27,42,112,.12);
  --shadow-lg:  0 20px 60px rgba(27,42,112,.18);
  --shadow-sky: 0 8px 32px rgba(41,182,232,.35);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

em { font-family: var(--font-serif); font-style: italic; color: var(--sky); }

a { text-decoration: none; color: inherit; transition: .25s ease; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: .45rem 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-left { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: .4rem; }
.topbar-item i { width:14px; height:14px; color: var(--sky); }
.topbar-sep { opacity: .3; }

/* Store Status Pill */
.store-pill {
  display: flex; align-items: center; gap: .5rem;
  padding: .25rem .9rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase;
}
.store-open   { background: rgba(41,182,232,.15); color: var(--sky); border:1px solid rgba(41,182,232,.35); }
.store-closed { background: rgba(239,68,68,.15); color: #f87171; border:1px solid rgba(239,68,68,.3); }
.store-loading { background: rgba(255,255,255,.07); color: #94a3b8; }
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.store-open .pill-dot   { animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:.5; transform: scale(.7); }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: .8rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
/* Brand Lockup (Dismantled Logo) */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.brand-lockup:hover {
  transform: translateY(-1px);
}
.brand-icon {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand-lockup .brand-icon {
  height: 68px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.brand-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.bt-dearness {
  color: var(--sky);
}
.bt-pharmacy {
  color: var(--navy);
}
.bt-pharmacy-dark {
  color: #FFFFFF;
}
.brand-tagline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
}
.tagline-rule {
  height: 1.5px;
  flex: 1;
  background: var(--navy);
  opacity: 0.8;
}
.dark-tagline .tagline-rule {
  background: var(--sky);
  opacity: 0.9;
}
.tagline-words {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.dark-tagline .tagline-words {
  color: rgba(255, 255, 255, 0.95);
}
.nav-links {
  display: flex; gap: 2rem; flex: 1; justify-content: center;
}
.nav-link {
  font-weight: 600; font-size: .9rem;
  color: var(--muted);
  position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--sky);
  transition: width .3s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--sky), #0ea5d4);
  color: white; font-weight: 700; font-size: .9rem;
  padding: .65rem 1.4rem; border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-sky);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta i { width:16px; height:16px; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(41,182,232,.45); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: .3s ease;
}
.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); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-image-side {
  position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 8s ease;
}
.hero-image-side:hover .hero-photo { transform: scale(1.04); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(27,42,112,.35) 0%, transparent 60%),
              linear-gradient(to top, rgba(13,26,74,.6) 0%, transparent 50%);
}

/* Floating stat card */
.hero-stat-card {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 1.2rem 2rem;
  width: calc(100% - 4rem);
  max-width: 420px;
}
.hsc-row {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: space-around;
}
.hsc-item { text-align: center; }
.hsc-num {
  font-size: 1.8rem; font-weight: 800; color: white; line-height: 1;
}
.hsc-num span { font-size: .9rem; font-weight: 600; color: var(--sky); }
.hsc-label { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: .2rem; }
.hsc-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero Content */
.hero-content-side {
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 5rem 4rem 5rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 700;
  color: var(--sky); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky); flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--navy);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-heading em { display: block; }
.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 460px; margin-bottom: 2rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2.5rem;
}
.hbadge {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 700;
  color: var(--navy);
  background: white; border: 1.5px solid var(--border);
  padding: .45rem 1rem; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.hbadge i { width:15px; height:15px; color: var(--sky); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-hero {
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary-hero i { width:18px; height:18px; }
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost-hero {
  display: flex; align-items: center; gap: .5rem;
  color: var(--navy); font-weight: 700; font-size: 1rem;
  padding: 1rem 1.5rem; border-radius: var(--r-md);
  border: 2px solid var(--border);
  background: white;
  transition: .25s ease;
}
.btn-ghost-hero i { width:16px; height:16px; }
.btn-ghost-hero:hover { border-color: var(--sky); color: var(--sky); }

/* ── QUICK SELECTOR SECTION ── */
.quick-selector-section {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.qs-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.qs-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.qs-title-wrap {
  display: flex; flex-direction: column; gap: .4rem;
}
.qs-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--sky);
}
.qs-badge i { width: 14px; height: 14px; }
.qs-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem; color: var(--navy);
}
.qs-header p {
  color: var(--muted); font-size: .95rem; max-width: 450px;
}
.qs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.qs-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 1.6rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  cursor: pointer; text-align: left; font-family: inherit;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.qs-card:hover {
  border-color: var(--sky); background: white;
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.qs-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--sky-light); color: var(--qcolor);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .3s ease;
}
.qs-card:hover .qs-icon {
  transform: scale(1.1); background: var(--qcolor); color: white;
}
.qs-icon i { width: 22px; height: 22px; }
.qs-text { flex: 1; }
.qs-text h4 { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .2rem; }
.qs-text p  { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.qs-arrow {
  width: 18px; height: 18px; color: var(--muted);
  transition: transform .25s ease, color .25s ease; flex-shrink: 0;
}
.qs-card:hover .qs-arrow {
  transform: translateX(4px); color: var(--sky);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 2.5rem; align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track span {
  font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.mq-dot { color: var(--sky) !important; font-size: .7rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-section {
  padding: 6rem 0 5rem;
  background: var(--white);
}
.section-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem 3rem;
}
.section-label {
  font-size: .78rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sky); margin-bottom: .8rem;
}
.section-label.light { color: rgba(255,255,255,.6); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: white; }
.section-sub { color: var(--muted); max-width: 560px; font-size: 1.05rem; }

/* Horizontal scroll track */
.services-scroll-wrapper {
  overflow-x: auto;
  padding: 1rem 2rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sky) var(--border);
}
.services-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.services-scroll-wrapper::-webkit-scrollbar-track { background: var(--border); border-radius:2px; }
.services-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--sky); border-radius:2px; }
.services-track {
  display: flex; gap: 1.5rem;
  max-width: max-content;
  margin: 0 auto;
}

.scard {
  width: 270px; flex-shrink: 0;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: all .3s ease;
  cursor: default;
}
.scard:hover {
  border-color: var(--sky);
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.scard.hidden { display: none; }
.scard-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: white;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.scard:hover .scard-icon { transform: scale(1.1) rotate(-3deg); }
.scard-icon i { width: 26px; height: 26px; }
.scard h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.scard p { font-size: .88rem; color: var(--muted); line-height: 1.6; flex: 1; }
.scard-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  color: var(--sky); background: var(--sky-light);
  padding: .25rem .7rem; border-radius: 50px;
  align-self: flex-start;
}

/* Category Filter Pills */
.service-cat-pills {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.8rem;
}
.cat-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--off-white); border: 1.5px solid var(--border);
  color: var(--muted); font-family: inherit; font-size: .85rem; font-weight: 700;
  padding: .5rem 1.1rem; border-radius: 50px; cursor: pointer;
  transition: all .25s ease;
}
.cat-pill i { width: 15px; height: 15px; color: var(--sky); }
.cat-pill:hover {
  border-color: var(--sky); color: var(--navy); background: white;
}
.cat-pill.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.cat-pill.active i { color: var(--sky); }

/* Service Search */
.service-search-bar {
  display: flex; align-items: center; gap: .8rem;
  max-width: 540px; margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.service-search-bar i {
  position: absolute; left: 3.2rem;
  color: var(--muted); width: 18px; height: 18px;
}
.service-search-bar input {
  width: 100%; padding: .9rem 2.5rem .9rem 3rem;
  border: 2px solid var(--border); border-radius: 50px;
  font-family: inherit; font-size: .95rem;
  background: var(--off-white);
  outline: none; transition: .25s ease;
}
.service-search-bar input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(41,182,232,.12);
  background: white;
}
#search-clear {
  position: absolute; right: 3.2rem;
  background: none; border: none; cursor: pointer;
  color: var(--muted);
}

/* Modal Backdrop & Card */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,26,74,.75);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.open {
  opacity: 1; pointer-events: auto;
}
.modal-card {
  background: white; border-radius: var(--r-xl);
  width: 100%; max-width: 540px;
  padding: 2.5rem; position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,.3);
  transform: translateY(20px) scale(.96);
  transition: transform .3s ease;
}
.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--off-white); border: 1px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy);
  transition: .2s ease;
}
.modal-close:hover { background: var(--sky-light); border-color: var(--sky); }
.modal-header { margin-bottom: 1.8rem; }
.modal-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--sky-light); color: var(--sky);
  font-size: .78rem; font-weight: 800; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 50px; margin-bottom: .8rem;
}
.modal-badge i { width: 14px; height: 14px; }
.modal-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.modal-header p  { font-size: .88rem; color: var(--muted); }
.modal-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea {
  padding: .85rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-family: inherit; font-size: .92rem;
  background: var(--off-white); outline: none; transition: .25s ease;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--sky); background: white;
  box-shadow: 0 0 0 3px rgba(41,182,232,.12);
}
/* Modal Tabs */
.modal-tabs {
  display: flex; gap: .4rem; overflow-x: auto;
  padding-bottom: .6rem; margin-bottom: 1.5rem;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
  margin-right: 2rem;
}
.modal-tabs::-webkit-scrollbar { display: none; }
.mtab {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem; border-radius: 50px;
  font-family: inherit; font-size: .78rem; font-weight: 700;
  background: var(--off-white); border: 1.5px solid var(--border);
  color: var(--muted); cursor: pointer; white-space: nowrap;
  transition: all .2s ease;
}
.mtab i { width: 14px; height: 14px; }
.mtab:hover { border-color: var(--sky); color: var(--navy); background: white; }
.mtab.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.mtab.active i { color: var(--sky); }

/* Core Service Cards & Tags */
.scard.core-scard {
  border-color: rgba(41,182,232,.35);
  box-shadow: 0 4px 20px rgba(41,182,232,.08);
}
.scard-tag-wrap {
  display: flex; gap: .4rem; flex-wrap: wrap; align-self: flex-start;
}
.scard-tag.core {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
}

/* Modal Submit & Success */
.modal-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--sky), #0ea5d4);
  color: white; font-weight: 700; font-size: .95rem; font-family: inherit;
  padding: 1rem; border: none; border-radius: var(--r-md);
  cursor: pointer; box-shadow: var(--shadow-sky);
  transition: transform .2s ease; margin-top: .5rem;
}
.modal-submit-btn:hover { transform: translateY(-2px); }
.form-success-msg {
  display: none; align-items: center; gap: .6rem;
  background: #dcfce7; color: #166534; font-size: .88rem; font-weight: 600;
  padding: 1rem; border-radius: var(--r-md); margin-top: .5rem;
}
.form-success-msg i { width: 20px; height: 20px; color: #16a34a; flex-shrink: 0; }

/* ── ABOUT ── */
.about-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a80 100%);
  padding: 6rem 0;
  position: relative; overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,182,232,.1), transparent 70%);
  pointer-events: none;
}
.about-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.about-body {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem; max-width: 480px;
}
.pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.pillar-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(41,182,232,.15);
  border: 1px solid rgba(41,182,232,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
}
.pillar-icon i { width: 20px; height: 20px; }
.pillar h4 { font-size: .95rem; font-weight: 700; color: white; margin-bottom: .3rem; }
.pillar p  { font-size: .88rem; color: rgba(255,255,255,.6); }

/* Hours Card */
.hours-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}
.hours-header {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 2rem;
}
.hours-header i { width: 22px; height: 22px; color: var(--sky); }
.hours-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.hours-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .92rem; color: var(--muted);
  padding-bottom: .8rem;
  border-bottom: 1px dashed var(--border);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-time { font-weight: 700; color: var(--navy); }
.closed-row .hours-time { color: var(--muted); }
.closed-label { opacity: .6; }
.hours-cta {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--sky), #0ea5d4);
  color: white; font-weight: 700; padding: .9rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sky);
  transition: .25s ease;
}
.hours-cta i { width: 16px; height: 16px; }
.hours-cta:hover { transform: translateY(-2px); }

.contact-mini-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cmc-row {
  display: flex; align-items: center; gap: .8rem;
  color: rgba(255,255,255,.75); font-size: .88rem;
}
.cmc-row i { width: 16px; height: 16px; color: var(--sky); }

/* ── OFFERS ── */
.offers-section { padding: 6rem 0; background: var(--off-white); }
.offers-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}

/* Shared offer card */
.offer-card {
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.offer-senior {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  flex-direction: row; align-items: center; gap: 2rem;
  grid-column: span 2;
}
.offer-badge-large {
  width: 110px; height: 110px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), #0ea5d4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sky);
}
.ob-pct { font-size: 2.2rem; font-weight: 900; line-height: 1; color: white; }
.ob-off { font-size: .75rem; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,.85); }
.offer-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem; }
.offer-info p { font-size: .95rem; opacity: .85; }
.offer-tag { font-size: .75rem; opacity: .6; margin-top: .5rem; display: block; }

.offer-specials {
  background: white;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.specials-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.specials-list { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.special-item {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: .8rem;
  border-bottom: 1px dashed var(--border);
}
.special-item:last-child { border-bottom: none; }
.si-info { display: flex; flex-direction: column; }
.si-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.si-desc { font-size: .78rem; color: var(--muted); }
.si-price { font-size: 1.3rem; font-weight: 900; color: #e53e3e; flex-shrink: 0; }
.specials-note { font-size: .72rem; color: var(--muted); margin-top: .5rem; }

.offer-transfer {
  background: var(--sky-light);
  border: 1.5px solid rgba(41,182,232,.3);
  align-items: flex-start;
}
.transfer-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--sky), #0ea5d4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.transfer-icon i { width: 24px; height: 24px; }
.offer-transfer h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.offer-transfer p  { font-size: .88rem; color: var(--muted); flex: 1; }
.transfer-btn {
  display: flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--sky), #0ea5d4);
  color: white; font-weight: 700; font-size: .9rem;
  padding: .75rem 1.5rem; border-radius: 50px;
  box-shadow: var(--shadow-sky);
  align-self: flex-start;
  transition: .25s ease;
}
.transfer-btn i { width: 15px; height: 15px; }
.transfer-btn:hover { transform: translateY(-2px); }

/* ── REVIEWS / TESTIMONIALS ── */
.reviews-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.reviews-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.reviews-header {
  text-align: center; margin-bottom: 3.5rem;
}
.reviews-header .section-sub { margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-bottom: 3rem;
}
.review-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 1.5rem;
  transition: all .3s ease;
}
.review-card:hover {
  border-color: var(--sky);
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.rc-stars {
  display: flex; gap: .25rem; color: #f59e0b;
}
.rc-stars i { width: 18px; height: 18px; fill: currentColor; }
.rc-text {
  font-size: .95rem; color: var(--text);
  line-height: 1.7; font-style: italic; flex: 1;
}
.rc-author {
  display: flex; align-items: center; gap: 1rem;
}
.rc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: white; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rc-info h4 { font-size: .95rem; font-weight: 700; color: var(--navy); }
.rc-info span { font-size: .78rem; color: var(--muted); }
.reviews-summary-pill {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; background: var(--sky-light);
  border: 1.5px solid rgba(41,182,232,.3);
  padding: .8rem 2rem; border-radius: 50px;
  max-width: max-content; margin: 0 auto;
  flex-wrap: wrap; text-align: center;
}
.rsp-google {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 800; color: var(--navy); font-size: .9rem;
}
.rsp-google i { width: 18px; height: 18px; color: var(--sky); }
.rsp-text { font-size: .85rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.faq-container {
  max-width: 860px; margin: 0 auto; padding: 0 2rem;
}
.faq-header { margin-bottom: 3.5rem; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open {
  border-color: var(--sky);
  box-shadow: 0 4px 24px rgba(41,182,232,.12);
}
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 1.3rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer;
  text-align: left;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  color: var(--text);
  transition: background .2s;
}
.faq-btn:hover { background: var(--off-white); }
.faq-btn span { flex: 1; }
.faq-icon-wrap {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--off-white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: .3s ease;
}
.faq-icon-wrap i { width: 16px; height: 16px; transition: transform .3s ease; }
.faq-item.open .faq-icon-wrap {
  background: var(--sky); border-color: var(--sky); color: white;
}
.faq-item.open .faq-icon-wrap i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(0,1,0,1), padding .3s ease;
  background: var(--off-white);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  transition: max-height .5s ease, padding .3s ease;
}
.faq-answer p { color: var(--muted); font-size: .95rem; line-height: 1.7; }
.faq-answer strong { color: var(--navy); }

/* ── CONTACT / MAP ── */
.contact-section {
  position: relative; height: 600px; overflow: hidden;
}
.contact-map-wrap {
  position: absolute; inset: 0;
}
.contact-map-wrap iframe { width: 100%; height: 100%; display: block; }
.map-dark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,26,74,.7) 0%, rgba(13,26,74,.3) 50%, transparent 100%);
  pointer-events: none;
}
.contact-float-card {
  position: absolute; left: calc((100% - 1280px)/2 + 2rem); top: 50%;
  transform: translateY(-50%);
  background: white; border-radius: var(--r-xl);
  padding: 2.5rem; width: 380px;
  box-shadow: var(--shadow-lg);
}
.cfc-header { margin-bottom: 2rem; }
.cfc-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.cfc-header p  { font-size: .88rem; color: var(--muted); }
.cfc-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.cfc-item { display: flex; gap: 1rem; align-items: flex-start; }
.cfc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sky-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.cfc-icon i { width: 18px; height: 18px; }
.cfc-item h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing:.5px; color: var(--muted); margin-bottom: .2rem; }
.cfc-item p { font-size: .9rem; font-weight: 600; color: var(--text); }
.cfc-item a:hover { color: var(--sky); }
.directions-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; font-weight: 700; padding: .9rem;
  border-radius: var(--r-md); font-size: .95rem;
  transition: .25s ease;
}
.directions-btn i { width: 17px; height: 17px; }
.directions-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--sky); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li { font-size: .88rem; }
.footer-col ul li a:hover { color: var(--sky); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: rgba(41,182,232,.5); }

/* ── FAB (Mobile) ── */
.fab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: .75rem 1.5rem;
  background: white; gap: .75rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  z-index: 999;
}
.fab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem; border-radius: var(--r-md);
  font-weight: 700; font-size: .95rem;
  transition: .2s ease;
}
.fab i { width: 18px; height: 18px; }
.fab-call { background: linear-gradient(135deg, var(--sky), #0ea5d4); color: white; }
.fab-visit { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; }
.fab:hover { transform: translateY(-2px); }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1100px) {
  .contact-float-card { left: 2rem; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 55vw; min-height: 320px; }
  .hero-content-side { padding: 3rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .offer-senior { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-section { height: auto; }
  .contact-map-wrap { position: relative; height: 380px; }
  .map-dark-overlay { display: none; }
  .contact-float-card {
    position: relative; left: auto; top: auto; transform: none;
    width: auto; border-radius: 0;
    box-shadow: none; border-top: 3px solid var(--sky);
    max-width: none;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .topbar-left { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: white; border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 100; padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { display: block; padding: .8rem 2rem; }
  .nav-link::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  .hero-content-side { padding: 2.5rem 1.5rem; }
  .hero-heading { font-size: 2.4rem; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-senior { grid-column: span 1; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .fab-bar { display: flex; }
  main { padding-bottom: 72px; }
  .services-track { padding-bottom: 1rem; }
  .contact-float-card { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .qs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2rem; }
  .hsc-row { gap: .8rem; }
  .hsc-num { font-size: 1.4rem; }
  .scard { width: 240px; }
  .section-title { font-size: 1.8rem; }
}
