/* =========================================================
   Pharamedic — Homepage
   Clean rebuild of the original template design
   Palette:  primary #2F6C6D  secondary #132B2C  accent #75C2C3
             teal #47A2A3  olive #C2C375  text #6A6A6A
   Fonts:    Noto Sans (headings)  Lato (body)
========================================================= */

:root {
  --primary:   #07EDA2;
  --secondary: #1065a6;
  --accent:    #07EDA2;
  --teal:      #07EDA2;
  --olive:     #07EDA2;
  --blue:      #4E79B2;
  --text:      #6A6A6A;
  --light:     #F6F6F6;
  --border:    #DDDDDD;
  --white:     #FFFFFF;

  --font-head: "Noto Sans", sans-serif;
  --font-body: "Lato", sans-serif;

  --container: 1200px;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(19, 43, 44, 0.10);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--secondary); line-height: 1.2; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 2px;
  background: var(--teal);
}
.eyebrow--light { color: var(--olive); }
.eyebrow--light::before { background: var(--olive); }
.eyebrow--noline { padding-left: 0; }
.eyebrow--noline::before { display: none; }

.section-title {
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.375rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
}
.section-title--light { color: var(--white); }

.lead { font-size: 1.05rem; color: var(--text); margin-bottom: 16px; }

.section-head-center {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}
.section-head-center .eyebrow { padding-left: 0; }
.section-head-center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--secondary); border-color: var(--secondary); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); }

.link-more {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease, color .25s ease;
}
.link-more:hover { gap: 12px; color: var(--teal); }

/* =========================================================
   TOP BAR
========================================================= */
.topbar {
  background: var(--secondary);
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
}
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #07EDA282;
  color: var(--white);
  font-size: 13px;
  transition: background .25s ease;
}
.topbar__social a:hover { background: var(--teal); }
.topbar__info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__info li { display: flex; align-items: center; gap: 8px; }
.topbar__info i { color: var(--accent); }

/* =========================================================
   HEADER
========================================================= */
.header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(19,43,44,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}
.header__logo img { max-height: 46px; width: auto; }

