/**
 * UROCLINIC Pattern Library Styles
 * Premium component styles for reusable block patterns
 *
 * Table of Contents:
 * 1. Hero Medical
 * 2. Mobile Stats Bar
 * 3. Services Ultra
 * 4. Doctor Featured
 * 5. CTA Ultra
 * 6. Location Section
 * 7. Shared Utilities
 */

/* ==========================================================================
   1. HERO MEDICAL
   Premium hero section with glassmorphism
   ========================================================================== */

.hero-medical {
	position: relative;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: linear-gradient(135deg, #071620 0%, #0a5a5c 45%, #0D7377 100%);
}

.hero-medical::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 15% 85%, rgba(45, 212, 216, 0.08) 0%, transparent 45%),
		radial-gradient(circle at 85% 15%, rgba(255,255,255,0.04) 0%, transparent 35%);
	pointer-events: none;
	z-index: 1;
}

.hero-medical::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 20%, rgba(232, 90, 36, 0.06) 0%, transparent 50%);
	animation: heroGlow 8s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 1;
}

@keyframes heroGlow {
	0% { opacity: 0.3; transform: scale(1); }
	100% { opacity: 0.6; transform: scale(1.1); }
}

.hero-medical-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 2;
}

.hero-bg-image {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 98%;
	width: auto;
	max-width: 950px;
	object-fit: contain;
	object-position: right bottom;
	pointer-events: none;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
	opacity: 0;
	animation: heroImageReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroImageReveal {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}

.hero-medical-container {
	position: relative;
	z-index: 3;
	flex: 1;
	display: flex;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: clamp(80px, 12vh, 120px) 32px clamp(48px, 8vh, 80px);
	width: 100%;
}

.hero-medical-content {
	max-width: 600px;
	background: rgba(7, 22, 32, 0.7);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 32px 36px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.2),
		0 16px 48px rgba(0, 0, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	opacity: 0;
	transform: translateY(32px);
	animation: heroContentReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes heroContentReveal {
	to { opacity: 1; transform: translateY(0); }
}

.hero-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(13, 115, 119, 0.25);
	padding: 8px 18px;
	border-radius: 50px;
	margin-bottom: 24px;
	border: 1px solid rgba(45, 212, 216, 0.3);
	transition: all 0.3s ease;
}

.hero-trust-badge:hover {
	background: rgba(13, 115, 119, 0.35);
	transform: translateY(-2px);
}

.trust-icon {
	width: 22px;
	height: 22px;
	background: linear-gradient(135deg, #0D7377 0%, #14b8a6 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: bold;
	box-shadow: 0 2px 8px rgba(13, 115, 119, 0.4);
}

.hero-trust-badge span:last-child {
	color: #5de6e8;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hero-medical-title {
	font-size: clamp(1.875rem, 4.5vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
}

.title-accent {
	background: linear-gradient(135deg, #2dd4d8 0%, #5de6e8 50%, #a5f3fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-medical-subtitle {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.75;
	margin: 0 0 32px;
	letter-spacing: 0.005em;
}

.hero-medical-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 36px;
}

.btn-hero-call {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #E85A24 0%, #d14a18 100%);
	color: white;
	padding: 16px 28px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow:
		0 4px 16px rgba(232, 90, 36, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	position: relative;
	overflow: hidden;
}

.btn-hero-call::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ff6b35 0%, #E85A24 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-hero-call:hover {
	transform: translateY(-3px);
	box-shadow:
		0 8px 28px rgba(232, 90, 36, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-call:hover::before {
	opacity: 1;
}

.btn-hero-call svg,
.btn-hero-call span {
	position: relative;
	z-index: 1;
}

.btn-hero-call svg {
	animation: phoneRing 3s ease-in-out infinite;
	animation-delay: 2s;
}

@keyframes phoneRing {
	0%, 100% { transform: rotate(0deg); }
	5% { transform: rotate(-8deg); }
	10% { transform: rotate(8deg); }
	15% { transform: rotate(-6deg); }
	20% { transform: rotate(6deg); }
	25% { transform: rotate(0deg); }
}

.btn-hero-services {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: rgba(255, 255, 255, 0.06);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
}

.btn-hero-services:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(45, 212, 216, 0.5);
	transform: translateY(-2px);
}

.btn-hero-services svg {
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero-services:hover svg {
	transform: translateX(5px);
}

.btn-hero-call:focus-visible,
.btn-hero-services:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 3px #ffffff,
		0 0 0 6px rgba(13, 115, 119, 0.5);
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 32px;
}

.hero-stat {
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(16px);
	animation: statReveal 0.6s ease forwards;
}

.hero-stat:nth-child(1) { animation-delay: 0.4s; }
.hero-stat:nth-child(3) { animation-delay: 0.55s; }
.hero-stat:nth-child(5) { animation-delay: 0.7s; }

@keyframes statReveal {
	to { opacity: 1; transform: translateY(0); }
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	display: inline;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}

.stat-plus {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2dd4d8;
}

.stat-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	z-index: 10;
	cursor: pointer;
	opacity: 0;
	animation: scrollReveal 0.6s ease 1s forwards;
	transition: transform 0.3s ease;
}

.hero-scroll:hover {
	transform: translateX(-50%) translateY(-4px);
}

@keyframes scrollReveal {
	to { opacity: 1; }
}

.scroll-text {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

.scroll-icon {
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 13px;
	position: relative;
	display: flex;
	justify-content: center;
	transition: border-color 0.3s ease;
}

.hero-scroll:hover .scroll-icon {
	border-color: rgba(45, 212, 216, 0.8);
}

.scroll-wheel {
	width: 3px;
	height: 8px;
	background: linear-gradient(180deg, #2dd4d8, #5de6e8);
	border-radius: 3px;
	margin-top: 8px;
	animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
	0%, 100% {
		transform: translateY(0);
		opacity: 1;
	}
	50% {
		transform: translateY(14px);
		opacity: 0.3;
	}
}

/* Hero Responsive */
@media (max-width: 1600px) {
	.hero-bg-image { max-width: 800px; }
}

@media (max-width: 1264px) {
	.hero-bg-image { max-width: 700px; }
}

@media (max-width: 1024px) {
	.hero-bg-image { max-width: 550px; }
	.hero-medical-content { max-width: 540px; }
}

@media (max-width: 768px) {
	.hero-bg-image { max-width: 600px; }
	.scroll-text { color: #0D7377; }
	.hero-stats { display: none !important; }

	.hero-medical {
		min-height: 92vh;
		min-height: 92svh;
	}

	.hero-medical-container {
		padding: 48px 20px 120px;
		align-items: flex-start;
	}

	.hero-medical-content {
		padding: 24px;
		margin: 0;
		border-radius: 16px;
		backdrop-filter: blur(12px);
	}

	.hero-trust-badge {
		padding: 6px 14px;
		margin-bottom: 20px;
	}

	.hero-trust-badge span:last-child {
		font-size: 11px;
	}

	.hero-medical-title {
		font-size: 1.625rem;
		margin-bottom: 16px;
	}

	.hero-medical-subtitle {
		font-size: 0.9375rem;
		margin-bottom: 24px;
		line-height: 1.7;
	}

	.hero-medical-cta {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 0;
	}

	.btn-hero-call,
	.btn-hero-services {
		justify-content: center;
		padding: 14px 24px;
		font-size: 14px;
		border-radius: 10px;
		min-height: 52px;
	}

	.hero-scroll {
		bottom: 20px;
	}

	.scroll-icon {
		width: 22px;
		height: 36px;
	}
}

@media (max-width: 480px) {
	.hero-bg-image { max-width: 480px; }

	.hero-medical-container {
		padding: 40px 16px 100px;
	}

	.hero-medical-content {
		padding: 20px;
	}

	.hero-medical-title {
		font-size: 1.5rem;
	}

	.btn-hero-call,
	.btn-hero-services {
		padding: 14px 20px;
	}

	.hero-scroll {
		left: 16px;
		right: auto;
		transform: none;
	}
}

/* ==========================================================================
   2. MOBILE STATS BAR
   ========================================================================== */

.mobile-stats-bar {
	display: none;
	position: relative;
	overflow: hidden;
	padding: 32px 16px;
}

.mobile-stats-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0a5a5c 0%, #0D7377 50%, #0f8386 100%);
	z-index: 0;
}

.mobile-stats-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(45, 212, 216, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(232, 90, 36, 0.1) 0%, transparent 50%);
	animation: statsGlow 8s ease-in-out infinite;
}

@keyframes statsGlow {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.mobile-stats-container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: stretch;
	max-width: 400px;
	margin: 0 auto;
	gap: 0;
}

.mobile-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 12px;
}

.mobile-stat-divider {
	width: 1px;
	background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
	flex-shrink: 0;
}

.mobile-stat-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 8px;
	opacity: 0.7;
}

.mobile-stat-icon svg {
	width: 100%;
	height: 100%;
	color: #2dd4d8;
}

.mobile-stat-number {
	font-size: 1.875rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mobile-stat-label {
	font-size: 10px;
	color: rgba(255,255,255,0.75);
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.75px;
	font-weight: 500;
}

@media (max-width: 768px) {
	.mobile-stats-bar {
		display: block;
	}
}

/* ==========================================================================
   3. SERVICES ULTRA
   Premium services section with cards
   ========================================================================== */

.services-ultra {
	position: relative;
	padding: clamp(60px, 10vw, 100px) 0;
	background: #ffffff;
	overflow: hidden;
}

.services-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.services-bg-pattern {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 100% 0%, rgba(13, 115, 119, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 0% 100%, rgba(45, 212, 216, 0.03) 0%, transparent 50%);
}

.services-bg-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(13, 115, 119, 0.04) 0%, transparent 70%);
	transform: translate(-50%, -50%);
}

.services-container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.services-header {
	text-align: center;
	margin-bottom: 56px;
}

.services-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(13, 115, 119, 0.08);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #0D7377;
	margin-bottom: 20px;
}

