/* ============================================================
   Physeo Custom — Design System & Stylesheet
   Palette: primary #1F3D3F, secondary #33A9B1, tertiary #F1F0F0,
            body-bg #DEE8DE, body-text #4D4D4D, alternate #1C1C1C
   ============================================================ */

:root {
	/* Colors */
	--pc-primary:      #1F3D3F;
	--pc-primary-rgb:  31, 61, 63;
	--pc-secondary:    #33A9B1;
	--pc-secondary-rgb: 51, 169, 177;
	--pc-tertiary:     #F1F0F0;
	--pc-body-bg:      #DEE8DE;
	--pc-body-text:    #4D4D4D;
	--pc-alternate:    #1C1C1C;
	--pc-white:        #ffffff;
	--pc-grey:         #8F9998;
	--pc-border:       rgba(77, 77, 77, 0.18);

	/* Fonts */
	--pc-font-heading: 'Marcellus', serif;
	--pc-font-body:    'Lato', sans-serif;

	/* Typography */
	--pc-h1: clamp(2.4rem, 1.8rem + 2.4vw, 3.8rem);       /* 38-60px */
	--pc-h2: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);       /* 28-42px */
	--pc-h3: clamp(1.3rem, 1.15rem + 0.6vw, 1.8rem);      /* 21-28px */
	--pc-h4: clamp(1.1rem, 1.02rem + 0.3vw, 1.35rem);     /* 18-22px */
	--pc-h5: clamp(0.98rem, 0.94rem + 0.18vw, 1.1rem);    /* 16-18px */
	--pc-base: 16px;

	/* Radius */
	--pc-r1: 10px;
	--pc-r2: 24px;
	--pc-r3: clamp(1.25rem, 1rem + 1.2vw, 2.5rem);
	--pc-radius-btn: 2.5em;

	/* Spacing */
	--pc-section-pad: clamp(3.8rem, 2.5rem + 3.8vw, 6rem);
	--pc-container: 1320px;

	/* Shadows & transitions */
	--pc-shadow: 0 20px 50px -20px rgba(var(--pc-primary-rgb), 0.28);
	--pc-shadow-sm: 0 8px 24px -6px rgba(var(--pc-primary-rgb), 0.14);
	--pc-shadow-lg: 0 30px 70px -20px rgba(var(--pc-primary-rgb), 0.38);
	--pc-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; width: 100%; }

body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 100%;
	background-color: var(--pc-body-bg);
	color: var(--pc-body-text);
	font-family: var(--pc-font-body);
	font-size: var(--pc-base);
	line-height: 1.7;
	font-weight: 400;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pc-font-heading);
	color: var(--pc-primary);
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 0.55em;
	text-transform: capitalize;
}
h1 { font-size: var(--pc-h1); }
h2 { font-size: var(--pc-h2); }
h3 { font-size: var(--pc-h3); }
h4 { font-size: var(--pc-h4); }
h5 { font-size: var(--pc-h5); }
h6 { font-size: 13.5px; letter-spacing: 1.5px; text-transform: uppercase; }

p { margin: 0 0 1.2em; }
a { color: var(--pc-secondary); text-decoration: none; transition: var(--pc-transition); }
a:hover { color: var(--pc-primary); }

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

.physics-container {
	max-width: var(--pc-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
	box-sizing: border-box;
}
.physics-container-wide {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
	box-sizing: border-box;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* ---------- Utility Classes ---------- */
.physeo-mt-10 { margin-top: 10px; }
.physeo-mt-12 { margin-top: 12px; }
.physeo-mt-14 { margin-top: 14px; }
.physeo-mt-18 { margin-top: 18px; }
.physeo-mt-24 { margin-top: 24px; }
.physeo-mt-26 { margin-top: 26px; }
.physeo-mt-32 { margin-top: 32px; }
.physeo-mb-10 { margin-bottom: 10px; }
.physeo-mb-14 { margin-bottom: 14px; }
.physeo-mb-18 { margin-bottom: 18px; }
.physeo-mb-24 { margin-bottom: 24px; }
.physeo-text-center { text-align: center; }
.physeo-max-w-560 { max-width: 560px; }
.physeo-max-w-640 { max-width: 640px; }
.physeo-max-w-720 { max-width: 720px; }
.physeo-max-w-760 { max-width: 760px; }
.physeo-opacity-85 { opacity: 0.85; }
.physeo-opacity-8 { opacity: 0.8; }
.physeo-justify-center { justify-content: center; }
.physeo-section-pt-0 { padding-top: 0 !important; }
.physeo-section-pad-none { padding: 0 !important; }
.physeo-404-code { font-size: clamp(4.5rem, 3.5rem + 6vw, 8.5rem); color: var(--pc-secondary); line-height: 1; margin-bottom: 10px; }
.physeo-flex-none { flex: none; }

/* ---------- Section Primitives ---------- */
.physeo-section { position: relative; padding: var(--pc-section-pad) 0; width: 100%; box-sizing: border-box; }
.physeo-section-bg-white { background-color: var(--pc-white); }
.physeo-section-bg-dark { background-color: var(--pc-primary); color: #dfe9e7; }
.physeo-section-bg-dark h2,
.physeo-section-bg-dark h3,
.physeo-section-bg-dark h4,
.physeo-section-bg-dark h5 { color: var(--pc-white); }
.physeo-section-bg-dark p { color: #d4e3e0; }

/* Section Heading */
.physeo-section-heading { max-width: 760px; margin-bottom: clamp(1.8rem, 1.4rem + 1.6vw, 3rem); }
.physeo-section-heading.physeo-centered { margin-left: auto; margin-right: auto; text-align: center; }
.physeo-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--pc-font-body);
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-size: 12.5px;
	color: var(--pc-secondary);
	margin-bottom: 10px;
}
.physeo-subtitle::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--pc-secondary);
}
.physeo-centered .physeo-subtitle::after {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--pc-secondary);
}
.physeo-title { margin: 0; }
.physeo-accent { color: var(--pc-secondary); }

/* ---------- Buttons ---------- */
.physeo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 15px 30px;
	border-radius: var(--pc-radius-btn);
	font-family: var(--pc-font-body);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--pc-transition);
	white-space: nowrap;
	flex-shrink: 0;
}
.physeo-btn .physeo-btn-arrow { transition: transform var(--pc-transition); }
.physeo-btn:hover .physeo-btn-arrow { transform: translateX(6px); }
.physeo-btn-filled { background: var(--pc-primary); color: var(--pc-white); }
.physeo-btn-filled:hover { background: var(--pc-secondary); color: var(--pc-white); transform: translateY(-2px); box-shadow: var(--pc-shadow-sm); }
.physeo-btn-bordered { background: transparent; color: var(--pc-primary); border-color: var(--pc-primary); }
.physeo-btn-bordered:hover { background: var(--pc-primary); color: var(--pc-white); transform: translateY(-2px); }
.physeo-btn-filled.physeo-btn-white { background: var(--pc-white); color: var(--pc-primary); }
.physeo-btn-filled.physeo-btn-white:hover { background: var(--pc-secondary); color: var(--pc-white); }
.physeo-btn-bordered.physeo-btn-white { border-color: var(--pc-white); color: var(--pc-white); }
.physeo-btn-bordered.physeo-btn-white:hover { background: var(--pc-white); color: var(--pc-primary); }
.physeo-btn-sm { padding: 11px 20px; font-size: 12.5px; }

