/* ============================================================
   Appointment Page Enhanced Styles
   ============================================================ */

/* Status Badge Large */
.med-status-wrapper {
	text-align: center;
	margin: 1rem 0;
}

.med-status-lg {
	font-size: 1rem;
	padding: 0.5rem 1.25rem;
}

.med-status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	margin-right: 0.5rem;
	animation: pulse 2s infinite;
}

/* Contact Note */
.medical-contact-note {
	font-size: 0.875rem;
	color: var(--med-text-muted);
	margin-top: 0.25rem;
}

/* Steps Section */
.steps-container {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.step-item {
	flex: 0 0 200px;
	text-align: center;
	padding: 1.5rem;
	position: relative;
}

.step-number {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 32px;
	height: 32px;
	background: var(--med-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.875rem;
}

.step-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
	margin-top: 0.5rem;
}

.step-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--med-text-dark);
}

.step-desc {
	font-size: 0.9375rem;
	color: var(--med-text-muted);
	line-height: 1.5;
	margin: 0;
}

.step-connector {
	flex: 0 0 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--med-border), var(--med-primary), var(--med-border));
	margin-top: 3rem;
	position: relative;
}

.step-connector::after {
	content: '';
	position: absolute;
	right: 0;
	top: -4px;
	width: 0;
	height: 0;
	border-left: 8px solid var(--med-primary);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

@media (max-width: 992px) {
	.step-connector {
		display: none;
	}
	.step-item {
		flex: 0 0 50%;
		max-width: 250px;
	}
}

@media (max-width: 576px) {
	.step-item {
		flex: 0 0 100%;
	}
}

/* Card Features List */
.med-card-features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	text-align: left;
}

.med-card-features li {
	padding: 0.375rem 0;
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.9375rem;
	color: var(--med-text);
}

.med-card-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--med-success);
	font-weight: bold;
}

/* Recommended Badge */
.med-card-highlight {
	position: relative;
	overflow: visible;
}

.med-recommended-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--med-success);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0.25rem 1rem;
	border-radius: 0 0 var(--med-radius-sm) var(--med-radius-sm);
	letter-spacing: 0.5px;
	z-index: 100;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.med-recommended-badge {
		font-size: 0.65rem;
		padding: 0.2rem 0.75rem;
		top: -8px;
	}
	.med-card-highlight {
		padding-top: 1.25rem;
	}
}

.med-card {
	position: relative;
	border-color: var(--med-success) !important;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(76, 175, 80, 0.15);
}

/* Guarantees */
.guarantee-item {
	text-align: center;
	padding: 1.5rem;
}

.guarantee-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.guarantee-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--med-text-dark);
}

.guarantee-desc {
	font-size: 0.9375rem;
	color: var(--med-text-muted);
	line-height: 1.5;
	margin: 0;
}

/* Documents List */
.documents-list {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}

.document-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--med-border);
}

.document-item:last-child {
	border-bottom: none;
}

.document-check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: var(--med-success);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	margin-right: 1rem;
}

.document-text {
	font-size: 1rem;
	color: var(--med-text);
}

/* Hours List Large */
.med-hours-list-lg .med-hours-item {
	padding: 1rem 0;
	font-size: 1.0625rem;
}

/* Emergency Phone */
.emergency-phone {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--med-warning);
	text-decoration: none;
	margin-top: 0.75rem;
}

.emergency-phone:hover {
	color: #e68900;
}

/* Service Cards Mini */
.service-card-mini {
	background: #fff;
	border: 1px solid var(--med-border);
	border-radius: var(--med-radius);
	padding: 1.5rem;
	text-align: center;
	transition: all 0.2s ease;
}

.service-card-mini:hover {
	border-color: var(--med-primary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}

.service-card-title {
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.service-card-title a {
	color: var(--med-text-dark);
	text-decoration: none;
}

.service-card-title a:hover {
	color: var(--med-primary);
}

.service-card-price {
	font-size: 0.9375rem;
	color: var(--med-primary);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

/* Location Section */
.location-info > div {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.location-icon {
	flex-shrink: 0;
	font-size: 1.5rem;
	width: 40px;
	text-align: center;
}

.location-info h3 {
	margin-bottom: 0.25rem;
}

.location-info p {
	margin: 0;
	color: var(--med-text);
	line-height: 1.5;
}

.location-map {
	height: 100%;
	min-height: 300px;
}

.map-placeholder {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
	border-radius: var(--med-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed var(--med-border);
}

.map-content {
	text-align: center;
	padding: 2rem;
}

.map-icon {
	font-size: 3rem;
	display: block;
	margin-bottom: 1rem;
}

.map-content p {
	color: var(--med-text-muted);
	margin-bottom: 1rem;
}

/* FAQ Container Large */
.med-faq-container-lg {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Grid Responsive */
@media (max-width: 992px) {
	.med-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.med-grid-2-tablet {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.med-grid-2-tablet,
	.med-grid-4 {
		grid-template-columns: 1fr;
	}
}

/* Button Gap Utilities */
.med-gap-05 {
	gap: 0.5rem;
}

/* Button Large */
.med-btn-lg {
	padding: 0.875rem 1.5rem;
	font-size: 1rem;
}
