@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shimmer {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes glow {
	from {
		box-shadow: 0 0 10px rgba(145, 209, 220, 0.5);
	}

	to {
		box-shadow: 0 0 20px rgba(145, 209, 220, 0.8);
	}
}

@keyframes pulse-urgent {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.02);
	}
}

@keyframes blink {
	0%, 50% {
		opacity: 1;
	}

	51%, 100% {
		opacity: 0.7;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px) scale(1);
		opacity: 0.6;
	}

	50% {
		transform: translateY(-25px) scale(1.1);
		opacity: 0.8;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse-soft {
	0%, 100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}
@keyframes shake {
	0%, 100% {
		transform: translateX(0);
	}

	10%, 30%, 50%, 70%, 90% {
		transform: translateX(-5px);
	}

	20%, 40%, 60%, 80% {
		transform: translateX(5px);
	}
}

@keyframes drawBorder {
	0% {
		transform: scale(0.95);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: scale(1.1);
		opacity: 0;
	}
}

@keyframes ringBell {
	0%, 50%, 100% {
		transform: rotate(0);
	}

	55%, 65%, 75% {
		transform: rotate(15deg);
	}

	60%, 70%, 80% {
		transform: rotate(-15deg);
	}
}

/* --- Global Styles --- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
[id] {
    scroll-margin-top: 80px; 
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-display: swap;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #006f96 0%, #0085b3 50%, #91d1dc 100%);
	min-height: 100vh;
}

section {
	margin: 0px auto;

	.cta-section {
		padding-bottom: 0px;
	}
}

.container-1 {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.checkout-wrapper {
	background: white;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	animation: slideUp 0.6s ease-out;
	margin: 0;
	max-width: 100%;
	border-radius: 0;
}

.header {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	padding: 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 3s infinite;
}

.header h1 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

.header p {
	font-size: 1.1rem;
	opacity: 0.9;
	position: relative;
	z-index: 1;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.trust-badge {
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	font-weight: 500;
	place-content: center;
}

.main-content {
	display: block;
	grid-template-columns: 1fr 400px;
	gap: 40px;
	padding: 40px;
}

.left-column {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #006f96;
	margin-bottom: 15px;
	position: relative;
	line-height: normal;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #91d1dc 0%, #006f96 100%);
	border-radius: 2px;
}

.section-title p {
	font-size: 1.1rem;
	color: #666;
	margin-top: 20px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.urgency-indicator {
	background: #ff6b6b;
	color: #fff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
	display: inline-block;
	margin: 20px 0px;
	animation: pulse 2s infinite;
	text-align: center;
}

.doctor-info {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: white;
}

.doctor-profile {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.doctor-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	box-shadow: 0 4px 12px rgba(0, 111, 150, 0.3);
}

.social-proof {
	background: #f8f9ff;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
}

.star-rating {
	color: #91d1dc;
	font-size: 1.2rem;
	margin-bottom: 10px;
	text-shadow: 0 1px 3px rgba(0, 111, 150, 0.3);
}

.testimonial {
	font-style: italic;
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
}

.testimonial::before {
	content: '"';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2rem;
	color: #667eea;
	line-height: 1;
}

.treatment-section {
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
	margin: 0;
}

.treatment-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 111, 150, 0.15);
	border-color: #006f96;
}

.primary-treatment {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}

.primary-treatment::after {
	content: 'MOST POPULAR';
	position: absolute;
	top: 15px;
	right: -30px;
	background: #91d1dc;
	color: #006f96;
	padding: 5px 40px;
	font-size: 0.8rem;
	font-weight: bold;
	transform: rotate(45deg);
	box-shadow: 0 2px 8px rgba(0, 111, 150, 0.3);
}

.treatment-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-item:last-child {
	border-bottom: none;
}

.treatment-info h3 {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.treatment-info p {
	font-size: 0.9rem;
	opacity: 0.8;
}

.treatment-price {
	font-size: 1.3rem;
	font-weight: bold;
}

.add-ons {
	margin-top: 30px;
}

.add-on-item {
	background: white;
	border: 2px solid #91d1dc;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	position: relative;
}

.add-on-item:hover {
	border-color: #006f96;
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 111, 150, 0.15);
}

.add-on-item.selected {
	border-color: #006f96;
	background: #f0f9fb;
	box-shadow: 0 0 0 3px rgba(145, 209, 220, 0.3);
}

.add-on-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.add-on-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.quantity-control {
	display: flex;
	align-items: center;
	gap: 5px;
	background: #f0f9fb;
	border-radius: 20px;
	padding: 5px;
	border: 1px solid #91d1dc;
}

.add-btn,
.subtract-btn,
.quantity-btn {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 111, 150, 0.3);
}

.add-btn:hover,
.subtract-btn:hover,
.quantity-btn:hover {
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
	transform: scale(1.1);
}

.add-btn:disabled,
.subtract-btn:disabled,
.quantity-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.quantity-display {
	min-width: 30px;
	text-align: center;
	font-weight: bold;
}

.remove-btn {
	background: #91d1dc;
	color: #006f96;
	border: none;
	padding: 8px 12px;
	border-radius: 20px;
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.remove-btn:hover {
	background: #7bc4d1;
	transform: scale(1.05);
}
.pricing-section{
	max-width: 800px;
	width: 100%;
}
.guarantee-section {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.guarantee-section::before {
	content: '✓';
	position: absolute;
	top: -20px;
	right: -20px;
	font-size: 3rem;
	opacity: 0.2;
}

.lead-urgency {
	background: linear-gradient(135deg, #91d1dc 0%, #7bc4d1 100%);
	color: #006f96;
	padding: 15px 20px;
	border-radius: 10px;
	text-align: center;
	margin: 20px;
	font-weight: bold;
	animation: glow 2s infinite alternate;
	border: 2px solid #006f96;
}

.lead-form-container {
	background: white;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.consent-section {
	margin-top: 20px;
}

.consent-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	position: relative;
}

.consent-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.checkmark {
	width: 20px;
	height: 20px;
	background: #f0f9fb;
	border: 2px solid #91d1dc;
	border-radius: 4px;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.consent-checkbox input:checked~.checkmark {
	background: #006f96;
	border-color: #006f96;
}

.consent-checkbox input:checked~.checkmark::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-weight: bold;
}

.consent-text {
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
}

.continue-to-booking-btn {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border: none;
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 25px;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease;
	margin-top: 20px;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
}

.continue-to-booking-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	box-shadow: none;
}

.continue-to-booking-btn:not(:disabled):hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 111, 150, 0.4);
}

.lead-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 25px;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
	font-size: 2.2rem;
}

.booking-section {
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
	margin: 0;
	margin-bottom: 30px;
	display: none;
}

.booking-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 111, 150, 0.15);
	border-color: #006f96;
}

.booking-section.visible {
	display: block;
}

.service-radio-group {
	border: 1px solid #91d1dc;
	border-radius: 4px;
	background-color: #f9f9f9;
	padding: 15px;
	margin-bottom: 20px;
}

.service-radio-option {
	margin-bottom: 15px;
}

.service-radio-option:last-child {
	margin-bottom: 0;
}

.service-radio-option input[type="radio"] {
	display: none;
}

.service-radio-option input[type="radio"]:not(:disabled)~label {
	cursor: pointer;
}

.service-radio-option input[type="radio"]:disabled~label {
	color: #ccc;
	border-color: #ccc;
	cursor: not-allowed;
}

.service-radio-option label {
	display: block;
	background: white;
	color: #006f96;
	border: 2px solid #006f96;
	border-radius: 20px;
	padding: 1rem 1rem 1rem 3.5rem;
	text-align: left;
	box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
	position: relative;
	transition: all 0.3s ease;
}

.service-radio-option input[type="radio"]:checked+label {
	background: #006f96;
	color: white;
	box-shadow: 0px 0px 20px #006f96;
}

.service-radio-option input[type="radio"]:checked+label::after {
	content: "\2713";
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	background: white;
	color: #006f96;
	border: 2px solid #006f96;
	box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

.service-name {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.service-meta {
	font-size: 0.9rem;
	opacity: 0.8;
	margin-right: 10px;
}

.service-meta-time {
	float: right;
	font-size: 0.9rem;
	opacity: 0.8;
}

.booking-urgency {
	background: linear-gradient(135deg, #91d1dc 0%, #7bc4d1 100%);
	color: #006f96;
	padding: 15px 20px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 25px;
	font-weight: bold;
	animation: glow 2s infinite alternate;
	border: 2px solid #006f96;
}

.celebrity-testimonial-section {
	width: 100%;
	max-width: 600px;
	margin: 0px auto 30px auto;
	flex-basis: 100%;
}

.celebrity-testimonial-card {
	background-color: #003366;
	color: white;
	border-radius: 15px;
	padding: 25px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	min-height: 200px;
}

.celebrity-testimonial-content {
	position: relative;
	z-index: 2;
	padding-right: 0;
}

.celebrity-testimonial-content h3 {
	font-size: 1.2rem;
	color: white;
	font-weight: bold;
	letter-spacing: 1px;
	position: relative;
}

.celebrity-testimonial-quote-icon {
	position: absolute;
	top: -8px;
	left: -10px;
	font-size: 2.8rem;
	color: rgba(255, 255, 255, 0.15);
	line-height: 1;
	z-index: 1;
	transform: rotate(-5deg);
}

.celebrity-testimonial-text {
	font-size: 0.95rem;
	line-height: 1.6;
	font-style: italic;
	color: #e0e0e0;
	padding-left: 15px;
	border-left: 2px solid #91d1dc;
	margin-bottom: 10px;
	margin-right: 60px;
}

.celebrity-name {
	font-size: 1.2rem;
	color: white;
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 2px;
}

.celebrity-title {
	font-size: 0.85rem;
	color: #b0b0b0;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.celebrity-image-container {
	position: absolute;
	right: -60px;
	bottom: -20px;
	width: 200px;
	height: auto;
	z-index: 1;
	opacity: 0.7;
	pointer-events: none;
	transform: rotate(5deg);
}

.celebrity-image-container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
}

.feedback-section {
	max-width: 800px;
	margin: 0px auto;
}

.revitalise-infobox {
	background-color: #E6F3FF;
	border: 1px solid #B3D7FF;
	border-radius: 12px;
	padding: 25px 30px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	color: #333;
}

.revitalise-infobox-icon {
	display: none;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin-top: 3px;
}

.revitalise-infobox-icon svg {
	width: 100%;
	height: 100%;
	fill: #007BFF;
}

.revitalise-infobox-content {
	flex-grow: 1;
	font-size: 1em;
	line-height: 1.6;
}

.revitalise-infobox-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.revitalise-infobox-content ul li {
	margin-bottom: 15px;
	font-size: 1.05em;
}

.revitalise-infobox-content ul li .action-taken-highlight {
	display: block;
	margin-left: 25px;
	color: #0056b3;
	font-weight: 600;
}

.revitalise-infobox-content ul li .action-taken-highlight::before {
	content: "→";
	margin-right: 8px;
	color: #007BFF;
}

.revitalise-infobox-content .stat-main {
	font-size: 1.25em;
	font-weight: bold;
	color: #1A2B48;
	margin-bottom: 5px;
}

.revitalise-infobox-content .stat-footnote {
	font-size: 0.85em;
	color: #555;
	font-style: italic;
}

.section-primary {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border-radius: 20px;
	padding: 20px;
	border: 2px solid #91d1dc;
}

.section-secondary {
	background: #f8f9ff;
	border-radius: 20px;
	padding: 20px;
	border: 2px solid #91d1dc;
}

.content-section {
	background: #f8f9ff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #91d1dc;
}

.content-section:nth-child(even) {
	background: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin: 0;
}

.content-section:nth-child(3n) {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
	font-family: sans-serif;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	max-width: 800px;
	margin: 15px auto;
	border-radius: 15px;
	overflow: hidden;
}

.comparison-table caption {
	caption-side: top;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: left;
}

.comparison-table thead tr {
	background-color: #006f96;
	color: #006f96;
	text-align: left;
}

.comparison-table th {
	color: #fff !important;
}

.comparison-table th,
.comparison-table td {
	padding: 12px 15px;
	border: 0px solid #000;
	text-align: center;
}

.comparison-table tbody tr {
	border-bottom: 1px solid #dddddd;
}

.comparison-table tbody tr:nth-of-type(odd) {
	background-color: #fff;
}

.comparison-table tbody tr:nth-of-type(even) {
	background-color: #f0f0f0;
}

.comparison-table tbody tr:last-of-type {
	border-bottom: 2px solid #006f96;
}

.custom-calendar {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f0f4ff;
}

.nav-button {
	background: #006f96;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.nav-button:hover {
	background: #0085b3;
	transform: scale(1.1);
}

.month-year {
	font-size: 1.3rem;
	font-weight: bold;
	color: #006f96;
}

.calendar-grid {
	margin-top: 20px;
}

.calendar-day-header {
	text-align: center;
	font-weight: bold;
	color: #666;
	padding: 10px 0;
	font-size: 0.9rem;
}

.calendar-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	min-height: 40px;
}

.calendar-day.other-month,
.calendar-day.disabled {
	color: #ccc;
	cursor: not-allowed;
}

.calendar-day.available {
	background: #f0f9fb;
	border: 2px solid #91d1dc;
	color: #006f96;
	font-weight: bold;
}

.calendar-day.available:hover {
	background: #006f96;
	color: white;
	transform: scale(1.1);
}

.calendar-day.today {
	border: 2px solid #ff9800;
}

.calendar-day.selected {
	background: #006f96;
	color: white;
	border: 2px solid #004a66;
	transform: scale(1.1);
}

.time-slots-container {
	background: white;
	border-radius: 12px;
	padding: 20px;
	margin-top: 20px;
	border: 2px solid #91d1dc;
}

.time-slots-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 20px;
}

.day-column {
	text-align: center;
}

.day-header {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e1e5f7;
}

.day-name {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 5px;
}

.day-date {
	font-size: 1.2rem;
	font-weight: bold;
	color: #2c5aa0;
}

.time-slot {
	background: #f0f4ff;
	border: 2px solid #e1e5f7;
	border-radius: 8px;
	padding: 14px 10px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	font-size: 0.9rem;
	font-weight: 500;
	min-height: 48px;
}

.time-slot:hover:not(.unavailable) {
	background: #667eea;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.time-slot.selected {
	background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
	color: white;
	border-color: #4caf50;
	transform: scale(1.05);
	box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.time-slot.unavailable {
	background: #f5f5f5;
	color: #999;
	border-color: #ddd;
	cursor: not-allowed;
	position: relative;
}

.time-slot.unavailable::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	height: 2px;
	background: #999;
	transform: translateY(-50%);
}

.time-slot.popular {
	border-color: #ff9800;
	background: #fff3e0;
}

.time-slot.last-available {
	border-color: #ff6b6b;
	background: #ffebee;
	animation: pulse-urgent 1.5s infinite;
}

.popular-badge,
.last-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ff9800;
	color: white;
	font-size: 0.7rem;
	padding: 2px 6px;
	border-radius: 10px;
	font-weight: bold;
}

.last-badge {
	background: #ff6b6b;
	animation: blink 1s infinite;
}

.selected-appointment {
	background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
	color: white;
	border-radius: 12px;
	padding: 20px;
	margin-top: 20px;
	animation: slideDown 0.5s ease-out;
	display: none;
}

.selected-appointment.visible {
	display: block;
}

.appointment-confirm h4 {
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.appointment-note {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-top: 5px;
}

.booking-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 25px;
}

.payment-section {
	display: none;
	background: white;
	border: 2px solid #91d1dc;
	border-radius: 15px;
	padding: 30px;
	margin-top: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #91d1dc;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
	min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #006f96;
	box-shadow: 0 0 0 3px rgba(145, 209, 220, 0.3);
}

.form-group select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'fill='none'viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280'stroke-linecap='round'stroke-linejoin='round'stroke-width='1.5'd='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 40px;
	appearance: none;
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
	font-family: inherit;
	line-height: 1.5;
}

.address-loading {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border: 2px solid #91d1dc;
	border-radius: 8px;
	padding: 15px;
	margin-top: 10px;
	animation: pulse-soft 1.5s infinite;
}

.postcode-validation-error {
	background: #ffebee;
	border: 1px solid #ffcdd2;
	border-radius: 4px;
	padding: 8px 12px;
	margin-top: 5px;
}

#leadAddress {
	position: relative;
}

#leadAddress option {
	padding: 8px;
}

#leadAddress option[value="manual"] {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	font-weight: bold;
	border-top: 1px solid #91d1dc;
}

#usePostcodeLookup {
	background: none;
	border: none;
	color: #006f96;
	text-decoration: underline;
	cursor: pointer;
	font-size: 0.85rem;
	padding: 0;
	transition: color 0.3s ease;
}

#usePostcodeLookup:hover {
	color: #004a66;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.phone-input-container {
	display: flex;
	gap: 10px;
}

.country-select {
	width: auto;
	min-width: 120px;
}

.compliance-section {
	background: #f0f9fb;
	border-radius: 10px;
	padding: 20px;
	margin: 0;
	font-size: 0.9rem;
	color: #666;
	border: 1px solid #91d1dc;
}

.compliance-section h4 {
	color: #006f96;
	margin-bottom: 10px;
}

.faq-container {
	max-width: 100%;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: #006f96;
}

.faq-question {
	padding: 18px 20px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-user-select: none;
	user-select: none;
	background-color: white;
	transition: background-color 0.3s ease;
	color: #006f96;
	font-size: 1.1em;
}

.faq-question:hover {
	background-color: #f0f9fb;
}

.faq-answer {
	padding: 0 20px;
	border-top: 1px solid #eee;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	background-color: white;
}

.faq-answer p {
	color: #666;
	font-size: 0.95em;
	line-height: 1.6;
}

.faq-item.open .faq-question {
	background-color: #f0f9fb;
	border-bottom: 1px solid #91d1dc;
}

.faq-item.open .faq-answer {
	padding: 20px;
	max-height: 500px;
}

.faq-arrow {
	flex-shrink: 0;
	margin-left: 15px;
}

.faq-arrow svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
	color: #006f96;
}

.faq-item.open .faq-arrow svg {
	transform: rotate(180deg);
}

.order-summary {
	border-radius: 15px;
	padding: 30px;
	height: fit-content;
	position: sticky;
	top: 20px;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #91d1dc;
}

.total-row {
	border-bottom: none;
	font-weight: bold;
	font-size: 1.2rem;
	color: #006f96;
}

.checkout-btn {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border: none;
	padding: 18px 40px;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 50px;
	cursor: pointer;
	width: auto;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
}

.checkout-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.checkout-btn:hover::before {
	left: 100%;
}

.checkout-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 111, 150, 0.4);
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
}

.security-badges {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.security-badge {
	background: #f0f9fb;
	padding: 10px 15px;
	border-radius: 8px;
	font-size: 0.9rem;
	color: #006f96;
	border: 1px solid #91d1dc;
}

header {
	background: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.top-notification-container {
	background: #ff6b6b;
	color: white;
	text-align: center;
	padding: 8px 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.top-notification-message {
	margin: 0;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.custom-logo-link img {
	height: 50px;
	width: auto;
}

.call-header-cta .btn {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
}

.call-header-cta .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 111, 150, 0.4);
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
}

.hero {
	background: linear-gradient(135deg, #006f96 0%, #0085b3 50%, #91d1dc 100%);
	color: white;
	padding: 60px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 0px;
	margin-bottom: 15px;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 3s infinite;
}

.hero-inner {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 100%;
	margin: 0 auto;
}

.hero-heading h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-heading h2 {
	font-size: 1.3rem;
	font-weight: 400;
	opacity: 0.9;
	margin-bottom: 40px;
	line-height: 1.4;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-buttons .btn {
	background: rgba(255, 255, 255, 0.95);
	color: #006f96;
	padding: 15x;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 450px;
}

.hero-buttons .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
	background: white;
	border-color: rgba(255, 255, 255, 0.3);
}

.hero-badges {
	margin-top: 20px;
}

.line-runner {
	position: relative;
	overflow: hidden;
}

.line-runner::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.line-runner:hover::after {
	left: 100%;
}

.cta {
	font-size: 1.2rem;
	padding: 18px 40px;
}

.hero::after {
	content: '';
	position: absolute;
	top: 15%;
	right: 8%;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(145, 209, 220, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
	z-index: 1;
}

.btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.component-container {
	max-width: 1100px;
	width: 100%;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	animation: slideUp 0.6s ease-out;
}

.trust-indicators {
	margin-top: 40px;
	padding: 25px;
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	border-radius: 15px;
	color: white;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.reviews-section,
.doctors-section {
	margin: 0px;
}

.doctors-wrapper,
.reviews-wrapper {
	max-width: 100%;
}

.doctors-platform,
.review-platform {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border-radius: 20px;
	padding: 30px;
	border: 2px solid #91d1dc;
}

.platform-header {
	margin-bottom: 25px;
	text-align: center;
}

.platform-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.platform-info h2 {
	font-size: 2rem;
	color: #006f96;
	margin-bottom: 10px;
}

.platform-info p {
	font-size: 1.1rem;
	color: #666;
}

.platform-name {
	display: flex;
	align-items: center;
}

.platform-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.3rem;
	font-weight: 600;
	color: #006f96;
}

.platform-logo svg {
	width: 24px;
	height: 24px;
}

.platform-rating {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rating {
	font-size: 2rem;
	font-weight: 700;
	color: #006f96;
	line-height: 1;
}

.rating-stars {
	display: flex;
	gap: 1px;
	align-items: center;
}

.rating-stars .star {
	color: #ffd700;
	font-size: 1.2rem;
	text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
	line-height: 1;
}

.rating-text {
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
	line-height: 1.2;
}

.carousel-container {
	position: relative;
	margin-top: 25px;
	overflow: hidden;
	border-radius: 15px;
}

.carousel-viewport {
	overflow: hidden;
	width: 100%;
}

.carousel-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.review-card {
	flex: 0 0 100%;
	background: white;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 2px solid #e1e5f7;
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 280px;
	width: 100%;
	margin-right: 20px;
}

.review-card:last-child {
	margin-right: 0;
}

.review-card:hover {
	border-color: #006f96;
	box-shadow: 0 12px 35px rgba(0, 111, 150, 0.15);
}

.reviewer {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-shrink: 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f4ff;
}

.reviewer-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 3px solid #91d1dc;
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
}

.reviewer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviewer-info {
	flex: 1;
	min-width: 0;
}

.reviewer-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #006f96;
	margin-bottom: 8px;
	line-height: 1.2;
}

.review-content {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	position: relative;
	padding-left: 20px;
	flex: 1;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.review-content::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -2px;
	font-size: 2rem;
	color: #91d1dc;
	line-height: 1;
	font-family: serif;
}

.carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 25px;
	padding: 0 20px;
}

.carousel-btn {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	flex-shrink: 0;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover:not(:disabled) {
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 111, 150, 0.4);
}

.carousel-btn:active:not(:disabled) {
	transform: scale(0.95);
}

.carousel-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-dots {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e1e5f7;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	-webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
	background: #006f96;
	transform: scale(1.2);
	border-color: #91d1dc;
}

.carousel-dot:hover {
	background: #91d1dc;
}

.carousel-counter {
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
	flex-shrink: 0;
	min-width: 60px;
	text-align: center;
}

.content {
	padding: 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.benefit-card {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border: 2px solid #91d1dc;
	border-radius: 15px;
	padding: 25px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s;
}

.benefit-card:hover::before {
	left: 100%;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 111, 150, 0.15);
	border-color: #006f96;
}

.benefit-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #006f96;
	margin-bottom: 10px;
}

.benefit-description {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

.stats-section {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border-radius: 15px;
	padding: 30px;
	margin-top: 15px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(145, 209, 220, 0.1) 0%, transparent 70%);
	animation: shimmer 4s infinite reverse;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #91d1dc;
	display: block;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
}

.cta-section {
	text-align: center;
	margin-top: 30px;
	padding-top: 25px;
	border-top: 2px solid #91d1dc;
}

.cta-text {
	font-size: 1.1rem;
	color: #006f96;
	margin-bottom: 15px;
	font-weight: 500;
}

.cta-button {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	border: none;
	padding: 15px 35px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 111, 150, 0.4);
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
}

.cta-button:hover::before {
	left: 100%;
}

.doctor-card {
	flex: 0 0 100%;
	background: white;
	border-radius: 15px;
	padding: 0;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 2px solid #e1e5f7;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 500px;
	width: 100%;
	margin-right: 20px;
}

.doctor-card:last-child {
	margin-right: 0;
}

.doctor-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(145, 209, 220, 0.1), transparent);
	transition: left 0.6s;
}

.doctor-card:hover {
	border-color: #006f96;
	box-shadow: 0 12px 35px rgba(0, 111, 150, 0.15);
	transform: translateY(-3px);
}

.doctor-card:hover::before {
	left: 100%;
}

.doctor-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.doctor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.doctor-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #006f96;
	margin-bottom: 8px;
	line-height: 1.2;
}

.doctor-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #004a66;
	margin-bottom: 8px;
}

.doctor-gmc {
	font-size: 0.95rem;
	font-weight: 600;
	color: #666;
	margin-bottom: 15px;
	padding: 8px 12px;
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border-radius: 8px;
	border-left: 4px solid #91d1dc;
}

.doctor-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	flex: 1;
	text-align: start;
}

.specialties {
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.specialty-badge {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.85rem;
	font-weight: 500;
}

.btn-cta {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
}

.btn-cta:hover {
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 111, 150, 0.4);
}

.accreditations-section {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	animation: slideUp 0.6s ease-out;
	max-width: 100%;
	margin: 0;
}

.accreditations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	align-items: center;
	justify-items: center;
}

.accreditation-logo {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border-radius: 15px;
	padding: 30px;
	width: 100%;
	max-width: 320px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.accreditation-logo::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(145, 209, 220, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.accreditation-logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 111, 150, 0.15);
	border-color: #006f96;
}

.accreditation-logo:hover::before {
	opacity: 1;
}

.accreditation-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 1;
}

.accreditation-logo:hover img {
	transform: scale(1.05);
}

.accreditation-logo:nth-child(1) {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
}

.accreditation-logo:nth-child(2) {
	background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
	border-color: #ff9800;
}

.accreditation-logo:nth-child(2):hover {
	border-color: #f57c00;
}

.accreditation-logo:nth-child(3) {
	background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
	border-color: #4caf50;
}

.accreditation-logo:nth-child(3):hover {
	border-color: #2e7d32;
}

.why-choose-us-section {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
	border-radius: 15px;
	padding: 30px;
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
	margin-bottom: 30px;
}

.why-choose-us-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 111, 150, 0.15);
	border-color: #006f96;
}

.why-choose-us-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.why-choose-us-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #006f96;
	margin-bottom: 15px;
}

.why-choose-us-content>p {
	font-size: 1rem;
	color: #666;
	margin-bottom: 25px;
	line-height: 1.6;
}

.why-choose-us-points {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.why-choose-us-point {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
}

.why-choose-us-point:hover {
	border-color: #006f96;
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 111, 150, 0.15);
}

.why-choose-us-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 111, 150, 0.3);
}

.why-choose-us-info {
	flex: 1;
}

.why-choose-us-info h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #006f96;
	margin-bottom: 8px;
}

.why-choose-us-info p {
	color: #666;
	line-height: 1.5;
	font-size: 0.95rem;
}

.why-choose-us-image {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid #91d1dc;
	text-align: center;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.why-choose-us-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.why-choose-us-image:hover img {
	transform: scale(1.05);
}

.center-content {
	text-align: center;
	margin-top: 25px;
}

.btn-primary {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(0, 111, 150, 0.3);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 111, 150, 0.4);
	background: linear-gradient(135deg, #0085b3 0%, #006f96 100%);
}

#understanding-warts {
	background: #f8f9ff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #91d1dc;
}

.content-wrapper {
	margin-bottom: 20px;
}

.content-wrapper p {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

.content-wrapper p:last-child {
	margin-bottom: 0;
}

#types-of-warts {
	background: white;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #91d1dc;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#types-of-warts .content-wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

#types-of-warts .content-wrapper ul li {
	margin-bottom: 15px;
	padding: 15px;
	background: white;
	border-radius: 10px;
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
}

#types-of-warts .content-wrapper ul li::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(145, 209, 220, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

#types-of-warts .content-wrapper ul li:hover {
	border-color: #006f96;
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 111, 150, 0.15);
}

#types-of-warts .content-wrapper ul li:hover::before {
	opacity: 1;
}

#types-of-warts .content-wrapper ul li strong {
	color: #006f96;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

#types-of-warts .content-wrapper>p {
	background: white;
	padding: 15px;
	border-radius: 10px;
	border-left: 4px solid #006f96;
	margin: 0;
	font-weight: 600;
	color: #006f96;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

#types-of-warts.alternate {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
}

#science-behind-warts {
	background: #f8f9ff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #91d1dc;
}

.accordion-container {
	margin-bottom: 25px;
}

.accordion-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
}

.accordion-item:hover {
	border-color: #006f96;
}

.accordion-title {
	padding: 18px 20px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	-webkit-user-select: none;
	user-select: none;
	background-color: white;
	transition: background-color 0.3s ease;
	color: #006f96;
	font-size: 1.1em;
}

.accordion-title:hover {
	background-color: #f0f9fb;
}

.accordion-content {
	padding: 0 20px;
	border-top: 1px solid #eee;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
	background-color: white;
}

.accordion-content h4 {
	color: #006f96;
	margin-bottom: 10px;
	margin-top: 15px;
	font-size: 1.1rem;
	font-weight: 600;
}

.accordion-content h4:first-child {
	margin-top: 0;
}

.accordion-content p {
	color: #666;
	font-size: 0.95em;
	line-height: 1.6;
	margin-bottom: 15px;
}

.accordion-content ul {
	margin-bottom: 15px;
	padding-left: 20px;
}

.accordion-content ul li {
	margin-bottom: 8px;
	color: #666;
	font-size: 0.95em;
	line-height: 1.5;
}

.accordion-content ul li strong {
	color: #006f96;
	font-weight: 600;
}

.accordion-item.open .accordion-title {
	background-color: #f0f9fb;
	border-bottom: 1px solid #91d1dc;
}

.accordion-item.open .accordion-content {
	padding: 20px;
	max-height: 500px;
}

.accordion-arrow {
	flex-shrink: 0;
	margin-left: 15px;
}

.accordion-arrow svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
	color: #006f96;
}

.accordion-item.open .accordion-arrow svg {
	transform: rotate(180deg);
}

#monitoring-assessment {
	background: white;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #91d1dc;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	animation: slideUp 0.6s ease-out;
}

#monitoring-assessment .content-wrapper ul li {
	margin-bottom: 15px;
	padding: 15px 15px 15px 50px;
	background: white;
	border-radius: 10px;
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
}

#monitoring-assessment .content-wrapper ul li::before {
	content: '⚠️';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
	z-index: 2;
}

#monitoring-assessment .content-wrapper ul li::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(145, 209, 220, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

#monitoring-assessment .content-wrapper ul li:hover {
	border-color: #006f96;
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 111, 150, 0.15);
}

#monitoring-assessment .content-wrapper ul li:hover::after {
	opacity: 1;
}

#monitoring-assessment.alternate {
	background: linear-gradient(135deg, #f0f9fb 0%, #e6f7fa 100%);
}

#monitoring-assessment .content-wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

#monitoring-assessment .content-wrapper ul li:nth-child(1)::before {
	content: '⏰';
}

#monitoring-assessment .content-wrapper ul li:nth-child(2)::before {
	content: '😣';
}

#monitoring-assessment .content-wrapper ul li:nth-child(3)::before {
	content: '🔄';
}

#monitoring-assessment .content-wrapper ul li:nth-child(4)::before {
	content: '👤';
}

#monitoring-assessment .content-wrapper ul li:nth-child(5)::before {
	content: '❓';
}

#monitoring-assessment .content-wrapper ul li:nth-child(6)::before {
	content: '🏥';
}

#monitoring-assessment .content-wrapper>p {
	background: white;
	padding: 15px;
	border-radius: 10px;
	border-left: 4px solid #006f96;
	margin: 0;
	font-weight: 600;
	color: #006f96;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

#monitoring-assessment .content-wrapper ul li:focus {
	outline: 2px solid #006f96;
	outline-offset: 2px;
}

#management-prevention {
	background: #f8f9ff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #91d1dc;
	animation: slideUp 0.6s ease-out;
}

.content-wrapper h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #006f96;
	margin: 25px 0 15px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.content-wrapper h3:first-child {
	margin-top: 0;
}

.content-wrapper h3:nth-of-type(1)::before {
	content: '🩺';
	font-size: 1.2rem;
}

.content-wrapper h3:nth-of-type(2)::before {
	content: '🛡️';
	font-size: 1.2rem;
}

.content-wrapper>p {
	font-size: 1rem;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
}

.content-wrapper ul {
	margin-bottom: 20px;
	padding: 0;
	list-style: none;
}

.content-wrapper ul li {
	margin-bottom: 12px;
	padding: 12px 12px 12px 45px;
	background: white;
	border-radius: 8px;
	border: 2px solid #91d1dc;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	font-size: 0.95em;
	line-height: 1.5;
	color: #666;
}

.content-wrapper ul li::before {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1rem;
	z-index: 2;
}

.content-wrapper ul li::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(145, 209, 220, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.content-wrapper ul li:hover {
	border-color: #006f96;
	transform: translateX(3px);
	box-shadow: 0 3px 15px rgba(0, 111, 150, 0.12);
}

.content-wrapper ul li:hover::after {
	opacity: 1;
}

.content-wrapper ul li strong {
	color: #006f96;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(1)::before {
	content: '💊';
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(2)::before {
	content: '❄️';
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(3)::before {
	content: '🧪';
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(4)::before {
	content: '⚡';
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(5)::before {
	content: '🔬';
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(6)::before {
	content: '💉';
}

#management-prevention .content-wrapper ul:first-of-type li:nth-child(7)::before {
	content: '🔄';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(1)::before {
	content: '🚫';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(2)::before {
	content: '👟';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(3)::before {
	content: '🩹';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(4)::before {
	content: '🔒';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(5)::before {
	content: '🧼';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(6)::before {
	content: '🏊';
}

#management-prevention .content-wrapper ul:last-of-type li:nth-child(7)::before {
	content: '🦶';
}

.content-wrapper>p:nth-of-type(3),
.content-wrapper>p:last-of-type {
	background: white;
	padding: 12px;
	border-radius: 8px;
	border-left: 4px solid #006f96;
	font-weight: 600;
	color: #006f96;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-top: 15px;
}

footer {
	background: linear-gradient(135deg, #006f96 0%, #004a66 100%);
	color: white;
	overflow: hidden;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	animation: slideUp 0.6s ease-out;
}

footer::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 6s infinite;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	padding: 40px 30px;
	position: relative;
	z-index: 1;
}

.footer-col {
	background: rgba(255, 255, 255, 0.1);
	padding: 25px;
	border-radius: 15px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.footer-col:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-col h3 {
	color: #91d1dc;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	position: relative;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 30px;
	height: 2px;
	background: #91d1dc;
	border-radius: 1px;
}

.footer-col p {
	font-size: 1rem;
	opacity: 0.9;
	margin-bottom: 10px;
	line-height: 1.6;
}

.footer-col p:last-child {
	margin-bottom: 0;
}

.footer-col a {
	color: #91d1dc;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.footer-col a:hover {
	color: white;
	text-shadow: 0 0 8px rgba(145, 209, 220, 0.6);
}

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

.footer-links li {
	margin-bottom: 10px;
}

.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	padding: 5px 0;
}

.footer-links a:hover {
	color: #91d1dc;
	transform: translateX(5px);
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	padding: 20px 30px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.footer-bottom p {
	font-size: 0.9rem;
	opacity: 0.8;
	margin-bottom: 5px;
}

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

.footer-col:first-child {
	background: rgba(145, 209, 220, 0.2);
	border-color: rgba(145, 209, 220, 0.3);
}

.footer-col:first-child h3 {
	color: white;
	font-size: 1.4rem;
}

.footer-col:first-child h3::after {
	background: white;
}

.hidden {
	display: none !important;
}

.address-toggle-link {
	display: inline-block;
	color: #006f96;
	text-decoration: none;
	font-size: 0.9rem;
	cursor: pointer;
}

.address-toggle-link:hover {
	text-decoration: underline;
}

.getaddress-button {
	background: #0085b3 !important;
	color: white !important;
	border-radius: 8px !important;
	padding: 12px 16px !important;
	border: none !important;
	height: auto !important;
	transition: background-color 0.2s;
	width: fit-content;
	justify-content: end;
	margin-left: 5px;
}

.getaddress-button:hover {
	background: #006f96 !important;
}

#api-key-error-message {
	color: #d9534f;
	background-color: #f2dede;
	border: 1px solid #ebccd1;
	padding: 15px;
	border-radius: 8px;
	font-size: 0.9rem;
}

.booking-container {
	max-width: 800px;
	margin: 0 auto;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.stepper-container {
	padding: 30px 40px;
}

.stepper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.stepper::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: #e0e6ff;
	z-index: 1;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	padding: 0 15px;
}

.step-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #e0e6ff;
	color: #94a3b8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.step.active .step-circle {
	background: #3b82f6;
	color: white;
	transform: scale(1.1);
}

.step.completed .step-circle {
	background: #10b981;
	color: white;
}

.step-title {
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
	text-align: center;
	transition: color 0.3s ease;
}

.step.active .step-title {
	color: #3b82f6;
}

.step.completed .step-title {
	color: #10b981;
}

.progress-line {
	position: absolute;
	top: 50%;
	left: 0;
	height: 2px;
	background: #10b981;
	z-index: 1;
	transition: width 0.5s ease;
}

.section-container {
	padding: 40px;
}

.booking-section.active {
	display: block;
	animation: fadeInUp 0.5s ease;
}

.step-navigation {
	display: flex;
	justify-content: space-between;
	padding: 30px 40px;
	background: #f8f9ff;
	border-top: 1px solid #e0e6ff;
}

.stepper .step.completed {
	cursor: pointer;
}

.shake-animation {
	animation: shake 0.5s ease-in-out;
}

.nav-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.btn-back {
	background: #e2e8f0;
	color: #64748b;
}

.btn-back:hover:not(:disabled) {
	background: #cbd5e1;
}

.btn-next {
	background: #3b82f6;
	color: white;
}

.btn-next:hover:not(:disabled) {
	background: #2563eb;
	transform: translateY(-1px);
}

.btn-next:disabled,
.btn-back:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.review-content.expandable-item {
	max-height: 85px;
	overflow: hidden;
	position: relative;
	transition: max-height 0.5s ease-out;
	color: #333;
	line-height: 1.5;
}

.review-content.expandable-item.expanded {
	max-height: 1000px;
}

.review-content.expandable-item:not(.expanded)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to bottom, transparent, white);
	pointer-events: none;
}

.read-more-btn {
	background: none;
	border: 1px solid #006f96;
	color: #006f96;
	font-weight: bold;
	cursor: pointer;
	padding: 5px 12px;
	border-radius: 15px;
	margin: 10px 0 0 0;
	font-size: 0.9em;
	display: inline-block;
	transition: background-color 0.2s, color 0.2s;
}

.read-more-btn:hover {
	background-color: #006f96;
	color: white;
}

.step-navigation-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	border-top: 1px solid #e2e8f0;
	padding-top: 15px;
	gap: 10px;
}

.step-navigation-buttons .btn-back,
.step-navigation-buttons .btn-next {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.step-navigation-buttons .btn-back {
	background-color: #f1f5f9;
	color: #475569;
	border: 1px solid #cbd5e1;
}

.step-navigation-buttons .btn-back:hover {
	background-color: #e2e8f0;
}

.step-navigation-buttons .btn-next {
	background-color: #667eea;
	color: white;
}

.step-navigation-buttons .btn-next:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	opacity: 0.7;
}

.step-navigation-buttons .btn-next:hover:not(:disabled) {
	background-color: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.age-check-group {
	display: none;
}

.age-check-group .radio-options {
	display: flex;
	gap: 25px;
	margin-top: 8px;
}

.age-check-group .radio-options label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-weight: 500;
}

#age-gate-error {
	display: none;
	color: #ff6b6b;
	font-weight: 500;
	background-color: #ff6b6b1a;
	padding: 10px;
	border-radius: 6px;
	margin-top: 10px;
}

.loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	border-radius: 8px;
}

.loading-overlay::after {
	content: 'Loading...';
	font-weight: bold;
	color: #555;
}

.has-availability {
	background-color: #d4edda !important;
	border-color: #c3e6cb !important;
	font-weight: bold;
}

.booking-feedback {
	padding: 15px;
	margin-top: 20px;
	border-radius: 8px;
	display: none;
	text-align: center;
}

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

.booking-feedback.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.payment-info-message {
	background-color: #eef2ff;
	border: 1px solid #c7d2fe;
	color: #4338ca;
	padding: 15px;
	border-radius: 8px;
	margin: 20px 0;
	text-align: center;
	font-size: 0.95rem;
}
.payment-info-message p {
	margin: 5px 0;
}
.payment-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 18px;
    margin: 15px 0;
}

.payment-info h5 {
    margin: 0 0 10px 0;
    color: #856404;
    font-size: 1.1em;
}

.payment-info ul {
    margin: 0;
    padding-left: 18px;
    color: #856404;
}

.payment-info li {
    margin: 8px 0;
    line-height: 1.4;
}
#finalSummary{
	background: white;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 12px;
	.summary-item {
		gap: 12;
		span:nth-child(1){
			text-align: left;
			font-weight: 700;
		}

		span:nth-child(2){
			text-align: right;
		}
	}
}
#myDiv tr:nth-child(2) span:nth-child(2){
  color:red;
}

.qty-limit-message {
	color: #e53e3e;
	font-size: 0.8rem;
	text-align: right;
	margin-top: 5px;
	font-weight: 500;
	display: none;
}

/* ================================================= */
/*  FINAL FLATPICKR THEME OVERRIDE (v5)
/* ================================================= */

.custom-calendar {
	max-width: 400px;
	margin: 0 auto 20px auto;
}

.flatpickr-calendar {
	background: transparent !important;
	box-shadow: none !important;
	width: 100% !important;
}

.flatpickr-calendar .flatpickr-months {
	display: none !important;
}

.flatpickr-weekdays {
	display: flex !important;
	width: 100% !important;
}

.flatpickr-weekday {
	flex: 1;
	text-align: center;
	font-weight: bold;
	color: #666;
	padding: 10px 0;
	font-size: 0.9rem;
}

.dayContainer {
	display: grid !important;
	grid-template-columns: repeat(7, 1fr) !important;
	gap: 10px !important;
	padding: 0 !important;
	width: 100% !important;
}

.flatpickr-day {
	display: flex !important;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
	border-radius: 8px !important;
	border: 1px solid #f0f0f0 !important;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	position: static !important;
	width: auto !important;
	height: auto !important;
	line-height: 1 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
	color: #ccc !important;
	background: #f5f5f5 !important;
	cursor: not-allowed !important;
	border-color: #f0f0f0 !important;
}

.flatpickr-day:not(.flatpickr-disabled) {
	background: #f0f9fb !important;
	border: 2px solid #0085b3 !important;
	color: #006f96 !important;
	font-weight: bold !important;
}

.flatpickr-day:not(.flatpickr-disabled):hover {
	background: #006f96 !important;
	color: white !important;
	transform: scale(1.1);
}

.flatpickr-day.selected {
	background: #006f96 !important;
	color: white !important;
	border-color: #004a66 !important;
	transform: scale(1.1);
}

.flatpickr-day.today {
	border-color: #ff9800 !important;
}

.flatpickr-day.today.selected {
	border-color: #004a66 !important;
}

.flatpickr-innerContainer {
	justify-content: center;
}

.loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	border-radius: 8px;
}

