/**
 * Plastic Surgery Theme - Main Stylesheet
 * Premium luxury medical design
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	--ps-gold: #D4AF37;
	--ps-gold-dark: #B8962E;
	--ps-gold-light: #E8D48B;
	--ps-navy: #102947;
	--ps-navy-light: #1a3a5c;
	--ps-white: #FFFFFF;
	--ps-gray-bg: #EEF2F7;
	--ps-gray-bg-warm: #F8F5EE;
	--ps-gray-light: #E9ECEF;
	--ps-text: #2D2D2D;
	--ps-text-muted: #6C757D;
	--ps-radius: 14px;
	--ps-radius-sm: 10px;
	--ps-radius-lg: 20px;
	--ps-btn-radius: 32px;
	--ps-btn-padding-y: 10px;
	--ps-btn-padding-x: 22px;
	--ps-btn-font-size: 14px;
	--ps-section-padding-y: 80px;
	--ps-section-padding-y-mobile: 60px;
	--ps-shadow: 0 4px 24px rgba(16, 41, 71, 0.08);
	--ps-shadow-lg: 0 12px 48px rgba(16, 41, 71, 0.12);
	--ps-shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
	--ps-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--ps-font-heading: 'Playfair Display', Georgia, serif;
	--ps-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	--ps-container: 1200px;
	--ps-header-height: 80px;
	--ps-topbar-height: 38px;
	--ps-header-offset: calc(var(--ps-topbar-height) + var(--ps-header-height));
}

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	font-family: var(--ps-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ps-text);
	background: var(--ps-white);
	overflow-x: hidden;
}

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

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

a:hover { color: var(--ps-gold); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ps-font-heading);
	font-weight: 600;
	line-height: 1.3;
	color: var(--ps-navy);
	margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

/* ==========================================================================
   Layout
   ========================================================================== */
.ps-container {
	width: 100%;
	max-width: var(--ps-container);
	margin: 0 auto;
	padding: 0 24px;
}

.ps-section {
	padding-top: var(--ps-section-padding-y);
	padding-bottom: var(--ps-section-padding-y);
}

.ps-section--white {
	background: var(--ps-white);
}

.ps-section--gray {
	background: var(--ps-gray-bg);
}

.ps-section--warm {
	background: var(--ps-gray-bg-warm);
}

.ps-section__cta {
	text-align: center;
	margin-top: 48px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.ps-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: var(--ps-btn-padding-y) var(--ps-btn-padding-x);
	font-family: var(--ps-font-body);
	font-size: var(--ps-btn-font-size);
	font-weight: 600;
	border: none;
	border-radius: var(--ps-btn-radius);
	cursor: pointer;
	transition: all var(--ps-transition);
	text-decoration: none;
	white-space: nowrap;
}

a.ps-btn,
button.ps-btn,
input.ps-btn {
	border-radius: var(--ps-btn-radius);
}

.ps-btn--primary {
	background: linear-gradient(135deg, var(--ps-gold), var(--ps-gold-dark));
	color: var(--ps-white) !important;
	box-shadow: var(--ps-shadow-gold);
}

.ps-btn--primary:hover {
	background: linear-gradient(135deg, var(--ps-gold-dark), #9A7B24);
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
	color: var(--ps-white) !important;
}

.ps-btn--secondary {
	background: var(--ps-navy);
	color: var(--ps-white) !important;
}

.ps-btn--secondary:hover {
	background: var(--ps-navy-light);
	transform: translateY(-2px);
	color: var(--ps-white) !important;
}

.ps-btn--sm,
.ps-btn--lg {
	padding: var(--ps-btn-padding-y) var(--ps-btn-padding-x);
	font-size: var(--ps-btn-font-size);
}

/* ==========================================================================
   Glassmorphism
   ========================================================================== */
.ps-glass {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow);
}

/* ==========================================================================
   Section Header
   ========================================================================== */
.ps-section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.ps-section-header__subtitle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-family: var(--ps-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--ps-gold);
	margin-bottom: 12px;
}

.ps-section-header__subtitle::before,
.ps-section-header__subtitle::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: var(--ps-gold);
	flex-shrink: 0;
}

.ps-section-header__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 16px;
}

.ps-section-header__desc {
	font-size: 17px;
	color: var(--ps-text-muted);
	margin: 0;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.ps-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.ps-topbar {
	display: flex;
	align-items: center;
	background: var(--ps-topbar-bg, #102947);
	color: var(--ps-topbar-text-color, #ffffff);
	height: var(--ps-topbar-height, 38px);
	min-height: var(--ps-topbar-height, 38px);
	overflow: hidden;
}

.ps-topbar__track {
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.ps-topbar__marquee {
	display: flex;
	align-items: center;
	height: 100%;
	width: max-content;
	min-width: max-content;
	flex-shrink: 0;
	will-change: transform;
	animation-name: ps-topbar-slide-left;
	animation-duration: 45s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.ps-topbar--direction-right .ps-topbar__marquee {
	animation-name: ps-topbar-slide-right;
}

.ps-topbar__marquee-group {
	display: flex;
	align-items: center;
	height: 100%;
	flex-shrink: 0;
}

.ps-topbar--pause-hover .ps-topbar__marquee:hover {
	animation-play-state: paused;
}

.ps-topbar__text {
	display: inline-flex;
	align-items: center;
	padding-right: 100px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.2px;
}

@keyframes ps-topbar-slide-left {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes ps-topbar-slide-right {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.ps-topbar__marquee {
		animation: none;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		height: auto;
		padding: 0 20px;
		white-space: normal;
		text-align: center;
		justify-content: center;
	}

	.ps-topbar__marquee-group {
		height: auto;
		justify-content: center;
	}

	.ps-topbar__text[aria-hidden="true"] {
		display: none;
	}

	.ps-topbar {
		height: auto;
		min-height: var(--ps-topbar-height);
		align-items: center;
	}

	.ps-topbar__track {
		height: auto;
		min-height: inherit;
		padding: 8px 0;
		align-items: center;
		justify-content: center;
	}
}

/* ==========================================================================
   Header
   ========================================================================== */
.ps-header {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	z-index: auto;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(16, 41, 71, 0.06);
	transition: all var(--ps-transition);
}

.ps-header--scrolled {
	box-shadow: var(--ps-shadow);
}

.ps-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--ps-header-height);
	gap: 24px;
}

.ps-header,
.ps-nav,
.ps-nav__list {
	overflow: visible;
}

.ps-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ps-navy);
}

.ps-logo--image {
	display: inline-flex;
}

.ps-header__logo .custom-logo-link,
.ps-header__logo .ps-logo--image {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.ps-header__logo img,
.ps-header__logo .custom-logo,
.ps-logo__img {
	display: block;
	height: 48px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}

.ps-logo__icon {
	display: inline-flex;
	align-items: center;
	color: var(--ps-gold);
}

.ps-logo__icon i {
	font-size: 28px;
}

.ps-logo__text { display: flex; flex-direction: column; }

.ps-logo__name {
	font-family: var(--ps-font-heading);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--ps-navy);
}

.ps-logo__tagline {
	font-size: 11px;
	color: var(--ps-text-muted);
	letter-spacing: 0.5px;
}

.ps-logo--footer .ps-logo__name { color: var(--ps-white); }

.ps-footer__logo {
	margin-bottom: 4px;
}

.ps-footer__logo .ps-logo--image {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.ps-logo__img--footer {
	height: 52px;
	max-width: 260px;
	object-fit: contain;
}

.ps-nav__list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-nav__list li { margin: 0; }

.ps-nav__item-row {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.ps-nav__submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	margin-right: 2px;
	border: 0;
	background: transparent;
	color: var(--ps-text);
	cursor: pointer;
	padding: 0;
	line-height: 0;
	border-radius: var(--ps-radius-sm);
	transition: color var(--ps-transition), background var(--ps-transition);
}

.ps-nav__submenu-toggle-icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
	transition: transform var(--ps-transition);
}

.ps-nav__submenu-toggle:hover,
.ps-nav__submenu-toggle:focus-visible {
	background: rgba(212, 175, 55, 0.12);
	color: var(--ps-gold-dark);
	outline: none;
}

.ps-nav__list > .menu-item-has-children > .ps-nav__item-row > .ps-nav__link,
.ps-nav__list > .ps-nav__item--has-children > .ps-nav__item-row > .ps-nav__link {
	padding-right: 2px;
}

.ps-nav__list > .menu-item-has-children:hover > .ps-nav__item-row .ps-nav__submenu-toggle,
.ps-nav__list > .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle,
.ps-nav__list > .ps-nav__item--has-children:hover > .ps-nav__item-row .ps-nav__submenu-toggle,
.ps-nav__list > .ps-nav__item--has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle {
	color: var(--ps-gold-dark);
}

.ps-nav__list > .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--down,
.ps-nav__list > .ps-nav__item--has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--down {
	transform: rotate(180deg);
}

.ps-nav__list .sub-menu .ps-nav__item-row,
.ps-nav__list .ps-nav__submenu .ps-nav__item-row {
	display: flex;
	align-items: center;
	width: 100%;
}

.ps-nav__list .sub-menu .ps-nav__item-row > .ps-nav__link,
.ps-nav__list .ps-nav__submenu .ps-nav__item-row > .ps-nav__link {
	flex: 1;
}

.ps-nav__list .sub-menu .ps-nav__submenu-toggle,
.ps-nav__list .ps-nav__submenu .ps-nav__submenu-toggle {
	width: 34px;
	height: 34px;
	margin-right: 0;
}

.ps-nav__list .sub-menu .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--right,
.ps-nav__list .ps-nav__submenu .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--right {
	transform: rotate(90deg);
}

.ps-nav__list > .menu-item-has-children,
.ps-nav__list > .ps-nav__item--has-children {
	position: relative;
}

.ps-nav__list .sub-menu,
.ps-nav__list .ps-nav__submenu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 230px;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	background: var(--ps-white);
	border: 1px solid rgba(16, 41, 71, 0.08);
	border-radius: var(--ps-radius-sm);
	box-shadow: var(--ps-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--ps-transition), visibility var(--ps-transition), transform var(--ps-transition);
	z-index: 1001;
}

.ps-nav__list .sub-menu li,
.ps-nav__list .ps-nav__submenu li {
	margin: 0;
}

.ps-nav__list .sub-menu a,
.ps-nav__list .ps-nav__submenu a {
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	border-radius: 0;
}

.ps-nav__list .sub-menu a:hover,
.ps-nav__list .ps-nav__submenu a:hover,
.ps-nav__list .sub-menu .current-menu-item > a,
.ps-nav__list .ps-nav__submenu .current-menu-item > a {
	background: rgba(212, 175, 55, 0.1);
	color: var(--ps-gold-dark);
}

.ps-nav__list > .menu-item-has-children:hover > .sub-menu,
.ps-nav__list > .menu-item-has-children:focus-within > .sub-menu,
.ps-nav__list > .menu-item-has-children.is-submenu-open > .sub-menu,
.ps-nav__list > .ps-nav__item--has-children:hover > .sub-menu,
.ps-nav__list > .ps-nav__item--has-children:focus-within > .sub-menu,
.ps-nav__list > .ps-nav__item--has-children.is-submenu-open > .sub-menu,
.ps-nav__list .sub-menu .menu-item-has-children:hover > .sub-menu,
.ps-nav__list .sub-menu .menu-item-has-children:focus-within > .sub-menu,
.ps-nav__list .sub-menu .menu-item-has-children.is-submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ps-nav__list .sub-menu .menu-item-has-children,
.ps-nav__list .ps-nav__submenu .menu-item-has-children {
	position: relative;
}

.ps-nav__list .sub-menu .sub-menu,
.ps-nav__list .ps-nav__submenu .ps-nav__submenu {
	top: 0;
	left: calc(100% + 4px);
	transform: translateX(8px);
}

.ps-nav__list .sub-menu .menu-item-has-children:hover > .sub-menu,
.ps-nav__list .sub-menu .menu-item-has-children:focus-within > .sub-menu,
.ps-nav__list .sub-menu .menu-item-has-children.is-submenu-open > .sub-menu {
	transform: translateX(0);
}

.ps-nav__list a,
.ps-nav__link {
	display: block;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ps-text);
	border-radius: var(--ps-radius-sm);
	transition: all var(--ps-transition);
}