/* ---------- Reveal Animations ---------- */
[data-reveal] {
	opacity: 1;
	transform: none;
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.physeo-wrapper { width: 100%; min-height: 100vh; display: flex; flex-direction: column; }
.physeo-inner-wrapper { width: 100%; display: flex; flex-direction: column; flex: 1; }
.physeo-main { flex: 1; width: 100%; }/* ============================================================
   HEADER & FLOATING PILL NAVBAR
   ============================================================ */
.physeo-header-wrapper { position: relative; z-index: 90; width: 100%; }
.physeo-header {
	position: relative;
	z-index: 90;
	width: 100%;
	background: transparent;
}
.physeo-header.is-sticky {
	position: sticky;
	top: 0;
}

/* 1. Top info bar - Solid Vibrant Teal with White Round Badges */
.physeo-topbar {
	padding: 11px 0;
	background: #33A9B1;
	color: #ffffff;
	font-size: 13.5px;
	font-weight: 500;
	width: 100%;
}
.physeo-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}
.physeo-topbar-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.physeo-topbar-center {
	text-align: center;
	font-size: 13.5px;
	font-weight: 500;
	color: #ffffff;
}
.physeo-topbar-right {
	display: flex;
	align-items: center;
}
.physeo-topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.physeo-topbar-link:hover {
	opacity: 0.9;
	color: #ffffff;
}
.physeo-topbar-badge {
	width: 26px;
	height: 26px;
	background: #ffffff;
	color: #33A9B1;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.physeo-topbar-badge svg {
	width: 13px;
	height: 13px;
}

/* 2. Floating White Pill Navbar */
.physeo-navbar-wrapper {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 100;
	padding-top: 16px;
	width: 100%;
}
.physeo-navbar {
	background: #ffffff;
	border-radius: 60px;
	padding: 12px 32px;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

/* Logo inside white navbar */
.physeo-logo { display: inline-flex; align-items: center; flex-shrink: 0; min-width: max-content; }
.physeo-logo img { max-height: 44px; width: auto; }
.physeo-logo .custom-logo { display: block; }
.physeo-text-logo {
	font-family: var(--pc-font-heading);
	font-size: 23px;
	color: var(--pc-primary);
	font-weight: 800;
	letter-spacing: 0.5px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.physeo-logo-icon {
	color: var(--pc-secondary);
	display: inline-flex;
	width: 26px;
	height: 26px;
}
.physeo-logo-icon svg { width: 100%; height: 100%; }
.physeo-text-logo:hover { color: var(--pc-secondary); }

/* Menu links inside white navbar */
.physeo-nav { display: flex; align-items: center; gap: 8px; }
.physeo-nav ul { list-style: none; margin: 0; padding: 0; }
.physeo-nav > ul { display: flex; align-items: center; gap: 6px; }
.physeo-nav a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--pc-primary);
	font-weight: 700;
	font-size: 14.5px;
	text-transform: capitalize;
	letter-spacing: 0.2px;
	padding: 8px 14px;
	position: relative;
	border-radius: 6px;
	white-space: nowrap;
	transition: var(--pc-transition);
}
.physeo-nav a:hover,
.physeo-nav .current-menu-item > a { color: var(--pc-secondary); }

/* Submenu dropdown */
.physeo-nav .sub-menu {
	position: absolute; top: 100%; left: 0;
	min-width: 230px;
	background: var(--pc-white);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	opacity: 0; visibility: hidden;
	transform: translateY(10px);
	transition: var(--pc-transition);
	padding: 10px 0;
	z-index: 120;
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.physeo-nav li { position: relative; }
.physeo-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.physeo-nav .sub-menu a {
	color: var(--pc-primary);
	padding: 9px 20px;
	font-size: 14px;
	text-transform: none;
	display: flex;
}
.physeo-nav .sub-menu a:hover { color: var(--pc-secondary); background: #f4f8f7; }

/* Navbar right actions & Round Dark Social Icons */
.physeo-navbar-actions {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.physeo-nav-socials {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.physeo-nav-socials a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--pc-primary);
	color: var(--pc-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--pc-transition);
}
.physeo-nav-socials a:hover {
	background: var(--pc-secondary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(var(--pc-secondary-rgb), 0.35);
}
.physeo-nav-socials svg {
	width: 14px;
	height: 14px;
}

/* Mobile Menu Toggle */
.physeo-mobile-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	color: var(--pc-primary);
	font-family: var(--pc-font-body);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 6px;
}
.physeo-mobile-toggle:hover { background: rgba(0,0,0,0.05); }
.physeo-mobile-toggle .hamburger { display: inline-flex; flex-direction: column; gap: 5px; }
.physeo-mobile-toggle .hamburger span { width: 22px; height: 2px; background: var(--pc-primary); border-radius: 2px; transition: var(--pc-transition); }

.physeo-mobile-nav { display: none; }

/* ============================================================
   PAGE HERO / BANNER
   ============================================================ */
.physeo-page-header {
	background: var(--pc-primary);
	padding: clamp(8rem, 6rem + 5vw, 11rem) 0 clamp(3rem, 2rem + 2vw, 4.5rem);
	text-align: center;
	color: var(--pc-white);
	position: relative;
	width: 100%;
}
.physeo-page-header h1 { color: var(--pc-white); font-size: var(--pc-h1); margin: 0 0 14px; }
.physeo-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); }
.physeo-breadcrumb a { color: var(--pc-secondary); }
.physeo-breadcrumb a:hover { color: var(--pc-white); }
.physeo-breadcrumb .sep { opacity: 0.5; }

/* ============================================================
   HERO / MAIN SLIDER
   ============================================================ */
.physeo-hero { position: relative; width: 100%; overflow: hidden; }
.physeo-hero .swiper { width: 100%; height: 100%; }
.physeo-hero-slide {
	position: relative;
	min-height: 840px;
	display: flex;
	align-items: center;
	color: var(--pc-white);
	background-size: cover;
	background-position: center;
	background-color: var(--pc-primary);
	padding: 210px 0 140px;
	width: 100%;
}
.physeo-hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(31,61,63,0.95) 0%, rgba(31,61,63,0.82) 45%, rgba(31,61,63,0.4) 100%);
	z-index: 1;
}
.physeo-hero-slide .physics-container {
	position: relative;
	z-index: 2;
	width: 100%;
}
.physeo-hero-content {
	position: relative;
	max-width: 780px;
	margin: 0;
	text-align: left;
	width: 100%;
}
.physeo-hero-tag {
	display: inline-block;
	color: var(--pc-white);
	background: rgba(var(--pc-primary-rgb), 0.7);
	border: 1px solid rgba(255,255,255,0.35);
	padding: 8px 22px;
	border-radius: 30px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 22px;
	backdrop-filter: blur(4px);
}
.physeo-hero h1,
.physeo-hero h2 {
	color: var(--pc-white);
	font-size: var(--pc-h1);
	line-height: 1.18;
	margin-bottom: 18px;
}
.physeo-hero .physeo-accent { color: var(--pc-secondary); }
.physeo-hero-desc {
	font-size: 17.5px;
	line-height: 1.65;
	max-width: 600px;
	color: #dbe8e6;
	margin: 0 0 32px;
}
.physeo-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.physeo-hero-buttons .physeo-btn-filled {
	background: var(--pc-secondary);
	color: var(--pc-white);
	box-shadow: 0 8px 24px -4px rgba(var(--pc-secondary-rgb), 0.45);
}
.physeo-hero-buttons .physeo-btn-filled:hover {
	background: var(--pc-white);
	color: var(--pc-primary);
	transform: translateY(-2px);
}
.physeo-hero-buttons .physeo-btn-bordered {
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--pc-white);
}
.physeo-hero-buttons .physeo-btn-bordered:hover {
	background: var(--pc-white);
	color: var(--pc-primary);
	border-color: var(--pc-white);
}

.physeo-hero .swiper-pagination { bottom: 30px !important; z-index: 10; }
.physeo-hero .swiper-pagination-bullet { width: 12px; height: 12px; background: var(--pc-white); opacity: 0.45; transition: var(--pc-transition); }
.physeo-hero .swiper-pagination-bullet-active { background: var(--pc-secondary); opacity: 1; transform: scale(1.2); }

/* ============================================================
   ABOUT SECTION & COLLAGE
   ============================================================ */