.loading-overlay::after {
	content: 'Loading...';
	font-weight: bold;
	color: #555;
}

.has-availability {
	background-color: #d4edda !important;
	border-color: #c3e6cb !important;
	font-weight: bold;
}

.booking-feedback {
	padding: 15px;
	margin-top: 20px;
	border-radius: 8px;
	display: none;
	text-align: center;
}

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

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

/* ============================================= */
/*  Hero Section with Image Styles
/* ============================================= */

.hero-inner {
	display: flex;
	align-items: center;
	gap: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.hero-content {
	flex: 1 1 55%;
}

.hero-image {
	flex: 1 1 45%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
}

/* ============================================= */
/*  Social Proof & Timer Bar Styles
/* ============================================= */

.social-proof-bar {
	background-color: #f0f9fb;
	border-bottom: 1px solid #e2e8f0;
	padding: 15px;
	margin-top: 15px;
	border-radius: 15px;
	display: inline-block;
	max-width: 450px;
	width: 100%;
}

.proof-bar-inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.proof-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.google-reviews .google-logo {
	height: 50px;
	width: auto;
}

.google-reviews .review-details {
	display: flex;
	flex-direction: column;
}

.google-reviews .review-text {
	font-weight: 600;
	color: #333;
	font-size: 1rem;
	text-align: start;
}

.google-reviews .rating-stars {
	color: #fbbc05;
	font-size: 1.1rem;
}

.google-reviews .review-score {
	font-size: 0.85rem;
	color: #555;
}

.offer-timer .timer-icon {
	font-size: 2rem;
	color: #006f96;
}

.offer-timer .timer-details {
	display: flex;
	flex-direction: column;
}

.timer-title {
	font-size: 0.9rem;
	color: #555;
	font-weight: 500;
	margin-bottom: 4px;
}

.countdown-timer {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.time-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	border-radius: 6px;
	padding: 5px;
}

.time-block span:first-child {
	font-size: 1.2rem;
	font-weight: 700;
	color: #006f96;
	line-height: 1;
}

.time-block .time-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	color: #777;
}