.ps-nav__list a:hover,
.ps-nav__link:hover,
.ps-nav__list .current-menu-item > a,
.ps-nav__item--current .ps-nav__link {
	color: var(--ps-gold);
	background: transparent;
}

.ps-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ps-header__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-navy);
	text-decoration: none;
}

.ps-header__phone-icon {
	width: 18px;
	height: 18px;
	fill: var(--ps-gold);
}

.ps-header__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--ps-navy);
	line-height: 0;
}

.ps-header__toggle-icon {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.ps-header__toggle-icon--close {
	display: none;
}

.ps-header__toggle[aria-expanded="true"] .ps-header__toggle-icon--menu {
	display: none;
}

.ps-header__toggle[aria-expanded="true"] .ps-header__toggle-icon--close {
	display: block;
}

.ps-nav__mobile-footer {
	display: none;
}

body.ps-menu-open {
	overflow: hidden;
}

.ps-main { padding-top: var(--ps-header-offset); }

/* ==========================================================================
   Hero
   ========================================================================== */
.ps-hero {
	position: relative;
	padding: 60px 0 0;
	background: linear-gradient(135deg, var(--ps-white) 0%, var(--ps-gray-bg) 100%);
	overflow: hidden;
}

.ps-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	min-height: calc(100vh - var(--ps-header-offset) - 60px);
}

.ps-hero__badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(212, 175, 55, 0.12);
	color: var(--ps-gold-dark);
	font-size: 13px;
	font-weight: 600;
	border-radius: 50px;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
}

.ps-hero__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	line-height: 1.15;
	margin-bottom: 24px;
	background: linear-gradient(135deg, var(--ps-navy) 0%, var(--ps-navy-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ps-hero__subtitle {
	font-size: 18px;
	color: var(--ps-text-muted);
	margin-bottom: 36px;
	max-width: 520px;
}

.ps-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 48px;
}

.ps-hero__trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 8px;
}

.ps-hero__trust-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 16px;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: var(--ps-radius-lg);
	box-shadow: 0 8px 32px rgba(16, 41, 71, 0.08);
	overflow: hidden;
	transition: all var(--ps-transition);
}

.ps-hero__trust-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--ps-gold), transparent);
	opacity: 0.75;
}

.ps-hero__trust-card:hover {
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(212, 175, 55, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(16, 41, 71, 0.12);
}

.ps-hero__trust-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	background: rgba(212, 175, 55, 0.14);
	border: 1px solid rgba(212, 175, 55, 0.28);
	border-radius: 50%;
	color: var(--ps-gold);
}

.ps-hero__trust-card__icon i {
	font-size: 18px;
	line-height: 1;
}

.ps-hero__trust-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ps-hero__trust-number {
	display: block;
	font-family: var(--ps-font-heading);
	font-size: 26px;
	font-weight: 700;
	color: var(--ps-navy);
	line-height: 1.1;
	margin-bottom: 6px;
}

.ps-hero__trust-label {
	font-size: 13px;
	color: var(--ps-text-muted);
	line-height: 1.4;
}

.ps-hero__image-wrap {
	position: relative;
}

.ps-hero__image-bg {
	position: absolute;
	top: 20px;
	right: -20px;
	width: 90%;
	height: 90%;
	background: linear-gradient(135deg, var(--ps-gold-light), var(--ps-gold));
	border-radius: var(--ps-radius-lg);
	opacity: 0.15;
}

.ps-hero__image {
	position: relative;
	border-radius: var(--ps-radius-lg);
	box-shadow: var(--ps-shadow-lg);
	width: 100%;
	object-fit: cover;
}

.ps-hero__card {
	position: absolute;
	bottom: 30px;
	left: -30px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 24px;
}

.ps-hero__card-icon {
	display: inline-flex;
	align-items: center;
	color: var(--ps-gold);
}

.ps-hero__card-icon i {
	font-size: 28px;
}

.ps-hero__card strong {
	display: block;
	font-size: 15px;
	color: var(--ps-navy);
}

.ps-hero__card span {
	font-size: 13px;
	color: var(--ps-text-muted);
}

.ps-hero__wave {
	margin-top: -1px;
	line-height: 0;
}

.ps-hero__wave svg {
	width: 100%;
	height: 80px;
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */
.ps-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ps-feature-card {
	padding: 36px 28px;
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow);
	transition: all var(--ps-transition);
	border: 1px solid transparent;
}

.ps-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ps-shadow-lg);
	border-color: rgba(212, 175, 55, 0.2);
}

.ps-feature-card__icon {
	display: block;
	margin-bottom: 20px;
	color: var(--ps-gold);
}

.ps-feature-card__icon i {
	font-size: 36px;
}

.ps-feature-card__title {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.ps-feature-card__desc {
	font-size: 15px;
	color: var(--ps-text-muted);
	margin: 0;
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.ps-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ps-service-card {
	display: block;
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow);
	border: 1px solid rgba(16, 41, 71, 0.08);
	padding: 28px 24px 32px;
	text-align: center;
}

.ps-service-card__media {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 22px;
}

.ps-service-card__image {
	width: 132px;
	height: 132px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0 auto;
	border: 4px solid rgba(212, 175, 55, 0.22);
	box-shadow: 0 10px 28px rgba(16, 41, 71, 0.12);
	background: var(--ps-white);
}

.ps-service-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 132px;
	height: 132px;
	margin: 0 auto;
	padding: 12px;
	text-align: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ps-navy-light), var(--ps-navy));
	border: 4px solid rgba(212, 175, 55, 0.22);
	box-shadow: 0 10px 28px rgba(16, 41, 71, 0.12);
}