.physeo-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 5vw, 70px);
	align-items: center;
	width: 100%;
}
.physeo-about-grid.no-media {
	grid-template-columns: 1fr;
	max-width: 1160px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.physeo-about-intro .physeo-about-content {
	max-width: 100%;
	width: 100%;
}
.physeo-about-intro .physeo-section-heading {
	max-width: 100%;
}
.physeo-about-intro .physeo-title {
	max-width: 960px;
}
.physeo-about-intro .physeo-about-text {
	max-width: 100%;
	font-size: 16.5px;
	line-height: 1.75;
}
.physeo-about-intro .physeo-about-quote {
	max-width: 100%;
	font-size: 17px;
	line-height: 1.65;
}
.physeo-about-media {
	position: relative;
	width: 100%;
}
.physeo-about-media .img-main {
	border-radius: var(--pc-r3);
	overflow: hidden;
	box-shadow: var(--pc-shadow);
}
.physeo-about-media .img-main img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}
.physeo-about-media .stacked {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 16px;
}
.physeo-about-media .stacked .col {
	border-radius: var(--pc-r2);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
}
.physeo-about-media .stacked img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.physeo-counter-box {
	position: absolute;
	right: -16px;
	top: -16px;
	background: var(--pc-white);
	border-radius: var(--pc-r2);
	box-shadow: var(--pc-shadow);
	padding: 20px 28px;
	text-align: center;
	min-width: 160px;
	z-index: 5;
	border: 1px solid rgba(var(--pc-primary-rgb), 0.08);
}
.physeo-counter-box .counter {
	font-family: var(--pc-font-heading);
	font-size: 48px;
	color: var(--pc-secondary);
	line-height: 1;
	font-weight: 700;
	display: block;
}
.physeo-counter-box .counter-label {
	color: var(--pc-primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	margin-top: 6px;
}

.physeo-about-content { width: 100%; }
.physeo-about-content .physeo-quote {
	font-style: italic;
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--pc-primary);
	border-left: 3px solid var(--pc-secondary);
	padding-left: 20px;
	margin: 24px 0;
}
.physeo-about-text { font-size: 16px; line-height: 1.7; color: var(--pc-body-text); }
.physeo-about-quote {
	font-style: italic;
	color: var(--pc-body-text);
	border-left: 3px solid var(--pc-secondary);
	padding-left: 20px;
	margin: 24px 0;
	font-size: 16px;
}
.physeo-about-quote cite { display: block; font-style: normal; margin-top: 8px; color: var(--pc-primary); font-weight: 700; }

.physeo-about-img-main { border-radius: var(--pc-r3); overflow: hidden; margin-bottom: 20px; box-shadow: var(--pc-shadow); }
.physeo-about-img-main img { width: 100%; object-fit: cover; }
.physeo-about-img-small { width: 65%; border-radius: var(--pc-r2); overflow: hidden; box-shadow: var(--pc-shadow); }
.physeo-about-img-small img { width: 100%; object-fit: cover; }
.physeo-about-counter {
	position: absolute; left: 0; bottom: 20px; background: var(--pc-primary);
	color: var(--pc-white); border-radius: var(--pc-r2); padding: 20px 30px; text-align: center;
	box-shadow: var(--pc-shadow); border: 1px solid rgba(255,255,255,0.15);
}
.physeo-about-counter .physeo-count { font-family: var(--pc-font-heading); font-size: 46px; color: var(--pc-secondary); line-height: 1; font-weight: 700; display: block; }
.physeo-about-counter small { display: block; text-transform: uppercase; letter-spacing: 1px; font-size: 11.5px; margin-top: 6px; opacity: .9; }

.physeo-doctor {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 26px 0;
	padding: 14px 20px;
	background: rgba(var(--pc-primary-rgb), 0.05);
	border-radius: var(--pc-r1);
}
.physeo-doctor-avatar {
	border-radius: 50%;
	overflow: hidden;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	box-shadow: var(--pc-shadow-sm);
}
.physeo-doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.physeo-doctor-name {
	font-family: var(--pc-font-heading);
	color: var(--pc-primary);
	font-size: 20px;
	font-weight: 700;
}
.physeo-doctor-role {
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 11px;
	color: var(--pc-secondary);
	font-weight: 700;
	margin-bottom: 2px;
}

/* ============================================================
   MISSION & CORE VALUES
   ============================================================ */
.physeo-mission .physeo-section-heading {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
	margin-bottom: 20px;
}
.physeo-mission-text {
	max-width: 740px;
	margin: 0 auto clamp(36px, 4vw, 54px);
	text-align: center;
	font-size: 16px;
	line-height: 1.7;
	color: var(--pc-body-text);
}
.physeo-mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; width: 100%; }
.physeo-mission-grid .physeo-card { height: 100%; }

/* ============================================================
   WHAT WE DO VS WHAT WE AVOID (COMPARISON GRID)
   ============================================================ */
.physeo-compare-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	width: 100%;
	align-items: stretch;
}
.physeo-compare-box {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: 40px 36px;
	box-shadow: var(--pc-shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.04);
}
.physeo-compare-box.is-avoid {
	background: #f8faf9;
	border-left: 4px solid var(--pc-secondary);
}
.physeo-compare-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--pc-secondary);
	margin-bottom: 24px;
	padding: 6px 16px;
	background: rgba(var(--pc-secondary-rgb), 0.1);
	border-radius: 20px;
	align-self: flex-start;
}
.physeo-compare-box.is-avoid .physeo-compare-badge {
	color: var(--pc-primary);
	background: rgba(var(--pc-primary-rgb), 0.08);
}
.physeo-compare-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.physeo-compare-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.physeo-compare-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(var(--pc-secondary-rgb), 0.15);
	color: var(--pc-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}
.physeo-compare-icon svg { width: 16px; height: 16px; }
.physeo-compare-box.is-avoid .physeo-compare-icon {
	background: rgba(var(--pc-primary-rgb), 0.1);
	color: var(--pc-primary);
}
.physeo-compare-content h4 {
	font-size: 17px;
	margin: 0 0 4px;
	color: var(--pc-primary);
}
.physeo-compare-content p {
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
	color: var(--pc-body-text);
}

/* ============================================================
   DIRECTOR CALLOUT QUOTE
   ============================================================ */
.physeo-director-callout {
	background: var(--pc-primary);
	color: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: 48px 40px;
	box-shadow: var(--pc-shadow);
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	flex-wrap: wrap;
}
.physeo-director-callout blockquote {
	margin: 0;
	font-family: var(--pc-font-heading);
	font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.6rem);
	line-height: 1.5;
	color: var(--pc-white);
	flex: 1;
	min-width: 280px;
}
.physeo-director-callout cite {
	display: block;
	font-family: var(--pc-font-body);
	font-size: 14px;
	font-style: normal;
	color: var(--pc-secondary);
	margin-top: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.physeo-team .physeo-section-heading {
	margin-bottom: clamp(45px, 5vw, 70px) !important;
}
.physeo-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	align-items: stretch;
	width: 100%;
	margin-top: 10px;
}
.physeo-team-card { text-align: center; height: 100%; display: flex; flex-direction: column; }
.physeo-team-card .physeo-card-media { aspect-ratio: 1 / 1.15; overflow: hidden; width: 100%; }
.physeo-team-card .physeo-card-media img { width: 100%; height: 100%; object-fit: cover; }
.physeo-team-card .physeo-card-body { padding: 22px 18px; display: flex; flex-direction: column; align-items: center; flex: 1; }
.physeo-team-card .physeo-card-title { font-size: 20px; margin-bottom: 4px; }
.physeo-team-role { color: var(--pc-secondary); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11.5px; font-weight: 700; margin-bottom: 12px; }
.physeo-team-socials { display: flex; justify-content: center; gap: 10px; margin-top: auto; padding-top: 14px; }
.physeo-team-social { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(var(--pc-primary-rgb),0.06); color: var(--pc-primary); transition: var(--pc-transition); }
.physeo-team-social svg { width: 15px; height: 15px; }
.physeo-team-social:hover { background: var(--pc-secondary); color: var(--pc-white); transform: translateY(-2px); }

/* ============================================================
   CTA STRIP (Pure White / Light Background, distinct from Dark Footer)
   ============================================================ */
