/* =============================================
   BESSACARR PHARMACY — style.css
   Clean, modern, NHS-inspired design
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --blue-primary: #76A549;
  --blue-dark: #76A549;
  --blue-light: #e8f0fb;
  --blue-mid: #2d7dd2;
  --nhs-blue: #005eb8;
  --accent-teal: #00a499;
  --accent-gold: #f0b429;
  --green: #0e9f6e;
  --red: #dc2626;
  --purple: #7c3aed;

  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-grey: #eef1f6;
  --mid-grey: #111827;
  --dark-grey: #111827;
  --text: #1e2a3a;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(26, 95, 187, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 95, 187, 0.14);
  --shadow-lg: 0 16px 48px rgba(26, 95, 187, 0.18);

  --header-h: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION DEFAULTS ===== */
.section {
  padding: 96px 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section, section[style*="padding: 80px 0"], section[style*="padding: 40px 0 80px 0"] {
    padding: 40px 0 !important;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
  margin-bottom: 12px;
}

.section-title em {
  font-style: italic;
  color: var(--blue-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-grey);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color:#fff !important;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(26, 95, 187, 0.3);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  color:#76A549 !important;
  border:1px solid #76A549;
  box-shadow: 0 8px 20px rgba(26, 95, 187, 0.4);
}

.appointment-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px !important;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(26, 95, 187, 0.3);
}

.appointment-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 95, 187, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: background var(--transition), border-color var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: background var(--transition), border-color var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Top Bar */
.top-bar {
  background: var(--blue-primary);
  /* Green from the button */
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 0;
}

.header .container {
  max-width: 96%;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar .info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}

.top-bar .info-item:hover {
  opacity: 0.9;
}

.top-bar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity var(--transition), background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.top-bar .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin: 0 4px;
}

.header-divider {
  color: var(--border);
  margin: 0 12px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--text);
}

.logo-text em {
  display: block;
  font-style: italic;
  color: var(--blue-primary);
  font-size: 0.85rem;
}

.logo-light .logo-text,
.logo-light .logo-cross {
  color: var(--white);
}

.logo-light .logo-text em {
  color: rgba(255, 255, 255, 0.8);
}

/* Header contact */
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: auto;
}

.header-phone,
.header-email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--dark-grey);
  font-weight: 500;
  transition: color var(--transition);
}

.header-phone {
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.header-phone:hover,
.header-email:hover {
  color: var(--blue-dark);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-desktop a {
  padding: 8px 12px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark-grey);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

@media (min-width:960px) and (max-width:1250px){
  .nav-desktop a {
    font-size: 15px !important;
    padding: 6px 8px !important;
  }

  .header-phone, .header-email {
    font-size: 12px !important;
  }

  .appointment-btn {
    font-size: 15px !important;
    padding: 11px 13px !important;
  }
}

.nav-desktop a:hover {
  color: var(--blue-primary);
  background: var(--blue-light);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 20px !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-light) !important;
  color: var(--blue-primary) !important;
  padding-left: 24px !important;
}

.services-flyout {
  min-width: 235px;
  padding: 18px 0;
  border-radius: 3px;
  overflow: visible;
}

.service-category {
  position: relative;
}

.services-flyout .service-category-link {
  padding: 8px 24px !important;
  color: #000 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.35;
  white-space: nowrap;
}

.services-flyout .service-category:hover>.service-category-link,
.services-flyout .service-category:focus-within>.service-category-link {
  background: #f3f8f2 !important;
  color: var(--blue-primary) !important;
  padding-left: 24px !important;
}

.service-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 265px;
  min-height: 100%;
  padding: 18px 0;
  background: var(--white);
  box-shadow: 12px 14px 28px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 101;
}

.service-category:hover>.service-submenu,
.service-category:focus-within>.service-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.service-submenu a {
  padding: 8px 24px !important;
  color: #000 !important;
  font-size: 0.98rem !important;
  font-weight: 500 !important;
  line-height: 1.35;
}

.service-submenu a:hover {
  background: #f3f8f2 !important;
  color: var(--blue-primary) !important;
  padding-left: 28px !important;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--light-grey);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.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);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--light-grey);
  background: var(--white);
}

.nav-mobile.open {
  display: flex;
  overflow-y: auto;
  max-height: calc(100vh - 76px);
}

/* ===== TRUST (Redesign) ===== */
.trust-new .trust-grid {
  display: grid;
  grid-template-columns: 1fr 420px 260px;
  gap: 32px;
  align-items: start;
}

.trust-new .trust-left {
  padding-right: 8px;
}

.trust-new .trust-lead {
  margin-top: 12px;
  color: var(--mid-grey);
  font-size: 1rem;
}

.trust-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-badges li {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--off-white);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  min-width: 220px;
}

.trust-badges img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 6px;
}

.trust-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.trust-logos img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  background: var(--white);
  padding: 10px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.trust-right .trust-stats {
  display: grid;
  gap: 12px;
}

.trust-right .stat {
  background: linear-gradient(180deg, rgba(118, 165, 73, 0.06), rgba(118, 165, 73, 0.03));
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-primary);
}

.stat-value .muted {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mid-grey);
  margin-left: 6px;
}