.ps-service-card__placeholder span {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.92);
}

.ps-service-card__body {
	padding: 0;
}

.ps-service-card__title {
	font-size: 1rem;
	margin-bottom: 12px;
	color: var(--ps-navy);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ps-service-card__excerpt {
	font-size: 14px;
	color: var(--ps-text-muted);
	margin-bottom: 0;
	line-height: 1.65;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.ps-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ps-gallery-item {
	position: relative;
	border-radius: var(--ps-radius);
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--ps-shadow);
	transition: all var(--ps-transition);
}

.ps-gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--ps-shadow-lg);
}

.ps-gallery-item__images {
	display: flex;
	height: 280px;
	cursor: pointer;
}

.ps-gallery-item__half {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ps-gallery-item__half::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to top, rgba(16, 41, 71, 0.28) 0%, transparent 100%);
}

.ps-gallery-item__after::after {
	background: linear-gradient(to top, rgba(212, 175, 55, 0.28) 0%, transparent 100%);
}

.ps-gallery-item__label {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	padding: 4px 12px;
	background: rgba(16, 41, 71, 0.8);
	color: var(--ps-white);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
	letter-spacing: 1px;
	pointer-events: none;
}

.ps-gallery-item__after .ps-gallery-item__label {
	background: rgba(212, 175, 55, 0.9);
}

.ps-gallery-item__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.45;
	color: var(--ps-navy);
}

.ps-gallery-item__placeholder i {
	font-size: 48px;
}

.ps-gallery-item__photo {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ps-gallery-item__media {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.ps-gallery-item__media .ps-gallery-item__placeholder {
	position: absolute;
	inset: 0;
}

.ps-gallery-item__video {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 0;
}

.ps-gallery-item__embed {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 300%;
	height: 300%;
	border: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.ps-gallery-item__embed.is-interactive {
	pointer-events: auto;
}

.ps-gallery-item__play {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(16, 41, 71, 0.08) 0%, rgba(16, 41, 71, 0.32) 100%);
	border: none;
	cursor: pointer;
	color: var(--ps-white);
	opacity: 1;
	transition: opacity var(--ps-transition), background var(--ps-transition);
}

.ps-gallery-item__play--preview {
	background: linear-gradient(180deg, rgba(16, 41, 71, 0.05) 0%, rgba(16, 41, 71, 0.24) 100%);
}

.ps-gallery-item__play--image-only,
.ps-gallery-item__play--hidden {
	display: none;
}

.ps-gallery-item__after .ps-gallery-item__play {
	background: linear-gradient(180deg, rgba(16, 41, 71, 0.06) 0%, rgba(16, 41, 71, 0.28) 100%);
}

.ps-gallery-item__after .ps-gallery-item__play--preview {
	background: linear-gradient(180deg, rgba(16, 41, 71, 0.04) 0%, rgba(16, 41, 71, 0.22) 100%);
}

.ps-gallery-item__play:hover,
.ps-gallery-item__play:focus-visible {
	background: linear-gradient(180deg, rgba(16, 41, 71, 0.12) 0%, rgba(16, 41, 71, 0.45) 100%);
}

.ps-gallery-item__play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 8px 24px rgba(16, 41, 71, 0.28),
		0 0 0 3px rgba(255, 255, 255, 0.35);
	transition: transform var(--ps-transition), box-shadow var(--ps-transition), background var(--ps-transition);
}

.ps-gallery-item__play-btn svg {
	width: 20px;
	height: 20px;
	fill: var(--ps-navy);
	margin-left: 2px;
}

.ps-gallery-item__pause-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 8px 24px rgba(16, 41, 71, 0.28),
		0 0 0 3px rgba(255, 255, 255, 0.35);
	transition: transform var(--ps-transition), box-shadow var(--ps-transition), background var(--ps-transition);
}

.ps-gallery-item__pause-btn svg {
	width: 20px;
	height: 20px;
	fill: var(--ps-navy);
}

.ps-gallery-item__play.is-playing .ps-gallery-item__play-btn {
	display: none;
}

.ps-gallery-item__play.is-playing .ps-gallery-item__pause-btn {
	display: inline-flex;
}

.ps-gallery-item__play.is-playing {
	opacity: 0;
	pointer-events: none;
	background: transparent;
}

.ps-gallery-item__media:hover .ps-gallery-item__play.is-playing,
.ps-lightbox__media:hover .ps-gallery-item__play.is-playing,
.ps-gallery-item__play.is-playing:focus-visible {
	opacity: 1;
	pointer-events: auto;
	background: linear-gradient(180deg, rgba(16, 41, 71, 0.02) 0%, rgba(16, 41, 71, 0.18) 100%);
}

.ps-gallery-item__play:hover .ps-gallery-item__play-btn,
.ps-gallery-item__play:focus-visible .ps-gallery-item__play-btn,
.ps-gallery-item__play:hover .ps-gallery-item__pause-btn,
.ps-gallery-item__play:focus-visible .ps-gallery-item__pause-btn {
	transform: scale(1.08);
	background: #ffffff;
	box-shadow:
		0 10px 30px rgba(16, 41, 71, 0.34),
		0 0 0 4px rgba(255, 255, 255, 0.5);
}

.ps-gallery-item__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 55%;
	z-index: 2;
	background: linear-gradient(to top, rgba(16, 41, 71, 0.85) 0%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	opacity: 0;
	transition: opacity var(--ps-transition);
	pointer-events: none;
}

.ps-gallery-item:hover .ps-gallery-item__overlay {
	opacity: 1;
}

.ps-gallery-item__overlay .ps-btn {
	pointer-events: auto;
}

.ps-gallery-item__title {
	color: var(--ps-white);
	font-size: 1.1rem;
	margin-bottom: 12px;
}

/* Lightbox */
.ps-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all var(--ps-transition);
}

.ps-lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.ps-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 41, 71, 0.9);
}

.ps-lightbox__content {
	position: relative;
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	padding: 40px;
	max-width: 960px;
	width: 90%;
	z-index: 1;
}

.ps-lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 2;
}

.ps-lightbox__close svg {
	width: 24px;
	height: 24px;
	fill: var(--ps-text);
}

.ps-lightbox__title {
	margin-bottom: 0;
}

.ps-lightbox__comparison {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

.ps-lightbox__panel {
	flex: 1;
	position: relative;
	border-radius: var(--ps-radius-sm);
	overflow: hidden;
	background: var(--ps-gray-bg);
}

.ps-lightbox__panel-label {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	padding: 4px 12px;
	background: rgba(16, 41, 71, 0.8);
	color: var(--ps-white);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
	letter-spacing: 1px;
	pointer-events: none;
}

.ps-lightbox__after .ps-lightbox__panel-label {
	background: rgba(212, 175, 55, 0.9);
}

.ps-lightbox__media {
	position: relative;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ps-gray-bg);
	overflow: hidden;
}

.ps-lightbox__after .ps-lightbox__media {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
}

.ps-lightbox__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	border: 0;
}

.ps-lightbox__embed {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border: 0;
}

.ps-lightbox__video.is-active {
	display: block;
}

.ps-lightbox__embed.is-active {
	display: block;
}

.ps-lightbox__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
	position: absolute;
	inset: 0;
	z-index: 1;
}

.ps-lightbox__image.is-active {
	display: block;
}

.ps-lightbox__fallback {
	font-weight: 600;
	color: var(--ps-text-muted);
	position: relative;
	z-index: 1;
}

.ps-lightbox__fallback.is-hidden {
	display: none;
}

.ps-lightbox__media .ps-gallery-item__play.is-hidden {
	display: none;
}

/* ==========================================================================
   Doctor Cards
   ========================================================================== */
.ps-surgeons-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.ps-doctor-card {
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	overflow: hidden;
	box-shadow: var(--ps-shadow);
	transition: all var(--ps-transition);
}

.ps-doctor-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--ps-shadow-lg);
}

.ps-doctor-card__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/5;
}

.ps-doctor-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ps-doctor-card:hover .ps-doctor-card__image {
	transform: scale(1.05);
}

.ps-doctor-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(16, 41, 71, 0.3), transparent);
}

.ps-doctor-card__content {
	padding: 28px;
}

.ps-doctor-card__name {
	font-size: 1.35rem;
	margin-bottom: 6px;
}

.ps-doctor-card__specialty {
	font-size: 14px;
	color: var(--ps-gold);
	font-weight: 600;
	margin-bottom: 8px;
}

.ps-doctor-card__experience {
	display: inline-block;
	padding: 4px 12px;
	background: var(--ps-gray-bg);
	font-size: 12px;
	font-weight: 600;
	color: var(--ps-navy);
	border-radius: 50px;
	margin-bottom: 12px;
}