.time-separator {
	font-size: 1.5rem;
	font-weight: 700;
	color: #006f96;
	padding-bottom: 20px;
}

.iti {
	width: 100%;
}

.iti .form-control {
	width: 100%;
	padding-left: 58px;
	height: 54px;
}

.lead-phone-validation-error {
	font-weight: 500;
	margin-top: 8px !important;
}

/* ============================================= */
/*  Variant 1: Clean & Modern Price Styles
/* ============================================= */
.price-line {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 15px 0 20px 0;
}

.price-line .price-original {
	font-size: 1.5rem;
	color: #718096;
	text-decoration: line-through;
	font-weight: 500;
}

.price-line .price-arrow {
	font-size: 1.5rem;
	color: #a0aec0;
	font-weight: 700;
}

.price-line .price-new {
	font-size: 2.2rem;
	color: #006f96;
	font-weight: 800;
}

.price-line .discount-label {
	font-size: 1rem;
	font-weight: 700;
	color: #28a745;
	background-color: #f0fff4;
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid #9ae6b4;
}

.hero-offer-box {
	background-color: #f0f9fb;
	border: 2px dashed #0085b3;
	border-radius: 12px;
	padding: 10px;
	margin: 5px auto;
	text-align: center;
	max-width: 450px;
	justify-items: center;
}