.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__list > li > a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s ease;
}
.nav__list > li > a:hover,
.nav__list > li > a.active { color: var(--primary); }
.nav__list i { font-size: 11px; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 50;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 9px 22px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s ease;
}
.dropdown li a:hover { color: var(--primary); background: var(--light); padding-left: 27px; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.header__search {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  color: var(--primary);
  cursor: pointer;
  font-size: 16px;
  transition: all .25s ease;
}
.header__search:hover { background: var(--primary); color: var(--white); }
.header__burger {
  display: none;
  background: none; border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}
.nav__close { display: none; }

/* Search modal */
.search-modal {
  position: fixed; inset: 0;
  background: rgba(19,43,44,.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.search-modal.open { opacity: 1; visibility: visible; }
.search-modal__form {
  display: flex;
  width: min(620px, 90%);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.search-modal__form input {
  flex: 1;
  border: none;
  padding: 20px 24px;
  font-size: 18px;
  font-family: var(--font-body);
  outline: none;
}
.search-modal__form button {
  border: none;
  background: var(--primary);
  color: var(--white);
  padding: 0 28px;
  font-size: 20px;
  cursor: pointer;
}
.search-modal__close {
  position: absolute;
  top: 30px; right: 40px;
  background: none; border: none;
  color: var(--white);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */
.hero { background: var(--white); padding: 26px 0 0; }
.hero__inner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--secondary) url("../images/hero__inner-bg.jpg") 70% 50% / cover no-repeat;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: end;
  padding: 0 48px;
}
.hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(at center right, var(--accent) 18%, var(--secondary) 82%);
  opacity: .8;
  z-index: 0;
}
.hero__text, .hero__media { position: relative; z-index: 1; }
.hero__text { padding: 52px 0 64px; }
.hero__text h1 {
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero__text p { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 480px; margin-bottom: 30px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__btns .btn--primary { background: var(--olive); border-color: var(--olive); color: var(--secondary); }
.hero__btns .btn--primary:hover { background: var(--white); border-color: var(--white); color: var(--secondary); }
.hero__btns .btn--outline { background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.hero__btns .btn--outline:hover { background: var(--white); color: var(--secondary); border-color: var(--white); }
.hero__media { align-self: end; }
.hero__media > img { margin: 0 auto; max-height: 560px; width: auto; display: block; }

/* feature strip - light card below the hero box */
.feature-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-strip__item {
  padding: 32px 26px;
  border-right: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.feature-strip__item:last-child { border-right: none; }
.feature-strip__text h4 { margin-bottom: 8px; }
.feature-strip__text h4 a { color: var(--primary); font-size: 1.2rem; transition: color .2s ease; }
.feature-strip__text h4 a:hover { color: var(--teal); }
.feature-strip__text p { color: var(--text); font-size: .92rem; line-height: 1.6; }
.feature-strip__icon { color: var(--teal); font-size: 22px; flex: 0 0 auto; margin-top: 4px; }

/* =========================================================
   WHO WE ARE
========================================================= */
.about { padding-top: 90px; }
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  left: -22px; bottom: 30px;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  max-width: 240px;
}
.about__badge li { display: flex; align-items: center; gap: 12px; color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.about__badge i { color: var(--accent); font-size: 15px; flex: 0 0 auto; }
.about__text p { margin-bottom: 16px; }

/* =========================================================
   WELLNESS (full background image band, centered)
========================================================= */
.wellness {
  position: relative;
  text-align: center;
  background: var(--secondary) url("../images/wellness-bg.jpg") center / cover no-repeat;
}
.wellness::before { content: ""; position: absolute; inset: 0; background: var(--secondary); opacity: .85; }
.wellness__inner { position: relative; z-index: 1; display: block; max-width: 760px; margin: 0 auto; }
.wellness__inner .eyebrow { padding-left: 0; }
.wellness__inner .eyebrow::before { display: none; }
.wellness__text p { color: rgba(255,255,255,.9); margin: 0 auto 28px; max-width: 620px; }
.wellness__media { display: none; }

/* =========================================================
   SERVICES
========================================================= */
.services { background: var(--light); }
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 55px;
}
.services__head-right p { margin-bottom: 20px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 28px;
  padding-top: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 30px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(19,43,44,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card__icon {
  position: absolute;
  top: -32px; left: 50%; transform: translateX(-50%);
  width: 66px; height: 66px;
  border-radius: 16px;
  background: var(--secondary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 26px;
  transition: background .3s ease;
}
.service-card:hover .service-card__icon { background: var(--primary); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { margin-bottom: 26px; font-size: .96rem; }
.service-card__btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  transition: background .25s ease;
}
.service-card__btn:hover { background: var(--secondary); }

/* =========================================================
   STORE + COUNTERS
========================================================= */
.store {
  position: relative;
  padding: 90px 0 150px;
  background: var(--secondary) url("../images/store-bg.jpg") center / cover no-repeat;
}
.store::before { content: ""; position: absolute; inset: 0; background: var(--secondary); opacity: .85; }
.store > .container { position: relative; z-index: 1; }
.store__inner { max-width: 560px; margin-left: auto; }
.store__inner .eyebrow { padding-left: 0; }
.store__inner .eyebrow::before { display: none; }
.store__inner p { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.store__inner .btn--white { background: var(--olive); border-color: var(--olive); color: var(--secondary); }
.store__inner .btn--white:hover { background: var(--white); border-color: var(--white); color: var(--secondary); }

/* counters white card overlapping the store band */
.counters-section { background: var(--white); }
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: -100px;
  position: relative;
  z-index: 3;
  padding: 48px 20px;
}
.counter {
  text-align: center;
  border-right: 1px solid var(--border);
}
.counter:last-child { border-right: none; }
.counter__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.counter__label {
  display: block;
  margin-top: 12px;
  color: var(--secondary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.why__features { margin-top: 30px; display: grid; gap: 26px; }
.why__feature { display: flex; gap: 20px; align-items: flex-start; }
.why__feature-icon {
  flex: 0 0 60px;
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--secondary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 24px;
  transition: all .3s ease;
}
.why__feature:hover .why__feature-icon { background: var(--primary); color: var(--white); }
.why__feature h4 { font-size: 1.15rem; margin-bottom: 6px; }
.why__feature p { font-size: .95rem; }

.why__badge {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 38px;
  text-align: center;
  box-shadow: var(--shadow);
}
.why__badge-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 4rem;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.why__badge h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.why__badge p { color: rgba(255,255,255,.85); font-size: .95rem; }

/* =========================================================
   MEMBERSHIP / FORM
========================================================= */
.member { background: var(--white); position: relative; padding: 90px 0; }
.member__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}
.member__inner::before {
  content: "";
  position: absolute;
  top: -50px; bottom: -50px;
  left: 36%;
  right: calc(-50vw + 50%);
  background: linear-gradient(rgba(19, 104, 168, 0.91), rgba(7, 237, 162, 0.91)), url("../images/member__inner-bg.jpg") center / cover no-repeat;
  z-index: 0;
}
.member__text {
  position: relative;
  z-index: 1;
  padding-left: 40px;
}
.member__text .eyebrow { color: var(--olive); }
.member__text .eyebrow::before { background: var(--olive); }
.member__text .section-title { color: var(--white); }
.member__text > p { color: rgba(255,255,255,.9); }
.member__benefits-title { color: var(--white); }
.member__benefits li { color: var(--white); }
.member__benefits i { color: var(--white); }
.member__form-wrap {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 30px 60px rgba(19,43,44,.20);
}
.member__form-wrap .eyebrow { padding-left: 0; }
.member__form-wrap .eyebrow::before { display: none; }
.member__form-wrap h3 { font-size: 1.3rem; margin-bottom: 24px; }
.member-form { display: grid; gap: 18px; }
.member-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.member-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  font-size: .95rem;
  margin-bottom: 8px;
}
.member-form input,
.member-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--secondary);
  background: var(--light);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.member-form input:focus,
.member-form textarea:focus { border-color: var(--primary); background: var(--white); }
.member-form textarea { resize: vertical; }
.member-form .btn { justify-content: center; width: 100%; }

.member__text p { margin-bottom: 22px; }
.member__benefits-title { font-size: 1.1rem; margin-bottom: 16px; }
.member__benefits { display: grid; gap: 12px; margin-bottom: 32px; }
.member__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--secondary);
  font-size: .98rem;
}
.member__benefits i { color: var(--teal); font-size: 18px; }

.member__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.member__contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 22px;
  flex: 1;
  min-width: 230px;
}
.member__contact-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 18px;
  flex: 0 0 48px;
}
.member__contact-item span { font-size: .85rem; display: block; color: var(--teal); font-family: var(--font-head); font-weight: 600; }
.member__contact-item strong { font-family: var(--font-head); color: var(--secondary); font-size: 1.1rem; }

/* =========================================================
   TEAM
========================================================= */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  border-radius: var(--radius);
  background: transparent;
  position: relative;
}
.team-card__photo { position: relative; overflow: hidden; border-radius: var(--radius); }
.team-card__photo img {
  width: 100%;
  aspect-ratio: 3/3.4;
  object-fit: cover;
  transition: transform .4s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__info {
  text-align: center;
  padding: 22px 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--teal);
  box-shadow: var(--shadow);
  position: relative;
  width: 86%;
  margin: -50px auto 0;
  z-index: 2;
}
.team-card__info h4 { font-size: 1.25rem; margin-bottom: 4px; color: var(--secondary); }
.team-card__info > span { color: var(--teal); font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.team-card__social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.team-card__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--light);
  color: var(--secondary);
  display: grid; place-items: center;
  font-size: 14px;
  transition: all .25s ease;
}
.team-card__social a:hover { background: var(--primary); color: var(--white); }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials { background: var(--light); }
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(19,43,44,.05);
}
.testi-card__stars { color: var(--olive); margin-bottom: 18px; font-size: 15px; display: flex; gap: 3px; }
.testi-card > p { color: var(--text); margin-bottom: 26px; font-style: italic; }
.testi-card__person { display: flex; align-items: center; gap: 16px; }
.testi-card__person img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testi-card__person h5 { font-size: 1.1rem; margin-bottom: 2px; }
.testi-card__person span { color: var(--teal); font-size: .9rem; }

