/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com
Description:  Sonrisa Dental Specialists - GeneratePress Child Theme
Author:       Sonrisa Dental
Author URI:   https://sonrisaflorida.com
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepresschild
*/

:root {
	--primary: #0079FF;
	--primary-dark: #0062cc;
	--purple: #5b4ce2;
	--purple-dark: #4539c0;
	--dark: #1a1a1a;
	--navy: #1a3a5c;
	--footer-bg: #0f1217;
	--text: #333333;
	--text-muted: #6b7280;
	--white: #ffffff;
	--bg: #ffffff;
	--bg-light: #f8f9fb;
	--border: #e5e7eb;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Playfair Display', Georgia, serif;
	--container: 1200px;
	--gutter: 40px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	font-family: var(--font-body);
	color: var(--text);
	background: var(--bg);
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

.generate-header,
.main-navigation,
#site-navigation,
.site-info,
.site-footer .footer-widgets-container,
.inside-site-info { display: none !important; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
	background: var(--navy);
	color: var(--white);
	display: flex;
	align-items: center;
	height: 44px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.top-bar-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
	text-align: center;
}

.top-bar-inner span,
.top-bar-inner p {
	margin: 0;
	color: var(--white);
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--white);
	padding: 0;
}

.site-header.scrolled {
	box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	height: 64px;
	display: flex;
	align-items: center;
	gap: 0;
	padding: 0 8px 0 32px;
}

/* ============================================
   LOGO
   ============================================ */
.site-logo {
	flex-shrink: 0;
	margin-right: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	text-decoration: none;
	transition: opacity 0.2s;
}

.site-logo:hover { opacity: 0.85; }

.site-logo-circles {
	height: 34px;
	overflow: hidden;
}

.site-logo-circles img {
	height: 56px;
	width: auto;
	display: block;
	vertical-align: top;
}

.site-logo-sub {
	display: block;
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: lowercase;
	color: var(--text-muted);
	line-height: 1;
	margin-top: 3px;
	white-space: nowrap;
}

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */
.site-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-link {
	font-size: 13px;
	font-weight: 500;
	color: var(--dark);
	padding: 8px 11px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	transition: color 0.2s, background 0.2s;
	text-decoration: none;
	cursor: pointer;
}

.nav-link:hover, .nav-link:focus {
	color: var(--primary);
	background: var(--bg-light);
}

.nav-item.active > .nav-link,
.nav-item.current-menu-item > .nav-link {
	color: var(--primary);
	background: rgba(0, 121, 255, 0.07);
}

.nav-chevron {
	font-size: 9px;
	transition: transform 0.2s;
	opacity: 0.6;
	line-height: 1;
}

.nav-item:hover > .nav-link .nav-chevron,
.nav-item.dropdown-open > .nav-link .nav-chevron {
	transform: rotate(180deg);
	opacity: 1;
}

/* ============================================
   DROPDOWN MENUS
   ============================================ */
.nav-item {
	position: relative;
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
	border: 1px solid var(--border);
	min-width: 230px;
	padding: 6px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 0.2s 0.12s, transform 0.2s 0.12s;
	z-index: 200;
}

.nav-dropdown::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}

.nav-item:hover > .nav-dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition: opacity 0.15s, transform 0.15s;
}

.nav-dropdown a {
	display: block;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	border-radius: 8px;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
	text-decoration: none;
}

.nav-dropdown a:hover {
	background: var(--bg-light);
	color: var(--primary);
}

/* Wide dropdown (mega menu) */
.nav-dropdown-wide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 0;
	width: 420px;
	white-space: normal;
}

.nav-dropdown-col {
	display: flex;
	flex-direction: column;
}

.nav-dropdown-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	padding: 8px 14px 4px;
	cursor: default;
}

/* ============================================
   NAV CTA + PHONE
   ============================================ */
.btn.nav-cta {
	margin-left: 12px;
	white-space: nowrap;
	flex-shrink: 0;
	font-size: 13px;
	padding: 10px 20px;
}

.nav-phone {
	margin-left: 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--dark);
	white-space: nowrap;
	transition: color 0.2s;
	text-decoration: none;
}

.nav-phone:hover {
	color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s, box-shadow 0.18s;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
}

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

.btn:active {
	transform: translateY(0);
}

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

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	color: var(--white);
}

.btn-lg {
	padding: 16px 36px;
	font-size: 16px;
	border-radius: 10px;
}

/* ============================================
   HAMBURGER TOGGLE
   ============================================ */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
	z-index: 101;
}
.nav-toggle:hover, .nav-toggle:focus {
	background: transparent !important;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--dark);
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
}

body.mobile-open .nav-toggle {
	position: fixed;
	top: 18px;
	right: 20px;
	margin-left: 0;
	z-index: 101;
}

body.mobile-open .nav-toggle span {
	background: var(--white);
}

body.mobile-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.mobile-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

body.mobile-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BODY LOCK
   ============================================ */
body.mobile-open {
	overflow: hidden;
}

/* ============================================
   LEGAL / POLICY PAGES
   ============================================ */

/* Hero banner */
.legal-hero {
	background: var(--bg-light);
	border-bottom: 1px solid var(--border);
	padding: 72px 0 52px;
}

.legal-hero .section-label {
	display: block;
	margin-bottom: 10px;
}

.legal-hero h1 {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 800;
	color: var(--dark);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 10px;
}

.legal-hero p {
	font-size: 14px;
	color: var(--text-muted);
	margin: 0;
}

/* Main section */
.legal-section {
	padding-top: 64px;
}

/* Two-column grid */
.legal-container {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 64px;
	align-items: start;
}