.ps-doctor-card__bio {
	font-size: 14px;
	color: var(--ps-text-muted);
	margin: 0;
}

/* ==========================================================================
   Testimonials (Swiper)
   ========================================================================== */
.swiper-horizontal {
	touch-action: pan-y;
	padding-bottom: 24px;
}

.ps-testimonials-swiper-wrap {
	position: relative;
	padding-bottom: 8px;
}

.ps-testimonials-swiper-inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.ps-testimonials-swiper {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	padding: 16px 8px 28px;
}

.ps-testimonials-swiper-prev,
.ps-testimonials-swiper-next {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.ps-testimonials-swiper .swiper-slide {
	height: auto;
	padding-bottom: 12px;
}

.ps-testimonial-card {
	padding: 32px;
	height: 100%;
	transition: all var(--ps-transition);
	margin-bottom: 4px;
	box-shadow: 0 2px 10px rgba(16, 41, 71, 0.04);
}

.ps-testimonial-card__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.ps-testimonial-card__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.ps-testimonial-card__avatar--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--ps-gold), var(--ps-gold-dark));
	color: var(--ps-white);
	font-weight: 700;
	font-size: 20px;
}

.ps-testimonial-card__name {
	font-family: var(--ps-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--ps-navy);
	margin: 0;
}

.ps-testimonial-card__procedure {
	font-size: 13px;
	color: var(--ps-gold);
}

.ps-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 16px;
}

.ps-star {
	color: var(--ps-gray-light);
	font-size: 16px;
}

.ps-star--filled { color: var(--ps-gold); }

.ps-testimonial-card__quote {
	font-size: 15px;
	color: var(--ps-text-muted);
	font-style: italic;
	margin: 0;
	line-height: 1.7;
}

.ps-testimonials-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.ps-testimonials-swiper-pagination {
	position: static !important;
	width: 100% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.ps-testimonials-swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--ps-gray-light);
	opacity: 1;
	margin: 0 !important;
	transition: all var(--ps-transition);
}

.ps-testimonials-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--ps-gold);
	width: 28px;
	border-radius: 5px;
}

.ps-testimonials-nav__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--ps-gold);
	background: var(--ps-white);
	color: var(--ps-gold);
	font-size: 24px;
	cursor: pointer;
	transition: all var(--ps-transition);
	padding: 0;
	flex-shrink: 0;
}

.ps-testimonials-nav__btn:hover {
	background: var(--ps-gold);
	color: var(--ps-white);
}

/* ==========================================================================
   Statistics
   ========================================================================== */
.ps-stats {
	background: linear-gradient(135deg, var(--ps-navy) 0%, var(--ps-navy-light) 100%);
	padding-top: var(--ps-section-padding-y);
	padding-bottom: var(--ps-section-padding-y);
}

.ps-stats-section.ps-section {
	padding-top: 0;
	padding-bottom: 0;
}

.ps-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.ps-stat-card {
	position: relative;
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--ps-radius-lg);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	transition: all var(--ps-transition);
}

.ps-stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--ps-gold), transparent);
	opacity: 0.7;
}

.ps-stat-card:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(212, 175, 55, 0.35);
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.ps-stat-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 20px;
	background: rgba(212, 175, 55, 0.15);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 50%;
	color: var(--ps-gold);
}

.ps-stat-card__icon i {
	font-size: 20px;
	line-height: 1;
}

.ps-stat__number {
	font-family: var(--ps-font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--ps-gold);
	line-height: 1;
	margin-bottom: 12px;
}

.ps-stat__suffix {
	color: var(--ps-gold);
}

.ps-stat__label {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.ps-process-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.ps-process-timeline::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(90deg, var(--ps-gold), var(--ps-gold-light), var(--ps-gold));
	z-index: 0;
}

.ps-process-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.ps-process-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--ps-gold), var(--ps-gold-dark));
	color: var(--ps-white);
	font-family: var(--ps-font-heading);
	font-size: 24px;
	font-weight: 700;
	border-radius: 50%;
	margin-bottom: 24px;
	box-shadow: var(--ps-shadow-gold);
}

.ps-process-step__title {
	font-size: 1.15rem;
	margin-bottom: 12px;
}

.ps-process-step__desc {
	font-size: 14px;
	color: var(--ps-text-muted);
	margin: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.ps-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.ps-faq-item {
	background: var(--ps-white);
	border-radius: var(--ps-radius-sm);
	margin-bottom: 12px;
	box-shadow: var(--ps-shadow);
	overflow: hidden;
	border: 1px solid transparent;
	transition: border-color var(--ps-transition);
}

.ps-section--gray .ps-faq-item { background: var(--ps-white); }

.ps-faq-item.is-active {
	border-color: rgba(212, 175, 55, 0.3);
}

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

.ps-faq-item__question:hover { color: var(--ps-gold); }

.ps-faq-item__icon {
	font-size: 24px;
	color: var(--ps-gold);
	transition: transform var(--ps-transition);
	flex-shrink: 0;
}

.ps-faq-item.is-active .ps-faq-item__icon {
	transform: rotate(45deg);
}

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

.ps-faq-item.is-active .ps-faq-item__answer {
	max-height: 300px;
}

.ps-faq-item__answer p {
	padding: 0 28px 22px;
	margin: 0;
	font-size: 15px;
	color: var(--ps-text-muted);
	line-height: 1.7;
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */
.ps-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.ps-blog-card {
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	overflow: hidden;
	box-shadow: var(--ps-shadow);
	transition: all var(--ps-transition);
}

.ps-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ps-shadow-lg);
}

.ps-blog-card__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.ps-blog-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ps-gray-bg);
	color: var(--ps-gold);
	opacity: 0.7;
}

.ps-blog-card__image--placeholder i {
	font-size: 48px;
}

.ps-blog-card__content { padding: 28px; }

.ps-blog-card__date {
	font-size: 13px;
	color: var(--ps-gold);
	font-weight: 600;
}

.ps-blog-card__title {
	font-size: 1.2rem;
	margin: 8px 0 12px;
}

.ps-blog-card__title a {
	color: var(--ps-navy);
	text-decoration: none;
}

.ps-blog-card__title a:hover { color: var(--ps-gold); }

.ps-blog-card__excerpt {
	font-size: 14px;
	color: var(--ps-text-muted);
	margin-bottom: 16px;
}

.ps-blog-card__read-more {
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-gold);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.ps-cta-section {
	background: var(--ps-gray-bg);
}

.ps-cta {
	position: relative;
	padding: clamp(48px, 6vw, 72px) clamp(28px, 5vw, 64px);
	border-radius: 24px;
	overflow: hidden;
	isolation: isolate;
	background-color: var(--ps-navy);
	background-image:
		radial-gradient(ellipse 80% 60% at 15% 25%, rgba(26, 58, 92, 0.95) 0%, transparent 55%),
		radial-gradient(ellipse 70% 55% at 85% 20%, rgba(212, 175, 55, 0.42) 0%, transparent 50%),
		radial-gradient(ellipse 60% 50% at 55% 85%, rgba(184, 150, 46, 0.28) 0%, transparent 55%),
		radial-gradient(ellipse 50% 45% at 90% 75%, rgba(232, 212, 139, 0.18) 0%, transparent 50%),
		linear-gradient(125deg, #0a1f35 0%, var(--ps-navy) 32%, #163a5e 58%, #1a3a5c 78%, #0f2742 100%);
	box-shadow: 0 20px 60px rgba(16, 41, 71, 0.28);
}

.ps-cta__mesh {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(118deg, transparent 38%, rgba(255, 255, 255, 0.06) 48%, transparent 58%),
		linear-gradient(205deg, transparent 30%, rgba(212, 175, 55, 0.08) 42%, transparent 54%);
	opacity: 0.9;
}

.ps-cta__mesh::before,
.ps-cta__mesh::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
}

.ps-cta__mesh::before {
	top: -18%;
	right: 8%;
	width: 42%;
	height: 70%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
}

.ps-cta__mesh::after {
	bottom: -25%;
	left: -5%;
	width: 45%;
	height: 75%;
	background: radial-gradient(circle, rgba(26, 58, 92, 0.65) 0%, transparent 72%);
}

.ps-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.ps-cta__title {
	color: var(--ps-white);
	font-family: var(--ps-font-body);
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 16px;
}

.ps-cta__desc {
	color: rgba(255, 255, 255, 0.88);
	margin: 0 auto 32px;
	font-size: clamp(15px, 2vw, 17px);
	line-height: 1.65;
	max-width: 560px;
}