.tag-dot {
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #0D7377, #2dd4d8);
	border-radius: 50%;
	animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(0.8); }
}

.services-title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #1a202c;
	line-height: 1.2;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.title-highlight {
	background: linear-gradient(135deg, #0D7377 0%, #2dd4d8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.services-subtitle {
	font-size: 1.125rem;
	color: #64748b;
	margin: 0;
	font-weight: 500;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0D7377, #2dd4d8);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(13, 115, 119, 0.15);
	border-color: rgba(13, 115, 119, 0.1);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card--featured {
	grid-column: span 1;
	background: linear-gradient(135deg, #0D7377 0%, #0a5a5c 100%);
	border: none;
}

.service-card--featured .service-title,
.service-card--featured .service-desc,
.service-card--featured .link-text {
	color: #ffffff;
}

.service-card--featured .service-icon {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.2);
}

.service-card--featured .service-icon svg {
	color: #ffffff;
}

.service-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 115, 119, 0.08);
	border: 1px solid rgba(13, 115, 119, 0.12);
	border-radius: 16px;
	margin-bottom: 24px;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	background: rgba(13, 115, 119, 0.12);
}

.service-icon svg {
	width: 28px;
	height: 28px;
	color: #0D7377;
}

.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 12px;
	line-height: 1.3;
}