/* Sticky TOC sidebar */
.legal-toc {
	position: sticky;
	top: 132px;
}

.legal-toc h3 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin: 0 0 14px;
}

.legal-toc ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.legal-toc li {
	list-style: none;
}

.legal-toc a {
	font-size: 13px;
	color: var(--text-muted);
	padding: 5px 10px;
	border-radius: 6px;
	display: block;
	transition: background 0.15s, color 0.15s;
	text-decoration: none;
}

.legal-toc a:hover {
	background: var(--bg-light);
	color: var(--primary);
}

/* Right column: body content */
.legal-body {
	max-width: 720px;
}

.legal-intro {
	font-size: 16px;
	color: var(--text);
	line-height: 1.75;
	margin: 0 0 48px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--border);
}

.legal-body h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--dark);
	margin: 40px 0 14px;
	padding-top: 8px;
}

.legal-body h2:first-child,
.legal-intro + h2 {
	margin-top: 0;
}

.legal-body h3 {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	margin: 24px 0 10px;
}

.legal-body p {
	font-size: 14px;
	color: var(--text);
	line-height: 1.75;
	margin: 0 0 14px;
}

.legal-body ul {
	list-style: disc;
	padding-left: 20px;
	margin: 0 0 16px;
}

.legal-body ul li {
	font-size: 14px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 6px;
	list-style: disc;
}

.legal-body a {
	color: var(--primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-body a:hover {
	color: var(--primary-dark);
}
.legal-body a.btn-primary {
	color: var(--white) !important;
   text-decoration: none;
}

/* Contact box at bottom */
.legal-contact-box {
	background: var(--bg-light);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px;
	margin-top: 16px;
}

.legal-contact-box p {
	margin: 0 0 4px;
}

.legal-contact-box p:last-of-type {
	margin-bottom: 0;
}

.legal-contact-cta {
	display: inline-block;
	margin-top: 16px;
}

/* ============================================
   FOOTER LOCATION SECTION (dual maps + contact)
   ============================================ */
.dual-locations {
	display: grid;
	grid-template-columns: 1fr 420px;
	min-height: 500px;
}

.dual-locations-map {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 500px;
}

.dual-loc-map-top,
.dual-loc-map-bottom {
	flex: 1;
	position: relative;
	overflow: hidden;
	min-height: 250px;
}

.dual-loc-map-top {
	border-bottom: 3px solid #fff;
}

.dual-locations-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 250px;
	border: 0;
}

.dual-locations-info {
	background: #0d1b3e;
	color: #fff;
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
}

.dual-locations-info h2 {
	font-size: 1.75rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dual-loc-office {
	margin-bottom: 1.75rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dual-loc-office h3,
.dual-loc-hours h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 0.5rem;
	font-family: var(--font-body);
}

.dual-loc-hours h3 {
	margin-bottom: 0.75rem;
}

.dual-loc-office p {
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 0.4rem;
}

.dual-loc-office a {
	color: var(--primary);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.2s;
}

.dual-loc-office a:hover {
	color: #3d9bff;
}

.dual-loc-hours {
	margin-top: auto;
}

.dual-loc-hours table {
	width: 100%;
	border-collapse: collapse;
}

.dual-loc-hours table td {
	padding: 0.25rem 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	border: none;
}

.dual-loc-hours table td:last-child {
	color: #fff;
	font-weight: 700;
	padding-left: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
footer.site-footer {
	display: block !important;
	background: var(--footer-bg);
	color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 72px var(--gutter) 56px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
	gap: 48px;
}

.footer-logo {
	display: block;
	margin-bottom: 14px;
	text-decoration: none;
}

.footer-logo img {
	height: 52px;
	width: auto;
	display: block;
}

.footer-tagline {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
	max-width: 220px;
	margin: 0 0 14px;
}

.footer-quote {
	font-family: var(--font-display);
	font-size: 14px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
}

.footer-heading {
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 18px;
	padding: 0;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li { margin: 0; }

.footer-links a {
	display: block;
	padding: 4px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
	text-decoration: none;
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
}

.footer-contact li svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.4);
}

.footer-contact a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
	line-height: 1.5;
	text-decoration: none;
}

.footer-contact a:hover { color: var(--white); }

.footer-social-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}

.footer-social-row a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.75);
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
}

.footer-social-row a:hover {
	background: var(--primary);
	color: var(--white);
}

.footer-bottom {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
}

.footer-bottom-inner p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: 24px;
}

.footer-legal a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
	transition: color 0.2s;
	text-decoration: none;
}

.footer-legal a:hover {
	color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero {
	position: relative;
	min-height: calc(100vh - 160px);
	display: flex;
	flex-direction: column;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(10, 18, 32, 0.55) 0%,
		rgba(10, 18, 32, 0.45) 60%,
		rgba(10, 18, 32, 0.75) 100%
	);
}

.hero-inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	padding-top: 60px;
	width: 100%;
	padding-bottom: 72px;
}