.stat-label {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--mid-grey);
}

@media (max-width: 980px) {
  .trust-new .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-right {
    order: 3;
  }
}

@media (max-width: 640px) {
  .trust-new .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-logos img {
    height: 60px;
  }
}

/* ===== TRUST — REFINED PREMIUM (v2) ===== */
/* ===== TRUST — CLEAN PREMIUM (v3) ===== */
.trust-v3 {
  padding: 80px 0;
  background: linear-gradient(180deg, #f7fafc 0%, #f1f5f9 100%);
  color: var(--text);
}

.trust-v3 .trust-v3-inner {
  max-width: 1180px;
  margin: 0 auto;

  gap: 28px;
  align-items: start;
}

/* decorative accent */
.trust-v3 {
  position: relative;
  overflow: visible
}

.trust-decor {
  position: absolute;
  right: -40px;
  top: -40px;
  pointer-events: none;
  opacity: 0.9;
  transform: translateZ(0);
}

/* subtle entrance animations and refinements */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-card {
  animation: fadeUp .6s ease both;
}

.logo-card:nth-child(1) {
  animation-delay: .06s
}

.logo-card:nth-child(2) {
  animation-delay: .12s
}

.logo-card:nth-child(3) {
  animation-delay: .18s
}

.logo-card:nth-child(4) {
  animation-delay: .24s
}

.logo-card:nth-child(5) {
  animation-delay: .30s
}

.logo-card:nth-child(6) {
  animation-delay: .36s
}

.stat {
  animation: fadeUp .6s ease both;
}

.stat:nth-child(1) {
  animation-delay: .08s
}

.stat:nth-child(2) {
  animation-delay: .16s
}

.stat:nth-child(3) {
  animation-delay: .24s
}

/* CTA polish */
.trust-ctas .btn-primary {
  background: linear-gradient(90deg, var(--green), var(--blue-mid));
  box-shadow: 0 12px 30px rgba(74, 163, 255, 0.12);
  border-radius: 12px;
  padding: 12px 20px
}

.trust-ctas .btn-outline {
  border-radius: 12px;
  padding: 12px 18px
}

/* Logo card micro style */
.logo-card {
  transition: transform .28s ease, box-shadow .28s ease;
}

.logo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 40px rgba(23, 43, 77, 0.08)
}

/* Improve pills */
.pill {
  min-width: 140px;
  align-items: flex-start
}

@media (max-width: 640px) {
  .trust-decor {
    display: none
  }
}

.trust-v3 .trust-content {
  padding: 8px 6px
}

.trust-v3 .section-label {
  background: rgba(118, 165, 73, 0.08);
  color: var(--blue-primary);
}

.trust-v3 .section-title {
  color: var(--text);
  font-size: 2rem;
  margin-top: 8px
}

.trust-v3 .section-subtitle {
  color: var(--mid-grey);
  margin-top: 12px;
  font-size: 1rem
}

.trust-ctas {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center
}

.trust-ctas .btn-primary {
  background: linear-gradient(90deg, var(--green), var(--blue-mid));
  color: #fff
}

.trust-ctas .btn-outline {
  background: transparent;
  border: 2px solid rgba(34, 49, 63, 0.06);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--text)
}

.trust-pills {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap
}

.pill {
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 10px;
  /* align-items: center; */
}

.pill svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.pill div {
  display: flex;
  flex-direction: column
}

.pill strong {
  font-weight: 700;
  color: var(--dark-grey)
}

.pill small {
  color: var(--mid-grey);
  font-size: 0.92rem;
}

.trust-panel {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  align-self: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  padding: 18px;
  border-radius: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease
}

.logo-card img {
  /* max-width: 86%; */
  max-height: 100px;
  object-fit: contain;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(23, 43, 77, 0.06)
}

.stats-row {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

.stat {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(118, 165, 73, 0.06), rgba(118, 165, 73, 0.02))
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-primary)
}

.stat-number span {
  font-size: 0.9rem;
  color: var(--mid-grey);
  font-weight: 700;
  margin-left: 6px
}

.stat-label {
  color: var(--mid-grey);
  margin-top: 6px
}

@media (max-width: 980px) {
  .trust-v3 .trust-v3-inner {
    grid-template-columns: 1fr
  }

  .trust-panel {
    align-self: auto
  }
}

@media (max-width: 520px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-v3 .section-title {
    font-size: 1.4rem
  }
}

/* focus states for accessibility */
.btn-primary:focus,
.btn-outline:focus,
.btn-white:focus {
  outline: 3px solid rgba(118, 165, 73, 0.18);
  outline-offset: 4px
}

/* divider above stats */
.logo-grid {
  margin-bottom: 12px
}

.stats-row {
  border-top: 1px solid rgba(23, 43, 77, 0.04);
  padding-top: 12px
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 11px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-grey);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-mobile a:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

.mobile-dropdown {
  border-radius: var(--radius-sm);
}

.mobile-services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--blue-primary);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.mobile-services-toggle:hover {
  background: var(--blue-light);
}

.mobile-services-toggle .dropdown-icon {
  transition: transform var(--transition);
}