.physeo-cta-strip {
	background: var(--pc-white) !important;
	color: var(--pc-body-text) !important;
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
}
.physeo-cta-strip .physeo-title {
	color: var(--pc-primary) !important;
}
.physeo-cta-strip .physeo-subtitle {
	color: var(--pc-secondary) !important;
}
.physeo-cta-strip p {
	color: var(--pc-body-text) !important;
	opacity: 1 !important;
}
.physeo-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; width: 100%; }
.physeo-cta-inner .physeo-section-heading { margin-bottom: 0; }
.physeo-cta-strip .physeo-btn-filled {
	background: var(--pc-secondary);
	color: var(--pc-white);
	box-shadow: 0 6px 20px rgba(var(--pc-secondary-rgb), 0.35);
}
.physeo-cta-strip .physeo-btn-filled:hover {
	background: var(--pc-primary);
	color: var(--pc-white);
}

/* ============================================================
   CARDS (SERVICES & ARCHIVES)
   ============================================================ */
.physeo-card {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	overflow: hidden;
	box-shadow: var(--pc-shadow);
	transition: var(--pc-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.04);
}
.physeo-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--pc-shadow-lg);
}
.physeo-card-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	width: 100%;
	background: #eef2f1;
}
.physeo-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.physeo-card:hover .physeo-card-media img { transform: scale(1.06); }
.physeo-card-body {
	padding: 28px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.physeo-card-icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--pc-primary-rgb),0.07);
	color: var(--pc-secondary);
	border-radius: 16px;
	margin-bottom: 18px;
	flex-shrink: 0;
}
.physeo-card-icon svg { width: 30px; height: 30px; }
.physeo-card-title {
	font-size: var(--pc-h4);
	color: var(--pc-primary);
	margin-bottom: 10px;
	line-height: 1.35;
}
.physeo-card-title a { color: var(--pc-primary); }
.physeo-card-title a:hover { color: var(--pc-secondary); }
.physeo-card-text {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--pc-body-text);
	margin-bottom: 20px;
	flex: 1;
}
.physeo-card-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--pc-primary);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}
.physeo-card-link:hover { color: var(--pc-secondary); }
.physeo-card-link svg { transition: transform var(--pc-transition); }
.physeo-card-link:hover svg { transform: translateX(5px); }

.physeo-treatments-intro .physeo-section-heading {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
	margin-bottom: 20px;
}
.physeo-treatments-text {
	max-width: 760px;
	margin: 0 auto clamp(36px, 4vw, 55px);
	text-align: center;
	font-size: 16px;
	line-height: 1.7;
	color: var(--pc-body-text);
}

.physeo-list-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: clamp(42px, 4.5vw, 60px);
	width: 100%;
}
.physeo-list-header .physeo-section-heading { margin-bottom: 0; }

.physeo-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
	width: 100%;
	margin-top: 8px;
}

/* Services Carousel */
.physeo-services-carousel .swiper { overflow: visible !important; padding: 10px 0 20px; width: 100%; }
.physeo-services-carousel .physeo-card { height: 100%; }

/* ============================================================
   WHY US + FEATURES
   ============================================================ */
.physeo-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 5vw, 70px);
	align-items: center;
	width: 100%;
}
.physeo-why-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	width: 100%;
}
.physeo-feature {
	background: var(--pc-white);
	border-radius: var(--pc-r2);
	padding: 26px;
	box-shadow: var(--pc-shadow);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: var(--pc-transition);
}
.physeo-feature:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow-lg); }
.physeo-feature-icon {
	width: 50px;
	height: 50px;
	background: var(--pc-primary);
	color: var(--pc-white);
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	flex-shrink: 0;
}
.physeo-feature-icon svg { width: 24px; height: 24px; }
.physeo-feature h3 { font-size: var(--pc-h5); margin-bottom: 8px; line-height: 1.35; }
.physeo-feature p { font-size: 14px; line-height: 1.6; margin: 0; color: var(--pc-body-text); }

/* ============================================================
   STEPS / RECOVERY PROCESS
   ============================================================ */
.physeo-steps .physeo-section-heading {
	margin-bottom: clamp(42px, 4.5vw, 60px);
}
.physeo-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
	width: 100%;
	margin-top: 8px;
}
.physeo-step {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: 32px 26px;
	box-shadow: var(--pc-shadow);
	position: relative;
	transition: var(--pc-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.physeo-step:hover { transform: translateY(-6px); box-shadow: var(--pc-shadow-lg); }
.physeo-step-subtitle {
	color: var(--pc-secondary);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 10px;
}
.physeo-step h3 { font-size: var(--pc-h4); margin-bottom: 12px; line-height: 1.35; }
.physeo-step p { font-size: 14.5px; line-height: 1.6; margin: 0; color: var(--pc-body-text); }

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.physeo-testimonials .swiper { padding: 10px 0 60px; max-width: 860px; margin: 0 auto; width: 100%; }
.physeo-testimonial { text-align: center; max-width: 780px; margin: 0 auto; padding: 0 20px; }
.physeo-testimonial-stars { color: #f5b301; font-size: 22px; letter-spacing: 4px; margin-bottom: 20px; }
.physeo-testimonial-quote {
	font-family: var(--pc-font-heading);
	font-size: var(--pc-h3);
	line-height: 1.5;
	color: var(--pc-primary);
	margin-bottom: 28px;
}
.physeo-testimonial-person { display: flex; align-items: center; justify-content: center; gap: 16px; }
.physeo-testimonial-avatar { border-radius: 50%; overflow: hidden; width: 56px; height: 56px; flex-shrink: 0; box-shadow: var(--pc-shadow-sm); }
.physeo-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.physeo-testimonial-meta { text-align: left; }
.physeo-testimonial-name { font-weight: 700; color: var(--pc-primary); font-size: 16px; }
.physeo-testimonial-role { color: var(--pc-secondary); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.physeo-testimonials .swiper-button-prev,
.physeo-testimonials .swiper-button-next {
	color: var(--pc-primary);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--pc-white);
	box-shadow: var(--pc-shadow);
	transition: var(--pc-transition);
}
.physeo-testimonials .swiper-button-prev:hover,
.physeo-testimonials .swiper-button-next:hover {
	background: var(--pc-secondary);
	color: var(--pc-white);
}
.physeo-testimonials {
	padding-top: clamp(4.5rem, 3.5rem + 3vw, 7rem) !important;
	padding-bottom: clamp(6.5rem, 5rem + 5vw, 10rem) !important;
}
.physeo-testimonials-header {
	margin-bottom: clamp(50px, 5vw, 80px) !important;
	width: 100%;
}
.physeo-testimonials-header .physeo-section-heading {
	margin-bottom: 0 !important;
}
.physeo-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
	width: 100%;
}
.physeo-testimonial-card {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: 34px 28px;
	box-shadow: var(--pc-shadow);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--pc-transition);
	height: 100%;
	text-align: left;
	border: 1px solid rgba(0, 0, 0, 0.04);
}
.physeo-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--pc-shadow-lg);
}
.physeo-testimonial-card .physeo-testimonial-stars {
	color: #f5b301;
	font-size: 18px;
	letter-spacing: 3px;
	margin-bottom: 16px;
	line-height: 1;
	text-align: left;
}
.physeo-testimonial-card .physeo-testimonial-quote {
	font-family: var(--pc-font-heading);
	font-size: 17px;
	line-height: 1.6;
	color: var(--pc-primary);
	margin: 0 0 24px;
	flex: 1;
	font-style: italic;
}
.physeo-testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid rgba(var(--pc-primary-rgb), 0.08);
}
.physeo-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(var(--pc-secondary-rgb), 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.physeo-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.physeo-avatar-initial {
	font-family: var(--pc-font-heading);
	font-size: 19px;
	font-weight: 700;
	color: var(--pc-secondary);
	line-height: 1;
}
.physeo-testimonial-meta {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.physeo-testimonial-meta .physeo-testimonial-name {
	font-family: var(--pc-font-body);
	font-weight: 700;
	font-size: 15.5px;
	color: var(--pc-primary);
	margin: 0 0 2px;
	line-height: 1.2;
}
.physeo-testimonial-meta .physeo-testimonial-role {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--pc-secondary);
	font-weight: 700;
}
.physeo-testimonials .swiper-button-next::after,
.physeo-testimonials .swiper-button-prev::after { font-size: 15px; font-weight: 700; }

/* ============================================================
   PRICING
   ============================================================ */
.physeo-pricing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 44px;
}
.physeo-pricing-toggle label { font-weight: 700; color: var(--pc-primary); cursor: pointer; font-size: 15px; }
.physeo-toggle-switch { position: relative; width: 56px; height: 28px; }
.physeo-toggle-switch input { opacity: 0; width: 0; height: 0; }
.physeo-toggle-slider {
	position: absolute; cursor: pointer; inset: 0;
	background: var(--pc-primary);
	border-radius: 30px;
	transition: var(--pc-transition);
}
.physeo-toggle-slider::before {
	content: ""; position: absolute; height: 20px; width: 20px; left: 4px; top: 4px;
	background: var(--pc-white); border-radius: 50%;
	transition: var(--pc-transition);
}
.physeo-toggle-switch input:checked + .physeo-toggle-slider { background: var(--pc-secondary); }
.physeo-toggle-switch input:checked + .physeo-toggle-slider::before { transform: translateX(28px); }