.hero-content {
	max-width: 660px;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding: 7px 18px;
	border-radius: 24px;
	margin-bottom: 22px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.hero-content h1 {
	font-family: var(--font-body);
	font-size: clamp(38px, 4.8vw, 62px);
	font-weight: 800;
	line-height: 1.08;
	color: var(--white);
	margin: 0 0 22px;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-content h1 span {
	color: var(--primary);
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-sub,
.hero-sub-wrap,
.hero-sub-wrap p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 36px;
	max-width: 500px;
}

.hero-sub-wrap p:last-child { margin-bottom: 0; }
.hero-sub-wrap { margin: 0 0 36px; }

.hero-cta-group {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

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

.btn-white:hover {
	background: rgba(255, 255, 255, 0.88);
	color: var(--primary);
}

.hero-stats {
	display: flex;
	align-items: center;
	margin-left: auto;
	align-self: flex-end;
}

.hero-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 40px;
}

.hero-stat:last-child {
	padding-right: 0;
}

.hero-stat strong {
	font-size: 28px;
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	margin-bottom: 5px;
}

.hero-stat span {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.01em;
}

.hero-stat-divider {
	width: 1px;
	height: 44px;
	background: rgba(255, 255, 255, 0.25);
	flex-shrink: 0;
}

/* ============================================
   GP OVERRIDES
   ============================================ */
.site { overflow-x: hidden; }
#page .site-content { padding-top: 0; }

.site-footer .widget { margin-bottom: 0; padding: 0; }
.site-footer .widget ul { list-style: none; margin: 0; padding: 0; }
.site-footer .widget ul li a {
	display: block;
	padding: 4px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
}
.site-footer .widget ul li a:hover { color: var(--white); }
.site.grid-container.container {
    padding: 0;
    max-width: 100% !important;
}
.site-content {
    display: inherit;
}

/* ============================================
   SERVICE NAV
   ============================================ */
.service-nav {
	background: var(--navy);
	overflow: hidden;
	position: relative;
}

.service-nav-inner {
	display: flex;
	align-items: center;
	width: max-content;
	animation: service-nav-scroll 30s linear infinite;
}

.service-nav:hover .service-nav-inner {
	animation-play-state: paused;
}

.service-nav-link {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	padding: 14px 18px;
	white-space: nowrap;
	user-select: none;
	transition: color 0.2s;
}

.service-nav-link:hover {
	color: #fff;
}

.service-nav-link.active {
	color: #fff;
}

@keyframes service-nav-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

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

.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 14px;
}

.section-label-light {
	color: rgba(255, 255, 255, 0.65);
}

.section-header h2 {
	font-family: var(--font-body);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 800;
	line-height: 1.12;
	color: var(--dark);
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.section-header p {
	font-size: 16px;
	color: var(--text-muted);
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.65;
}

.section-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 48px;
	flex-wrap: wrap;
}

/* ============================================
   SPECIALTY SPLIT (gateway overlay with hover reveal)
   ============================================ */
.specialty-split {
	display: flex;
	width: 100%;
	overflow: hidden;
}

.specialty-half {
	flex: 1;
	position: relative;
	min-height: 600px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: pointer;
	transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.specialty-half:hover {
	flex: 1.45;
}

.specialty-half-implants {
	border-right: 3px solid var(--white);
}

.specialty-half-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.specialty-half:hover .specialty-half-bg {
	transform: scale(1.06);
}

.specialty-half-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.28) 45%,
		rgba(0, 0, 0, 0.05) 100%
	);
	transition: background 0.5s ease;
	pointer-events: none;
}

.specialty-half:hover .specialty-half-overlay {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.88) 0%,
		rgba(0, 0, 0, 0.55) 50%,
		rgba(0, 0, 0, 0.18) 100%
	);
}

.specialty-half-body {
	position: relative;
	z-index: 2;
	padding: 48px 52px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.specialty-tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.tag-blue {
	background: rgba(0, 121, 255, 0.25);
	color: var(--white);
	border: 1px solid rgba(0, 121, 255, 0.4);
}

.tag-purple {
	background: rgba(91, 76, 226, 0.25);
	color: var(--white);
	border: 1px solid rgba(91, 76, 226, 0.4);
}

.specialty-half-body h3 {
	font-size: clamp(30px, 3.5vw, 52px);
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.02em;
	margin: 0;
	line-height: 1.1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	transition: margin-bottom 0.4s ease;
}

.specialty-half:hover .specialty-half-body h3 {
	margin-bottom: 20px;
}

/* Hidden content - revealed on hover */
.specialty-reveal {
	max-height: 0;
	opacity: 0;
	transform: translateY(16px);
	overflow: hidden;
	pointer-events: none;
	transition:
		max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease 0.1s,
		transform 0.45s ease 0.05s;
}

.specialty-half:hover .specialty-reveal {
	max-height: 360px;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.specialty-half-body > p,
.specialty-desc,
.specialty-desc p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.65;
	margin: 0 0 24px;
}

.specialty-desc p:last-child { margin-bottom: 0; }
.specialty-desc { margin: 0 0 24px; }

.specialty-checklist {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.specialty-checklist li {
	position: relative;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	padding-left: 26px;
	margin-bottom: 10px;
	font-weight: 500;
	line-height: 1.5;
}

.specialty-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	background-size: contain;
	background-repeat: no-repeat;
}

.checklist-blue li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%230079FF' opacity='.12'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%230079FF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.checklist-purple li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%235b4ce2' opacity='.12'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%235b4ce2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.checklist-white li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ffffff' opacity='.2'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.specialty-link {
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	transition: gap 0.2s, background 0.2s;
	text-decoration: none;
	color: var(--primary);
	background: var(--white);
	padding: 10px 22px;
	border-radius: 8px;
}

.specialty-link:hover { gap: 10px; background: rgba(255,255,255,0.9); }

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section { background: var(--bg-light); }

.trust-header {
	text-align: center;
	margin-bottom: 52px;
}

.trust-header h2 {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--dark);
	margin: 0 0 14px;
	line-height: 1.15;
}

.trust-header p {
	font-size: 15px;
	color: var(--text-muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.65;
}

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

.trust-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 24px;
}

.trust-icon {
	margin-bottom: 16px;
	font-size: 20px;
	color: var(--primary);
}

.trust-icon i {
	font-size: 22px;
	color: var(--primary);
	line-height: 1;
}