.mobile-services-toggle.open .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-services-menu {
  display: none;
  margin: 4px 0 6px 12px;
  padding: 8px 0 8px 14px;
  border-left: 2px solid rgba(118, 165, 73, 0.22);
}

.mobile-services-menu.open {
  display: grid;
  gap: 12px;
}

.mobile-service-group {
  display: grid;
  gap: 2px;
}

.mobile-service-group span,
.mobile-service-group-title {
  padding: 5px 10px;
  color: var(--blue-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-service-group-title {
  border-radius: var(--radius-sm);
}

.mobile-service-group-title:hover {
  background: var(--blue-light);
}

.mobile-service-group a {
  padding: 8px 10px !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
}

.mobile-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--white);
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 30%;
}

.hero-content {
  /* inside bootstrap column — take full width of column */
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 90px 24px 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  /* max-width: 460px; */
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

/* Hero image panel */
.hero-image-panel {
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
}

.hero-image-inner {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  gap: 12px;
  overflow: hidden;
}

.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  /* align-items: center; */
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.card-float-1 {
  bottom: -20px;
  left: -24px;
  animation-delay: 0s;
}

.card-float-2 {
  top: -20px;
  right: -16px;
  animation-delay: 1.5s;
}

.hero-card-float .float-icon {
  font-size: 1.4rem;
}

.hero-card-float .float-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.hero-card-float strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.hero-card-float small {
  font-size: 0.72rem;
  color: var(--mid-grey);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.25s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.55s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 28px 0;
}

@media (max-width: 560px) {
  .trust-inner {
    justify-content: start !important;
  }
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
}

.trust-badge .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge .trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.trust-badge small {
  display: block;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--light-grey);
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--off-white);
  padding-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--light-grey);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--accent-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--icon-color, var(--blue-primary)) 12%, transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--icon-color, var(--blue-primary));
  transition: transform var(--transition);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

/* Hover/focus effect for service titles */
.service-card h3 {
  display: inline-block;
  position: relative;
  transition: color .22s ease, transform .22s ease;
  cursor: pointer;
}

.service-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue-mid));
  border-radius: 3px;
  transition: width .28s cubic-bezier(.2, .9, .2, 1);
}

.service-card h3:hover,
.service-card h3:focus {
  color: var(--blue-primary);
  transform: translateY(-3px);
  outline: none;
}

.service-card h3:hover::after,
.service-card h3:focus::after {
  width: 48px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  gap: 8px;
  color: var(--blue-dark);
}

/* ===== SERVICES — Hover polish ===== */
.service-card {
  transition: transform .34s cubic-bezier(.2, .9, .2, 1), box-shadow .34s cubic-bezier(.2, .9, .2, 1), background .34s ease, border-color .34s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 40px rgba(22, 67, 122, 0.12);
  border-color: rgba(118, 165, 73, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.service-card:focus-within {
  outline: 3px solid rgba(118, 165, 73, 0.08);
  outline-offset: 6px;
}

.service-card .service-icon-wrap {
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}

.service-card:hover .service-icon-wrap {
  transform: translateY(-4px) scale(1.06) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.06);
}

/* Make the 'Learn more' link more prominent on hover */
.service-card .service-link {
  transition: background .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
  padding: 0 4px;
}

.service-card:hover .service-link {
  background: var(--blue-primary);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 10px;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(38, 80, 160, 0.12);
}

/* subtle icon color accent on hover */
.service-card:hover .service-icon-wrap svg {
  filter: drop-shadow(0 6px 12px rgba(46, 125, 210, 0.12));
}

.service-link svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  stroke: currentColor
}

/* ===== NHS & PRIVATE ===== */
.nhs-private-section {
  background: var(--white);
}

.nhs-private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-column {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-grey);
}

.column-header {
  padding: 32px 32px 24px;
}

.nhs-column .column-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--nhs-blue) 100%);
  color: var(--white);
}

.private-column .column-header {
  background: linear-gradient(135deg, #1e1b4b 0%, var(--purple) 100%);
  color: var(--white);
}

.col-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nhs-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.private-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.column-header h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.column-header p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.service-list {
  padding: 24px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid var(--light-grey);
  border-radius: 10px;
  transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s cubic-bezier(.2, .9, .2, 1), background .28s ease;
  will-change: transform, box-shadow, background;
  position: relative;
  overflow: visible;
}

.service-list li:last-child {
  border-bottom: none;
}

.list-icon {
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.list-icon svg {
  width: 12px;
  height: 12px;
}

/* Hover/focus for NHS & Private service items */
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(45, 125, 210, 0.95), rgba(118, 165, 73, 0.95));
  transition: width .32s cubic-bezier(.2, .9, .2, 1), opacity .2s ease;
  opacity: 0;
}

.service-list li:hover::before,
.service-list li:focus::before {
  width: 6px;
  opacity: 1;
}

.service-list li:hover,
.service-list li:focus {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 52, 100, 0.1);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.8), rgba(245, 248, 251, 0.6));
  outline: none;
}

.service-list li:focus {
  box-shadow: 0 22px 48px rgba(16, 52, 100, 0.14);
}

.service-list li .list-icon {
  transition: transform .28s cubic-bezier(.2, .9, .2, 1), filter .28s ease
}