.physeo-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
	width: 100%;
}
.physeo-plan { display: none; }
.physeo-plan.is-active { display: flex; }
.physeo-plan {
	background: var(--pc-primary);
	border-radius: var(--pc-r3);
	padding: 40px 32px;
	color: #e6efed;
	flex-direction: column;
	box-shadow: var(--pc-shadow);
	transition: var(--pc-transition);
	height: 100%;
}
.physeo-plan:hover { transform: translateY(-8px); box-shadow: var(--pc-shadow-lg); }
.physeo-plan.featured { background: var(--pc-secondary); color: #042c2e; }
.physeo-plan-icon {
	width: 56px;
	height: 56px;
	background: var(--pc-secondary);
	color: var(--pc-white);
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.physeo-plan.featured .physeo-plan-icon { background: var(--pc-primary); }
.physeo-plan-icon svg { width: 28px; height: 28px; }
.physeo-plan-tagline { font-size: 12.5px; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.physeo-plan-title { font-size: var(--pc-h3); color: var(--pc-white); margin: 6px 0 16px; }
.physeo-plan.featured .physeo-plan-title { color: var(--pc-primary); }
.physeo-plan-price {
	font-family: var(--pc-font-heading);
	font-size: var(--pc-h1);
	color: var(--pc-white);
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 24px;
	line-height: 1;
}
.physeo-plan-price .currency { font-size: 0.6em; }
.physeo-plan-price .period { font-family: var(--pc-font-body); font-size: 14.5px; color: rgba(255,255,255,0.75); }
.physeo-plan.featured .physeo-plan-price { color: var(--pc-primary); }
.physeo-plan.featured .physeo-plan-price .period { color: rgba(31,61,63,0.75); }
.physeo-plan ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.physeo-plan li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 14.5px; }
.physeo-plan.featured li { border-bottom-color: rgba(31,61,63,0.15); }
.physeo-plan li:last-child { border-bottom: 0; }
.physeo-plan .physeo-btn { justify-content: center; width: 100%; margin-top: auto; }
.physeo-plan .physeo-btn-filled { background: var(--pc-secondary); color: var(--pc-white); }
.physeo-plan .physeo-btn-filled:hover { background: var(--pc-white); color: var(--pc-primary); }
.physeo-plan .physeo-btn-bordered { border-color: rgba(255,255,255,0.6); color: var(--pc-white); }
.physeo-plan .physeo-btn-bordered:hover { background: var(--pc-white); color: var(--pc-primary); }
.physeo-plan.featured .physeo-btn-filled { background: var(--pc-primary); color: var(--pc-white); }
.physeo-plan.featured .physeo-btn-filled:hover { background: var(--pc-alternate); color: var(--pc-white); }

/* ============================================================
   MARQUEE
   ============================================================ */
.physeo-marquee { overflow: hidden; background: var(--pc-primary); padding: 24px 0; white-space: nowrap; width: 100%; }
.physeo-marquee-track { display: inline-flex; align-items: center; gap: 40px; padding-right: 40px; animation: pc-marquee 28s linear infinite; will-change: transform; }
.physeo-marquee:hover .physeo-marquee-track { animation-play-state: paused; }
.physeo-marquee-item { display: inline-flex; align-items: center; gap: 40px; }
.physeo-marquee-item a,
.physeo-marquee-item span { color: var(--pc-white); font-family: var(--pc-font-heading); font-size: 24px; text-transform: capitalize; }
.physeo-marquee-item a:hover { color: var(--pc-secondary); }
.physeo-marquee-star { color: var(--pc-secondary); width: 28px; height: 28px; flex-shrink: 0; }
@keyframes pc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   APPOINTMENT / BOOKING
   ============================================================ */
.physeo-appt-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: clamp(40px, 5vw, 60px);
	align-items: start;
	width: 100%;
}
.physeo-appt-contact {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-bottom: 28px;
	width: 100%;
}
.physeo-appt-contact-item {
	background: #f4f8f7;
	border: 1px solid rgba(var(--pc-primary-rgb), 0.08);
	border-radius: var(--pc-r2);
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: var(--pc-shadow-sm);
}
.physeo-appt-contact-icon {
	width: 44px;
	height: 44px;
	background: var(--pc-primary);
	color: var(--pc-white);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.physeo-appt-contact-icon svg { width: 20px; height: 20px; }
.physeo-appt-contact-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--pc-secondary); font-weight: 700; margin-bottom: 2px; }
.physeo-appt-contact-value { color: var(--pc-primary); font-weight: 700; font-size: 14.5px; }

.physeo-appt-image {
	border-radius: var(--pc-r3);
	overflow: hidden;
	position: sticky;
	top: 100px;
	box-shadow: var(--pc-shadow);
	width: 100%;
}
.physeo-appt-image img { width: 100%; height: 100%; object-fit: cover; }

/* CF7 Form Styling */
.wpcf7-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
.wpcf7-form p, .wpcf7-form .physeo-form-field { margin: 0; }
.wpcf7-form label { display: block; font-weight: 700; color: var(--pc-primary); margin-bottom: 6px; font-size: 13.5px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-r1);
	background: var(--pc-white);
	color: var(--pc-body-text);
	font-family: var(--pc-font-body);
	font-size: 14.5px;
	transition: var(--pc-transition);
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea {
	min-height: 120px;
	width: 100%;
	resize: vertical;
}
.wpcf7-form .physeo-form-full,
.physeo-form-full {
	grid-column: 1 / -1 !important;
	width: 100% !important;
}
.wpcf7-form .wpcf7-submit,
.wpcf7-form button[type="submit"],
.wpcf7-form input[type="submit"] {
	grid-column: 1 / -1 !important;
	justify-self: start;
	margin-top: 6px;
	background-color: var(--pc-secondary) !important;
	color: var(--pc-white) !important;
	border: 2px solid var(--pc-secondary) !important;
	border-radius: var(--pc-radius-btn);
	padding: 15px 36px;
	font-family: var(--pc-font-body);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--pc-transition);
	box-shadow: 0 8px 24px -6px rgba(var(--pc-secondary-rgb), 0.35);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form button[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover {
	background-color: var(--pc-primary) !important;
	border-color: var(--pc-primary) !important;
	color: var(--pc-white) !important;
	transform: translateY(-2px);
	box-shadow: var(--pc-shadow-sm);
}
.wpcf7-response-output { margin: 18px 0 0; grid-column: 1 / -1; border-radius: var(--pc-r1); padding: 12px 18px; }

/* Contact Page Specifics */
.physeo-contact-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; width: 100%; }
.physeo-contact-card { height: 100%; text-align: center; }
.physeo-contact-card .physeo-card-body { padding: 28px 20px; display: flex; flex-direction: column; align-items: center; }
.physeo-contact-card .physeo-card-icon { margin-left: auto; margin-right: auto; }
.physeo-contact-label { color: var(--pc-grey); font-size: 13px; margin-bottom: 4px; }
.physeo-contact-value { color: var(--pc-primary); font-weight: 700; font-size: 15px; }
.physeo-contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; width: 100%; }
.physeo-contact-map { border-radius: var(--pc-r3); overflow: hidden; min-height: 400px; box-shadow: var(--pc-shadow); width: 100%; }
.physeo-contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }
.physeo-contact-form-col .wpcf7-form label { color: var(--pc-primary); }