/* =========================================================
   BRANDS
========================================================= */
.brands { padding: 55px 0; background: var(--white); border-bottom: 1px solid var(--light); }
.brands__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.brands__track img {
  max-height: 55px;
  width: auto;
  opacity: .55;
  filter: grayscale(1);
  transition: all .3s ease;
}
.brands__track img:hover { opacity: 1; filter: grayscale(0); }

/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter {
  position: relative;
  padding: 70px 0;
  background: var(--primary) url("../images/newsletter-bg.jpg") center 30% / cover no-repeat;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary);
  opacity: .8;
}
.newsletter__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter__text h2 { color: var(--white); font-size: 2rem; margin-bottom: 6px; }
.newsletter__text p { color: rgba(255,255,255,.9); }
.newsletter__form { display: flex; gap: 12px; flex: 1; max-width: 560px; min-width: 300px; }
.newsletter__form input {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.newsletter__form .btn { background: var(--olive); border-color: var(--olive); color: var(--secondary); }
.newsletter__form .btn:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }

/* =========================================================
   FOOTER  (light body + dark copyright bar)
========================================================= */
.footer { background: var(--light); color: var(--text); padding-top: 80px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer__col h4 { color: var(--secondary); font-size: 1.3rem; margin-bottom: 24px; }
.footer__about p { margin-bottom: 24px; font-size: .95rem; }
.footer__hours { display: flex; align-items: center; gap: 14px; }
.footer__hours-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--white);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow);
}
.footer__hours span { display: block; font-size: .85rem; color: var(--teal); font-family: var(--font-head); font-weight: 600; }
.footer__hours strong { font-family: var(--font-head); color: var(--secondary); font-size: 1.1rem; }
.footer__col ul { display: grid; gap: 14px; }
.footer__col ul a {
  font-size: .97rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s ease, gap .2s ease;
}
.footer__col ul a::before { content: "+"; color: var(--teal); font-family: var(--font-head); font-weight: 700; }
.footer__col ul a:hover { color: var(--primary); gap: 14px; }
.footer__reach li { display: flex; gap: 12px; font-size: .95rem; align-items: flex-start; color: var(--text); }
.footer__reach i { color: var(--teal); margin-top: 5px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 15px;
  transition: background .25s ease;
}
.footer__social a:hover { background: var(--primary); }
.footer__bottom { background: var(--secondary); padding: 22px 0; }
.footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer__bottom ul { display: flex; gap: 24px; justify-self: start; }
.footer__bottom ul a { font-size: .9rem; color: rgba(255,255,255,.85); transition: color .2s ease; }
.footer__bottom ul a:hover { color: var(--white); }
.footer__bottom-logo { justify-self: center; background: var(--white); border-radius: 10px; padding: 10px 20px; }
.footer__bottom-logo img { max-height: 38px; width: auto; display: block; }
.footer__bottom p { font-size: .9rem; color: rgba(255,255,255,.85); justify-self: end; text-align: right; }