.offer-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #006f96;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.offer-pricing {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 15px;
	margin-bottom: 8px;
}

.offer-pricing .price-original {
	font-size: 1.1rem;
	color: #718096;
	text-decoration: line-through;
}

.offer-pricing .price-new {
	font-size: 1.1rem;
	color: #333;
	font-weight: 800;
}

.offer-saving {
	font-size: 0.9rem;
	font-weight: 700;
	color: #c53030;
	background-color: #fff0f0;
	display: inline-block;
	padding: 8px 16px;
	border-radius: 8px;
}

/* ============================================= */
/*  Address Trust Badge Style
/* ============================================= */
.address-badge {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ============================================= */
/*  Variant 3: Map Card Address Style
/* ============================================= */

.hero-address {
	margin: 15px 0px;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-address .address-main {
	background-color: #fff;
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 74, 102, 0.15);
	border: 1px solid #e2e8f0;
	font-size: 0.9rem;
	font-weight: 600;
	color: #333;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
	max-width: 450px;
	width: 100%;
	justify-content: center;
}

.hero-address .address-main .fa-map-marker-alt {
	color: #c53030;
	font-size: 1.4rem;
}

/* ============================================= */
/*  Variant 5: Border Draw Animation
/* ============================================= */
.secondary-btn {
	position: relative;
	background-color: #0085b3;
	border: 2px solid transparent;
}

.secondary-btn::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border-radius: 30px;
	border: 2px solid #91d1dc;
	animation: drawBorder 3s infinite linear;
	opacity: 0;
}