.ps-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.ps-btn--cta-primary {
	background: var(--ps-white);
	color: var(--ps-navy) !important;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.ps-btn--cta-primary:hover {
	background: rgba(255, 255, 255, 0.94);
	color: var(--ps-navy) !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.ps-btn--cta-outline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.85);
	padding: calc(var(--ps-btn-padding-y) - 2px) calc(var(--ps-btn-padding-x) - 2px);
	color: var(--ps-white) !important;
	box-shadow: none;
}

.ps-btn--cta-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--ps-white);
	color: var(--ps-white) !important;
	transform: translateY(-2px);
}

.ps-btn--cta-outline svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex-shrink: 0;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.ps-newsletter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 48px;
}

.ps-newsletter__title {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.ps-newsletter__desc {
	color: var(--ps-text-muted);
	margin: 0;
}

.ps-newsletter__form {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.ps-newsletter__input {
	padding: 14px 20px;
	border: 2px solid var(--ps-gray-light);
	border-radius: var(--ps-radius-sm);
	font-family: var(--ps-font-body);
	font-size: 15px;
	min-width: 280px;
	transition: border-color var(--ps-transition);
}

.ps-newsletter__input:focus {
	outline: none;
	border-color: var(--ps-gold);
}

.ps-newsletter__message {
	font-size: 14px;
	margin-top: 8px;
}

.ps-newsletter__message.success { color: #28a745; }
.ps-newsletter__message.error { color: #dc3545; }

/* ==========================================================================
   Hospital Info
   ========================================================================== */
.ps-hospital {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 48px;
	align-items: center;
}

.ps-hospital__media {
	position: relative;
}

.ps-hospital__image {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	border-radius: var(--ps-radius-lg);
	box-shadow: var(--ps-shadow-lg);
}

.ps-hospital__badge {
	position: absolute;
	left: 20px;
	bottom: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ps-navy);
	box-shadow: var(--ps-shadow);
}

.ps-hospital__badge i {
	color: var(--ps-gold);
}

.ps-hospital__title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin: 12px 0 16px;
	color: var(--ps-navy);
}

.ps-hospital__desc {
	color: var(--ps-text-muted);
	margin: 0 0 28px;
	line-height: 1.7;
}

.ps-hospital__details {
	display: grid;
	gap: 16px;
	margin-bottom: 28px;
}

.ps-hospital__detail {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
	background: var(--ps-white);
	border: 1px solid rgba(16, 41, 71, 0.08);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow);
}

.ps-hospital__detail-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	background: rgba(212, 175, 55, 0.12);
	border-radius: 50%;
	color: var(--ps-gold);
}

.ps-hospital__detail-icon i {
	font-size: 16px;
}

.ps-hospital__detail strong {
	display: block;
	font-size: 13px;
	color: var(--ps-navy);
	margin-bottom: 4px;
}

.ps-hospital__detail a,
.ps-hospital__detail span {
	font-size: 14px;
	color: var(--ps-text-muted);
	line-height: 1.5;
	text-decoration: none;
}

.ps-hospital__detail a:hover {
	color: var(--ps-gold);
}

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

.ps-hospital__actions .ps-btn i {
	font-size: 14px;
}

/* ==========================================================================
   Map
   ========================================================================== */
.ps-map-wrap {
	overflow: hidden;
	box-shadow: var(--ps-shadow);
	margin-top: 40px;
}

.ps-map-wrap iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: 0;
}

.ps-map-section .ps-map-wrap { margin-top: 0; }

/* ==========================================================================
   Page Hero
   ========================================================================== */
.ps-page-hero {
	position: relative;
	padding-top: calc(var(--ps-section-padding-y) + 16px);
	padding-bottom: calc(var(--ps-section-padding-y) + 16px);
	background-color: #102947;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	overflow: hidden;
}

.ps-page-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
	color: var(--ps-white);
}

.ps-page-hero__desc {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.7;
}

.ps-page-hero .ps-page-hero__badge {
	background: rgba(255, 255, 255, 0.14);
	color: var(--ps-gold-light);
}

.ps-page-hero--results .ps-results-hero-stat span {
	color: rgba(255, 255, 255, 0.82);
}

.ps-page-hero--service .ps-page-hero__title,
.ps-page-hero--service .ps-page-hero__desc {
	text-align: left;
	margin-left: 0;
}

.ps-page-hero--service .ps-page-hero__desc {
	max-width: 560px;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.ps-form {
	padding: 40px;
}

.ps-form h3 {
	margin-bottom: 24px;
}

.ps-form__group {
	margin-bottom: 20px;
}

.ps-form__group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-navy);
	margin-bottom: 8px;
}

.ps-form__group label span { color: #dc3545; }

.ps-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.ps-form__input {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid var(--ps-gray-light);
	border-radius: var(--ps-radius-sm);
	font-family: var(--ps-font-body);
	font-size: 15px;
	transition: border-color var(--ps-transition);
	background: var(--ps-white);
}

.ps-form__input:focus {
	outline: none;
	border-color: var(--ps-gold);
}

.ps-form__textarea { resize: vertical; min-height: 120px; }

.ps-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.ps-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 28px;
}

/* Alerts */
.ps-alert {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 28px;
	border-radius: var(--ps-radius-sm);
	margin-bottom: 32px;
}

.ps-alert--success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.ps-alert--error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.ps-alert__icon {
	font-size: 24px;
	color: inherit;
}

.ps-alert__icon i {
	font-size: 24px;
}

/* ==========================================================================
   Booking Page
   ========================================================================== */
.ps-booking-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
}

.ps-booking-grid--form-only {
	grid-template-columns: 1fr;
	max-width: 760px;
	margin: 0 auto;
}

.ps-booking-info h2 {
	margin-bottom: 16px;
}

.ps-booking-benefits {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.ps-booking-benefits li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	font-size: 15px;
}

.ps-booking-benefits svg {
	width: 20px;
	height: 20px;
	fill: var(--ps-gold);
	flex-shrink: 0;
}

.ps-booking-phone {
	font-size: 20px;
	font-weight: 700;
	color: var(--ps-gold);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.ps-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
}

.ps-contact-grid--form-only {
	grid-template-columns: 1fr;
	max-width: 760px;
	margin: 0 auto;
}

.ps-contact-cards {
	display: grid;
	gap: 16px;
	margin: 32px 0;
}

.ps-contact-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--ps-gray-bg);
	border-radius: var(--ps-radius-sm);
}

.ps-contact-card--emergency {
	background: rgba(220, 53, 69, 0.08);
	border: 1px solid rgba(220, 53, 69, 0.2);
}

.ps-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.12);
	color: var(--ps-gold);
	flex-shrink: 0;
}

.ps-contact-card__icon i {
	font-size: 18px;
}

.ps-contact-card strong {
	display: block;
	font-size: 13px;
	color: var(--ps-text-muted);
	margin-bottom: 4px;
}

.ps-contact-card a,
.ps-contact-card span {
	font-size: 15px;
	color: var(--ps-navy);
	overflow-wrap: anywhere;
}

.ps-form-popup {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ps-transition), visibility var(--ps-transition);
}

.ps-form-popup.is-active {
	opacity: 1;
	visibility: visible;
}

.ps-form-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 41, 71, 0.72);
}

.ps-form-popup__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	padding: 40px 32px 32px;
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow-lg);
	text-align: center;
	transform: translateY(16px) scale(0.98);
	transition: transform var(--ps-transition);
}

.ps-form-popup.is-active .ps-form-popup__dialog {
	transform: translateY(0) scale(1);
}

.ps-form-popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	background: var(--ps-gray-bg);
	border-radius: 50%;
	color: var(--ps-navy);
	cursor: pointer;
	transition: background var(--ps-transition), color var(--ps-transition);
}

.ps-form-popup__close:hover {
	background: var(--ps-navy);
	color: var(--ps-white);
}

.ps-form-popup__close i {
	font-size: 16px;
}

.ps-form-popup__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	font-size: 32px;
}

.ps-form-popup__icon--success {
	background: rgba(40, 167, 69, 0.12);
	color: #28a745;
}

.ps-form-popup__icon i {
	font-size: 36px;
}

.ps-form-popup__title {
	margin: 0 0 28px;
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--ps-navy);
}

.ps-form-popup__btn {
	min-width: 140px;
}

body.ps-popup-open {
	overflow: hidden;
}

/* ==========================================================================
   Book Now Page
   ========================================================================== */
.ps-book-now-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 48px;
	align-items: start;
}

.ps-book-now-grid--form-only {
	grid-template-columns: 1fr;
	max-width: 760px;
	margin: 0 auto;
}

.ps-book-now-info h2 {
	margin-bottom: 12px;
}

.ps-book-now-info > p {
	margin-bottom: 24px;
	color: var(--ps-text-muted);
}

.ps-book-now-form h3 {
	margin: 0 0 24px;
}

/* ==========================================================================
   Legal Pages (Privacy Policy, Terms & Conditions)
   ========================================================================== */
.ps-legal-content {
	max-width: 860px;
	margin: 0 auto;
}

