/**
 * Chitra Dental Premium Theme Stylesheet
 * Handcrafted Design for Clinical Excellence
 */

/* ==========================================================================
   1. Design Tokens & CSS Variables
   ========================================================================== */
:root {
	/* Color Palette */
	--primary-color: #00305b;       /* Deep clinical teal */
	--primary-dark: #001b38;        /* Navy background */
	--primary-light: #004b8d;       /* Soft mint teal */
	--secondary-color: #e5a93b;     /* Fresh bright teal */
	--accent-color: #e5a93b;        /* Gold/Warm Coral */
	--text-dark: #212529;           /* Charcoal */
	--text-muted: #6c757d;          /* Gray text */
	--bg-light: #f4f8f8;            /* Soft mint/gray */
	--bg-white: #ffffff;
	--border-color: #e2eafc;
	--shadow-soft: 0 4px 20px rgba(11, 82, 91, 0.05);
	--shadow-medium: 0 10px 30px rgba(11, 82, 91, 0.08);
	--shadow-hover: 0 20px 40px rgba(11, 82, 91, 0.15);
	
	/* Typography */
	--font-headings: 'Outfit', sans-serif;
	--font-body: 'Inter', sans-serif;
	
	/* Layout Specs */
	--container-width: 1200px;
	--transition-speed: 0.3s;
	--border-radius-sm: 8px;
	--border-radius-md: 16px;
	--border-radius-lg: 24px;
}

/* ==========================================================================
   2. Reset & Typography
   ========================================================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	font-weight: 700;
	color: var(--primary-dark);
	line-height: 1.25;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all var(--transition-speed) ease;
}

a:hover {
	color: var(--secondary-color);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.section-padding {
	padding: 80px 0;
}

.style-light {
	background-color: var(--bg-light);
}

.text-center {
	text-align: center;
}

/* ==========================================================================
   3. Buttons & UI Elements
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 16px;
	border-radius: 50px;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	gap: 10px;
	border: none;
}

.btn-primary {
	background-color: var(--secondary-color);
	color: var(--primary-dark);
}

.btn-primary:hover {
	background-color: var(--accent-color);
	color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 201, 167, 0.2);
}

.btn-secondary {
	background-color: transparent;
	color: var(--bg-white);
	border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
	background-color: var(--bg-white);
	color: var(--primary-dark);
	transform: translateY(-3px);
}

/* ==========================================================================
   4. Header & Navigation Menu
   ========================================================================== */
.top-bar {
	background-color: var(--primary-dark);
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar-info {
	display: flex;
	align-items: center;
	gap: 16px;
}

.top-bar-info a {
	color: var(--bg-white);
	font-weight: 500;
}

.top-bar-divider {
	color: rgba(255, 255, 255, 0.3);
}

.top-bar-info i, .top-bar-address i {
	color: var(--secondary-color);
	margin-right: 6px;
}

.site-header {
	background-color: var(--primary-color);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--shadow-soft);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 15px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.site-branding {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.site-branding h1 {
	font-size: 28px;
	font-weight: 800;
}

.site-branding a {
	color: var(--primary-dark);
	display: flex;
	align-items: center;
}

.site-branding span {
	color: var(--primary-color);
}

.custom-logo {
	max-height: 50px;
	width: auto;
	object-fit: contain;
	display: block;
}

.mobile-custom-logo {
	max-height: 38px;
	width: auto;
	object-fit: contain;
	display: block;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-menu > li > a {
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 16px;
	color: var(--bg-white);
	position: relative;
	padding: 5px 0;
}

.nav-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width var(--transition-speed) ease;
}

.nav-menu > li > a:hover::after {
	width: 100%;
}
.dropdown-trigger i {
	color: var(--bg-white);
}

.btn-cta {
	background-color: var(--primary-color);
	color: var(--bg-white) !important;
	padding: 10px 20px !important;
	border-radius: 50px;
}

.btn-cta::after {
	display: none !important;
}

.btn-cta:hover {
	background-color: var(--secondary-color);
	color: var(--primary-dark) !important;
	transform: translateY(-2px);
}

/* Navigation Dropdown Menu */
.menu-item-has-children {
	position: relative;
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--bg-white);
	box-shadow: var(--shadow-medium);
	border-radius: var(--border-radius-sm);
	padding: 15px 0;
	width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all var(--transition-speed) ease;
	z-index: 10;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li a {
	display: block;
	padding: 8px 24px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
}

.sub-menu li a:hover {
	background-color: var(--bg-light);
	color: var(--primary-color);
	padding-left: 28px;
}

/* Mobile Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
}

.menu-toggle .bar {
	width: 26px;
	height: 3px;
	background-color: var(--bg-white);
	border-radius: 2px;
	transition: all var(--transition-speed) ease;
}

/* Mobile Nav Drawer */
.mobile-navigation-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 300px;
	height: 100vh;
	background-color: var(--bg-white);
	box-shadow: -5px 0 30px rgba(0,0,0,0.15);
	z-index: 200;
	padding: 30px;
	transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	overflow-y: auto;
}

.mobile-navigation-drawer.active {
	right: 0;
}

.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 15px;
}