/* ============================================================
   PAGE / BLOG / ARCHIVE / SINGLE
   ============================================================ */
.physeo-content-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	max-width: var(--pc-container);
	margin: 0 auto;
	padding: clamp(3rem, 2rem + 3vw, 5rem) 24px;
	align-items: start;
	width: 100%;
}
.physeo-content-layout.no-sidebar { grid-template-columns: 1fr; }
.physeo-main-content { min-width: 0; width: 100%; }

.entry-content { max-width: 100%; width: 100%; }
.entry-content img { border-radius: var(--pc-r2); margin: 1.4em auto; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 1.4em; }
.entry-content figure, .entry-content .wp-block-image { margin: 1.6em auto; }
.entry-content .alignleft { float: left; margin: 0.4em 1.6em 1em 0; }
.entry-content .alignright { float: right; margin: 0.4em 0 1em 1.6em; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; }

/* Cards for Blog / Archives */
.physeo-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; width: 100%; }
.physeo-post-card { height: 100%; }
.physeo-post-card .physeo-card-title { font-size: var(--pc-h4); }
.physeo-post-meta { font-size: 13px; color: var(--pc-grey); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }

.physeo-sidebar { background: var(--pc-white); padding: 30px 24px; border-radius: var(--pc-r3); box-shadow: var(--pc-shadow-sm); width: 100%; }
.physeo-widget { margin-bottom: 30px; }
.physeo-widget:last-child { margin-bottom: 0; }
.physeo-widget .widget-title { font-size: var(--pc-h4); border-bottom: 2px solid var(--pc-secondary); padding-bottom: 8px; display: inline-block; margin-bottom: 16px; }
.physeo-widget ul { list-style: none; padding: 0; margin: 0; }
.physeo-widget li { margin-bottom: 10px; }

/* Search Form */
.physeo-search-form { display: flex; gap: 10px; }
.physeo-search-form input[type="search"] { flex: 1; padding: 12px 18px; border: 1px solid var(--pc-border); border-radius: 30px; background: var(--pc-white); font-family: var(--pc-font-body); font-size: 14.5px; }
.physeo-search-form button { padding: 0 22px; border-radius: 30px; }

/* Pagination */
.physeo-pagination { margin-top: 40px; display: flex; gap: 8px; justify-content: center; width: 100%; }
.physeo-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--pc-r1); background: var(--pc-white); color: var(--pc-primary); font-weight: 700; box-shadow: var(--pc-shadow-sm); }
.physeo-pagination .page-numbers.current,
.physeo-pagination .page-numbers:hover { background: var(--pc-secondary); color: var(--pc-white); }

/* Comments */
.comments-area { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--pc-border); width: 100%; }
.comment-list { list-style: none; padding: 0; }
.comment-body { background: var(--pc-white); border-radius: var(--pc-r2); padding: 22px; margin-bottom: 18px; box-shadow: var(--pc-shadow-sm); }
.comment-form label { display: block; font-weight: 700; color: var(--pc-primary); margin-bottom: 6px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--pc-border); border-radius: 10px; font-family: var(--pc-font-body); font-size: 14.5px; margin-bottom: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.physeo-footer { background: var(--pc-primary); color: #cfe0dc; padding-top: 80px; width: 100%; }
.physeo-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; width: 100%; }
.physeo-footer .footer-title { color: var(--pc-white); font-size: var(--pc-h4); margin-bottom: 20px; }
.physeo-footer a { color: #bcd0cc; }
.physeo-footer a:hover { color: var(--pc-secondary); }
.physeo-footer-about p { opacity: 0.85; margin-bottom: 20px; font-size: 14.5px; line-height: 1.65; }
.physeo-footer-socials { display: flex; gap: 10px; }
.physeo-footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.physeo-footer-socials a:hover { background: var(--pc-secondary); color: var(--pc-white); transform: translateY(-2px); }
.physeo-footer-socials svg { width: 15px; height: 15px; }

.physeo-footer .footer-contact { list-style: none; margin: 0; padding: 0; }
.physeo-footer .footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 14px; line-height: 1.5; }
.physeo-footer .footer-contact svg { width: 16px; height: 16px; color: var(--pc-secondary); flex-shrink: 0; margin-top: 3px; }

.physeo-footer .footer-links { list-style: none; margin: 0; padding: 0; }
.physeo-footer .footer-links li { margin-bottom: 11px; }
.physeo-footer .footer-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.physeo-footer .footer-links a::before { content: "›"; color: var(--pc-secondary); font-weight: 700; font-size: 16px; }

/* Newsletter */
.physeo-newsletter { border-top: 1px solid rgba(255,255,255,0.12); padding: 36px 0; width: 100%; }
.physeo-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; width: 100%; }
.physeo-newsletter h4 { color: var(--pc-white); margin: 0; font-size: 20px; }
.physeo-newsletter form { display: flex; flex: 1; max-width: 520px; gap: 12px; }
.physeo-newsletter input[type="email"],
.physeo-newsletter input[type="text"] {
	flex: 1;
	padding: 14px 22px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 30px;
	background: rgba(255,255,255,0.08);
	color: var(--pc-white);
	font-family: var(--pc-font-body);
	font-size: 14.5px;
}
.physeo-newsletter input::placeholder { color: rgba(255,255,255,0.55); }
.physeo-newsletter .physeo-btn { padding: 14px 28px; }

/* Copyright Bar */
.physeo-copyright {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 13.5px;
	width: 100%;
}
.physeo-copyright p { margin: 0; }
.physeo-copyright .legal-links { display: inline-flex; gap: 20px; }
.physeo-copyright .legal-links a { color: #bcd0cc; }
.physeo-copyright .legal-links a:hover { color: var(--pc-secondary); }

/* Back to Top */
.physeo-backtop {
	position: fixed; right: 30px; bottom: 30px;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--pc-secondary);
	color: var(--pc-white);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: var(--pc-shadow);
	opacity: 0; visibility: hidden; transform: translateY(20px);
	transition: var(--pc-transition);
	z-index: 90;
}
.physeo-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.physeo-backtop:hover { background: var(--pc-primary); color: var(--pc-white); transform: translateY(-3px); }
.physeo-backtop svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1280px) {
	.physeo-services-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-steps-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-team-grid { grid-template-columns: repeat(3, 1fr); }
	.physeo-about-grid, .physeo-why-grid { grid-template-columns: 1fr; gap: 40px; }
	.physeo-appt-grid { grid-template-columns: 1fr; }
	.physeo-appt-image { position: static; max-width: 600px; margin: 0 auto; }
	.physeo-content-layout { grid-template-columns: 1fr; }
	.physeo-mission-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-contact-info { grid-template-columns: repeat(2, 1fr); }
	.physeo-contact-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   SINGLE SERVICE / TREATMENT DETAIL LAYOUT
   ============================================================ */
.physeo-service-single-layout {
	padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
	background: var(--pc-body-bg);
}
.physeo-service-grid-2col {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: clamp(36px, 4vw, 56px);
	align-items: start;
	width: 100%;
}
.physeo-service-main {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: clamp(32px, 4vw, 50px);
	box-shadow: var(--pc-shadow);
	border: 1px solid rgba(0,0,0,0.04);
}
.physeo-service-hero-media {
	border-radius: var(--pc-r2);
	overflow: hidden;
	margin-bottom: 32px;
	max-height: 440px;
	box-shadow: var(--pc-shadow-sm);
}
.physeo-service-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.physeo-service-intro-block {
	margin-bottom: 24px;
}
.physeo-service-heading {
	font-size: clamp(2rem, 1.8rem + 1vw, 2.6rem);
	color: var(--pc-primary);
	margin: 8px 0 0;
	line-height: 1.25;
}
.physeo-service-body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--pc-body-text);
	margin-bottom: 36px;
}
.physeo-service-body p { margin-bottom: 1.4em; }