.no-decor {
	text-decoration: none;
}

/* ======================================================= */
/*  Bulletproof Postcode Lookup Styles (v-final with button style)
/* ======================================================= */

.postcode-lookup-flex-container {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: 10px;
}

.postcode-input {
	flex-grow: 1;
	height: 54px;
	padding: 0.375rem 0.75rem;
	border: 1px solid #ced4da;
	border-radius: 8px;
	font-size: 1rem;
	width: 100%;
}

.postcode-button {
	flex-shrink: 0;
	white-space: nowrap;
	padding: 12px 24px;
	height: 54px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	background-color: #667eea;
	color: white;
}

.postcode-button:hover {
	background-color: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5em;
	color: #005a78;
	margin-bottom: 1rem;
}

.icon-heading i {
	color: #005a78;
}

.treatment-list-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 1.5rem;
}

.treatment-list-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border: 1px solid #b0e0e6;
	border-radius: 8px;
	background-color: #f8ffff;
	font-size: 1rem;
}

.treatment-list-item i {
	color: #005a78;
	font-size: 1.2em;
}

.treatment-list-item span {
	flex: 1;
}

/* ============================================= */
/*  Variant 6: Ringing Bell Animation
/* ============================================= */
.secondary-btn .cta-icon {
	margin-right: 10px;
	animation: ringBell 2s infinite ease-in-out 1s;
}