/* =========================================================
   RESPONSIVE
========================================================= */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(19,43,44,.5);
  z-index: 110;
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

@media (max-width: 1024px) {
  .header__burger { display: block; }
  .nav {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 120;
    padding: 70px 24px 24px;
    overflow-y: auto;
    transition: right .35s ease;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li > a { padding: 14px 6px; border-bottom: 1px solid var(--light); }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding: 0 0 8px 14px;
    display: none;
  }
  .has-dropdown.show .dropdown { display: block; }
  .nav__close {
    display: block;
    position: absolute;
    top: 18px; right: 22px;
    background: none; border: none;
    font-size: 34px; line-height: 1;
    color: var(--secondary);
    cursor: pointer;
  }
  .hero__inner, .about__inner, .wellness__inner,
  .why__inner, .member__inner, .services__head {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .member__inner::before { left: -24px; right: -24px; top: -24px; bottom: -24px; }
  .member__text { padding-left: 0; }
  .wellness__media { order: -1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid, .testimonials__track { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero__media > img { max-height: 460px; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .topbar__info li:not(:first-child) { display: none; }
  .topbar__info { gap: 0; }
  .hero__inner { padding: 0 22px; }
  .hero__text { padding: 36px 0 36px; }
  .feature-strip { grid-template-columns: 1fr; transform: none; }
  .feature-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-strip__item:last-child { border-bottom: none; }
  .about { padding-top: 70px; }
  .services__grid, .team__grid, .testimonials__track { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .member-form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { grid-template-columns: 1fr; justify-items: center; gap: 16px; text-align: center; }
  .footer__bottom ul { justify-self: center; }
  .footer__bottom p { justify-self: center; text-align: center; }
  .newsletter__inner { flex-direction: column; align-items: flex-start; }
  .newsletter__form { width: 100%; }
  .hero__badges { position: static; margin-top: 24px; }
  .hero__badges li { margin-left: 0 !important; }
  .member__contact { gap: 24px; }
}

@media (max-width: 420px) {
  .counters { grid-template-columns: 1fr; }
  .hero__btns .btn { flex: 1; justify-content: center; }
}

/* =========================================================
   INNER PAGES
========================================================= */

/* ---- Page banner / breadcrumb ---- */
.page-banner {
  background: linear-gradient(rgba(19,43,44,.85), rgba(19,43,44,.9)), var(--primary);
  position: relative;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(117,194,195,.12);
}
.page-banner::before {
  content: "";
  position: absolute;
  left: -60px; bottom: -100px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(117,194,195,.08);
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.75);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- Commitment + Vision/Mission ---- */
.commitment { text-align: center; }
.commitment .section-head-center { margin-bottom: 45px; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 42px 38px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.vm-card:hover { transform: translateY(-6px); }
.vm-card__icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.vm-card:nth-child(2) .vm-card__icon { background: var(--primary); }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 12px; }

/* ---- FAQ ---- */
.faq { background: var(--light); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: start;
}
.faq__intro .btn { margin-top: 10px; }
.accordion { display: grid; gap: 16px; }
.acc-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .25s ease;
}
.acc-item.open { border-color: var(--accent); }
.acc-head {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.acc-head i { color: var(--primary); transition: transform .3s ease; flex: 0 0 auto; }
.acc-item.open .acc-head i { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-body p { padding: 0 26px 24px; margin: 0; }

/* ---- Single service layout ---- */
.single__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}
.single__hero-img {
  border-radius: var(--radius);
  width: 100%;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.single__content h2 { font-size: 1.75rem; margin: 34px 0 16px; }
.single__content h2:first-child { margin-top: 0; }
.single__content h3 { font-size: 1.35rem; margin: 30px 0 14px; }
.single__content p { margin-bottom: 16px; }
.single__checklist { display: grid; gap: 12px; margin: 8px 0 24px; }
.single__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--secondary);
}
.single__checklist i { color: var(--teal); font-size: 18px; }
.health-corner {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 26px;
}
.health-corner__icon {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 24px;
}
.health-corner h4 { margin-bottom: 6px; font-size: 1.2rem; }

/* sidebar */
.single__sidebar { display: grid; gap: 26px; position: sticky; top: 110px; }
.widget {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.widget__title { font-size: 1.25rem; margin-bottom: 20px; }
.service-list { display: grid; gap: 8px; }
.service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  color: var(--secondary);
  transition: all .25s ease;
}
.service-list a:hover,
.service-list a.active { background: var(--primary); color: var(--white); }
.service-list a.active i,
.service-list a:hover i { color: var(--white); }
.service-list i { color: var(--primary); }
.widget--brochure { background: var(--secondary); text-align: center; }
.widget--brochure h4 { color: var(--white); margin-bottom: 10px; font-size: 1.3rem; }
.widget--brochure p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 20px; }
.widget--quote { background: var(--primary); }
.widget--quote .widget__title { color: var(--white); }
.widget--quote p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 18px; }
.quote-form { display: grid; gap: 14px; }
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.quote-form .btn { justify-content: center; }

@media (max-width: 1024px) {
  .vm-grid, .faq__inner { grid-template-columns: 1fr; gap: 30px; }
  .single__inner { grid-template-columns: 1fr; }
  .single__sidebar { position: static; }
}
@media (max-width: 767px) {
  .page-banner { padding: 55px 0; }
  .health-corner { flex-direction: column; text-align: center; }
}

/* =========================================================
   BLOG (grid + cards)
========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.post-card:hover { transform: translateY(-8px); }
.post-card__media { position: relative; overflow: hidden; }
.post-card__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
}
.post-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta {
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.post-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-card__meta i { color: var(--teal); }
.post-card__body h3 { font-size: 1.2rem; margin-bottom: 12px; line-height: 1.35; }
.post-card__body h3 a { transition: color .2s ease; }
.post-card__body h3 a:hover { color: var(--primary); }
.post-card__body p { font-size: .95rem; margin-bottom: 18px; flex: 1; }

/* =========================================================
   CONTACT
========================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.contact-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.contact-card:hover { transform: translateY(-6px); }
.contact-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 28px;
  margin: 0 auto 22px;
}
.contact-card:hover .contact-card__icon { background: var(--primary); }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.contact-card p { margin: 0; line-height: 1.7; }
.contact__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: var(--shadow);
}
.contact-form { display: grid; gap: 16px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--light);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); background: var(--white); }
.contact-form .btn { justify-content: center; }

/* =========================================================
   MEMBERSHIP
========================================================= */
.memabout__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.memabout__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.cta-band {
  background: var(--teal);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
  max-width: 820px;
  margin: 0 auto;
}

/* =========================================================
   PHARMACIST core values
========================================================= */
.values { background: var(--light); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.value-card__icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 28px;
  margin: 0 auto 22px;
}
.value-card:hover .value-card__icon { background: var(--primary); }
.value-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.value-card p { font-size: .95rem; margin: 0; }

/* =========================================================
   BLOG DETAIL
========================================================= */
.blogdetail__inner {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: start;
}
.article__feature {
  border-radius: var(--radius);
  width: 100%;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}
.article__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: .9rem;
  color: var(--text);
}
.article__meta span { display: inline-flex; align-items: center; gap: 7px; }
.article__meta i { color: var(--teal); }
.article__cat {
  background: var(--primary);
  color: var(--white) !important;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
}
.article h1 { font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem); margin-bottom: 22px; line-height: 1.25; }
.article h2 { font-size: 1.5rem; margin: 30px 0 14px; }
.article p { margin-bottom: 18px; }
.article blockquote {
  border-left: 4px solid var(--teal);
  background: var(--light);
  padding: 24px 28px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--secondary);
  font-size: 1.1rem;
  margin: 26px 0;
}
.article__share {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}
.article__share strong { font-family: var(--font-head); color: var(--secondary); }
.article__share a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 15px;
  transition: all .25s ease;
}
.article__share a:hover { background: var(--primary); color: var(--white); }