.service-desc {
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	font-weight: 600;
	font-size: 14px;
}

.link-text {
	color: #0D7377;
}

.link-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(13, 115, 119, 0.08);
	border-radius: 50%;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .link-arrow {
	background: #0D7377;
	transform: translateX(4px);
}

.link-arrow svg {
	color: #0D7377;
	transition: color 0.3s ease;
}

.service-card:hover .link-arrow svg {
	color: #ffffff;
}

.service-card--featured .link-arrow {
	background: rgba(255, 255, 255, 0.2);
}

.service-card--featured .link-arrow svg {
	color: #ffffff;
}

.service-card--featured:hover .link-arrow {
	background: #ffffff;
}

.service-card--featured:hover .link-arrow svg {
	color: #0D7377;
}

.featured-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	background: rgba(232, 90, 36, 0.9);
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Services Responsive */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		padding: 24px;
	}
}

/* ==========================================================================
   4. DOCTOR FEATURED
   Premium doctor/team section
   ========================================================================== */

.doctor-featured {
	position: relative;
	padding: clamp(60px, 10vw, 100px) 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.doctor-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.doctor-header {
	text-align: center;
	margin-bottom: 48px;
}

.doctor-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.featured-image-wrapper {
	position: relative;
}

.featured-image {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(135deg, #0D7377 0%, #0a5a5c 100%);
	aspect-ratio: 4/5;
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.doctor-featured .featured-badge {
	position: static;
	top: auto;
	right: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #E85A24 0%, #d14a18 100%);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	box-shadow: 0 4px 12px rgba(232, 90, 36, 0.3);
}

.schedule-badge {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	padding: 16px 28px;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	gap: 16px;
	z-index: 10;
}

.schedule-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #0D7377 0%, #2dd4d8 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.schedule-content {
	text-align: left;
}

.schedule-label {
	font-size: 11px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.schedule-time {
	font-size: 15px;
	font-weight: 700;
	color: #1a202c;
}

.featured-info {
	padding-left: 32px;
}

.featured-name {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	color: #1a202c;
	margin: 0 0 8px;
	line-height: 1.2;
}

.featured-specialty {
	font-size: 1.125rem;
	color: #0D7377;
	font-weight: 600;
	margin-bottom: 24px;
}

.featured-bio {
	font-size: 1rem;
	color: var(--wp--preset--color--text-dark);
	line-height: 1.75;
	margin-bottom: 28px;
}

.featured-highlights {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9375rem;
	color: #1a202c;
}

.highlight-icon {
	width: 24px;
	height: 24px;
	background: rgba(13, 115, 119, 0.1);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0D7377;
	font-size: 12px;
}

.featured-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #E85A24 0%, #d14a18 100%);
	color: white;
	padding: 14px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(232, 90, 36, 0.3);
	white-space: nowrap;
}

.featured-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(232, 90, 36, 0.4);
}

/* Doctor Section Responsive */
@media (max-width: 1100px) {
	.doctor-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.featured-info {
		padding-left: 0;
		text-align: center;
	}

	.featured-highlights {
		align-items: center;
	}

	.featured-image {
		height: 380px;
		aspect-ratio: auto;
	}

	.featured-image img {
		object-position: center top;
	}

	.schedule-badge {
		bottom: -35px;
	}
}

/* ==========================================================================
   5. CTA ULTRA
   Premium call-to-action section
   ========================================================================== */

.cta-ultra {
	position: relative;
	padding: clamp(48px, 8vw, 80px) 0;
	background: linear-gradient(135deg, #0D7377 0%, #0a5a5c 50%, #071620 100%);
	overflow: hidden;
}

.cta-ultra::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 20% 80%, rgba(45, 212, 216, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 80% 20%, rgba(232, 90, 36, 0.1) 0%, transparent 40%);
	pointer-events: none;
}

.cta-ultra-container {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

.cta-ultra-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
}

.cta-ultra-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.cta-ultra-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 36px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.cta-ultra-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.btn-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	color: #0D7377;
	padding: 18px 32px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: #ffffff;
	padding: 18px 32px;
	border-radius: 14px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

/* ==========================================================================
   6. LOCATION SECTION
   Premium location/contact section
   ========================================================================== */

.location-section {
	position: relative;
	padding: clamp(60px, 10vw, 100px) 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.location-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.location-header {
	text-align: center;
	margin-bottom: 48px;
}

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.location-info {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.location-item {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-item:last-child {
	border-bottom: none;
}

.location-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(13, 115, 119, 0.1) 0%, rgba(45, 212, 216, 0.1) 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.location-icon svg {
	width: 24px;
	height: 24px;
	color: #0D7377;
}

.location-content h4 {
	font-size: 0.875rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 8px;
	font-weight: 600;
}

.location-content p {
	font-size: 1.125rem;
	color: #1a202c;
	margin: 0;
	font-weight: 600;
	line-height: 1.5;
}

.location-content a {
	color: #0D7377;
	text-decoration: none;
	transition: color 0.2s ease;
}

.location-content a:hover {
	color: #0a5a5c;
}

.location-map {
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	min-height: 400px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border: none;
}

/* Location Responsive */
@media (max-width: 1024px) {
	.location-grid {
		grid-template-columns: 1fr;
	}

	.location-map {
		min-height: 350px;
	}
}

/* ==========================================================================
   7. SHARED UTILITIES
   ========================================================================== */

/* Section Tag */
.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(13, 115, 119, 0.08);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #0D7377;
	margin-bottom: 20px;
}

/* Section Title */
.section-title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #1a202c;
	line-height: 1.2;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

/* Section Subtitle */
.section-subtitle {
	font-size: 1.125rem;
	color: #64748b;
	margin: 0;
	font-weight: 500;
	max-width: 600px;
}

/* Card Glow Effect */
.card-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.service-card:hover .card-glow {
	opacity: 1;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.hero-bg-image,
	.hero-medical-content,
	.hero-stat,
	.hero-scroll,
	.mobile-stat,
	.tag-dot,
	.scroll-wheel {
		animation: none !important;
		opacity: 1;
		transform: none;
	}

	.btn-hero-call svg {
		animation: none !important;
	}

	.hero-medical::after,
	.mobile-stats-bg::before {
		animation: none !important;
	}
}

/* ==========================================================================
   8. DESKTOP WIDTH & SPACING OVERRIDES
   Make layouts wider and less cramped on large screens
   ========================================================================== */

/* Large Desktop (1400px+) - Wider layouts */
@media (min-width: 1400px) {
	/* Increase container max-widths */
	.hero-medical-container,
	.page-hero-container,
	.services-container,
	.doctors-container {
		max-width: 1600px;
	}

	/* Card grids - more gap */
	.services-grid {
		gap: 40px;
	}

	/* Service cards - more padding */
	.service-card {
		padding: 36px;
	}

	/* Doctor section wider */
	.doctor-featured-container {
		max-width: 1400px;
	}
}

/* Extra Large Desktop (1600px+) - Even wider */
@media (min-width: 1600px) {
	.hero-medical-container,
	.page-hero-container,
	.services-container {
		max-width: 1800px;
	}

	.services-grid {
		gap: 48px;
	}

	.service-card {
		padding: 40px;
	}
}