/* Benefits Box */
.physeo-service-benefits {
	background: #f4f8f7;
	border-radius: var(--pc-r2);
	padding: 34px 30px;
	margin: 36px 0;
	border: 1px solid rgba(var(--pc-primary-rgb), 0.08);
}
.physeo-benefits-title {
	font-size: 21px;
	color: var(--pc-primary);
	margin: 0 0 22px;
	font-weight: 700;
}
.physeo-benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.physeo-benefit-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.physeo-benefit-check {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--pc-secondary);
	color: var(--pc-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
	box-shadow: 0 4px 10px rgba(var(--pc-secondary-rgb), 0.3);
}
.physeo-benefit-check svg { width: 14px; height: 14px; }
.physeo-benefit-item h4 {
	font-size: 15.5px;
	color: var(--pc-primary);
	margin: 0 0 4px;
}
.physeo-benefit-item p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--pc-body-text);
	margin: 0;
}

/* 4-Phase Recovery Timeline */
.physeo-service-approach {
	margin: 40px 0;
}
.physeo-approach-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 20px;
}
.physeo-timeline-step {
	background: #ffffff;
	border: 1px solid rgba(var(--pc-primary-rgb), 0.1);
	border-radius: var(--pc-r2);
	padding: 22px 18px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.03);
	transition: var(--pc-transition);
}
.physeo-timeline-step:hover {
	transform: translateY(-4px);
	border-color: var(--pc-secondary);
	box-shadow: var(--pc-shadow-sm);
}
.physeo-step-num {
	font-family: var(--pc-font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--pc-secondary);
	margin-bottom: 8px;
	line-height: 1;
}
.physeo-timeline-step h4 {
	font-size: 15px;
	color: var(--pc-primary);
	margin: 0 0 6px;
}
.physeo-timeline-step p {
	font-size: 13px;
	line-height: 1.5;
	color: var(--pc-body-text);
	margin: 0;
}

/* FAQ Accordion */
.physeo-service-faq {
	margin-top: 40px;
}
.physeo-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
}
.physeo-faq-item {
	border: 1px solid rgba(var(--pc-primary-rgb), 0.12);
	border-radius: var(--pc-r1);
	overflow: hidden;
	background: #ffffff;
	transition: var(--pc-transition);
}
.physeo-faq-item[open] {
	border-color: var(--pc-secondary);
}
.physeo-faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 700;
	color: var(--pc-primary);
	font-size: 15.5px;
	list-style: none;
	user-select: none;
}
.physeo-faq-q::-webkit-details-marker { display: none; }
.physeo-faq-arrow {
	width: 14px;
	height: 14px;
	color: var(--pc-secondary);
	transition: transform 0.25s ease;
	flex-shrink: 0;
}
.physeo-faq-item[open] .physeo-faq-arrow {
	transform: rotate(180deg);
}
.physeo-faq-a {
	padding: 0 22px 20px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--pc-body-text);
}
.physeo-faq-a p { margin: 0; }

/* Sidebar */
.physeo-service-sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: sticky;
	top: 100px;
}
.physeo-sidebar-card {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: 32px 26px;
	box-shadow: var(--pc-shadow);
	border: 1px solid rgba(0,0,0,0.04);
}
.physeo-sidebar-title {
	font-size: 19px;
	color: var(--pc-primary);
	margin: 0 0 20px;
	font-weight: 700;
	border-bottom: 2px solid rgba(var(--pc-secondary-rgb), 0.2);
	padding-bottom: 12px;
}
.physeo-sidebar-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.physeo-sidebar-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 18px;
	border-radius: var(--pc-r1);
	font-weight: 700;
	font-size: 14px;
	color: var(--pc-primary);
	background: #f6faf9;
	transition: var(--pc-transition);
}
.physeo-sidebar-menu a svg {
	width: 13px;
	height: 13px;
	color: var(--pc-secondary);
	transition: transform var(--pc-transition);
	flex-shrink: 0;
}
.physeo-sidebar-menu a:hover {
	background: var(--pc-secondary);
	color: var(--pc-white);
}
.physeo-sidebar-menu a:hover svg {
	color: var(--pc-white);
	transform: translateX(4px);
}
.physeo-sidebar-menu li.is-active a {
	background: var(--pc-primary);
	color: var(--pc-white);
}
.physeo-sidebar-menu li.is-active a svg {
	color: var(--pc-secondary);
}

.physeo-sidebar-booking {
	background: var(--pc-primary);
	color: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: 34px 26px;
	box-shadow: var(--pc-shadow);
}
.physeo-booking-badge {
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: var(--pc-secondary);
	background: rgba(255,255,255,0.1);
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 14px;
}
.physeo-booking-title {
	color: var(--pc-white);
	font-size: 21px;
	margin: 0 0 10px;
	line-height: 1.3;
}
.physeo-booking-desc {
	font-size: 13.5px;
	line-height: 1.55;
	color: #d6e8e5;
	margin: 0 0 22px;
}
.physeo-booking-info {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 18px;
}
.physeo-info-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.physeo-info-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255,255,255,0.1);
	color: var(--pc-secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.physeo-info-icon svg { width: 16px; height: 16px; }
.physeo-info-row small {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--pc-secondary);
	font-weight: 700;
}
.physeo-info-row a,
.physeo-info-row span {
	color: var(--pc-white);
	font-weight: 700;
	font-size: 14.5px;
}
.physeo-btn-full {
	width: 100%;
	justify-content: center;
}

.physeo-sidebar-assurance {
	background: var(--pc-white);
	border-radius: var(--pc-r2);
	padding: 22px 20px;
	border: 1px solid rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.physeo-assurance-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pc-primary);
}
.physeo-assurance-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pc-secondary);
	flex-shrink: 0;
}

/* ============================================================
   SINGLE BLOG POST DETAIL LAYOUT
   ============================================================ */
.physeo-header-cats { margin-bottom: 12px; }
.physeo-cat-badge {
	display: inline-block;
	background: rgba(var(--pc-secondary-rgb), 0.2);
	color: var(--pc-secondary);
	padding: 4px 14px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.physeo-cat-badge:hover {
	background: var(--pc-secondary);
	color: var(--pc-white);
}
.physeo-article-title {
	font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem);
	color: var(--pc-white);
	margin: 0 0 18px;
	line-height: 1.25;
}
.physeo-article-meta-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
}
.physeo-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.physeo-meta-icon { width: 15px; height: 15px; color: var(--pc-secondary); }

.physeo-blog-single-layout {
	padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
	background: var(--pc-body-bg);
}
.physeo-blog-grid-2col {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: clamp(36px, 4vw, 56px);
	align-items: start;
	width: 100%;
}
.physeo-article-main {
	background: var(--pc-white);
	border-radius: var(--pc-r3);
	padding: clamp(32px, 4vw, 50px);
	box-shadow: var(--pc-shadow);
	border: 1px solid rgba(0,0,0,0.04);
}
.physeo-article-hero-media {
	border-radius: var(--pc-r2);
	overflow: hidden;
	margin-bottom: 36px;
	max-height: 480px;
	box-shadow: var(--pc-shadow-sm);
}
.physeo-article-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.physeo-article-body {
	font-size: 16.5px;
	line-height: 1.8;
	color: var(--pc-body-text);
}
.physeo-article-body h2,
.physeo-article-body h3,
.physeo-article-body h4 {
	color: var(--pc-primary);
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	line-height: 1.3;
}
.physeo-article-body p { margin-bottom: 1.5em; }
.physeo-article-body blockquote {
	margin: 2em 0;
	padding: 24px 30px;
	background: #f4f8f7;
	border-left: 4px solid var(--pc-secondary);
	border-radius: 0 var(--pc-r2) var(--pc-r2) 0;
	font-family: var(--pc-font-heading);
	font-size: 1.15em;
	font-style: italic;
	color: var(--pc-primary);
}
.physeo-article-body ul,
.physeo-article-body ol {
	padding-left: 24px;
	margin-bottom: 1.6em;
}
.physeo-article-body li { margin-bottom: 8px; }