/* blog sidebar */
.blog-sidebar { display: grid; gap: 30px; position: sticky; top: 110px; }
.blog-sidebar .widget__title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light);
}
.widget--news { background: var(--primary); text-align: center; }
.widget--news .widget__title { color: var(--white); border-color: rgba(255,255,255,.2); }
.widget--news p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 16px; }
.widget--news form { display: grid; gap: 12px; }
.widget--news input {
  border: none; border-radius: 8px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 15px; outline: none;
}
.widget--news .btn { justify-content: center; }
.latest-posts { display: grid; gap: 18px; }
.latest-post {
  display: flex;
  gap: 14px;
  align-items: center;
}
.latest-post img {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 72px;
}
.latest-post__info span { font-size: .8rem; color: var(--text); display: block; margin-bottom: 4px; }
.latest-post__info a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--secondary);
  line-height: 1.35;
  transition: color .2s ease;
}
.latest-post__info a:hover { color: var(--primary); }
.cat-list { display: grid; gap: 10px; }
.cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--secondary);
  transition: all .25s ease;
}
.cat-list a:hover { background: var(--primary); color: var(--white); }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards, .values__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__main, .memabout__inner { grid-template-columns: 1fr; gap: 40px; }
  .memabout__media { order: -1; }
  .blogdetail__inner { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 767px) {
  .blog-grid, .contact-cards, .values__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   WR-App CMS page-builder wrapper neutralizer.
   PagesClass::PageSections() wraps every plugin in
   <section class="sidebar prt-sidebar-right"><div class="container">
     <div class="row"><div class="col-md-12">...plugin...</div></div></div></section>
   Make that wrapper transparent so each plugin's own <section>/.container
   renders full-bleed exactly like the static Html-Design.
   ============================================================ */
.main > .sidebar.prt-sidebar-right{padding:0!important;margin:0!important;}
.sidebar.prt-sidebar-right > .container{max-width:none!important;width:100%!important;padding:0!important;margin:0!important;}
.sidebar.prt-sidebar-right > .container > .row{margin:0!important;display:block!important;width:100%!important;}
.sidebar.prt-sidebar-right > .container > .row > [class*="col-"]{padding:0!important;margin:0!important;max-width:100%!important;width:100%!important;flex:0 0 100%!important;}