.trust-icon p {
	margin: 0;
	line-height: 1;
}

.trust-icon img {
	width: 36px;
	height: 36px;
	max-width: 36px;
	object-fit: contain;
	display: block;
}

.trust-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 8px;
}

.trust-card > p,
.trust-card-desc,
.trust-card-desc p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.two-col-spaced { margin-top: 80px; }

.two-col-img {
	border-radius: 16px;
	overflow: hidden;
}

.two-col-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.two-col-text .section-label { display: block; }

.two-col-text h2 {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--dark);
	line-height: 1.12;
	margin: 8px 0 20px;
}
h2 span {
	color: var(--primary);
	display: block;
}
.two-col-text > p,
.two-col-desc,
.two-col-desc p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 16px;
}

.two-col-desc p:last-child { margin-bottom: 0; }
.two-col-desc { margin: 0 0 16px; }

.experts-checklist {
	list-style: none;
	margin: 20px 0 28px;
	padding: 0;
}

.experts-checklist li {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.experts-checklist li:last-child {
	margin-bottom: 0;
}
.experts-checklist li svg {
	color: var(--primary);
	flex-shrink: 0;
}

/* ============================================
   DOCTOR GRID (side-by-side text columns)
   ============================================ */
.doctor-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.doctor-col {
	padding: 0 48px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.doctor-col:first-child {
	padding-left: 0;
	border-right: 1px solid var(--border);
}

.doctor-col:last-child {
	padding-right: 0;
}

.doctor-col .section-label {
	display: block;
	margin-bottom: 10px;
}

.doctor-col h2 {
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--dark);
	line-height: 1.15;
	margin: 0 0 20px;
}

.doctor-col h2 span,
.doctor-col h2 strong,
.doctor-col h2 em {
	color: var(--primary);
	font-style: normal;
}

.doctor-desc,
.doctor-desc p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
}
.doctor-desc p:not(:last-child) {
	margin: 0 0 16px;
}
.doctor-desc p:last-child { margin-bottom: 0; }

/* ============================================
   LOCATION SECTION (map + content)
   ============================================ */
.map_section {
	background: var(--bg-light);
}
.map_section + .map_section {
    border-top: 1px solid var(--border);
}
.location-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.map-full .location-row {
	align-items: stretch;
}

/* Even rows: map left, content right */
.location-row-reverse {
	direction: rtl;
}

.location-row-reverse > * {
	direction: ltr;
}

.location-divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 64px 0;
}

.location-row-spaced {
	margin-top: 64px;
	padding-top: 64px;
	border-top: 1px solid var(--border);
}

.location-map {
	border-radius: 0;
	overflow: hidden;
	background: var(--bg-light);
}
.location-map p {
	margin-bottom: 0 !important;
}
.location-map iframe, .location-map p {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	display: block;
}

.location-map-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
}

.map-placeholder-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: var(--text-muted);
	opacity: 0.4;
}

.map-placeholder-inner span {
	font-size: 14px;
	font-weight: 600;
}

.location-content .section-label {
	display: block;
	margin-bottom: 10px;
}

.location-content h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--dark);
	line-height: 1.12;
	margin: 0 0 28px;
}

.location-content h2 span,
.location-content h2 strong,
.location-content h2 em {
	color: var(--primary);
	font-style: normal;
}

.location-desc,
.location-desc p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 20px;
}

.location-desc p:last-child { margin-bottom: 0; }
.location-desc { margin: 0 0 24px; }

.location-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.location-badge {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
	background: transparent;
	padding: 7px 18px;
	border-radius: 24px;
	border: 1px solid rgba(0, 121, 255, 0.3);
}

.location-checklist {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.location-checklist li {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.location-checklist li svg {
	flex-shrink: 0;
}

.location-content .btn {
	align-self: flex-start;
}
@media only screen and (max-width: 480px) {
	.location-content .btn {
		width: 100%;
	}
}
@media only screen and (min-width: 769px) {
	.location-row.map-right .location-content {
		order: -1;
	}
}

/* ============================================
   PAGE CTA DARK
   ============================================ */
.page-cta-dark {
	position: relative;
	text-align: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.page-cta-dark::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 32, 0.82);
}

.page-cta-inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}

.page-cta-dark h2 {
	font-size: clamp(30px, 4vw, 50px);
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 20px;
}

.page-cta-dark h2 strong,
.page-cta-dark h2 span,
.page-cta-dark h2 em {
	color: var(--primary);
	font-style: normal;
}

.page-cta-dark p {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 auto 36px;
	max-width: 580px;
}

.page-cta-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ============================================
   BUTTON VARIANTS
   ============================================ */
.btn-outline {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: var(--white);
}

/* ============================================
   INNER HERO (sub-pages)
   ============================================ */
.inner-hero {
	background: var(--bg-light);
	border-bottom: 1px solid var(--border);
	padding: 72px 0 52px;
	margin-top: 0;
}

.inner-hero h1 {
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 800;
	color: var(--dark);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 16px;
}

.inner-hero h1 span,
.inner-hero h1 strong,
.inner-hero h1 em {
	color: var(--primary);
	font-style: normal;
}

.inner-hero-desc,
.inner-hero-desc p {
	font-size: 16px;
	color: var(--text-muted);
	max-width: 600px;
	line-height: 1.7;
	margin: 0 0 12px;
}

.inner-hero-desc p:last-child { margin-bottom: 0; }
.inner-hero-desc { margin: 0 0 28px; }

.inner-hero-btns {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

/* Inner hero with background image */
.inner-hero-img {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: flex-end;
	border-bottom: none;
}

.inner-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10,18,32,0.75) 0%, rgba(10,18,32,0.45) 50%, rgba(10,18,32,0.25) 100%);
}