.ps-legal-meta {
	font-size: 14px;
	color: var(--ps-text-muted);
	margin: 0 0 32px;
}

.ps-legal-section {
	padding-bottom: 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--ps-gray-light);
}

.ps-legal-section:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.ps-legal-section__title {
	font-size: 1.35rem;
	margin: 0 0 12px;
	color: var(--ps-navy);
}

.ps-legal-section__body {
	color: var(--ps-text-muted);
	line-height: 1.8;
	font-size: 15px;
	overflow-wrap: anywhere;
}

.ps-legal-section__body p {
	margin: 0 0 12px;
}

.ps-legal-section__body p:last-child {
	margin-bottom: 0;
}

.ps-legal-section__body ul,
.ps-legal-section__body ol {
	margin: 0 0 12px 1.25rem;
}

.ps-legal-section__body li + li {
	margin-top: 6px;
}

/* ==========================================================================
   Services Page
   ========================================================================== */
.ps-services-page-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.ps-service-page-card {
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	overflow: hidden;
	box-shadow: var(--ps-shadow);
	transition: all var(--ps-transition);
}

.ps-service-page-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ps-shadow-lg);
}

.ps-service-page-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ps-service-page-card__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	background: linear-gradient(135deg, var(--ps-gray-bg), var(--ps-white));
}

.ps-service-page-card__icon {
	display: block;
	color: var(--ps-gold);
}

.ps-service-page-card__icon i {
	font-size: 48px;
}

.ps-service-page-card__body { padding: 28px; }

.ps-service-page-card__title {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.ps-service-page-card__title a { color: var(--ps-navy); }

.ps-service-page-card__excerpt {
	font-size: 14px;
	color: var(--ps-text-muted);
	margin-bottom: 16px;
}

.ps-service-page-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--ps-text-muted);
	margin-bottom: 20px;
}

/* ==========================================================================
   Single Service
   ========================================================================== */
.ps-service-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	text-align: left;
}

.ps-service-hero__icon {
	display: block;
	color: var(--ps-gold);
}

.ps-service-hero__icon i {
	font-size: 48px;
}

.ps-service-detail {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
}

.ps-service-info-card {
	padding: 32px;
	position: sticky;
	top: calc(var(--ps-header-offset) + 24px);
}

.ps-service-info-card h3 {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--ps-gray-bg);
}

.ps-service-info-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--ps-gray-bg);
	font-size: 14px;
}

.ps-service-info-item__label { color: var(--ps-text-muted); }
.ps-service-info-item__value { font-weight: 600; text-align: right; max-width: 60%; }

.ps-service-info-card .ps-btn { width: 100%; margin-top: 24px; }

.ps-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 800px;
	margin: 0 auto;
}

.ps-benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: var(--ps-white);
	border-radius: var(--ps-radius-sm);
	box-shadow: var(--ps-shadow);
}

.ps-benefit-item svg {
	width: 20px;
	height: 20px;
	fill: var(--ps-gold);
	flex-shrink: 0;
}

.ps-service-ba-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 800px;
	margin: 0 auto;
}

.ps-service-ba-placeholder {
	height: 300px;
	background: var(--ps-gray-bg);
	border-radius: var(--ps-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--ps-text-muted);
}

.ps-service-ba-placeholder--after {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), var(--ps-gray-bg));
}

/* ==========================================================================
   About Page
   ========================================================================== */
.ps-about-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ps-about-story__image img {
	border-radius: var(--ps-radius-lg);
	box-shadow: var(--ps-shadow-lg);
}

.ps-mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.ps-mission-card {
	padding: 40px;
	text-align: center;
}

.ps-mission-card__icon {
	display: block;
	margin-bottom: 20px;
	color: var(--ps-gold);
}

.ps-mission-card__icon i {
	font-size: 48px;
}

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

.ps-cert-card {
	padding: 32px 24px;
	text-align: center;
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow);
	transition: all var(--ps-transition);
}

.ps-cert-card:hover {
	transform: translateY(-4px);
	border-bottom: 3px solid var(--ps-gold);
}

.ps-cert-card__icon {
	display: block;
	margin-bottom: 16px;
	color: var(--ps-gold);
}

.ps-cert-card__icon i {
	font-size: 36px;
}

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

.ps-facility-card {
	padding: 32px 24px;
	background: var(--ps-white);
	border-radius: var(--ps-radius);
	box-shadow: var(--ps-shadow);
	border-left: 4px solid var(--ps-gold);
}

.ps-safety-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 800px;
	margin: 0 auto;
}

.ps-safety-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: var(--ps-gray-bg);
	border-radius: var(--ps-radius-sm);
}

.ps-safety-item svg {
	width: 20px;
	height: 20px;
	fill: var(--ps-gold);
	flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ps-footer {
	background: var(--ps-navy);
	color: rgba(255, 255, 255, 0.8);
}

.ps-footer__top {
	padding-top: var(--ps-section-padding-y);
	padding-bottom: var(--ps-section-padding-y);
}

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

.ps-footer__about {
	font-size: 14px;
	line-height: 1.7;
	margin: 20px 0 0;
}

.ps-footer__social {
	margin-top: 24px;
}

.ps-footer__social-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ps-gold);
	margin-bottom: 14px;
}

.ps-footer__title {
	color: var(--ps-white);
	font-family: var(--ps-font-body);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
}

.ps-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ps-footer__links li { margin-bottom: 12px; }

.ps-footer__links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: color var(--ps-transition);
	overflow-wrap: anywhere;
}

.ps-footer__links a:hover { color: var(--ps-gold); }

.ps-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ps-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.ps-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	flex-shrink: 0;
	margin-top: 3px;
	color: var(--ps-white);
}

.ps-footer__contact-icon i {
	font-size: 15px;
	line-height: 1;
}

.ps-footer__contact a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	overflow-wrap: anywhere;
}

.ps-footer__contact a:hover {
	color: var(--ps-gold);
}

.ps-social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.ps-social--footer {
	margin-top: 0;
}

.ps-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: var(--ps-white);
	transition: all var(--ps-transition);
}

.ps-social__link:hover {
	background: var(--ps-gold);
	border-color: var(--ps-gold);
	color: var(--ps-white);
	transform: translateY(-2px);
}

.ps-social__link i {
	font-size: 16px;
	line-height: 1;
}

.ps-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
}

.ps-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ps-footer__copyright {
	font-size: 13px;
	margin: 0;
	width: 100%;
	text-align: center;
}

/* ==========================================================================
   404
   ========================================================================== */
.ps-404 {
	min-height: 60vh;
	display: flex;
	align-items: center;
	text-align: center;
}

.ps-404__code {
	font-family: var(--ps-font-heading);
	font-size: 120px;
	font-weight: 700;
	color: var(--ps-gold);
	line-height: 1;
	opacity: 0.3;
}

.ps-404__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

/* ==========================================================================
   Scroll Reveal
   ========================================================================== */
.ps-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: var(--delay, 0s);
}

.ps-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ps-reveal--delay { transition-delay: 0.2s; }

/* ==========================================================================
   Content
   ========================================================================== */
.ps-content {
	max-width: 800px;
	margin: 0 auto;
}

.ps-content h2, .ps-content h3 { margin-top: 1.5em; }

.ps-pagination {
	margin-top: 48px;
	text-align: center;
}

.ps-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.ps-pagination a,
.ps-pagination span {
	padding: 10px 16px;
	border-radius: var(--ps-radius-sm);
	background: var(--ps-gray-bg);
	color: var(--ps-navy);
	font-weight: 600;
}

.ps-pagination .current {
	background: var(--ps-gold);
	color: var(--ps-white);
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */
.ps-whatsapp-float {
	position: fixed;
	z-index: 990;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	transition: transform var(--ps-transition), box-shadow var(--ps-transition);
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	transform: translateZ(0);
}

.ps-whatsapp-float--bottom,
.ps-whatsapp-float--top,
.ps-whatsapp-float--left,
.ps-whatsapp-float--right {
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
}

.ps-whatsapp-float::before,
.ps-whatsapp-float::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.45);
	pointer-events: none;
	will-change: transform, opacity;
	animation: ps-whatsapp-pulse 2s ease-out infinite;
	-webkit-animation: ps-whatsapp-pulse 2s ease-out infinite;
}

.ps-whatsapp-float::after {
	inset: -8px;
	border-color: rgba(37, 211, 102, 0.25);
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}

.ps-whatsapp-float i {
	position: relative;
	z-index: 1;
	font-size: var(--ps-wa-icon-size, 30px);
	line-height: 1;
}