/* Tags & Share */
.physeo-article-footer-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(0,0,0,0.08);
}
.physeo-post-tags a {
	display: inline-block;
	padding: 5px 12px;
	background: #f0f4f3;
	color: var(--pc-primary);
	border-radius: 16px;
	font-size: 12.5px;
	font-weight: 600;
	margin-right: 6px;
	transition: var(--pc-transition);
}
.physeo-post-tags a:hover {
	background: var(--pc-secondary);
	color: var(--pc-white);
}
.physeo-tag-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--pc-primary);
	margin-right: 6px;
}
.physeo-share-box {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.physeo-share-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--pc-primary);
}
.physeo-share-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f0f4f3;
	color: var(--pc-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--pc-transition);
}
.physeo-share-btn svg { width: 15px; height: 15px; }
.physeo-share-btn:hover {
	background: var(--pc-secondary);
	color: var(--pc-white);
	transform: translateY(-2px);
}

/* Author Box */
.physeo-author-box {
	display: flex;
	gap: 22px;
	align-items: center;
	background: #f8faf9;
	border-radius: var(--pc-r2);
	padding: 28px;
	margin: 40px 0;
	border: 1px solid rgba(var(--pc-primary-rgb), 0.08);
}
.physeo-author-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: var(--pc-shadow-sm);
}
.physeo-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.physeo-author-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: var(--pc-secondary);
	display: block;
	margin-bottom: 2px;
}
.physeo-author-name {
	font-size: 19px;
	color: var(--pc-primary);
	margin: 0 0 6px;
}
.physeo-author-bio {
	font-size: 14px;
	line-height: 1.6;
	color: var(--pc-body-text);
	margin: 0;
}

/* Post Navigation */
.physeo-post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid rgba(0,0,0,0.08);
}
.physeo-nav-item {
	background: #f8faf9;
	border-radius: var(--pc-r2);
	padding: 20px;
	transition: var(--pc-transition);
	border: 1px solid transparent;
}
.physeo-nav-item:hover {
	background: var(--pc-white);
	border-color: var(--pc-secondary);
	box-shadow: var(--pc-shadow-sm);
	transform: translateY(-2px);
}
.physeo-nav-item.is-empty { opacity: 0; pointer-events: none; }
.physeo-nav-direction {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	color: var(--pc-secondary);
	margin-bottom: 6px;
}
.physeo-nav-next .physeo-nav-direction { justify-content: flex-end; }
.physeo-nav-direction svg { width: 12px; height: 12px; }
.physeo-nav-title {
	display: block;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--pc-primary);
	line-height: 1.4;
}
.physeo-nav-next { text-align: right; }

/* Blog Sidebar */
.physeo-blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: sticky;
	top: 100px;
}
.physeo-sidebar-search-form {
	position: relative;
	display: flex;
	align-items: center;
}
.physeo-search-input {
	width: 100%;
	padding: 14px 48px 14px 18px;
	border: 1px solid rgba(var(--pc-primary-rgb), 0.15);
	border-radius: 30px;
	font-size: 14px;
	background: #f8faf9;
	transition: var(--pc-transition);
	outline: none;
}
.physeo-search-input:focus {
	border-color: var(--pc-secondary);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(var(--pc-secondary-rgb), 0.15);
}
.physeo-search-submit {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--pc-secondary);
	color: var(--pc-white);
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--pc-transition);
}
.physeo-search-submit svg { width: 14px; height: 14px; }
.physeo-search-submit:hover { background: var(--pc-primary); }

.physeo-recent-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.physeo-recent-item {
	display: flex;
	gap: 14px;
	align-items: center;
}
.physeo-recent-thumb {
	width: 70px;
	height: 70px;
	border-radius: var(--pc-r1);
	overflow: hidden;
	flex-shrink: 0;
}
.physeo-recent-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.physeo-recent-thumb:hover img { transform: scale(1.08); }
.physeo-recent-date {
	font-size: 11.5px;
	color: var(--pc-secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 2px;
}
.physeo-recent-meta h4 {
	font-size: 14px;
	margin: 0;
	line-height: 1.35;
}
.physeo-recent-meta h4 a { color: var(--pc-primary); }
.physeo-recent-meta h4 a:hover { color: var(--pc-secondary); }

.physeo-sidebar-cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.physeo-sidebar-cats a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-radius: var(--pc-r1);
	font-size: 14px;
	font-weight: 600;
	color: var(--pc-primary);
	background: #f8faf9;
	transition: var(--pc-transition);
}
.physeo-sidebar-cats a:hover {
	background: var(--pc-secondary);
	color: var(--pc-white);
}
.physeo-sidebar-cats a:hover .physeo-cat-count {
	background: var(--pc-white);
	color: var(--pc-primary);
}
.physeo-cat-count {
	font-size: 12px;
	font-weight: 700;
	background: rgba(var(--pc-primary-rgb), 0.08);
	padding: 2px 8px;
	border-radius: 12px;
	transition: var(--pc-transition);
}

@media (max-width: 1024px) {
	.physeo-topbar { display: none; }
	.physeo-nav { display: none; }
	.physeo-mobile-toggle { display: inline-flex; }
	.physeo-navbar .physeo-btn { display: none; }
	.physeo-mobile-nav {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		max-width: 85vw;
		height: 100%;
		background: var(--pc-primary);
		box-shadow: var(--pc-shadow);
		z-index: 100;
		transition: right 0.35s ease;
		overflow-y: auto;
		padding: 36px 24px;
	}
	.physeo-mobile-nav.is-open { right: 0; }
	.physeo-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
	.physeo-mobile-nav a { color: var(--pc-white); display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 700; font-size: 15px; }
	.physeo-mobile-nav .sub-menu { padding-left: 16px; }
	.physeo-mobile-nav .sub-menu a { font-weight: 400; font-size: 14px; color: #cfe0dc; }
	.physeo-mobile-close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--pc-white); font-size: 28px; cursor: pointer; line-height: 1; }
	.physeo-footer-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-post-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-team-grid { grid-template-columns: repeat(2, 1fr); }
	.physeo-hero-slide { min-height: 680px; padding: 140px 24px 100px; }
	.physeo-service-grid-2col,
	.physeo-blog-grid-2col { grid-template-columns: 1fr; }
	.physeo-service-sidebar,
	.physeo-blog-sidebar { position: static; }
}

@media (max-width: 768px) {
	.physeo-services-grid { grid-template-columns: 1fr; }
	.physeo-steps-grid { grid-template-columns: 1fr; }
	.physeo-pricing-grid { grid-template-columns: 1fr; }
	.physeo-testimonials-grid { grid-template-columns: 1fr; }
	.physeo-why-features { grid-template-columns: 1fr; }
	.physeo-footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.physeo-appt-contact { grid-template-columns: 1fr; }
	.physeo-hero-slide { min-height: 580px; padding: 120px 20px 80px; }
	.physeo-counter-box { position: static; margin-top: 20px; width: 100%; }
	.physeo-mission-grid { grid-template-columns: 1fr; }
	.physeo-compare-grid { grid-template-columns: 1fr; }
	.physeo-team-grid { grid-template-columns: 1fr; }
	.physeo-contact-info { grid-template-columns: 1fr; }
	.physeo-about-counter { position: static; margin-top: 16px; }
	.wpcf7-form { grid-template-columns: 1fr; }
	.physeo-newsletter form { flex-direction: column; width: 100%; max-width: 100%; }
	.physeo-newsletter .physeo-btn { width: 100%; }
	.physeo-copyright { flex-direction: column; text-align: center; gap: 12px; }
	.physeo-benefits-grid { grid-template-columns: 1fr; }
	.physeo-approach-timeline { grid-template-columns: 1fr; }
	.physeo-post-navigation { grid-template-columns: 1fr; }
	.physeo-nav-next { text-align: left; }
	.physeo-nav-next .physeo-nav-direction { justify-content: flex-start; }
	.physeo-author-box { flex-direction: column; text-align: center; }
}

@media (max-width: 479px) {
	.physeo-hero-slide { min-height: 520px; padding: 100px 16px 60px; }
	.physeo-hero-buttons, .physeo-hero-buttons .physeo-btn { width: 100%; }
	.physeo-post-grid { grid-template-columns: 1fr; }
	.physeo-list-header { flex-direction: column; align-items: flex-start; }
}