.mobile-title {
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 24px;
	color: var(--primary-dark);
}

.mobile-title span {
	color: var(--primary-color);
}

.mobile-nav-close {
	background: none;
	border: none;
	font-size: 24px;
	color: var(--primary-dark);
	cursor: pointer;
}

.mobile-nav-menu li {
	margin-bottom: 20px;
}

.mobile-nav-menu > li > a {
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 18px;
	color: var(--primary-dark);
}

.mobile-dropdown-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-dropdown-toggle {
	background: none;
	border: none;
	font-size: 16px;
	color: var(--primary-dark);
	cursor: pointer;
}

.mobile-sub-menu {
	display: none;
	padding-left: 15px;
	margin-top: 10px;
	border-left: 2px solid var(--border-color);
}

.mobile-sub-menu li {
	margin-bottom: 10px;
}

.mobile-sub-menu li a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-muted);
}

.mobile-cta-btn {
	display: block;
	background-color: var(--primary-color);
	color: var(--bg-white);
	text-align: center;
	padding: 12px;
	border-radius: 50px;
	font-family: var(--font-headings);
	font-weight: 600;
}

.mobile-nav-footer {
	margin-top: 50px;
	border-top: 1px solid var(--border-color);
	padding-top: 20px;
	font-size: 14px;
	color: var(--text-muted);
}

.mobile-nav-footer p {
	margin-bottom: 10px;
}

.mobile-navigation-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(4px);
	z-index: 199;
	display: none;
}

/* ==========================================================================
   5. Hero Banner & Covid Ribbon
   ========================================================================== */
.hero-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0;
	color: var(--bg-white);
}

.hero-container {
	display: flex;
	align-items: center;
}

.hero-content {
	max-width: 650px;
}

.hero-tagline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.hero-title {
	font-size: 48px;
	font-weight: 800;
	color: var(--bg-white);
	line-height: 1.15;
	margin-bottom: 24px;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}

.hero-ctas {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.covid-ribbon {
	background-color: #fff3cd;
	border-bottom: 1px solid #ffeeba;
	padding: 15px 0;
}

.covid-ribbon-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.covid-ribbon-content {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #856404;
}

.covid-badge {
	background-color: #ffe8a1;
	border: 1px solid #ffdf7e;
	padding: 3px 8px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 12px;
}

.covid-link {
	color: #856404;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.covid-link:hover {
	color: var(--primary-color);
}

/* ==========================================================================
   6. About Us / Biography
   ========================================================================== */
.about-container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.about-image-container .image-wrapper {
	position: relative;
}

.about-image-container img {
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-medium);
	width: 100%;
	object-fit: cover;
	aspect-ratio: 4/5;
}

.experience-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background-color: var(--primary-color);
	color: var(--bg-white);
	padding: 24px;
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-hover);
	display: flex;
	align-items: center;
	gap: 15px;
}

.badge-number {
	font-family: var(--font-headings);
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	color: var(--secondary-color);
}