.ps-whatsapp-float:hover,
.ps-whatsapp-float:focus-visible,
.ps-whatsapp-float:active {
	color: #ffffff;
	transform: scale(1.08) translateZ(0);
	box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@keyframes ps-whatsapp-pulse {
	from {
		transform: scale(1);
		opacity: 1;
	}

	to {
		transform: scale(1.35);
		opacity: 0;
	}
}

@-webkit-keyframes ps-whatsapp-pulse {
	from {
		-webkit-transform: scale(1);
		opacity: 1;
	}

	to {
		-webkit-transform: scale(1.35);
		opacity: 0;
	}
}

@media (max-width: 768px) {
	.ps-whatsapp-float::before,
	.ps-whatsapp-float::after {
		animation-duration: 1.8s;
		-webkit-animation-duration: 1.8s;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.ps-hero__grid,
	.ps-about-story,
	.ps-service-hero,
	.ps-service-detail,
	.ps-booking-grid,
	.ps-contact-grid,
	.ps-book-now-grid,
	.ps-hospital {
		grid-template-columns: 1fr;
	}

	.ps-hero__grid {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		min-height: auto;
		gap: 20px;
	}

	.ps-hero__content {
		display: contents;
	}

	.ps-hero__image-wrap {
		order: 5;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

	.ps-hero__trust {
		order: 6;
	}

	.ps-hero__actions {
		margin-bottom: 24px;
	}

	.ps-contact-grid,
	.ps-book-now-grid,
	.ps-booking-grid {
		gap: 32px;
	}

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

	.ps-hospital__image {
		min-height: 280px;
	}

	.ps-hospital__actions {
		flex-direction: column;
	}

	.ps-hospital__actions .ps-btn {
		width: 100%;
	}

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

	.ps-gallery-grid,
	.ps-cert-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ps-process-timeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.ps-process-timeline::before { display: none; }

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

	.ps-footer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

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

	.ps-cta {
		padding: 40px 28px;
		border-radius: 20px;
	}

	.ps-cta__actions {
		flex-direction: column;
		width: 100%;
	}

	.ps-cta__actions .ps-btn {
		width: 100%;
		max-width: 320px;
	}

	.ps-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.ps-nav-overlay {
		position: fixed;
		inset: 0;
		top: var(--ps-header-offset);
		z-index: 998;
		background: rgba(16, 41, 71, 0.5);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.ps-nav-overlay.is-visible {
		opacity: 1;
		visibility: visible;
	}

	.ps-nav {
		position: fixed;
		top: var(--ps-header-offset);
		left: 0;
		right: 0;
		width: 100%;
		z-index: 999;
		background: var(--ps-white);
		padding: 0;
		margin: 0;
		box-shadow: 0 16px 48px rgba(16, 41, 71, 0.18);
		border-bottom: 3px solid var(--ps-gold);
		max-height: calc(100dvh - var(--ps-header-offset));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.ps-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.ps-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
	}

	.ps-nav__list li {
		border-bottom: 1px solid rgba(16, 41, 71, 0.08);
	}

	.ps-nav__item-row {
		display: flex;
		align-items: stretch;
	}

	.ps-nav__item-row > .ps-nav__link {
		flex: 1;
	}

	.ps-nav__submenu-toggle {
		width: 52px;
		height: auto;
		min-height: 52px;
		margin-right: 0;
		border-left: 1px solid rgba(16, 41, 71, 0.08);
	}

	.ps-nav__submenu-toggle-icon--down {
		width: 20px;
		height: 20px;
	}

	.ps-nav__submenu-toggle-icon--right {
		width: 18px;
		height: 18px;
	}

	.ps-nav__list .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--down,
	.ps-nav__list .ps-nav__item--has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--down {
		transform: rotate(180deg);
	}

	.ps-nav__list .sub-menu .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--right,
	.ps-nav__list .ps-nav__submenu .menu-item-has-children.is-submenu-open > .ps-nav__item-row .ps-nav__submenu-toggle-icon--right {
		transform: rotate(90deg);
	}

	.ps-nav__submenu-toggle:hover,
	.ps-nav__submenu-toggle:focus-visible {
		background: rgba(212, 175, 55, 0.12);
		color: var(--ps-gold-dark);
		outline: none;
	}

	.ps-nav__list .sub-menu,
	.ps-nav__list .ps-nav__submenu {
		position: static;
		display: none;
		min-width: 0;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: rgba(16, 41, 71, 0.03);
	}

	.ps-nav__list .menu-item-has-children.is-submenu-open > .sub-menu,
	.ps-nav__list .ps-nav__item--has-children.is-submenu-open > .sub-menu {
		display: block;
	}

	.ps-nav__list .sub-menu li,
	.ps-nav__list .ps-nav__submenu li {
		border-bottom: 1px solid rgba(16, 41, 71, 0.06);
	}

	.ps-nav__list .sub-menu li:last-child,
	.ps-nav__list .ps-nav__submenu li:last-child {
		border-bottom: 0;
	}

	.ps-nav__list .sub-menu a,
	.ps-nav__list .ps-nav__submenu a {
		padding: 14px 24px 14px 40px;
		font-size: 15px;
		font-weight: 500;
		white-space: normal;
	}

	.ps-nav__list .sub-menu .sub-menu a,
	.ps-nav__list .ps-nav__submenu .ps-nav__submenu a {
		padding-left: 56px;
	}

	.ps-nav__list li:last-child {
		border-bottom: none;
	}

	.ps-nav__list a,
	.ps-nav__link {
		padding: 16px 24px;
		font-size: 16px;
		font-weight: 600;
		border-radius: 0;
		color: var(--ps-navy);
	}

	.ps-nav__list a:hover,
	.ps-nav__link:hover,
	.ps-nav__list .current-menu-item > a,
	.ps-nav__item--current .ps-nav__link {
		background: rgba(212, 175, 55, 0.1);
		color: var(--ps-navy);
	}

	.ps-nav__list .current-menu-item > a,
	.ps-nav__item--current .ps-nav__link {
		border-left: 3px solid var(--ps-gold);
		padding-left: 21px;
		color: var(--ps-gold-dark);
	}

	.ps-nav__mobile-footer {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 20px 24px 24px;
		background: var(--ps-gray-bg);
		border-top: 1px solid rgba(16, 41, 71, 0.08);
	}

	.ps-nav__mobile-footer .ps-btn {
		width: 100%;
		justify-content: center;
		gap: 8px;
	}

	.ps-header__phone span { display: none; }
	.ps-header__cta { display: none; }
	.ps-header__toggle { display: block; }

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

	.ps-service-detail__sidebar { order: -1; }

	.ps-service-info-card { position: static; }
}

@media (max-width: 768px) {
	.ps-topbar__text {
		font-size: 15px;
		line-height: 1.25;
	}

	.ps-header__logo img,
	.ps-header__logo .custom-logo,
	.ps-logo__img {
		height: 40px;
		max-width: 190px;
	}

	.ps-section {
		padding-top: var(--ps-section-padding-y-mobile);
		padding-bottom: var(--ps-section-padding-y-mobile);
	}

	.ps-stats {
		padding-top: var(--ps-section-padding-y-mobile);
		padding-bottom: var(--ps-section-padding-y-mobile);
	}

	.ps-stat-card {
		padding: 28px 20px;
	}

	.ps-stat-card__icon {
		width: 46px;
		height: 46px;
		margin-bottom: 16px;
	}

	.ps-page-hero {
		padding-top: var(--ps-section-padding-y-mobile);
		padding-bottom: var(--ps-section-padding-y-mobile);
	}

	.ps-footer__top {
		padding-top: var(--ps-section-padding-y-mobile);
		padding-bottom: var(--ps-section-padding-y-mobile);
	}

	.ps-footer__grid {
		gap: 24px;
	}

	.ps-footer__title {
		margin-bottom: 16px;
	}

	.ps-footer__about {
		margin-top: 14px;
	}

	.ps-footer__social {
		margin-top: 18px;
	}

	.ps-form {
		padding: 28px 24px;
	}

	.ps-hero__trust {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ps-hero__trust-card {
		flex-direction: row;
		text-align: left;
		padding: 18px 20px;
		gap: 14px;
	}

	.ps-hero__trust-card__icon {
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.ps-hero__trust-card__body {
		align-items: flex-start;
	}

	.ps-hero__trust-number {
		font-size: 22px;
		margin-bottom: 2px;
	}

	.ps-hero__card { left: 10px; bottom: 10px; }

	.ps-gallery-item__play-btn {
		width: 38px;
		height: 38px;
	}

	.ps-gallery-item__play-btn svg {
		width: 18px;
		height: 18px;
		margin-left: 2px;
	}

	.ps-testimonials-swiper-inner {
		gap: 10px;
	}

	.ps-testimonials-swiper-prev,
	.ps-testimonials-swiper-next {
		width: 38px;
		height: 38px;
	}

	.ps-testimonials-swiper-pagination {
		margin-top: 24px;
	}

	.ps-features-grid,
	.ps-services-grid,
	.ps-gallery-grid,
	.ps-surgeons-grid,
	.ps-blog-grid,
	.ps-services-page-grid,
	.ps-cert-grid,
	.ps-mission-grid,
	.ps-benefits-grid,
	.ps-safety-list {
		grid-template-columns: 1fr;
	}

	.ps-process-timeline,
	.ps-facility-grid,
	.ps-stats__grid {
		grid-template-columns: 1fr;
	}

	.ps-form__row { grid-template-columns: 1fr; }

	.ps-book-now-grid,
	.ps-contact-grid,
	.ps-booking-grid {
		gap: 24px;
	}

	.ps-map-wrap iframe {
		height: 320px;
	}

	.ps-section-header__subtitle::before,
	.ps-section-header__subtitle::after {
		width: 28px;
	}

	.ps-section-header__subtitle {
		gap: 10px;
	}

	.ps-newsletter__form {
		flex-direction: column;
		width: 100%;
	}

	.ps-newsletter__input { min-width: auto; }

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

	.ps-service-ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.ps-container {
		padding: 0 16px;
	}

	.ps-btn {
		white-space: normal;
		text-align: center;
	}

	.ps-topbar__text {
		font-size: 14px;
		line-height: 1.25;
	}

	.ps-hero {
		padding-top: 40px;
	}

	.ps-hero__subtitle {
		font-size: 16px;
	}

	.ps-hero__badge {
		font-size: 12px;
		padding: 6px 14px;
	}

	.ps-hero__actions { flex-direction: column; }
	.ps-hero__actions .ps-btn { width: 100%; }

	.ps-testimonials-swiper-inner {
		gap: 0;
	}

	.ps-testimonials-swiper-prev,
	.ps-testimonials-swiper-next {
		display: none;
	}

	.ps-form {
		padding: 24px 16px;
	}

	.ps-form__actions { flex-direction: column; }
	.ps-form__actions .ps-btn { width: 100%; }

	.ps-map-wrap iframe {
		height: 260px;
	}

	.ps-cta {
		padding: 36px 20px;
		border-radius: 16px;
	}

	.ps-page-hero__desc {
		font-size: 16px;
	}

	.ps-result-card__videos {
		grid-template-columns: 1fr;
	}

	.ps-result-video__divider {
		transform: rotate(90deg);
		padding: 8px 0;
	}
}

/* ==========================================================================
   Results Page — Before & After Videos
   ========================================================================== */
.ps-page-hero__badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(212, 175, 55, 0.12);
	color: var(--ps-gold-dark);
	font-size: 13px;
	font-weight: 600;
	border-radius: 50px;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.ps-results-hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.ps-results-hero-stat {
	text-align: center;
}

.ps-results-hero-stat strong {
	display: block;
	font-family: var(--ps-font-heading);
	font-size: 2rem;
	color: var(--ps-gold);
	line-height: 1.2;
}

.ps-results-hero-stat span {
	font-size: 14px;
	color: var(--ps-text-muted);
}

.ps-results-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 48px;
}

.ps-results-filter {
	padding: 10px 22px;
	border: 2px solid var(--ps-gray-light);
	background: var(--ps-white);
	border-radius: var(--ps-btn-radius);
	font-family: var(--ps-font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-text);
	cursor: pointer;
	transition: all var(--ps-transition);
}

.ps-results-filter:hover {
	border-color: var(--ps-gold);
	color: var(--ps-gold);
}

.ps-results-filter.is-active {
	background: linear-gradient(135deg, var(--ps-gold), var(--ps-gold-dark));
	border-color: var(--ps-gold);
	color: var(--ps-white);
	box-shadow: var(--ps-shadow-gold);
}

.ps-results-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.ps-result-card {
	background: var(--ps-white);
	border-radius: var(--ps-radius-lg);
	box-shadow: var(--ps-shadow);
	border: 1px solid rgba(16, 41, 71, 0.06);
	overflow: hidden;
	transition: all var(--ps-transition);
}

.ps-result-card:hover {
	box-shadow: var(--ps-shadow-lg);
	transform: translateY(-4px);
}

.ps-result-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 28px 0;
}

.ps-result-card__procedure {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ps-gold);
	margin-bottom: 8px;
}

.ps-result-card__title {
	font-size: 1.25rem;
	margin: 0 0 6px;
}

.ps-result-card__patient {
	font-size: 13px;
	color: var(--ps-text-muted);
}

.ps-result-card__badge {
	flex-shrink: 0;
	padding: 6px 12px;
	background: rgba(16, 41, 71, 0.06);
	color: var(--ps-navy);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
}

.ps-result-card__videos {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 24px 28px;
}

.ps-result-video__label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}

.ps-result-video--before .ps-result-video__label { color: var(--ps-text-muted); }
.ps-result-video--after .ps-result-video__label { color: var(--ps-gold-dark); }

.ps-result-video__wrap {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--ps-radius);
	overflow: hidden;
	background: var(--ps-navy);
}

.ps-result-video--before .ps-result-video__wrap {
	box-shadow: inset 0 0 0 2px rgba(16, 41, 71, 0.1);
}

.ps-result-video--after .ps-result-video__wrap {
	box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.35);
}