/* ==================================================
   Confirmation Page Styles
   ================================================== */

.confirmation-section {
  padding: 60px 0;
  /* background-color: #f8f9fa;  */
  /* A light background to make the card pop */
}

.confirmation-card {
  max-width: 650px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  padding: 40px 50px;
  text-align: center;
  border-top: 5px solid #4caf50; /* A nice green accent for success */
}

.confirmation-header {
  margin-bottom: 30px;
}

.confirmation-header .success-icon {
  font-size: 60px;
  color: #4caf50;
  margin-bottom: 15px;
}

.confirmation-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.confirmation-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}

.appointment-details-list {
  text-align: left;
  border-top: 1px solid #e9ecef;
  padding-top: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start; /* Aligns icon with the top of the text */
  gap: 20px;
  margin-bottom: 25px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  font-size: 1.6rem;
  color: #667eea; /* Uses your theme's primary color */
  flex-shrink: 0;
  width: 30px;
  text-align: center;
  margin-top: 5px;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

.confirmation-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

/* Using existing button styles for consistency */
.confirmation-footer .btn.secondary-btn {
    background: #f0f2f5;
    color: #555;
    border: 1px solid #e0e4e8;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.confirmation-footer .btn.secondary-btn:hover {
    background: #e2e6ea;
    border-color: #d1d8de;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
/* ==================================================
   Callback Section & Modal Styles
   ================================================== */

/* Callback Section */
.callback-section {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 40px 30px;
  /* margin-top: 40px; */
  text-align: center;
  border: 1px solid #e9ecef;
}

.callback-section h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.callback-section p {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 30px auto;
}

.callback-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.callback-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 14px 28px;
}


/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 41, 59, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.modal-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 550px;
  position: relative;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-content {
  transform: scale(0.95);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: #333;
}

.modal-content h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.modal-content p {
  text-align: center;
  margin-bottom: 25px;
  color: #666;
}

/* Style for the submit button inside the modal */
#callbackFormContainer .continue-to-booking-btn {
  width: 100%;
  margin-top: 15px;
}
#dynamic-summary-container{
	display: none;
}

/* Success message inside the modal */
.modal-success-message {
  text-align: center;
  padding: 40px 20px;
}
.modal-success-message .fa-circle-check {
  color: #4caf50;
  font-size: 4rem;
  margin-bottom: 20px;
}
.modal-success-message h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.modal-success-message p {
  font-size: 1.1rem;
  color: #555;
}
.payment-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 0.7rem;
    text-align: center;
    margin: 15px 0;
}

.payment-highlight h3 {
    /* color: #2e7d32; */
    margin: 0 0 8px 0;
    font-size: 1.2em;
    line-height: 1.2;
}

.payment-highlight p {
    color: #555;
    margin: 0;
    /* font-weight: 500; */
    /* font-size: 1rem; */
}

