/* ============================================
   ST MAWES PHARMACY — Design System
   Inspired by Kingsley Muti aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --green-900: #1a3533;
  --green-800: #2a4f4c;
  --green-700: #3a7a75;
  --green-600: #4F9A94;
  --green-500: #65aba5;
  --green-400: #7fbdb8;
  --green-300: #a3d4d0;
  --green-100: #d5edeb;
  --green-50: #edf7f6;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #3A2F2B;
  --gray-900: #3A2F2B;

  --gold: #f59e0b;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--green-800);
  color: var(--white);
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.top-bar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__phone {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-bar__phone a:hover {
  color: var(--green-300);
}

/* --- Header / Navbar --- */
.navbar {
  background: var(--green-900);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.navbar__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__link {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar__cta {
  background: var(--green-600);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  font-size: 0.875rem !important;
  letter-spacing: 0.01em;
}

.navbar__cta:hover {
  background: var(--green-500) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle svg {
  width: 28px;
  height: 28px;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: 3rem;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero__title em {
  color: var(--green-600);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero__text {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder {
  text-align: center;
  color: var(--green-700);
  padding: 40px;
}

.hero__image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.hero__image-placeholder span {
  display: block;
  font-size: 0.875rem;
  opacity: 0.6;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero__trust-stars {
  color: var(--gold);
  display: flex;
  gap: 2px;
}

.hero__trust-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero__trust-text {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}

.btn--outline:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-800);
}

.btn--white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* --- Category Cards (below hero) --- */
.category-cards {
  padding: 0 0 60px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.category-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
}

.category-card:nth-child(2) .category-card__bg {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
}

.category-card:nth-child(3) .category-card__bg {
  background: linear-gradient(135deg, #5b2c6f 0%, #341a40 100%);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--white);
  z-index: 1;
}

.category-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  backdrop-filter: blur(4px);
}

.category-card__icon svg {
  width: 18px;
  height: 18px;
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.category-card__desc {
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* --- Green Banner --- */
.green-banner {
  background: var(--green-600);
  padding: 32px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.green-banner::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -10%;
  width: 120%;
  height: 300%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.green-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  position: relative;
}

.green-banner h2 strong {
  font-weight: 400;
}

.green-banner__subtitle {
  font-size: 0.9375rem;
  opacity: 0.9;
  position: relative;
}

/* --- "How It Works" Section --- */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--gray-900);
}

.section-header p {
  color: var(--gray-500);
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1.0625rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: var(--green-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card__number {
  width: 48px;
  height: 48px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.step-card__icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-700);
}

.step-card__icon svg {
  width: 28px;
  height: 28px;
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Services Section --- */
.services-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.service-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card__image-icon {
  width: 56px;
  height: 56px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-card__image-icon svg {
  width: 28px;
  height: 28px;
}

.service-card__body {
  padding: 20px;
}

.service-card__title {
  font-size: 1.0625rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.service-card__link {
  font-size: 0.8125rem;
  color: var(--green-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link:hover {
  color: var(--green-700);
  gap: 8px;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
}

/* --- Team Section --- */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-200, #a7f3d0), var(--green-100));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 3rem;
}

.team-card__info h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.team-card__role {
  color: var(--green-600);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: block;
}

.team-card__bio {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Reviews Section --- */
.reviews-section {
  padding: 80px 0;
  background: var(--green-900);
  color: var(--white);
}

.reviews-section .section-header h2 {
  color: var(--white);
}

.reviews-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}

.review-card__stars {
  color: var(--gold);
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 16px;
}

.review-card__author {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--green-300);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--green-700);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--green-600);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- NHS Banner --- */
.nhs-banner {
  background: #005eb8;
  padding: 40px 0;
  color: var(--white);
}

.nhs-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nhs-banner__content {
  max-width: 600px;
}

.nhs-banner h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.nhs-banner p {
  opacity: 0.9;
  font-size: 1rem;
}

.nhs-logo-svg {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__brand img {
  height: 40px;
}

.footer__brand-name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--green-400);
}

.footer__hours-table {
  font-size: 0.8125rem;
  width: 100%;
}

.footer__hours-table tr {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.footer__hours-table td:first-child {
  opacity: 0.7;
}

.footer__hours-table td:last-child {
  font-weight: 500;
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover {
  opacity: 1;
  color: var(--green-400);
}

.footer__gphc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-top: 8px;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  padding: 60px 0 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header__breadcrumb {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-bottom: 12px;
}

.page-header__breadcrumb a {
  opacity: 0.8;
}

.page-header__breadcrumb a:hover {
  opacity: 1;
  color: var(--green-300);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  position: relative;
}

.page-header p {
  font-size: 1.0625rem;
  opacity: 0.8;
  max-width: 600px;
  position: relative;
}

/* --- Services Page Grid --- */
.services-page {
  padding: 60px 0 80px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-page-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.service-page-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-page-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 16px;
}

.service-page-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-page-card h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-page-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.service-page-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.service-page-card__tag--nhs {
  background: #e0f0ff;
  color: #005eb8;
}

.service-page-card__tag--private {
  background: #fef3c7;
  color: #92400e;
}

.service-page-card__tag--free {
  background: var(--green-100);
  color: var(--green-700);
}

/* --- Pharmacy First Page --- */
.pf-hero {
  background: linear-gradient(135deg, #005eb8 0%, #003a7a 100%);
  padding: 60px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pf-hero::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.pf-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pf-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.pf-hero p {
  font-size: 1.0625rem;
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
}

.pf-conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}

.pf-condition {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.pf-condition:hover {
  background: rgba(255,255,255,0.15);
}

.pf-condition__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-condition__icon svg {
  width: 18px;
  height: 18px;
}

.pf-condition__name {
  font-weight: 600;
  font-size: 0.875rem;
}

.pf-benefits {
  padding: 80px 0;
}

.pf-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pf-benefit {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
}

.pf-benefit__icon {
  width: 56px;
  height: 56px;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pf-benefit__icon svg {
  width: 24px;
  height: 24px;
}

.pf-benefit h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.pf-benefit p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Contact Page --- */
.contact-section {
  padding: 60px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h3 {
  font-size: 1.375rem;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--green-700);
}

.contact-detail__value a:hover {
  color: var(--green-600);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.contact-hours-grid {
  margin-top: 40px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.hours-table thead {
  background: var(--green-800);
  color: var(--white);
}

.hours-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-table td {
  padding: 12px 20px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--gray-100);
}

.hours-table tr:nth-child(even) {
  background: var(--gray-50);
}

.hours-table .closed {
  color: #dc2626;
  font-weight: 600;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar__left {
    display: none;
  }

  .navbar__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green-900);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .navbar__nav.active {
    display: flex;
  }

  .navbar__toggle {
    display: block;
  }

  .navbar__link {
    padding: 12px 16px;
    width: 100%;
  }

  .navbar__cta {
    margin-left: 0;
    text-align: center;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__image {
    max-height: 300px;
  }

  .category-cards__grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pf-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pf-conditions {
    grid-template-columns: 1fr;
  }

  .pf-benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nhs-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