.inner-hero-content {
	position: relative;
	z-index: 1;
	padding-bottom: 56px;
}

.inner-hero-img h1 { color: var(--white); }
.inner-hero-img .inner-hero-desc,
.inner-hero-img .inner-hero-desc p { color: rgba(255,255,255,0.8); }

/* ============================================
   LOCATION INFO BLOCKS
   ============================================ */
.loc-info-block {
	margin-bottom: 28px;
}

.loc-info-block h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 8px;
}

.loc-info-block p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0 0 4px;
}

.loc-info-block a {
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.6;
	text-decoration: none;
}

.loc-info-block a:hover {
	color: var(--primary);
}

.loc-info-block table {
	border-collapse: collapse;
	width: auto;
}

.loc-info-block td {
	padding: 2px 0;
	font-size: 15px;
	color: var(--text-muted);
	vertical-align: top;
}

.loc-info-block td:first-child {
	padding-right: 16px;
}

.loc-note {
	font-size: 14px;
	color: var(--text-muted);
	font-style: italic;
	margin: 16px 0 0;
}

/* ============================================
   STEPS GRID
   ============================================ */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: var(--border);
	border-radius: 16px;
	border: 1px solid var(--border);
	overflow: hidden;
}

.step-card {
	background: var(--white);
	padding: 32px 28px;
}

.step-number {
	display: block;
	font-size: 52px;
	font-weight: 800;
	color: var(--primary);
	opacity: 0.13;
	line-height: 1;
	margin-bottom: 12px;
}

.step-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 8px;
}

.step-desc,
.step-desc p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   ADVANTAGES GRID (4 column)
   ============================================ */
.advantages-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.advantage-card {
	background: var(--bg-light);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px 20px;
	text-align: center;
	width: calc(25% - 15px);
	box-sizing: border-box;
}

.advantage-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(0, 121, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: var(--primary);
}

.advantage-icon i {
	font-size: 26px;
	color: var(--primary);
	line-height: 1;
}

.advantage-icon p {
	margin: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.advantage-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 8px;
}

.advantage-desc,
.advantage-desc p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.55;
	margin: 0;
}

/* ============================================
   LIST BOX SECTION (comparison cards)
   ============================================ */
.list-box-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.list-box-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 36px 32px 32px;
	width: calc(33.333% - 16px);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.list-box-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.list-box-card-body {
	padding-bottom: 0;
	margin-bottom: 0;
}

.list-box-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 12px;
}

.list-box-card h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.3;
	font-family: var(--font-body);
}

.list-box-desc,
.list-box-desc p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}
.list-box-desc p {
	margin: 0 0 20px;
}
.list-box-checklist {
	list-style: none;
	padding: 24px 0 0;
	margin: 0 0 16px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.list-box-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--dark);
	line-height: 1.4;
}

.list-box-checklist li svg {
	flex-shrink: 0;
}

/* Featured card (2nd card - blue gradient) */
.list-box-featured {
	background: linear-gradient(135deg, var(--primary) 0%, #0062cc 100%);
	border-color: transparent;
	box-shadow: 0 12px 40px rgba(0, 121, 255, 0.25);
}

.list-box-featured:hover {
	box-shadow: 0 16px 48px rgba(0, 121, 255, 0.35);
}

.list-box-featured .list-box-checklist {
	border-top-color: rgba(255, 255, 255, 0.2);
}

.list-box-featured .list-box-label {
	color: rgba(255, 255, 255, 0.85);
}

.list-box-featured h3 {
	color: #fff;
}

.list-box-featured .list-box-desc,
.list-box-featured .list-box-desc p {
	color: rgba(255, 255, 255, 0.8);
}

.list-box-featured .list-box-checklist li {
	color: #fff;
}

.list-box-featured .list-box-checklist li svg circle {
	fill: rgba(255, 255, 255, 0.25);
}

.list-box-featured .list-box-checklist li svg path {
	stroke: #fff;
}

/* List box CTA button */
.list-box-cta {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: auto;
	padding: 14px 24px;
	border-radius: 10px;
}

.list-box-featured .list-box-cta {
	background: #fff;
	color: var(--primary);
}

.list-box-featured .list-box-cta:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   ARTICLES SECTION (blog cards)
   ============================================ */
.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.article-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease;
}

.article-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.article-card-top {
}

.article-card h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 12px;
	line-height: 1.4;
}

.article-preview,
.article-preview p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

.article-expanded,
.article-expanded p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

.article-expanded {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.article-expanded p + p {
	margin-top: 12px;
}

.article-toggle {
	background: none;
	border: none;
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 16px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-body);
	transition: color 0.2s;
	margin-top: auto;
}

.article-toggle:hover, .article-toggle:focus {
	color: var(--primary-dark);
	background: transparent !important;
}

.article-toggle svg {
	transition: transform 0.25s ease;
}

.article-toggle.is-open svg {
	transform: rotate(180deg);
}

/* ============================================
   SIMPLE TEXT / PROSE SECTION
   ============================================ */
.prose-inner {
	max-width: 820px;
	margin: 0 auto;
}

.prose-inner .section-label {
	display: inline-block;
	margin-bottom: 14px;
}

.prose-inner h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--dark);
	margin: 0 0 1rem;
	line-height: 1.2;
}

.prose-inner h2 span {
	color: var(--primary);
}

.prose-content,
.prose-content p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text);
}
.prose-content p:not(:last-child) {
	margin-bottom: 1.1rem;	
}
.prose-content p:last-child {
	margin-bottom: 0;
}