.service-list li:hover .list-icon,
.service-list li:focus .list-icon {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 12px 24px rgba(46, 125, 210, 0.09));
}

/* small arrow bounce for the inline arrow inside service link (if present) */
.service-link svg {
  transition: transform .28s cubic-bezier(.2, .9, .2, 1), opacity .28s ease;
}

.service-list li:hover .service-link svg,
.service-list li:focus .service-link svg {
  transform: translateX(6px);
  opacity: 1;
}

.private-icon {
  background: #ede9fe;
  color: var(--purple);
}

.service-list li strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.service-list li small {
  font-size: 0.78rem;
  color: var(--mid-grey);
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--blue-light) 0%, #dce9fb 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: var(--mid-grey);
  font-size: 0.85rem;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-years-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-years-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}

.about-years-badge span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.about-content .section-label {
  margin-bottom: 8px;
}

.about-content .section-title {
  text-align: left;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.6;
  text-align: justify;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--dark-grey);
  margin-bottom: 12px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 24px 0 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  background: var(--white);
}

.af-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-icon svg {
  width: 18px;
  height: 18px;
}

.about-feature strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
}

.about-feature small {
  font-size: 0.8rem;
  color: var(--mid-grey);
  line-height: 1.45;
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #F7F9FC;
  overflow: hidden;
}

.testimonials-section .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-section .section-title {
  color: #0A2F84;
}

.testimonials-section .section-subtitle {
  color: #0A2F84;
}

.testimonials-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  position: relative;
}

.testi-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testi-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testi-author small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.testi-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Large-screen: show 2 testimonial cards per view */
@media (min-width: 992px)  {
  .testimonials-wrapper {
    max-width: 1100px;
  }

  .testimonials-track {
    gap: 24px;
  }

  .testimonial-card {
    min-width: 50%;
    padding: 36px 40px;
  }

  .testi-text {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .testimonials-wrapper {
    padding: 0 12px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testi-text {
    font-size: 1rem;
  }

  .testi-controls {
    margin-top: 20px;
  }
}

/* ===== BOOKING CTA ===== */
.booking-cta-section {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-mid) 100%);
  padding: 72px 0;
}

.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}

.booking-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 500px;
}