/* --- Responsive Styles --- */
/* Safe Area Support */
@supports (padding: max(0px)) {
	.container {
		padding-left: max(20px, env(safe-area-inset-left));
		padding-right: max(20px, env(safe-area-inset-right));
		padding-bottom: max(20px, env(safe-area-inset-bottom));
		padding-top: max(20px, env(safe-area-inset-top));
	}

	.checkout-btn {
		bottom: max(20px, env(safe-area-inset-bottom));
	}

	.footer-bottom {
		padding-bottom: max(20px, env(safe-area-inset-bottom));
	}
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

	.time-slot,
	.form-group input,
	.checkout-btn,
	#management-prevention,
	#monitoring-assessment,
	#science-behind-warts,
	.accordion-item,
	#types-of-warts,
	.why-choose-us-point,
	.why-choose-us-image,
	.footer-col {
		border-width: 0.5px;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

	header,
	.hero,
	.hero::before,
	.hero::after,
	.top-notification-container::before,
	.carousel-track,
	.review-card,
	.carousel-btn,
	.carousel-dot,
	.component-container,
	.doctor-card,
	.doctor-image img,
	footer {
		animation: none;
		transition: none;
	}

	.btn {
		transition: none;
	}
}

/* Print Styles */
@media print {
	footer {
		background: #333 !important;
		color: white !important;
		box-shadow: none;
		border-radius: 0;
	}

	.footer-col {
		background: transparent !important;
		border: 1px solid #ccc;
	}

	.footer-col a {
		color: inherit !important;
	}
}

/* Large Desktop */
@media (min-width: 1200px) {
	.review-card {
		min-height: 300px;
	}

	.doctor-card {
		min-height: 520px;
	}

	.doctor-image {
		height: 320px;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.container {
		padding: 40px;
	}

	.header-inner {
		padding: 25px 50px;
	}

	.custom-logo {
		max-height: 70px;
	}

	.primary-btn {
		padding: 14px 28px;
		font-size: 1rem;
	}

	.top-notification-message {
		font-size: 1rem;
	}

	.hero {
		min-height: 600px;
	}

	.hero-inner {
		padding: 80px 20px;
	}

	.hero-heading {
		margin-bottom: 20px;
	}

	.hero-heading h1 {
		font-size: 3rem;
		margin-bottom: 30px;
	}

	.hero-heading h2 {
		font-size: 1.6rem;
	}

	.secondary-btn {
		padding: 25px 60px;
		font-size: 1.3rem;
	}
}

/* Laptops & Small Desktops */
@media (min-width: 992px) {
	.carousel-track {
		gap: 20px;
	}

	.review-card {
		flex: 0 0 calc(50% - 10px);
		width: calc(50% - 10px);
		margin-right: 0;
	}

	.doctor-card {
		flex: 0 0 calc(50% - 10px);
		width: calc(50% - 10px);
		margin-right: 0;
	}
}

/* Tablet & Large Mobile */
@media (min-width: 769px) and (max-width: 1023px) {
	.header-inner {
		padding: 22px 45px;
	}

	.custom-logo {
		max-height: 65px;
	}

	.primary-btn {
		padding: 13px 26px;
		font-size: 0.97rem;
	}

	.hero {
		min-height: 550px;
	}

	.hero-inner {
		padding: 60px 40px;
	}

	.hero-heading h1 {
		font-size: 3.5rem;
		margin-bottom: 25px;
	}

	.hero-heading h2 {
		font-size: 1.5rem;
	}

	.secondary-btn {
		padding: 24px 55px;
		font-size: 1.25rem;
	}
}
@media (max-width: 768px) {
  .hero-address {
		text-align: center;
	}

	.address-main {
		justify-content: center;
		font-size: 0.85rem;
	}
	.proof-bar-inner {
		flex-direction: column;
		gap: 15px;
	}
	.hero-inner {
		flex-direction: column;
		text-align: center;
	}

  .hero-buttons,
	.hero-badges {
		justify-content: center;
	}
	.price-line {
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
	.container {
		padding: 15px;
	}

	.header h1 {
		font-size: 2.2rem;
	}

	.trust-badges {
		gap: 12px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.main-content {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}

	.left-column {
		gap: 18px;
	}

	.treatment-section,
	.booking-section,
	.payment-section,
	.lead-capture-section,
	.doctor-info,
	.social-proof,
	.guarantee-section,
	.compliance-section,
	.order-summary,
	.content-section:nth-child(even) {
		padding: 18px;
		margin-bottom: 18px;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.form-row {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	div[style*="margin: 40px 0"],
	.comparison-table {
		margin: 18px auto !important;
		padding: 18px !important;
	}

	.time-slot,
	.form-group input,
	.form-group select {
		font-size: 16px;
		padding: 14px 16px;
		min-height: 48px;
	}

	.review-platform {
		padding: 25px 20px;
	}

	.celebrity-testimonial-card {
		padding: 22px 18px;
	}

	.celebrity-image-container {
		right: -40px;
		width: 160px;
	}

	.review-card,
	.doctor-card {
		min-height: 280px;
		padding: 22px 18px;
		width: 100%;
	}

	.reviewer {
		gap: 13px;
		margin-bottom: 16px;
		padding-bottom: 13px;
	}

	.reviewer-avatar {
		width: 55px;
		height: 55px;
	}

	.review-content,
	.doctor-description {
		padding-left: 18px;
	}

	.carousel-controls {
		padding: 0 18px;
	}

	.accreditations-section {
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 10px 20px;
	}

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

	.doctors-platform {
		padding: 25px 20px;
	}

	.doctor-image {
		height: 280px;
	}

	.doctor-info {
		padding: 22px 0px;
	}

	.why-choose-us-section,
	#science-behind-warts,
	#monitoring-assessment,
	#management-prevention,
	#types-of-warts {
		padding: 18px;
		margin-bottom: 18px;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
		padding: 30px 25px;
		gap: 25px;
	}

	.footer-col {
		padding: 22px;
	}

	.footer-col:nth-child(3) {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		padding: 20px 25px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	body {
		padding: 0px;
	}

	.container {
		padding: 0;
	}

	.container-1 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.header,
	.top-notification-container {
		padding: 20px 15px;
	}

	.header h1 {
		font-size: 1.8rem;
		line-height: 1.2;
		margin-bottom: 8px;
	}

	.header p {
		font-size: 1rem;
	}

  .postcode-lookup-flex-container {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 15px !important;
	}

	.postcode-input,
	.postcode-button {
		width: 100%;
	}
	.postcode-lookup-flex-container {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 15px !important;
	}
  #address-lookup-container #getaddress_input,
	#address-lookup-container #getaddress_button {
		flex-basis: 100%;
	}

	.trust-badges {
		gap: 8px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-badge {
		font-size: 0.75rem;
		padding: 6px;
		flex: 1;
		text-align: center;
		min-width: 0;
	}

	.main-content {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 0;
		padding-bottom: 30px;
	}

	.left-column {
		gap: 15px;
	}

	.booking-section {
		padding: 5px;
	}

	.treatment-section,
	.payment-section,
	.lead-capture-section,
	.doctor-info,
	.social-proof,
	.guarantee-section,
	.compliance-section {
		padding: 15px;
		margin-bottom: 15px;
		border-radius: 15px;
	}

	.section-title {
		font-size: 1.5rem;
		margin-bottom: 20px;
		flex-direction: column;
		gap: 15px;
	}

	.urgency-indicator {
		font-size: 0.75rem;
		padding: 12px;
		margin: 10px 0px;
		text-align: center;
	}

	.proof-item {
		display: inline-flex;
	}

	.calendar-grid {
		grid-template-columns: repeat(7, 1fr);
		gap: 5px;
	}

	.calendar-day {
		min-height: 35px;
		font-size: 0.9rem;
	}

	.time-slots-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.time-slot {
		font-size: 0.8rem;
		padding: 12px 6px;
		margin-bottom: 6px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.popular-badge,
	.last-badge {
		font-size: 0.6rem;
		padding: 1px 4px;
		top: -6px;
		right: -6px;
	}

  .form-group {
		margin-bottom: 15px;
	}

	.form-group input,
	.form-group select,
	.form-group select,
	.form-group textarea {
		padding: 16px 14px;
		font-size: 16px;
		border-radius: 12px;
		min-height: 44px;
	}

	.form-group label {
		font-size: 0.95rem;
		margin-bottom: 6px;
	}

	#getaddress_input {
		width: auto;
	}

	.add-on-item {
		padding: 15px;
		margin-bottom: 12px;
		border-radius: 15px;
	}

	.add-on-header {
		display: block;
	}

	.add-on-header>div:first-child {
		margin-bottom: 15px;
		padding-right: 100px;
	}

	.add-on-header h4 {
		font-size: 0.95rem;
		margin-bottom: 6px;
		line-height: 1.3;
	}

	.add-on-header p {
		font-size: 0.85rem;
		color: #666;
		line-height: 1.4;
	}

	.add-on-controls {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		background: #f8f9ff;
		border-radius: 12px;
		padding: 8px;
		border: 1px solid #e1e5f7;
    gap:5px;
	}

	.quantity-control {
		display: flex;
		align-items: center;
		gap: 12px;
		background: white;
		border-radius: 20px;
		padding: 4px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		border: 1px solid #e1e5f7;
	}

	.add-btn,
	.subtract-btn,
	.quantity-btn {
		width: 44px;
		height: 44px;
		border-radius: 50%;
		font-size: 1.4rem;
		font-weight: 600;
	}

	.quantity-display {
		min-width: 50px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
		border-radius: 12px;
		font-size: 1.2rem;
		font-weight: 700;
		color: #2c5aa0;
		border: 2px solid #e1e5f7;
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
	}

	.treatment-price-addon {
		position: absolute;
		top: 15px;
		right: 15px;
		background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
		color: white;
		border-radius: 12px;
		padding: 6px 12px;
		font-size: 0.8rem;
		font-weight: 700;
		box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	.remove-btn {
		padding: 8px;
		border-radius: 12px;
		min-height: 44px;
		background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
		border: none;
		color: white;
		font-weight: 600;
		font-size: 0.8rem;
	}

	.primary-treatment {
		padding: 15px;
		margin-bottom: 15px;
	}

	.primary-treatment::after {
		font-size: 0.7rem;
		padding: 4px 25px;
		top: 10px;
		right: -25px;
	}

	.treatment-item {
		position: relative;
		padding: 15px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.treatment-info {
		padding-right: 0;
		margin-bottom: 12px;
	}

	.treatment-info h3 {
		font-size: 1.1rem;
		margin-bottom: 6px;
		line-height: 1.3;
	}

	.treatment-info p {
		font-size: 0.85rem;
		line-height: 1.4;
		margin-bottom: 4px;
	}

	.treatment-price {
		position: absolute;
		top: 15px;
		right: 0;
		background: rgba(255, 255, 255, 0.15);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 15px;
		padding: 8px 16px;
		font-size: 1.3rem;
		font-weight: 800;
		color: #fff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		min-width: 70px;
		text-align: center;
	}

	.order-summary {
		padding: 15px;
		position: static;
		order: -1;
		margin-bottom: 15px;
	}

	.summary-item {
		padding: 12px 0;
		font-size: 1rem;
	}

	.checkout-btn {
		padding: 13px;
		font-size: 1rem;
		border-radius: 25px;
		min-height: 60px;
		position: sticky;
		bottom: 20px;
		z-index: 100;
		box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	}

	.doctor-profile {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.doctor-avatar {
		align-self: center;
	}

	.booking-benefits {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0px 20px;
		justify-self: center;
	}

	.benefit-item {
		padding: 12px 15px;
		font-size: 0.9rem;
	}

	.guarantee-section h3 {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}

	.testimonial {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.security-badges {
		gap: 8px;
		margin-top: 15px;
	}

	.security-badge {
		font-size: 0.8rem;
		padding: 8px 12px;
		flex: 1;
		text-align: center;
		align-content: center;
	}

	.selected-appointment {
		padding: 15px;
		margin-top: 15px;
	}

	.appointment-confirm h4 {
		font-size: 1rem;
	}

	.phone-input-container {
		flex-direction: column;
		gap: 10px;
	}

	.country-select {
		width: 100%;
		min-width: auto;
	}

	div[style*="margin: 40px 0"],
	.comparison-table {
		margin: 15px auto !important;
		padding: 15px !important;
	}

	header {
		border-radius: 0;
	}

	.top-notification-container {
		padding: 5px 12px;
	}

	.top-notification-message {
		font-size: 0.75rem;
	}

	.header-inner {
		gap: 12px;
	}

	.custom-logo {
		max-height: 45px;
	}

	.primary-btn {
		padding: 8px 18px;
		font-size: 0.85rem;
	}

	.hero {
		min-height: 400px;
		padding: 0;
	}

	.hero-inner {
		padding: 30px 15px;
	}

	.hero-heading h1 {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.hero-heading h2 {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}

	.secondary-btn {
		padding: 18px 35px;
		font-size: 1rem;
	}

	.hero::after {
		width: 60px;
		height: 60px;
	}

	.hero-badges {
		display: none;
	}

	.component-container {
		border-radius: 15px;
	}

	.review-platform {
		padding: 20px 15px;
		border-radius: 15px;
	}

	.platform-info {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		text-align: center;
	}

	.platform-logo {
		font-size: 1.1rem;
	}

	.platform-rating {
		flex-direction: column;
		gap: 8px;
	}

	.rating {
		font-size: 1.6rem;
	}

	.rating-stars .star {
		font-size: 1rem;
	}

	.celebrity-testimonial-card {
		padding: 20px 15px;
		min-height: 160px;
		border-radius: 12px;
	}

	.celebrity-testimonial-quote-icon {
		font-size: 2.2rem;
		top: -5px;
		left: -8px;
	}

	.celebrity-name {
		font-size: 1.1rem;
	}

	.celebrity-title {
		font-size: 0.8rem;
		margin-bottom: 12px;
	}

	.celebrity-testimonial-text {
		font-size: 0.9rem;
		padding-left: 12px;
		line-height: 1.5;
	}

	.carousel-container {
		margin-top: 20px;
		border-radius: 12px;
	}

	.carousel-track {
		gap: 0;
	}

	.review-card,
	.doctor-card {
		flex: 0 0 100%;
		width: 100%;
		padding: 20px 15px;
		min-height: 250px;
		margin-right: 0;
		border-radius: 12px;
	}

	.reviewer {
		gap: 12px;
		margin-bottom: 15px;
		padding-bottom: 12px;
	}

	.reviewer-avatar {
		width: 50px;
		height: 50px;
		border-width: 2px;
		font-size: 1rem;
	}

	.reviewer-name {
		font-size: 1rem;
		margin-bottom: 6px;
	}

	.review-content {
		font-size: 0.95rem;
		line-height: 1.5;
		padding-left: 15px;
	}

	.review-content::before {
		font-size: 1.6rem;
		top: -1px;
	}

	.carousel-controls {
		gap: 15px;
		margin-top: 20px;
		padding: 0 15px;
		flex-wrap: nowrap;
	}

	.carousel-btn {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
		flex-shrink: 0;
	}

	.carousel-dots {
		gap: 8px;
		order: 1;
		flex: 1;
		justify-content: center;
	}

	.carousel-dot {
		width: 10px;
		height: 10px;
	}

	.carousel-counter {
		font-size: 0.85rem;
		min-width: auto;
		order: 2;
		flex-shrink: 0;
		margin-left: 10px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		margin: 20px 0;
	}

	.benefit-card {
		padding: 20px 15px;
	}

	.benefit-icon {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.stats-section {
		padding: 25px 20px;
		margin: 20px 0;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.stat-number {
		font-size: 2rem;
	}

	.cta-section {
		margin-top: 20px;
		padding: 20px 15px;
	}

	.cta-text {
		font-size: 1rem;
		margin-bottom: 12px;
	}

	.cta-button {
		padding: 16px 30px;
		font-size: 1rem;
		width: 100%;
		margin-bottom: 10px;
	}

	.doctors-platform {
		padding: 20px 15px;
		border-radius: 15px;
	}

	.platform-info h2 {
		font-size: 1.6rem;
	}

	.platform-info p {
		font-size: 1rem;
	}

	.doctor-image {
		height: 250px;
	}

	.doctor-info {
		padding: 20px 0px;
	}

	.doctor-name {
		font-size: 1.3rem;
	}

	.doctor-title {
		font-size: 1rem;
	}

	.doctor-gmc {
		font-size: 0.9rem;
		padding: 6px 10px;
	}

	.doctor-description {
		font-size: 0.95rem;
	}

	.specialty-badge {
		font-size: 0.7rem;
		padding: 4px 8px;
	}

	.btn-cta {
		padding: 12px 25px;
		font-size: 1rem;
	}

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

	.accreditation-logo {
		max-width: 100%;
		height: 140px;
		padding: 15px;
	}

	.trust-indicators {
		padding: 20px 15px;
	}

	.trust-indicators h3 {
		font-size: 1.1rem;
	}

	.why-choose-us-section,
	#science-behind-warts,
	#monitoring-assessment,
	#management-prevention,
	#types-of-warts,
	#understanding-warts {
		padding: 15px;
		margin-bottom: 15px;
		border-radius: 15px;
	}

	.why-choose-us-container {
		gap: 20px;
	}

	.why-choose-us-content h3 {
		font-size: 1.1rem;
	}

	.why-choose-us-content>p {
		font-size: 0.9rem;
	}

	.why-choose-us-points {
		gap: 15px;
	}

	.why-choose-us-point {
		padding: 12px;
		gap: 10px;
	}

	.why-choose-us-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.why-choose-us-info h4 {
		font-size: 1rem;
	}

	.why-choose-us-info p {
		font-size: 0.85rem;
	}

	.why-choose-us-image {
		min-height: 120px;
		padding: 12px;
	}

	.why-choose-us-image::before {
		font-size: 0.9rem;
	}

	.btn {
		padding: 14px 24px;
		font-size: 0.95rem;
	}

	.content-wrapper {
		gap: 12px;
	}

	.content-wrapper p {
		font-size: 0.9rem;
		margin-bottom: 10px;
	}

	.content-wrapper ul li {
		padding: 10px 10px 10px 35px;
		font-size: 0.85rem;
		margin-bottom: 10px;
	}

	.content-wrapper ul li::before {
		left: 10px;
		font-size: 0.9rem;
	}

	.accordion-title {
		padding: 12px 15px;
		font-size: 0.95rem;
	}

	.accordion-content {
		padding: 0 15px;
	}

	.accordion-item.open .accordion-content {
		padding: 15px;
	}

	.accordion-content h4 {
		font-size: 0.95rem;
	}

	.accordion-content p,
	.accordion-content ul li {
		font-size: 0.85rem;
	}

	.content-wrapper h3 {
		font-size: 1.1rem;
		margin: 15px 0 10px 0;
	}

	.content-wrapper>p:nth-of-type(3),
	.content-wrapper>p:last-of-type {
		padding: 8px;
		font-size: 0.9rem;
		margin-top: 10px;
	}

	.footer-content {
		padding: 20px 15px;
		gap: 15px;
	}

	.footer-col {
		padding: 15px;
	}

	.footer-col h3 {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}

	.footer-col p {
		font-size: 0.9rem;
		margin-bottom: 6px;
	}

	.footer-links a {
		font-size: 0.85rem;
		padding: 5px 0;
	}

	.footer-bottom {
		padding: 15px;
	}

	.footer-bottom p {
		font-size: 0.8rem;
		margin-bottom: 3px;
	}

	.booking-container {
		padding: 20px 0px;
		margin: 0;
		border-radius: 15px;
	}

	.stepper-container,
	.step-navigation {
		padding: 20px;
	}

	.section-container {
		padding: 0;
	}

	.step {
		padding: 0 5px;
	}

	.step-title {
		font-size: 12px;
	}

	.step-circle {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.custom-calendar {
		padding: 10px;
	}

	.calendar-day-header {
		font-size: 0.7rem;
	}

	.address-loading {
		padding: 12px;
		font-size: 0.9rem;
	}
}

@media (hover: none) and (pointer: coarse) {
	.carousel-btn {
		width: 48px;
		height: 48px;
		font-size: 1.2rem;
	}

	.carousel-dot {
		width: 14px;
		height: 14px;
		margin: 2px;
	}

	.review-card:hover,
	.doctor-card:hover {
		transform: none;
	}

	.doctor-card:hover .doctor-image img {
		transform: none;
	}
}