.doctor-quote {
	background: var(--bg-light);
	border-left: 4px solid var(--primary);
	border-radius: 0 12px 12px 0;
	padding: 24px 28px;
	margin: 2rem 0;
}

.doctor-quote p {
	font-size: 1rem;
	font-style: italic;
	line-height: 1.75;
	color: var(--text);
	margin: 0;
}

.prose-list {
	margin: 1rem 0 1.25rem 1.25rem;
	padding: 0;
}

.prose-list li {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--text);
	margin-bottom: 0.4rem;
	list-style: disc;
}

/* ============================================
   BEFORE & AFTER GALLERY
   ============================================ */
.ba-section-desc {
	max-width: 600px;
	margin: 1rem auto 0;
	color: #666;
}

.ba-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.ba-thumb {
	width: calc(25% - 12px);
}

.ba-thumb {
	background: #1e2530;
	border-radius: 12px;
	aspect-ratio: 16 / 10;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: border-color 0.2s, background 0.2s;
}

.ba-thumb:hover {
	background: #252d3a;
}

.ba-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.ba-thumb:hover img {
	transform: scale(1.03);
}

.ba-placeholder {
	text-align: center;
	padding: 1.5rem;
}

.ba-placeholder p {
	font-weight: 600;
	margin: 0;
	font-size: 1rem;
	color: #aaa;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
	background: #0b1628;
}

.reviews-section .section-header h2 {
	color: #fff;
}

.reviews-section .section-label-light {
	color: rgba(255, 255, 255, 0.65);
}

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

.review-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 28px;
	display: flex;
	flex-direction: column;
}

.review-stars {
	color: #f59e0b;
	font-size: 14px;
	margin-bottom: 14px;
	letter-spacing: 1px;
}

/* Collapsed: 4-line clamp with fade */
.review-body {
	position: relative;
	overflow: hidden;
	flex: 1;
	margin-bottom: 0;
}

.review-body:not(.is-expanded) {
	max-height: 6.8em; /* 4 lines × 1.7 line-height */
}

/*.review-body:not(.is-expanded)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2.5em;
	background: linear-gradient(to bottom, rgba(17, 24, 43, 0), rgba(17, 24, 43, 1));
	pointer-events: none;
}*/

/* Expanded: scrollable */
.review-body.is-expanded {
	max-height: 116px;
	overflow-y: auto;
}

.review-body.is-expanded::after {
	display: none;
}

/* Scrollbar styling */
.review-body::-webkit-scrollbar {
	width: 4px;
}

.review-body::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
}

.review-body::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}

.review-body::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.35);
}

.review-text,
.review-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	font-style: italic;
	margin: 0;
}

/* Read More / Read Less toggle */
.review-toggle {
	background: none;
	border: none;
	color: var(--primary);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 0 0;
	text-align: left;
	font-family: var(--font-body);
	transition: color 0.2s;
}

.review-toggle:hover, .review-toggle:focus {
	color: #3d9bff;
	background: transparent !important;
}

.review-toggle.is-hidden {
	display: none;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding: 14px 0 0;
}

.review-avatar {
	width: 40px;
	height: 40px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.review-author strong {
	font-size: 14px;
	color: #fff;
	display: block;
}

.review-author span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   SERVICES GRID
   ============================================ */
/* Services header - LEFT aligned like reference */
.services-header {
	margin-bottom: 48px;
	max-width: 640px;
}

.services-header .section-label {
	display: block;
	margin-bottom: 14px;
}

.services-header h2 {
	font-family: var(--font-body);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 800;
	line-height: 1.12;
	color: var(--dark);
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.services-header h2 strong,
.services-header h2 span,
.services-header h2 em {
	color: var(--primary);
	font-style: normal;
}

.services-header-desc,
.services-header-desc p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.65;
	margin: 0;
	max-width: 540px;
}

.services-slider {
	margin: 0 -12px;
}
.services-slider .slick-track {
	display: flex;
	flex-wrap: wrap;
}

.services-slider .slick-slide {
	padding: 0 12px;
	height: auto;
}

.services-slider .slick-list {
	overflow: visible;
	padding: 4px 0 8px;
}

.services-slider .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: 0 2px 12px rgba(0,0,0,0.12);
	color: var(--dark);
	font-size: 0;
	cursor: pointer;
	z-index: 10;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.services-slider .slick-arrow:hover {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(0,121,255,0.3);
	border-color: var(--primary);
}

.services-slider .slick-arrow::after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
}

.services-slider .slick-prev {
	left: -22px;
}

.services-slider .slick-prev::after {
	content: '\f053';
}

.services-slider .slick-next {
	right: -22px;
}

.services-slider .slick-next::after {
	content: '\f054';
}

.services-slider .slick-dots {
	display: flex !important;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
	padding: 0;
	list-style: none;
}

.services-slider .slick-dots li {
	margin: 0;
}

.services-slider .slick-dots li button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--border);
	border: none;
	font-size: 0;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, transform 0.2s;
}

.services-slider .slick-dots li.slick-active button {
	background: var(--primary);
	transform: scale(1.35);
}

.service-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.35s ease, transform 0.35s ease;
	height: 100%;
}

.service-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
	transform: translateY(-3px);
}

.service-card-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
	transform: scale(1.05);
}

.service-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.service-card-body h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 8px;
}

.service-card-body h4 a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s;
}

.service-card-body h4 a:hover {
	color: var(--primary);
}

.service-card-desc,
.service-card-desc p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0 0 16px;
	flex: 1;
}

.service-card-desc p:last-child { margin-bottom: 0; }
.service-card-desc { margin: 0 0 16px; }