.booking-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-hours span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.booking-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BLOG ===== */
.blog-section {
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-img-placeholder {
  /* height: 180px; */
  background: linear-gradient(135deg, var(--blue-light), #dce9fb);
  display: block;
  overflow: hidden;
  position: relative;
}

.blog-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 0.87rem;
  color: var(--mid-grey);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
/* ===== FAQ SECTION ===== */
.faq-section {
  background: linear-gradient(135deg, #f5f8fb 0%, #f9fbfc 50%, #f0f5fa 100%);
  padding: 96px 0;
}

.faq-inner {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: 0 6px 28px rgba(26, 95, 187, 0.1);
  border: 1px solid rgba(118, 165, 73, 0.15);
}

.faq-inner .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-inner .section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.faq-inner .section-header p {
  color: var(--mid-grey);
  font-size: 1rem;
  margin-top: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}

.faq-item:hover {
  border-color: rgba(118, 165, 73, 0.3);
  box-shadow: 0 4px 12px rgba(118, 165, 73, 0.08);
}

.faq-item.open {
  border-color: var(--blue-primary);
  box-shadow: 0 6px 16px rgba(118, 165, 73, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 0.99rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  background: var(--white);
  transition: all var(--transition);
  gap: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.faq-question:hover {
  background: rgba(118, 165, 73, 0.04);
  color: var(--blue-primary);
}

.faq-question:active {
  transform: translateY(0);
}

.faq-item.open .faq-question {
  background: linear-gradient(135deg, rgba(118, 165, 73, 0.08) 0%, rgba(118, 165, 73, 0.04) 100%);
  color: var(--blue-primary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-chevron {
  font-size: 1.2rem;
  color: var(--blue-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  opacity: 0.7;
}

.faq-question:hover .faq-chevron {
  opacity: 1;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  background: rgba(118, 165, 73, 0.02);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--dark-grey);
  line-height: 1.8;
  margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-inner {
    padding: 40px 28px;
    margin: 0 auto;
  }

  .faq-inner .section-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 64px 0;
  }

  .faq-inner {
    padding: 28px 18px;
  }

  .faq-inner .section-header h2 {
    font-size: 1.5rem;
  }

  .faq-inner .section-header p {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 16px 16px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-chevron {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  display: block;
}

.contact-card {
  background: var(--white);
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(24, 38, 78, 0.06);
  border: 1px solid rgba(10, 32, 96, 0.04);
  width: 100%;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-row {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 30px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.hours-day {
  font-weight: 600;
  color: var(--mid-grey);
}

.hours-time {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-time svg {
  color: var(--blue-primary);
}

.hours-row.closed .hours-time {
  color: var(--red);
  font-weight: 700;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--blue-light), rgba(26, 107, 187, 0.06));
  border-radius: 10px;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-block strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--mid-grey);
  margin-bottom: 6px;
}

.contact-block p,
.contact-block a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-block a:hover {
  color: var(--blue-primary);
  text-decoration: underline;
}

.directions-btn {
  margin-top: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Enhanced Contact Card - premium, readable layout */
.contact-card {
  padding: 28px 26px;
  border-left: 6px solid rgba(118, 165, 73, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(24, 38, 78, 0.08);
}

.contact-card .contact-block {
  padding: 12px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px dashed rgba(10, 32, 96, 0.03);
}

.contact-card .contact-block:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--blue-primary) 8%, transparent);
  box-shadow: 0 6px 18px rgba(26, 107, 187, 0.06);
  flex-shrink: 0;
}

.contact-block strong {
  font-size: 1rem;
  color: var(--dark-grey);
  font-weight: 800;
  margin-bottom: 6px;
}

.hours-table {
  margin-top: 6px;
}

.hours-panel {
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(10, 32, 96, 0.03);
  box-shadow: var(--shadow-sm);
}

.hours-row {
  padding: 6px 0;
}

.directions-btn {
  margin-top: 14px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(118, 165, 73, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(118, 165, 73, 0.16);
}

.directions-btn svg {
  stroke: currentColor;
}

/* Make content flow nicely in the card */
.contact-card .contact-block>div:last-child {
  flex: 1;
}

@media (max-width: 1024px) {
  .contact-card {
    padding: 20px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }
}

/* Make sure the contact map and card visually match and the left card uses full column width */
.contact-map {
  align-self: stretch;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(17, 38, 88, 0.06);
}

.contact-card .contact-block>div:last-child {
  flex: 1;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-map iframe {
    min-height: 260px;
  }
}

/* ===== TRUST SHOWCASE (new) ===== */
.trust-showcase {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--blue-primary) 28%, #f3f7f6) 0%, color-mix(in srgb, var(--green) 10%, #eaf6ef) 100%);
  overflow: hidden;
}

.trust-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 45, 25, 0.06) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}

.trust-showcase .section-header {
  color: rgba(17, 34, 20, 0.98);
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-showcase .section-subtitle {
  color: rgba(34, 56, 40, 0.75);
  margin-top: 6px;
}

.trust-showcase-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}

.trust-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  color: var(--text);
  padding: 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(8, 20, 12, 0.06);
  border: 1px solid rgba(10, 32, 96, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(8, 20, 12, 0.12);
  border-color: rgba(118, 165, 73, 0.12);
}

.trust-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 14px;
}

.trust-card-img img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff, #f7f9f7);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(20, 60, 30, 0.04);
}

.trust-card h3 {
  color: var(--dark-grey);
  font-size: 1.06rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.trust-card p {
  color: var(--mid-grey);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 900px) {
  .trust-showcase-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-showcase-inner {
    grid-template-columns: 1fr;
  }

  .trust-showcase {
    padding: 36px 0;
  }
}

/* ===== FOOTER ===== */
.footer {
  /* background: var(--text); */
  background-color: #527a6d;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 40px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 280px;
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--blue-primary);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #fff;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-hours li {
  font-size: 0.85rem;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 800px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}

.cookie-popup.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(118, 165, 73, 0.06), rgba(45, 125, 210, 0.04));
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 0.83rem;
  color: var(--mid-grey);
}

.cookie-text a {
  color: var(--blue-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-reject {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 600;
  background: var(--light-grey);
  color: var(--dark-grey);
  transition: background var(--transition);
}

.btn-cookie-reject:hover {
  background: #dde3ee;
}

.btn-cookie-accept {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 600;
  background: var(--blue-primary);
  color: var(--white);
  transition: background var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--blue-dark);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.sticky-call,
.sticky-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.sticky-call {
  background: var(--light-grey);
  color: var(--text);
}

.sticky-book {
  background: var(--blue-primary);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid .blog-card:last-child {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-image-panel {
    flex: 0 0 360px;
  }
}

@media (max-width: 900px) {
  .nhs-private-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 420px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 40px;
  }

  .hero-image-panel {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 24px 60px;
  }

  .booking-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .booking-hours {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .header-right>.btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  :root {
    --header-h: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid .blog-card:last-child {
    display: block;
  }

  .trust-inner {
    gap: 0;
  }

  .trust-badge {
    padding: 10px 16px;
  }

  .trust-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .testimonial-card {
    padding: 32px 24px;
    margin: 8px;
  }
}

/* Footer NHS logo */
.footer-nhs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  /* background: #072a5b; */
  padding: 8px 12px;
  /* border-radius: 6px; */
}

.footer-nhs-logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-block;
  max-width: 140px;
  height: auto;
}

.footer-nhs-text {
  color: #76a549;
  font-weight: 600;
  font-size: 19px;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .about-features {
    grid-template-columns: 1fr;
    padding-left: 0px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta-actions {
    flex-direction: column;
  }

  .booking-cta-actions a {
    text-align: center;
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-reject {
    flex: 1;
    justify-content: center;
  }

  .about-years-badge {
    right: 0;
  }
}

/* ===== BOOKING FORM SECTION ===== */
.booking-form-section {
  background: linear-gradient(135deg, #dfe9f5 0%, #e8f1f8 25%, #f0f6fa 50%, #e9f2f8 75%, #dfe9f5 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(118, 165, 73, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(26, 95, 187, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.booking-form-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(118, 165, 73, 0.15);
  border: 1px solid rgba(118, 165, 73, 0.1);
}

.booking-form-left {
  background: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-form-header {
  margin-bottom: 32px;
}

.booking-form-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(118, 165, 73, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.booking-form-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.booking-form-header p {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-icon {
  display: inline-block;
  margin-right: 8px;
  color: var(--blue-primary);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  background: #fafbfc;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder {
  color: var(--mid-grey);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(118, 165, 73, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233d4a5c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.btn-booking-submit {
  padding: 14px 28px;
  background: var(--blue-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(118, 165, 73, 0.3);
  margin-top: 12px;
}

.btn-booking-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(118, 165, 73, 0.4);
}

.btn-booking-submit:active {
  transform: translateY(0);
}

.booking-form-right {
  overflow: hidden;
  background: #f5f8fb;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.booking-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RESPONSIVE BOOKING FORM ===== */
@media (max-width: 1024px) {
  .booking-form-section {
    padding: 60px 0;
  }

  .booking-form-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form-left {
    padding: 48px 40px;
  }

  .booking-form-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .booking-form-section {
    padding: 48px 0;
  }

  .booking-form-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form-left {
    padding: 36px 24px;
  }

  .booking-form-header h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .booking-form-left {
    padding: 24px 16px;
  }

  .booking-form-header h2 {
    font-size: 1.3rem;
  }

  .booking-form-header p {
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select {
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .btn-booking-submit {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

a {
  text-decoration: none !important;
}

/* ===== CONTACT PAGE ===== */
.contact-page-main {
  padding-top: calc(var(--header-h) + 0px);
}

.contact-page-banner {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background: linear-gradient(135deg, #f4faef 0%, #e9f2fb 50%, #ffffff 100%);
  border-bottom: 1px solid var(--light-grey);
}

.contact-page-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: center;
}

.contact-page-banner-inner {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.contact-page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 14px;
}

.contact-page-banner p {
  margin: 0;
  max-width: 680px;
  color: var(--mid-grey);
  font-size: 1.05rem;
}

.contact-banner-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 45, 92, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.92);
}

.contact-banner-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 320px;
  object-fit: cover;
}

.banner-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.7;
}

.banner-shape-1 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(118, 165, 73, 0.24) 0%, rgba(118, 165, 73, 0) 70%);
  top: -90px;
  right: 8%;
}

.banner-shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(45, 125, 210, 0.2) 0%, rgba(45, 125, 210, 0) 70%);
  bottom: -140px;
  right: -40px;
}

.contact-form-section {
  padding-top: 84px;
  padding-bottom: 84px;
  background: var(--off-white);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(24, 38, 78, 0.1);
  border: 1px solid #e1e8f2;
}

.contact-form-card-head {
  margin-bottom: 18px;
}

.contact-form-card-head h3 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  margin-bottom: 8px;
}

.contact-form-card-head p {
  color: var(--mid-grey);
  margin: 0;
}

.contact-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-enquiry-form .form-group {
  margin-bottom: 0;
}

.contact-enquiry-form .form-group label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-grey);
}

.contact-enquiry-form .form-group input,
.contact-enquiry-form .form-group select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #d9e2ef;
  border-radius: 12px;
  font-size: 0.94rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-enquiry-form .form-group input:focus,
.contact-enquiry-form .form-group select:focus {
  outline: none;
  border-color: rgba(45, 125, 210, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 125, 210, 0.12);
}

.contact-enquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #d9e2ef;
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  resize: vertical;
  min-height: 140px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-enquiry-form textarea:focus {
  outline: none;
  border-color: rgba(45, 125, 210, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 125, 210, 0.12);
}

.form-group-full {
  width: 100%;
}

.contact-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.contact-consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-primary);
  flex-shrink: 0;
}

.contact-consent-row label {
  font-size: 0.92rem;
  color: var(--dark-grey);
  line-height: 1.5;
}

.contact-submit-btn {
  margin-top: 4px;
  border: 0;
  min-width: 140px;
  justify-content: center;
}

.contact-map-section {
  padding-top: 84px;
  background: var(--white);
}

@media (max-width: 991px) {
  .contact-page-main {
    padding-top: calc(var(--header-h) + 14px);
  }

  .contact-page-banner {
    padding: 78px 0 64px;
  }

  .contact-page-banner-grid {
    grid-template-columns: 1fr;
  }

  .contact-banner-image {
    max-width: 560px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .contact-page-banner {
    padding: 64px 0 54px;
  }

  .contact-page-banner p {
    font-size: 0.97rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section,
  .contact-map-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .contact-form-card {
    padding: 18px;
  }

  .contact-consent-row label {
    font-size: 0.88rem;
  }
}

.why-modern {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef7f2, #f4fbf8);
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.why-label {
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.why-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f3d2b;
  margin-bottom: 15px;
}

.why-content h2 span {
  color: #2e7d32;
}

.why-content p {
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.why-list li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #1f3d2b;
  font-size: 15px;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #76A549, #2d7dd2);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.why-list li:hover::before {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

/* BUTTON */
.why-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.why-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* IMAGE */
.why-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .9, .2, 1), box-shadow 0.45s ease;
  will-change: transform;
}

.why-image img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-content {
    text-align: center;
  }

  .why-list {
    text-align: left;
    display: inline-block;
  }

  .why-list li {
    padding-left: 28px;
  }

  .why-list li::before {
    position: absolute;
    margin-right: 0;
  }
}

.about-text p {
  text-align: justify;
}


/* About Page Specific Styles */

/* Hero Banner Section */
.about-page .about-hero {
  position: relative;
  height: 500px;
  margin-top: 76px;
  overflow: hidden;
}

.about-page .about-hero .hero-img {
  width: 100%;
  height: 100%;
}

.about-page .about-hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for readability */
.about-page .about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.about-page .about-hero .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.about-page .about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.about-page .about-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
}

/* About Section */
.about-page .about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7f3 100%);
}

.about-page .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page .about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text);
  margin-bottom: 20px;
}