.ps-result-video__player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: var(--ps-navy);
}

.ps-result-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 41, 71, 0.45);
	border: none;
	cursor: pointer;
	color: var(--ps-white);
	transition: all var(--ps-transition);
}

.ps-result-video--after .ps-result-video__play {
	background: rgba(16, 41, 71, 0.35);
}

.ps-result-video__play:hover {
	background: rgba(16, 41, 71, 0.55);
}

.ps-result-video__play svg {
	width: 56px;
	height: 56px;
	padding: 14px;
	background: linear-gradient(135deg, var(--ps-gold), var(--ps-gold-dark));
	border-radius: 50%;
	box-shadow: var(--ps-shadow-gold);
	transition: transform var(--ps-transition);
}

.ps-result-video__play:hover svg {
	transform: scale(1.08);
}

.ps-result-video__placeholder {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--ps-gray-bg), var(--ps-gray-light));
	color: var(--ps-text-muted);
	font-size: 14px;
}

.ps-result-video__placeholder span {
	font-size: 40px;
	margin-bottom: 8px;
	opacity: 0.5;
}

.ps-result-video__placeholder--after {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), var(--ps-gray-bg));
}

.ps-result-video__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--ps-gold), var(--ps-gold-dark));
	color: var(--ps-white);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	box-shadow: var(--ps-shadow-gold);
	flex-shrink: 0;
}

.ps-result-card__desc {
	padding: 0 28px 28px;
	margin: 0;
	font-size: 14px;
	color: var(--ps-text-muted);
	line-height: 1.7;
	border-top: 1px solid var(--ps-gray-bg);
	padding-top: 20px;
	margin-top: 0;
}

.ps-results-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--ps-text-muted);
}

.ps-results-disclaimer__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.ps-results-disclaimer__list .ps-results-disclaimer__box {
	margin: 0;
}

.ps-results-disclaimer__box {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 32px 36px;
	max-width: 900px;
	margin: 0 auto;
}

.ps-results-disclaimer__icon {
	flex-shrink: 0;
	color: var(--ps-gold);
}

.ps-results-disclaimer__icon i {
	font-size: 28px;
}

.ps-meta-icon {
	margin-right: 6px;
	color: var(--ps-gold);
}

.ps-service-page-card__meta span {
	display: inline-flex;
	align-items: center;
}

.ps-results-disclaimer__box h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.ps-results-disclaimer__box p {
	margin: 0;
	font-size: 14px;
	color: var(--ps-text-muted);
	line-height: 1.7;
}

/* Video Modal */
.ps-video-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: all var(--ps-transition);
}

.ps-video-modal.is-active {
	opacity: 1;
	visibility: visible;
}

.ps-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 41, 71, 0.92);
}

.ps-video-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 960px;
	z-index: 1;
}

.ps-video-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	background: none;
	border: none;
	color: var(--ps-white);
	cursor: pointer;
	padding: 8px;
	opacity: 0.8;
	transition: opacity var(--ps-transition);
}

.ps-video-modal__close:hover { opacity: 1; }

.ps-video-modal__title {
	color: var(--ps-white);
	font-size: 1.25rem;
	margin-bottom: 16px;
}

.ps-video-modal__player-wrap {
	border-radius: var(--ps-radius);
	overflow: hidden;
	box-shadow: var(--ps-shadow-lg);
	background: #000;
}

.ps-video-modal__player {
	width: 100%;
	display: block;
	max-height: 75vh;
}

@media (max-width: 1024px) {
	.ps-results-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.ps-results-hero-stats {
		gap: 24px;
	}

	.ps-result-card__header {
		flex-direction: column;
	}

	.ps-results-filters {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
		-webkit-overflow-scrolling: touch;
	}

	.ps-results-filter {
		flex-shrink: 0;
	}

	.ps-results-disclaimer__box {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ps-result-card__videos {
		grid-template-columns: 1fr;
	}
}