.badge-text {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-subtitle {
	display: block;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.section-title {
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 8px;
}

.doctor-credentials {
	display: block;
	font-family: var(--font-headings);
	font-size: 18px;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.doctor-lead {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.about-text-content p {
	margin-bottom: 20px;
	color: var(--text-dark);
}

.doctor-features {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

.doc-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.doc-feature i {
	font-size: 20px;
	color: var(--secondary-color);
}

.doc-feature span {
	font-weight: 600;
	font-size: 15px;
	color: var(--primary-dark);
}

/* Social Service Section */
.social-service-container {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
}

.service-content-block h3 {
	font-size: 28px;
	margin-bottom: 20px;
}

.service-content-block p {
	margin-bottom: 15px;
}

.clinic-motto {
	border-left: 4px solid var(--secondary-color);
	padding-left: 20px;
	margin-top: 25px;
	font-style: italic;
	font-weight: 500;
	color: var(--primary-color);
	font-size: 18px;
}

.service-stats-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.stat-card {
	background-color: var(--bg-white);
	padding: 30px;
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-soft);
	transition: all var(--transition-speed) ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
}

.stat-card i {
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.stat-card h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

.stat-card p {
	font-size: 14px;
	color: var(--text-muted);
}

/* ==========================================================================
   7. Treatments Section
   ========================================================================== */
.section-header {
	max-width: 700px;
	margin: 0 auto 50px auto;
}

.section-lead {
	font-size: 18px;
	color: var(--text-muted);
	margin-top: 15px;
}

.treatments-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.treatment-card {
	background-color: var(--bg-white);
	padding: 40px 30px;
	border-radius: var(--border-radius-md);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-soft);
	transition: all var(--transition-speed) ease;
	display: flex;
	flex-direction: column;
}

.treatment-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
	border-color: transparent;
}

.card-icon {
	width: 60px;
	height: 60px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	border-radius: 50%;
	margin-bottom: 24px;
	transition: all var(--transition-speed) ease;
}

.treatment-card:hover .card-icon {
	background-color: var(--primary-color);
	color: var(--bg-white);
}

.treatment-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.treatment-card p {
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 25px;
	flex-grow: 1;
}

.card-link {
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.card-link i {
	font-size: 12px;
	transition: transform var(--transition-speed) ease;
}

.treatment-card:hover .card-link i {
	transform: translateX(4px);
}

/* ==========================================================================
   8. Testimonials Section
   ========================================================================== */
.testimonials-slider-wrapper {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.testimonial-slides {
	position: relative;
	min-height: 250px;
}

.testimonial-slide {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: opacity 0.5s ease;
	z-index: 1;
	pointer-events: none;
	text-align: center;
}

.testimonial-slide.active {
	opacity: 1;
	position: relative;
	z-index: 2;
	pointer-events: auto;
}

.testimonial-rating {
	color: var(--accent-color);
	font-size: 18px;
	margin-bottom: 20px;
}

.testimonial-quote {
	font-size: 20px;
	font-style: italic;
	line-height: 1.6;
	color: var(--primary-dark);
	margin-bottom: 30px;
}

.testimonial-author {
	display: block;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 18px;
	color: var(--primary-color);
}

.testimonial-location {
	display: block;
	font-size: 14px;
	color: var(--text-muted);
	margin-top: 4px;
}

.slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.slider-arrow {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	color: var(--primary-color);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
	transition: all var(--transition-speed) ease;
}

.slider-arrow:hover {
	background-color: var(--primary-color);
	color: var(--bg-white);
}

.slider-dots {
	display: flex;
	gap: 10px;
}

.slider-dots .dot {
	width: 10px;
	height: 10px;
	background-color: #cbd5e1;
	border-radius: 50%;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
}

.slider-dots .dot.active {
	background-color: var(--primary-color);
	transform: scale(1.2);
}

/* ==========================================================================
   9. Contact Form & Booking
   ========================================================================== */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
}

.contact-info-block h2 {
	font-size: 38px;
	margin-bottom: 15px;
}

.contact-info-block p {
	color: var(--text-muted);
	margin-bottom: 40px;
}

.contact-card {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	gap: 20px;
}

.contact-item i {
	width: 50px;
	height: 50px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 20px;
	flex-shrink: 0;
}

.contact-item h4 {
	font-size: 16px;
	color: var(--text-muted);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-item p, .contact-item a {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-dark);
}

.form-wrapper {
	background-color: var(--bg-light);
	padding: 40px;
	border-radius: var(--border-radius-md);
	border: 1px solid var(--border-color);
}

.form-wrapper h3 {
	font-size: 24px;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group label {
	display: block;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 14px;
	color: var(--primary-dark);
	margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	font-family: var(--font-body);
	font-size: 15px;
	outline: none;
	transition: all var(--transition-speed) ease;
	background-color: var(--bg-white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(11, 82, 91, 0.1);
}

.btn-submit {
	background-color: var(--primary-color);
	color: var(--bg-white);
	width: 100%;
}

.btn-submit:hover {
	background-color: var(--primary-dark);
}

/* ==========================================================================
   10. Footer Section
   ========================================================================== */
.site-footer {
	background-color: var(--primary-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 80px 0 0 0;
	font-size: 15px;
}

.footer-container {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer-column h3 {
	color: var(--bg-white);
	font-size: 26px;
	margin-bottom: 20px;
}

.footer-column h3 span {
	color: var(--secondary-color);
}

.footer-column h4 {
	color: var(--bg-white);
	font-size: 18px;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--secondary-color);
}

.footer-column p {
	line-height: 1.7;
	margin-bottom: 20px;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.footer-socials a {
	width: 38px;
	height: 38px;
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--bg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 14px;
}

.footer-socials a:hover {
	background-color: var(--secondary-color);
	color: var(--primary-dark);
	transform: translateY(-3px);
}

.footer-links ul li, .footer-treatments-link ul li {
	margin-bottom: 12px;
}

.footer-links ul li a, .footer-treatments-link ul li a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover, .footer-treatments-link ul li a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer-contact p {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
	align-items: flex-start;
}

.footer-contact i {
	color: var(--secondary-color);
	margin-top: 5px;
	flex-shrink: 0;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
	color: var(--secondary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
}

.footer-bottom-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.designer-credit {
	color: var(--secondary-color);
	font-weight: 600;
}

/* ==========================================================================
   11. Inner Page Layouts & Sidebars
   ========================================================================== */
.treatment-hero {
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	color: var(--bg-white);
}

.treatment-hero-container {
	display: flex;
	align-items: center;
}

.treatment-hero-content {
	max-width: 800px;
}

.treatment-badge {
	display: inline-block;
	background-color: rgba(0, 201, 167, 0.2);
	color: var(--secondary-color);
	padding: 4px 12px;
	border-radius: 4px;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.treatment-hero-content h1 {
	font-size: 40px;
	color: var(--bg-white);
	margin-bottom: 15px;
}

.treatment-hero-content p {
	font-size: 16px;
	color: rgba(255,255,255,0.9);
}

.treatment-body-container {
	display: grid;
	grid-template-columns: 2.2fr 1fr;
	gap: 50px;
}

.treatment-main-content h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.treatment-lead-intro {
	color: var(--text-muted);
	font-size: 16px;
	margin-bottom: 35px;
}

/* Sidebar Widgets */
.treatment-sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sidebar-widget {
	background-color: var(--bg-light);
	padding: 30px;
	border-radius: var(--border-radius-md);
	border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 8px;
}

.sidebar-widget h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--primary-color);
}

.widget-links ul li {
	margin-bottom: 12px;
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 10px;
}

.widget-links ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.widget-links ul li a {
	color: var(--text-dark);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.widget-links ul li a i {
	font-size: 12px;
	color: var(--primary-color);
}

.widget-links ul li.active a {
	color: var(--primary-color);
}

.widget-links ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.widget-cta {
	background-size: cover;
	background-position: center;
	color: var(--bg-white);
	text-align: center;
	padding: 40px 30px;
	border: none;
}

.widget-cta h3 {
	color: var(--bg-white);
	font-size: 24px;
}

.widget-cta h3::after {
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--secondary-color);
}

.widget-cta p {
	font-size: 15px;
	margin-bottom: 25px;
	color: rgba(255,255,255,0.9);
}

.btn-sidebar-cta {
	background-color: var(--secondary-color);
	color: var(--primary-dark);
	font-weight: 700;
	padding: 10px 20px;
	font-size: 14px;
	width: 100%;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.btn-sidebar-cta:hover {
	background-color: var(--accent-color);
	transform: translateY(-2px);
}

.sidebar-contact-info {
	margin-top: 25px;
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

.sidebar-contact-info p {
	margin-bottom: 5px;
}

/* ==========================================================================
   12. FAQ Accordion Layout
   ========================================================================== */
.treatment-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: all var(--transition-speed) ease;
}

.faq-item.active {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-medium);
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 16px;
	color: var(--primary-dark);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	transition: all var(--transition-speed) ease;
}

.faq-item:hover .faq-question {
	color: var(--primary-color);
}

.faq-icon {
	width: 28px;
	height: 28px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 12px;
	transition: all var(--transition-speed) ease;
	flex-shrink: 0;
}

.faq-item.active .faq-icon {
	background-color: var(--primary-color);
	color: var(--bg-white);
}

.faq-answer {
	padding: 0 24px 20px 24px;
	font-size: 15px;
	color: var(--text-dark);
	display: none;
}

.faq-answer p {
	line-height: 1.6;
}

/* ==========================================================================
   13. COVID Policy Page Layout
   ========================================================================== */
.covid-intro-card {
	background-color: rgba(11, 82, 91, 0.05);
	border-left: 4px solid var(--primary-color);
	padding: 30px;
	border-radius: var(--border-radius-sm);
	margin-bottom: 40px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.covid-intro-card i {
	font-size: 32px;
	color: var(--primary-color);
	margin-top: 2px;
}

.covid-intro-card p {
	font-size: 16px;
	color: var(--primary-dark);
	font-weight: 500;
}

.protocol-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.protocol-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-md);
	padding: 40px 30px;
	box-shadow: var(--shadow-soft);
	transition: all var(--transition-speed) ease;
}

.protocol-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-medium);
}

.protocol-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(0, 201, 167, 0.1);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 50%;
	margin-bottom: 20px;
}

.protocol-card h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.protocol-card ul li {
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--text-dark);
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.protocol-card ul li i {
	color: var(--secondary-color);
	margin-top: 4px;
}

.covid-warning-block {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
	padding: 40px;
	border-radius: var(--border-radius-md);
	margin-bottom: 50px;
	display: flex;
	gap: 30px;
	align-items: center;
}

.warning-icon {
	font-size: 48px;
	color: #dc3545;
}

.warning-text h4 {
	color: #721c24;
	font-size: 20px;
	margin-bottom: 10px;
}

.warning-text p {
	font-size: 15px;
	line-height: 1.6;
}

.covid-footer-text {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.covid-footer-text p {
	font-size: 18px;
	font-style: italic;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.sign-off {
	display: block;
	font-size: 15px;
	color: var(--text-muted);
}

/* ==========================================================================
   14. Gallery Layout & Lightbox
   ========================================================================== */
.gallery-intro {
	max-width: 600px;
	margin: 0 auto 50px auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.gallery-item {
	overflow: hidden;
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-soft);
	cursor: pointer;
}

.gallery-image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	background-color: var(--primary-dark);
}

.gallery-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top, rgba(11, 82, 91, 0.95), rgba(20, 33, 61, 0.4));
	opacity: 0;
	transition: opacity 0.4s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--bg-white);
	padding: 20px;
	text-align: center;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.zoom-icon {
	font-size: 28px;
	color: var(--secondary-color);
	margin-bottom: 12px;
	transform: translateY(20px);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-caption {
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 16px;
	transform: translateY(20px);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.gallery-item:hover .zoom-icon, .gallery-item:hover .gallery-caption {
	transform: translateY(0);
}

/* Lightbox overlay */
.gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(10, 21, 30, 0.95);
	backdrop-filter: blur(8px);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

.gallery-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 40px;
	color: var(--bg-white);
	font-size: 36px;
	cursor: pointer;
	transition: color var(--transition-speed) ease;
}

.lightbox-close:hover {
	color: var(--secondary-color);
}

.lightbox-content {
	max-width: 85%;
	max-height: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 75vh;
	border-radius: var(--border-radius-sm);
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
	color: var(--bg-white);
	font-family: var(--font-headings);
	font-size: 18px;
	margin-top: 20px;
	font-weight: 600;
}

/* ==========================================================================
   15. Media Queries (Responsiveness)
   ========================================================================== */
@media (max-width: 1024px) {
	.about-container, .contact-container, .treatment-body-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.about-image-container {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.footer-container {
		grid-template-columns: 1.5fr 1fr 1.5fr;
	}
	
	.footer-brand {
		grid-column: span 3;
		margin-bottom: 20px;
	}
	
	.nav-menu {
		display: none;
	}
	
	.menu-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.section-padding {
		padding: 60px 0;
	}
	
	.top-bar-address {
		display: none;
	}
	
	.top-bar-container {
		justify-content: center;
	}
	
	.hero-section {
		padding: 100px 0;
	}
	
	.hero-title {
		font-size: 36px;
	}
	
	.section-title {
		font-size: 30px;
	}
	
	.social-service-container {
		grid-template-columns: 1fr;
	}
	
	.treatments-grid, .gallery-grid, .protocol-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-container {
		grid-template-columns: 1fr 1fr;
	}
	
	.footer-brand {
		grid-column: span 2;
	}
	
	.footer-contact {
		grid-column: span 2;
	}
}

@media (max-width: 576px) {
	.treatments-grid, .gallery-grid, .protocol-grid, .footer-container {
		grid-template-columns: 1fr;
	}
	
	.footer-brand, .footer-contact {
		grid-column: span 1;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.experience-badge {
		right: 10px;
		bottom: -10px;
		padding: 15px;
	}
	
	.badge-number {
		font-size: 30px;
	}
	
	.form-wrapper {
		padding: 24px;
	}
	
	.covid-warning-block {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}
}