.service-card-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	transition: gap 0.2s;
	text-decoration: none;
}

.service-card-link:hover {
	gap: 10px;
}

@media (max-width: 768px) {
	.services-slider .slick-prev { left: -10px; }
	.services-slider .slick-next { right: -10px; }
	.services-slider .slick-arrow { width: 36px; height: 36px; }
}

/* ============================================
   LIGHT CTA
   ============================================ */
.cta-light-inner {
	text-align: center;
	max-width: 720px;
}

.cta-light-inner h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.12;
}

.cta-light-inner h2 strong,
.cta-light-inner h2 em {
	color: var(--primary);
	font-style: normal;
}

.cta-light-desc,
.cta-light-desc p {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 32px;
}

.cta-light-desc p:last-child { margin-bottom: 0; }
.cta-light-desc { margin: 0 0 32px; }

/* ============================================
   TEXT CONTENT
   ============================================ */
.text-content {
	max-width: 780px;
	margin: 0 auto;
}

.text-content h2,
.text-content h3 {
	font-weight: 800;
	color: var(--dark);
	letter-spacing: -0.02em;
	margin: 40px 0 16px;
}

.text-content h2 { font-size: 28px; }
.text-content h3 { font-size: 22px; }

.text-content p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.75;
	margin: 0 0 16px;
}

.text-content ul,
.text-content ol {
	margin: 0 0 20px;
	padding-left: 24px;
	list-style: disc;
}

.text-content li {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 8px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
	max-width: 780px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	background-color: transparent !important;
}

.faq-toggle span {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.4;
	transition: color 0.2s ease;
}

.faq-toggle svg {
	flex-shrink: 0;
	color: var(--text-muted);
	transition: transform 0.3s ease, color 0.2s ease;
}

.faq-toggle:hover span {
	color: var(--primary);
}

.faq-toggle:hover svg {
	color: var(--primary);
}

.faq-item.open .faq-toggle span {
	color: var(--primary);
}

.faq-item.open .faq-toggle svg {
	transform: rotate(180deg);
	color: var(--primary);
}

.faq-answer {
	display: none;
	padding: 0 0 20px;
}

.faq-item.open .faq-answer {
	display: block;
}

.faq-answer p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 12px;
}

.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.stat-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.stat-card strong {
	font-size: 32px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}

.stat-card span {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-muted);
}

/* ============================================
   RESPONSIVE 1300px (mobile nav toggle)
   ============================================ */
@media (max-width: 1300px) {
	.nav-toggle { display: flex; }
	.nav-phone { display: none; }

	.site-nav {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(10, 18, 32, 0.98);
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		z-index: 99;
		overflow-y: auto;
		padding: 80px 24px 40px;
	}

	body.mobile-open .site-nav {
		display: flex;
	}

	.nav-list {
		flex-direction: column;
		gap: 0;
		text-align: left;
		width: 100%;
		align-items: flex-start;
	}

	.nav-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		width: 100%;
	}

	.nav-link {
		font-size: 18px;
		padding: 14px 0;
		font-weight: 600;
		color: var(--white);
		border-radius: 0;
		justify-content: space-between;
		width: 100%;
	}

	.nav-link:hover, .nav-link:focus {
		background: transparent;
		color: var(--primary);
	}

	.nav-chevron {
		font-size: 11px;
		opacity: 0.5;
	}

	/* Disable desktop hover — only toggle via JS */
	.nav-item:hover > .nav-dropdown {
		opacity: 0;
		pointer-events: none;
		display: none;
	}

	.nav-dropdown {
		position: static;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: none;
		display: none;
		background: transparent;
		box-shadow: none;
		border: none;
		border-radius: 0;
		min-width: auto;
		padding: 0 0 12px 0;
		transition: none;
	}

	.nav-dropdown::before { display: none; }

	.nav-item.dropdown-open > .nav-dropdown {
		display: block !important;
	}

	.nav-dropdown a {
		font-size: 15px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.6);
		padding: 10px 0 10px 16px;
		border-radius: 0;
		white-space: normal;
	}

	.nav-dropdown a:hover {
		color: var(--white);
		background: transparent;
	}

	.nav-dropdown-wide {
		display: none;
		width: auto;
		grid-template-columns: 1fr;
	}

	.nav-item.dropdown-open > .nav-dropdown-wide {
		display: block !important;
	}

	.nav-dropdown-col {
		margin-bottom: 8px;
	}

	.nav-dropdown-label {
		color: rgba(255, 255, 255, 0.35);
		padding: 12px 0 4px 16px;
		font-size: 10px;
	}

	.btn.nav-cta {
		margin: 24px 0 0;
		padding: 14px 28px;
		font-size: 15px;
		width: 100%;
		text-align: center;
		display: block;
	}
}

/* ============================================
   RESPONSIVE 991px (steps grid)
   ============================================ */
@media (max-width: 991px) {
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
	.advantage-card { width: calc(50% - 10px); }
	.list-box-card { width: 100%; max-width: 540px; }
	.reviews-grid { grid-template-columns: repeat(2, 1fr); }
	.articles-grid { grid-template-columns: repeat(2, 1fr); }
	.ba-thumb { width: calc(50% - 8px); }
	.dual-locations { grid-template-columns: 1fr; }
	.dual-locations-map { min-height: 400px; }
	.dual-loc-map-top, .dual-loc-map-bottom { min-height: 200px; }
	.dual-locations-map iframe { min-height: 200px; }
	.dual-locations-info { padding: 2rem 1.5rem; }
}

/* ============================================
   RESPONSIVE 575px
   ============================================ */