.about-page .about-text h2 em {
  color: var(--blue-primary);
  font-style: italic;
}

.about-page .about-text p {
  color: var(--mid-grey);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-page .about-image {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission, Vision, Values Section - Modern Design */
.mission-vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f7f3 0%, #f5f0fb 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118, 165, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mission-vision-section::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 125, 210, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.mvv-card {
  background: var(--white);
  padding: 20px 25px;
  border-left: 6px solid var(--blue-primary);
  box-shadow: 0 4px 20px rgba(118, 165, 73, 0.1);
  text-align: left;
  transition: all var(--transition);
  position: relative;
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.mvv-card:nth-child(1) {
  border-left-color: #76A549;
  background: linear-gradient(to right, rgba(118, 165, 73, 0.02) 0%, white 25%);
  margin-bottom: 30px;
  border-radius: 20px;
}

.mvv-card:nth-child(2) {
  border-left-color: #2d7dd2;
  background: linear-gradient(to right, rgba(45, 125, 210, 0.02) 0%, white 25%);
  margin-bottom: 30px;
  border-radius: 20px;
}

.mvv-card:nth-child(3) {
  border-left-color: #f0b429;
  background: linear-gradient(to right, rgba(240, 180, 41, 0.02) 0%, white 25%);
  border-radius: 20px;
}

.mvv-card:hover {
  transform: translateX(12px);
  box-shadow: 0 12px 40px rgba(118, 165, 73, 0.18);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.mvv-card:nth-child(1) .mvv-icon {
  background: linear-gradient(135deg, #76A549, #5a8337);
  box-shadow: 0 10px 30px rgba(118, 165, 73, 0.35);
}

.mvv-card:nth-child(2) .mvv-icon {
  background: linear-gradient(135deg, #2d7dd2, #1e5ab3);
  box-shadow: 0 10px 30px rgba(45, 125, 210, 0.35);
}

.mvv-card:nth-child(3) .mvv-icon {
  background: linear-gradient(135deg, #f0b429, #d99e0a);
  box-shadow: 0 10px 30px rgba(240, 180, 41, 0.35);
}

.mvv-icon svg {
  width: 55px;
  height: 55px;
  stroke: none;
  fill: white;
}

/* icon and card micro-interactions */
.mvv-icon {
  transition: transform 0.36s cubic-bezier(.2, .9, .2, 1), box-shadow 0.36s ease;
}

.mvv-card:hover .mvv-icon {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.mvv-content {
  flex: 1;
  padding-top: 8px;
}

.mvv-card h3 {
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 700;
}

.mvv-card p {
  color: var(--mid-grey);
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-page .about-hero {
    height: 350px;
    margin-top: 76px;
  }

  .about-page .about-hero h1 {
    margin-bottom: 12px;
  }

  .about-page .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page .about-image {
    height: 300px;
  }

  .mvv-card {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    padding: 35px 30px;
  }

  .mvv-content {
    width: 100%;
    padding-top: 0;
  }

  .mvv-icon {
    width: 90px;
    height: 90px;
  }

  .mvv-icon svg {
    width: 45px;
    height: 45px;
  }

  .mvv-grid {
    gap: 20px;
  }



  .section {
    padding: 60px 0;
  }

  .about-page .about-section,
  .about-page .mission-vision-section {
    padding: 60px 0;
  }

}


@media (max-width: 480px) {
  .about-page .about-hero {
    height: 280px;
    margin-top: 76px;
  }

  .about-page .about-hero h1 {
    margin-bottom: 10px;
  }

  .about-page .about-text h2 {
    margin-bottom: 16px;
  }

  .about-page .about-image {
    height: 250px;
  }

  .mvv-card {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    border-left: 4px solid;
  }

  .mvv-icon {
    width: 75px;
    height: 75px;
  }

  .mvv-icon svg {
    width: 38px;
    height: 38px;
  }

  .mvv-grid {
    gap: 16px;
    margin-bottom: 0;
  }

  .mvv-card:nth-child(1),
  .mvv-card:nth-child(2) {
    margin-bottom: 0;
  }


  .about-section,
  .mission-vision-section {
    padding: 40px 0;
  }
}

.error {
  color: red !important;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-page-main {
  padding-top: var(--header-h);
}

.thankyou-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.thankyou-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thankyou-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 30, 44, 0.84) 0%, rgba(17, 30, 44, 0.58) 55%, rgba(17, 30, 44, 0.3) 100%);
}

.thankyou-banner .container {
  position: relative;
  z-index: 1;
}

.thankyou-banner-content {
  max-width: 640px;
  color: var(--white);
}

.thankyou-banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 8px;
}

.thankyou-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

.thankyou-breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.thankyou-breadcrumb a:hover {
  text-decoration: underline;
}

.thankyou-breadcrumb span {
  color: rgba(255, 255, 255, 0.84);
}

.thankyou-message-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.thankyou-message-full {
  width: 100%;
  background: var(--white);
  border-top: 1px solid #d8e5f6;
  border-bottom: 1px solid #d8e5f6;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 60px);
}

.thankyou-message-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 14px;
  text-align: center;
}

.thankyou-message-text p {
  font-size: 1rem;
  color: var(--dark-grey);
  margin: 0 auto;
  max-width: 82ch;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 991px) {
  .thankyou-banner {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .thankyou-banner {
    min-height: 260px;
  }

  .thankyou-breadcrumb {
    font-size: 0.95rem;
  }
}


.services-scroll {
  max-height: 300px;
  overflow-y: auto;
}

/* Optional: nice scrollbar */
.services-scroll::-webkit-scrollbar {
  width: 6px;
}

.services-scroll::-webkit-scrollbar-thumb {
  background: #00a499;
  border-radius: 10px;
}

/* Site-wide readability adjustments */
p,
li {
  font-size: 1rem;
}

small,
.section-subtitle,
.service-card p,
.about-lead,
.text-justify,
.contact-form-card-head p,
.booking-help-card p {
  color: #111827 !important;
}

.btn-primary,
.btn-outline,
.btn-white,
.btn-outline-white,
.btn-lg,
.contact-submit-btn,
.btn-booking-submit,
.service-link,
.why-btn,
.sticky-book {
  font-size: calc(1em + 2px);
}
/* Section */
.vaccines-section{
    padding: 70px 0;
}

/* Grid */
.vaccines-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 45px;
}

/* Card */
.vaccine-card{
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 18px;
    padding: 20px !important;
    transition: .3s ease;
}

.vaccine-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

/* Icon */
.vaccine-icon{
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eef8f1;
    color: #3cab4a;
    margin-bottom: 18px;
}

/* Heading */
.vaccine-card h3{
    font-size: 22px;
    font-weight: 700;
    color: #1b2140;
    margin: 0 0 12px;
}

/* Paragraph */
.vaccine-card p{
    color: #666;
    line-height: 1.7;
    margin: 0 0 16px;
}

/* List */
.vaccine-card ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List Items */
.vaccine-card ul li{
    position: relative;
    padding: 4px 0 4px 22px;   /* reduced padding */
    margin: 6px 0;             /* reduced spacing */
    line-height: 1.5;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* Custom Bullet */
.vaccine-card ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    color: #3cab4a;
    font-weight: 700;
    font-size: 15px;
}
.contact-info-box{
    background:#fff;
    border-radius:20px;
    padding:10px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Watermark Icon */


.contact-row{
    display:flex;
    align-items:flex-start;
    gap:5px;
    padding:8px 0;
    padding-left:2px;
}

.contact-row:not(:last-child){
    border-bottom:1px solid #eee;
}

.contact-icon{
    width:25px;
    height:25px;
    background:#f4f8ff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1f5eff;
    font-size:14px;
    flex-shrink:0;
}

.contact-content h4{
    font-size:15px;
    font-weight:700;
    color:#13294b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-content p,
.contact-content a{
    color:#555;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
}

.contact-content a:hover{
    color:#1f5eff;
}

@media(max-width:768px){
    .contact-info-box{
        padding:20px;
    }

    .contact-content h4{
        font-size:18px;
    }

    .contact-content p,
    .contact-content a{
        font-size:15px;
    }
}
.pharma{
    color: #0A2F84; /* Cyan */
    font-weight: 700;
    font-size: 16px;
}

.escalator{
    color:#000; /* Blue */
        font-size: 16px;
            font-weight: 700;


}



/* now */

/* ==========================
   Top Header
========================== */

.header-top{
    background:#76A549;
    color:#fff;
    font-size:14px;
}

.header-top-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:48px;
    gap:20px;
}

.top-left{
    display:flex;
    align-items:center;
}

.top-left span{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
}

.top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-right a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.top-right a:hover{
    color:#d6f4e7;
}

.top-social{
    display:flex;
    align-items:center;
    gap:10px;
}

.top-social a{
    width:34px;
    height:34px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.top-social a:hover{
    background:#fff;
    color:#1f5a4d;
}
@media (max-width: 991px) {
    .header-top {
        display: none;
    }
}
.staff-login-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 18px;
    background:#232E3E;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    border-radius:8px;
    transition:all .3s ease;
    line-height:1;
   
}

.staff-login-btn i{
    font-size:18px;
}

.staff-login-btn:hover{
    background:#79c20f;
    color:#fff;
    transform:translateY(-2px);
}
@media (max-width: 991.98px) {
    .header-right .appointment-btn {
        display: none;
    }
}
.intro-image::after{
  background: none !important;
}