@media (max-width: 575px) {
	.steps-grid { grid-template-columns: 1fr; }
	.advantage-card { width: 100%; }
	.ba-thumb { width: 100%; }
	.list-box-card { padding: 28px 24px 24px; }
	.list-box-card h3 { font-size: 20px; }
	.reviews-grid { grid-template-columns: 1fr; }
	.articles-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE 1024px
   ============================================ */
@media (max-width: 1024px) {
	:root { --gutter: 24px; }

	.header-inner { padding: 0 8px 0 24px; }

	.nav-link { font-size: 12.5px; padding: 7px 9px; }
	.nav-cta { font-size: 12.5px; padding: 9px 16px; }
	.nav-phone { font-size: 12.5px; }

	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer-brand { grid-column: 1 / -1; }
	.footer-tagline { max-width: none; }

	.hero-stats {
		margin-left: 0;
		align-self: flex-start;
		margin-top: 48px;
	}

	.hero-stat {
		padding: 0 28px;
	}

	.hero-stat:first-child {
		padding-left: 0;
	}

	.trust-grid { grid-template-columns: repeat(2, 1fr); }
	.two-col { gap: 40px; }
	.location-row { grid-template-columns: 1fr 1fr; gap: 36px; }
	.doctor-col { padding: 0 32px; }
	.specialty-half-body { padding: 36px 32px; }
	.specialty-half { min-height: 500px; }
	.section { padding: 70px 0; }
}

/* ============================================
   RESPONSIVE 768px
   ============================================ */
@media (max-width: 768px) {
	:root {
		--gutter: 20px;
	}

	.top-bar { height: 40px; font-size: 12px; }

	/* Legal pages: stack to single column */
	.legal-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.legal-toc {
		position: static;
		background: var(--bg-light);
		border-radius: 10px;
		padding: 20px;
	}
	.legal-hero {
		padding: 48px 0 36px;
	}

	.header-inner {
		padding: 0 6px 0 14px;
		height: 56px;
	}

	.site-logo-circles { height: 28px; }
	.site-logo-circles img { height: 46px; }
	.site-logo-sub { font-size: 8px; margin-top: 2px; }

	.hero-inner {
		padding-top: 40px;
		padding-bottom: 48px;
	}

	.hero-content h1 {
		font-size: 34px;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 20px 0;
		margin-top: 40px;
		align-self: flex-start;
		margin-left: 0;
	}

	.hero-stat-divider { display: none; }

	.hero-stat {
		padding: 0 28px 0 0;
		min-width: 120px;
	}

	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
		padding: 50px var(--gutter);
	}

	.footer-brand { grid-column: 1 / -1; }
	.footer-tagline { max-width: none; }

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.section { padding: 50px 0; }

	.specialty-split { flex-direction: column; }
	.specialty-half-implants { border-right: none; border-bottom: 3px solid var(--white); }
	.specialty-half { min-height: auto; }
	.specialty-half:hover { flex: 1; }
	.specialty-half-body { padding: 32px 24px; }
	.specialty-reveal {
		max-height: none;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		overflow: visible;
	}

	.two-col { grid-template-columns: 1fr; gap: 32px; }
	.two-col-reverse { direction: ltr; }

	.doctor-grid { grid-template-columns: 1fr; gap: 48px; }
	.doctor-col { padding: 0 !important; }
	.doctor-col:first-child { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 48px !important; }

	.location-row { grid-template-columns: 1fr; gap: 32px; }
	.location-row-reverse { direction: ltr; }
	.location-map { min-height: 300px; position: static; order: -1; }
	.location-map iframe, .location-map p { min-height: 300px; }
	.location-map-placeholder { min-height: 300px; }
	.location-row-spaced { margin-top: 48px; padding-top: 48px; }
	.location-divider { margin: 48px 0; }

	.inner-hero { padding: 52px 0 40px; }
	.inner-hero-img { min-height: 320px; }
	.inner-hero-btns { flex-direction: column; align-items: flex-start; }

	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.faq-toggle span { font-size: 15px; }
	.section-cta { flex-direction: column; }
	.section-cta .btn { width: 100%; text-align: center; }
}

/* ============================================
   RESPONSIVE 480px
   ============================================ */
@media (max-width: 480px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-brand { grid-column: auto; }

	.footer-legal {
		flex-direction: column;
		gap: 8px;
	}

	.page-cta-btns { flex-direction: column; }
	.page-cta-btns .btn { width: 100%; }

	.two-col-text .btn { width: 100%; text-align: center; display: block; }

	.hero-content h1 {
		font-size: 28px;
	}

	.hero-stat strong {
		font-size: 22px;
	}

	.hero-cta-group {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-cta-group .btn {
		width: 100%;
		text-align: center;
	}

	.trust-grid { grid-template-columns: 1fr; }
	.location-card { padding: 28px 20px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.nav-toggle:focus-visible,
.btn:focus-visible,
a:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

@media print {
	.top-bar, .site-header, .nav-toggle, .footer-social-row { display: none !important; }
	footer.site-footer { background: #fff; color: #333; }
}
/**/
@media only screen and (max-width: 991px) {
	.section-header, .trust-header, .services-header {
		margin-bottom: 30px;
	}
	.section-cta {
		margin-top: 30px;
	}
}
@media only screen and (max-width: 768px) {
	.hero {
		min-height: auto;
	}
	.hero-bg, .specialty-half-bg {
		position: inherit;
	}
	.hero-overlay, .specialty-half-overlay {
		display: none;
	}
	.hero-inner, .specialty-half-body {
		background: #1a3a5ce0;
	}
	.specialty-half-bg {
		transform: none !important;
	}
	.specialty-half .specialty-half-body h3 {
		margin-bottom: 20px;
	}
}