/* abstracts/variables.css */

:root {
	/* Breakpoints */
	--breakpoints-mobile: 480px;
	--breakpoints-tablet: 768px;
	--breakpoints-laptop: 1024px;
	--breakpoints-desktop: 1440px;
	--breakpoints-wide: 1920px;
	--breakpoints-ultrawide: 2560px;

	/* Colors */
	/* The SCSS $colors variable is defined twice.
     CSS custom properties will reflect the final definition of $colors,
     which includes gray, white, and black. */
	--colors-white: #ffffff;
	--colors-black: #000000;
	--colors-gray-50: #f7fafc;
	--colors-gray-100: #edf2f7;
	--colors-gray-200: #e2e8f0;
	--colors-gray-300: #cbd5e0;
	--colors-gray-400: #a0aec0;
	--colors-gray-500: #718096;
	--colors-gray-600: #4a5568;
	--colors-gray-700: #2d3748;
	--colors-gray-800: #1a202c;
	--colors-gray-900: #171923;
	--colors-footer-bg: #f7fafc;
	--colors-purple-100: #f3e5f5;
	--colors-purple-200: #e1bee7;
	--colors-purple-300: #ce93d8;
	--colors-purple-400: #ba68c8;
	--colors-purple-500: #ab47bc;
	--colors-purple-600: #9c27b0;
	--colors-purple-700: #8e24aa;
	--colors-purple-800: #7b1fa2;
	--colors-purple-900: #6a1b9a;

	/* Shadow Variables */
	--shadows-header: 0 2px 4px rgba(0, 0, 0, 0.1);

	/* Font Family */
	--font-family-primary: "Nunito Sans", Arial, sans-serif;

	/* Typography Weights */
	--typography-weights-regular: 400;
	--typography-weights-semibold: 500;
	--typography-weights-bold: 700;

	/* Spacing */
	--spacing-margins-xs: 0.5rem; /* 8px */
	--spacing-margins-sm: 1rem; /* 16px */
	--spacing-margins-md: 1.5rem; /* 24px */
	--spacing-margins-lg: 2rem; /* 32px */
	--spacing-margins-xl: 2.5rem; /* 40px */

	/* Text Colors */
	/* In SCSS, $text-color is derived from the first definition of $colors:
     $text-color: map-get(map-get($colors, gray), 800); which results in #1a202c.
     Since --colors-gray-800 (from the final $colors map) is also #1a202c,
     we can use var(--colors-gray-800) here. */
	--text-color: var(--colors-gray-800); /* Effectively #1a202c */

	/* Section Colors */
	--section-bg-purple: #fff8ff;
	--section-backgrounds-blue: #e3f2fd;
	--section-backgrounds-purple: #fff8ff;
	--section-backgrounds-alt: #f7fafc; /* This is the same as --colors-gray-50 */

	/* Border Radius */
	--border-radius-default: 8px;
	--border-radius-medium: 16px;
	--border-radius-large: 24px;
	--border-radius-xlarge: 32px;

	/* Z-index */
	--z-index-base: 1;
	--z-index-header: 1000;
	--z-index-modal: 2000;
	--z-index-overlay: 3000;

	/* Section Padding */
	--section-spacing-desktop-padding: 128px;
	--section-spacing-desktop-margin: 96px;
	--section-spacing-tablet-padding: 72px;
	--section-spacing-tablet-margin: 72px;
	--section-spacing-mobile-padding: 48px;
	--section-spacing-mobile-margin: 48px;
	--section-spacing-nav-padding: 16px;
	--section-spacing-nav-padding-mobile: 12px;
}
body {
	margin: 0;
	padding: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY - Skip Link
   ═══════════════════════════════════════════════════════════════ */
.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	padding: 12px 24px;
	background: var(--colors-purple-700);
	color: var(--colors-white);
	border-radius: var(--border-radius-default);
	font-weight: 600;
	text-decoration: none;
	z-index: 9999;
	transition: top 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.skip-link:focus {
	top: 16px;
	outline: 3px solid var(--colors-purple-400);
	outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY - Focus States
   ═══════════════════════════════════════════════════════════════ */
:focus {
	outline: none;
}

:focus-visible {
	outline: 3px solid var(--colors-purple-400);
	outline-offset: 4px;
	border-radius: var(--border-radius-default);
}

a:focus-visible,
button:focus-visible {
	outline-color: var(--colors-purple-600);
	outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS - Page Load
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/*
* Layout
*/
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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


.header {
	position: sticky;
	top: 0;
	padding: 24px 32px;
	background-color: var(--colors-white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	z-index: var(--z-index-header);
	transition: box-shadow 0.3s ease, padding 0.3s ease;

	@media screen and (max-width: 480px) {
		padding: 16px 16px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		padding: 20px 24px;
	}

	.header-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1376px;
		margin: 0 auto;
	}

	.logo-link {
		display: block;
		transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);

		&:hover {
			transform: scale(1.02);
		}

		.logo {
			height: 50px;
			width: auto;
			object-fit: contain;

			@media screen and (max-width: 480px) {
				height: 40px;
			}
		}
	}

	.navbar {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 48px;

		@media screen and (max-width: 768px) {
			font-size: 16px;
			line-height: 24px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 17px;
			line-height: 24px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 18px;
			line-height: 28px;
		}

		@media screen and (max-width: 920px) {
			gap: 24px;
		}
	}

	.nav-item {
		font-weight: 500;
		color: var(--colors-gray-700);
		text-decoration: none;
		padding: 8px 16px;
		border-radius: var(--border-radius-default);
		transition: color 0.2s ease, background-color 0.2s ease;

		&:hover {
			color: var(--colors-purple-700);
			background-color: var(--colors-purple-100);
		}

		&.active {
			color: var(--colors-purple-700);
			background-color: var(--colors-purple-100);
			font-weight: 600;
		}
	}

	/* Legacy link styles - keep for backwards compatibility */
	a:not(.nav-item):not(.logo-link) {
		font-weight: 500;
		color: var(--colors-purple-600);
		text-decoration: none;
		transition: color 0.2s ease;

		&:hover {
			color: var(--colors-purple-700);
			text-decoration: underline;
		}
	}
}

.hero {
	padding: var(--section-spacing-desktop-padding, 128px) 0;
	text-align: center;
	animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;

	@media screen and (max-width: 480px) {
		padding: var(--section-spacing-mobile-padding, 48px) 0;
	}

	@media screen and (min-width: 480px) and (max-width: 768px) {
		padding: var(--section-spacing-tablet-padding, 72px) 0;
	}

	h1 {
		text-align: center;
		animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
		animation-delay: 0.1s;

		@media screen and (max-width: 768px) {
			font-size: 48px;
			line-height: 56px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 72px;
			line-height: 80px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 96px;
			line-height: 112px;
		}
	}
}
body {
	font-family: var(--font-family-primary);
	color: var(--text-color);
}

h1,
.h1 {
	font-weight: 500;
	margin: 0;
}

h2,
.h2 {
	font-weight: 500;
	padding-bottom: 96px;
	margin: 0;
}

h3,
.h3 {
	font-weight: 500;
	margin: 0;
}

h4,
.h4 {
	font-weight: 500;
	margin: 0;
}

@media screen and (max-width: 768px) {
	h1,
	.h1 {
		font-size: 48px;
		line-height: 56px;
	}
	h2,
	.h2 {
		font-size: 32px;
		line-height: 40px;
	}
	h3,
	.h3 {
		font-size: 24px;
		line-height: 32px;
	}
	h4,
	.h4 {
		font-size: 20px;
		line-height: 28px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1920px) {
	h1,
	.h1 {
		font-size: 72px;
		line-height: 80px;
	}
	h2,
	.h2 {
		font-size: 42px;
		line-height: 56px;
	}
	h3,
	.h3 {
		font-size: 32px;
		line-height: 44px;
	}
	h4,
	.h4 {
		font-size: 22px;
		line-height: 32px;
	}
}

@media screen and (min-width: 1920px) {
	h1,
	.h1 {
		font-size: 96px;
		line-height: 112px;
	}
	h2,
	.h2 {
		font-size: 56px;
		line-height: 72px;
	}
	h3,
	.h3 {
		font-size: 40px;
		line-height: 56px;
	}
	h4,
	.h4 {
		font-size: 24px;
		line-height: 40px;
	}
}
/* ═══════════════════════════════════════════════════════════════
   BURGER MENU - Mobile Navigation Toggle
   ═══════════════════════════════════════════════════════════════ */
.burger-button {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: var(--z-index-modal);
	border-radius: var(--border-radius-default);
	transition: background-color 0.2s ease;

	&:hover {
		background-color: var(--colors-gray-100);
	}

	&:focus-visible {
		outline: 3px solid var(--colors-purple-400);
		outline-offset: 2px;
	}

	.burger-button__bar {
		display: block;
		width: 25px;
		height: 3px;
		background-color: var(--colors-purple-600);
		margin: 5px 0;
		border-radius: 2px;
		transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		            opacity 0.3s ease,
		            background-color 0.3s ease;
	}

	&.is-active .burger-button__bar {
		background-color: var(--colors-purple-700);

		&:nth-child(1) {
			transform: translateY(8px) rotate(45deg);
		}

		&:nth-child(2) {
			opacity: 0;
			transform: scaleX(0);
		}

		&:nth-child(3) {
			transform: translateY(-8px) rotate(-45deg);
		}
	}
}

@media screen and (max-width: 1024px) {
	.header .navbar {
		display: flex;
		flex-direction: column;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		background-color: var(--colors-white);
		padding: 2rem 1rem;
		box-shadow: var(--shadows-header);
		gap: 0.5rem;
		z-index: 1999;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-20px);
		transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		            visibility 0.4s,
		            transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

		&.is-active {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		}

		.nav-item {
			margin: 10px 0;
			font-size: 1.1em;
			padding: 12px 24px;
			border-radius: var(--border-radius-default);
			transition: background-color 0.2s ease, color 0.2s ease;
			opacity: 0;
			transform: translateY(-10px);

			&:hover {
				background-color: var(--colors-gray-100);
			}

			&.active {
				background-color: var(--colors-purple-100);
				color: var(--colors-purple-700);
			}
		}

		/* Staggered animation for menu items */
		&.is-active .nav-item {
			animation: navItemFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
		}

		&.is-active .nav-item:nth-child(1) { animation-delay: 0.1s; }
		&.is-active .nav-item:nth-child(2) { animation-delay: 0.15s; }
		&.is-active .nav-item:nth-child(3) { animation-delay: 0.2s; }
		&.is-active .nav-item:nth-child(4) { animation-delay: 0.25s; }
		&.is-active .nav-item:nth-child(5) { animation-delay: 0.3s; }
	}

	.burger-button {
		display: inline-block;
	}
}

@keyframes navItemFadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (min-width: 1025px) {
	.header .navbar {
		display: flex !important;
		flex-direction: row;
		position: static;
		width: auto;
		background-color: transparent;
		padding: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.header .navbar .nav-item {
		opacity: 1;
		transform: none;
	}
}
.card-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;

	@media screen and (max-width: 480px) {
		gap: 24px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		gap: 32px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   SHARED CARD ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.card-contact,
.card-employee,
.action-card,
.pricing-category {
	animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.card-flex > *:nth-child(1) { animation-delay: 0.1s; }
.card-flex > *:nth-child(2) { animation-delay: 0.15s; }
.card-flex > *:nth-child(3) { animation-delay: 0.2s; }
.card-flex > *:nth-child(4) { animation-delay: 0.25s; }
.card-flex > *:nth-child(5) { animation-delay: 0.3s; }
.card-flex > *:nth-child(6) { animation-delay: 0.35s; }

/* Contact */
.card-contact {
	position: relative;
	border-radius: 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	background: var(--section-backgrounds-blue);
	width: 346px;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

	&:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
	}

	@media screen and (max-width: 480px) {
		padding: 24px;
		font-size: 14px;
		border-radius: 8px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		padding: 48px;
		font-size: 16px;
		border-radius: 16px;
	}

	@media screen and (min-width: 769px) {
		padding: 96px;
		font-size: 18px;
		border-radius: 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	@media screen and (max-width: 480px) {
		width: 288px;
	}

	.image {
		height: 96px;
		width: 96px;
		margin: 0 auto;
		display: block;
		object-fit: cover;
		padding-bottom: 24px;
		transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

		@media screen and (max-width: 480px) {
			height: 72px;
			width: 72px;
			padding-bottom: 16px;
		}
	}

	&:hover .image {
		transform: scale(1.05);
	}

	.hours-group .type {
		color: #8e24aa;
	}

	.contact-link {
		text-decoration: none;
		transition: color 0.3s ease;
		color: #8e24aa;

		&:hover {
			text-decoration: underline;
		}
	}
}

/* Employee */
.card-employee {
	position: relative;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	width: 360px;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

	&:hover {
		transform: translateY(-6px);
		box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
	}

	@media screen and (max-width: 480px) {
		padding: 24px;
		font-size: 14px;
		border-radius: 8px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		padding: 48px;
		font-size: 16px;
		border-radius: 16px;
	}

	@media screen and (min-width: 769px) {
		padding: 96px;
		font-size: 18px;
		border-radius: 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	@media screen and (min-width: 480px) and (max-width: 768px) {
		width: 288px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		width: 320px;
	}

	.avatar {
		margin: 0 auto;
		display: block;
		object-fit: cover;
		padding: 48px 0;
		transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

		@media screen and (max-width: 480px) {
			padding: 24px 0;
		}
	}

	&:hover .avatar {
		transform: scale(1.05);
	}

	.employee-label {
		position: absolute;
		top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 24px;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		font-size: 0.875rem;
		left: 32px;
		padding: 8px 24px;
		z-index: 1;
		font-weight: 500;
		transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);

		@media screen and (max-width: 768px) {
			font-size: 14px;
			line-height: 20px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 15px;
			line-height: 24px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 16px;
			line-height: 24px;
		}

		@media screen and (max-width: 480px) {
			font-size: 0.75rem;
			padding: 0.375rem 0.75rem;
		}

		@media screen and (min-width: 768px) {
			left: 2rem;
		}
	}

	&:hover .employee-label {
		transform: translateY(2px);
	}

	&.doctor {
		background:
			linear-gradient(135deg, rgba(144, 202, 249, 0.15) 0%, transparent 60%),
			var(--section-backgrounds-blue);

		.employee-label {
			background: linear-gradient(to right, #90caf9, #b2dcff);
		}
	}

	&.secretary {
		background:
			linear-gradient(135deg, rgba(229, 122, 229, 0.1) 0%, transparent 60%),
			#ffe6ff;

		.employee-label {
			background: linear-gradient(to right, #e57ae5, #ffbaff);
		}
	}

	&.med-secretary {
		background:
			linear-gradient(135deg, rgba(255, 168, 168, 0.15) 0%, transparent 60%),
			#ffeaea;

		.employee-label {
			background: linear-gradient(to right, #ffa8a8, #ffdbdb);
		}
	}

	&.attention {
		background:
			linear-gradient(135deg, rgba(255, 214, 0, 0.1) 0%, transparent 60%),
			#fffde0;

		.employee-label {
			background: linear-gradient(to right, #ffd600, #fff614);
		}
	}

	&.important {
		background:
			linear-gradient(135deg, rgba(255, 71, 106, 0.1) 0%, transparent 60%),
			#ffeaea;

		.employee-label {
			background: linear-gradient(to right, #ff476a, #ffc0cc);
		}
	}

	&.info {
		background:
			linear-gradient(135deg, rgba(45, 204, 255, 0.1) 0%, transparent 60%),
			#e5f9ff;

		.employee-label {
			background: linear-gradient(to right, #2dccff, #aeecff);
		}
	}
}


/* Action */
.action-card {
	position: relative;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffeeff;
	color: #9f1dab;
	flex-direction: column;
	width: 280px;
	text-decoration: none;
	border: 2px solid transparent;
	background-image:
		linear-gradient(#ffeeff, #ffeeff),
		linear-gradient(135deg, var(--colors-purple-300), var(--colors-purple-600));
	background-origin: border-box;
	background-clip: padding-box, border-box;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 0 4px 16px rgba(142, 36, 170, 0.1);
	cursor: pointer;

	/* External link indicator */
	&::after {
		content: '';
		position: absolute;
		right: 16px;
		top: 16px;
		width: 18px;
		height: 18px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239c27b0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3E%3C/svg%3E");
		background-size: contain;
		opacity: 0.4;
		transition: opacity 0.3s ease;

		@media screen and (max-width: 480px) {
			right: 12px;
			top: 12px;
			width: 14px;
			height: 14px;
		}
	}

	&:hover::after {
		opacity: 0.7;
	}

	&:hover {
		transform: translateY(-8px) scale(1.02);
		box-shadow: 0 20px 40px rgba(142, 36, 170, 0.2);
	}

	&:active {
		transform: translateY(-4px) scale(1.01);
	}

	@media screen and (max-width: 480px) {
		width: 100%;
		max-width: 240px;
		padding: 24px;
		font-size: 14px;
		border-radius: 8px;
	}

	@media screen and (min-width: 481px) and (max-width: 768px) {
		width: calc(50% - 20px);
		max-width: 260px;
		padding: 48px;
		font-size: 16px;
		border-radius: 16px;
	}

	@media screen and (min-width: 769px) {
		padding: 96px;
		font-size: 18px;
		border-radius: 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	.card-icon {
		margin-bottom: 24px;
		transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

		img {
			width: 120px;
			height: 120px;

			@media screen and (max-width: 480px) {
				width: 80px;
				height: 80px;
			}

			@media screen and (min-width: 481px) and (max-width: 768px) {
				width: 100px;
				height: 100px;
			}
		}
	}

	&:hover .card-icon {
		transform: scale(1.08) translateY(-4px);
	}

	.card-title {
		font-weight: 600;
		text-align: center;

		@media screen and (max-width: 768px) {
			font-size: 24px;
			line-height: 32px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 28px;
			line-height: 36px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 32px;
			line-height: 40px;
		}
	}
}

/* Pricing */
.pricing-category {
	padding: 48px;
	background: var(--section-backgrounds-blue);
	border-radius: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);

	&:hover {
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	}

	@media screen and (max-width: 480px) {
		padding: 24px;
	}

	.pricing-header {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 32px;

		.pricing-icon {
			width: 32px;
			height: 32px;

			img {
				width: 100%;
				height: 100%;
				object-fit: contain;
			}
		}

		.pricing-title {
			color: #2d3748;
			margin: 0;
			font-weight: 600;
		}
	}

	.pricing-table {
		width: 100%;
		background: var(--colors-white);
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

		.pricing-table-header {
			display: flex;
			justify-content: space-between;
			padding: 16px 24px;
			background: var(--colors-gray-50);
			font-weight: 600;
			color: var(--colors-gray-700);
			border-bottom: 1px solid var(--colors-gray-200);
			text-transform: uppercase;
			font-size: 0.85em;
			letter-spacing: 0.03em;
		}

		.pricing-row {
			display: flex;
			justify-content: space-between;
			padding: 16px 24px;
			border-bottom: 1px solid var(--colors-gray-200);
			transition: background-color 0.2s ease;

			&:nth-child(even) {
				background: rgba(227, 242, 253, 0.3);
			}

			&:last-child {
				border-bottom: none;
			}

			&:hover {
				background-color: rgba(227, 242, 253, 0.6);
			}

			.service-name {
				flex: 1;
				padding-right: 24px;
				text-align: left;
				color: var(--colors-gray-800);
			}

			.service-price {
				white-space: nowrap;
				font-weight: 600;
				color: var(--colors-purple-700);
			}
		}
	}

	.pricing-note {
		margin-top: 24px;
		color: var(--colors-gray-500);
		font-size: 14px;
		font-style: italic;
		padding-left: 16px;
		border-left: 3px solid var(--colors-purple-200);
	}
}
.content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 0 auto;
	background-color: var(--section-backgrounds-blue);

	p {
		color: var(--colors-gray-700);
		line-height: 1.6;

		@media screen and (max-width: 768px) {
			font-size: 18px;
			line-height: 28px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 20px;
			line-height: 32px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 24px;
			line-height: 40px;
		}
	}

	img {
		max-width: 100%;
		height: auto;
		display: block;
	}
}

.content-section {
	text-align: center;
	margin-bottom: var(--section-spacing-desktop-padding);
	padding: 96px 0;

	@media screen and (max-width: 480px) {
		margin-bottom: var(--section-spacing-mobile-margin);
		padding: 48px 0;
	}

	h2 {
		text-align: center;
		margin: 0 auto 32px;
		color: var(--colors-gray-700);
		font-weight: 700;

		@media screen and (max-width: 768px) {
			font-size: 32px;
			line-height: 40px;
		}

		@media screen and (min-width: 768px) and (max-width: 1920px) {
			font-size: 42px;
			line-height: 56px;
		}

		@media screen and (min-width: 1920px) {
			font-size: 56px;
			line-height: 72px;
		}
	}
}

.content-wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 1376px;
}

.content-card {
	display: flex;
	border-radius: 24px;
	margin: 16px;
	overflow: hidden;

	@media screen and (max-width: 480px) {
		flex-direction: column;
	}
}

.content-text-wrapper {
	background: var(--section-backgrounds-blue);
	flex: 1;
	padding: 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 50%;

	@media screen and (max-width: 480px) {
		max-width: 100%;
		padding: 24px;
	}
}

.content-text {
	text-align: left;
	color: var(--colors-gray-700);
	line-height: 1.6;

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}
}

.content-image {
	flex: 1;
	max-width: 50%;

	@media screen and (max-width: 480px) {
		max-width: 100%;
		height: 300px;
	}

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
/* ═══════════════════════════════════════════════════════════════
   FOOTER - Site Footer with Contact & Emergency Info
   ═══════════════════════════════════════════════════════════════ */
.footer {
	padding: 64px 0 32px;
	background: var(--colors-footer-bg);
	text-align: center;
	animation: fadeIn 0.6s ease backwards;
	animation-delay: 0.3s;

	@media screen and (max-width: 480px) {
		padding: 48px 0 24px;
	}

	@media screen and (max-width: 768px) {
		font-size: 18px;
		line-height: 28px;
	}

	@media screen and (min-width: 768px) and (max-width: 1920px) {
		font-size: 20px;
		line-height: 32px;
	}

	@media screen and (min-width: 1920px) {
		font-size: 24px;
		line-height: 40px;
	}

	.footer-links a {
		text-decoration: none;
		transition: color 0.3s ease;
		margin: 0 0.5rem;

		&:hover {
			text-decoration: underline;
		}
	}

	.footer-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;

		@media screen and (max-width: 768px) {
			grid-template-columns: 1fr;
			gap: 32px;
			margin-bottom: 32px;
		}
	}

	@media screen and (max-width: 768px) {
		.footer-column:first-child {
			text-align: center;
		}
	}

	.footer-logo {
		display: inline-block;
		transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);

		&:hover {
			transform: scale(1.02);
		}

		img {
			height: 100px;
			width: auto;
		}
	}

	.footer-title {
		color: var(--colors-gray-700);
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 16px;
	}

	.footer-address {
		p {
			margin: 8px 0;
			color: var(--colors-gray-600);
		}

		a {
			color: var(--colors-gray-600);
			text-decoration: none;
			transition: color 0.3s ease;

			&:hover {
				color: var(--colors-purple-700);
			}
		}
	}

	.footer-hours {
		margin-top: 16px;

		p {
			margin: 4px 0;
			color: var(--colors-gray-600);
		}
	}

	.footer-emergency-message {
		color: var(--colors-gray-600);
		margin-bottom: 16px;
	}

	/* Enhanced emergency section with visual prominence */
	.footer-emergency-services {
		padding: 20px;
		background: rgba(255, 234, 234, 0.5);
		border-radius: var(--border-radius-default);
		border-left: 3px solid #ff476a;
		margin-top: 8px;

		.emergency-service {
			margin-bottom: 12px;

			&:last-child {
				margin-bottom: 0;
			}

			a {
				display: block;
				color: var(--colors-gray-600);
				text-decoration: none;
				transition: color 0.3s ease;

				&:hover {
					color: var(--colors-gray-800);
				}
			}

			.emergency-phone {
				font-weight: 700;
				color: #d32f2f;
				font-size: 1.1em;
			}
		}
	}

	.footer-bottom {
		border-top: 1px solid var(--colors-gray-200);
		padding-top: 32px;
		margin-top: 32px;
	}

	.footer-links {
		display: flex;
		gap: 24px;
		justify-content: center;

		a {
			color: var(--colors-gray-600);
			text-decoration: none;
			font-size: 14px;
			padding: 8px 16px;
			border-radius: var(--border-radius-default);
			transition: color 0.3s ease, background-color 0.3s ease;

			&:hover {
				color: var(--colors-purple-700);
				background-color: var(--colors-gray-100);
			}
		}

		@media screen and (max-width: 480px) {
			flex-direction: column;
			align-items: center;
			gap: 8px;
		}
	}
}
.intro-sections {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-top: 36px;
	gap: 40px;

	@media screen and (max-width: 480px) {
		gap: 24px;
	}

	.intro-card {
		position: relative;
		width: 784px;
		max-width: 100%;
		border-radius: 32px;
		padding: 32px;
		margin: 16px;

		.intro-card__label {
			position: absolute;
			top: 0;
			border-top-left-radius: 0;
			border-top-right-radius: 24px;
			border-bottom-left-radius: 24px;
			border-bottom-right-radius: 24px;
			font-size: 0.875rem;
			left: 32px;
			padding: 8px 24px;
			z-index: 1;

			@media screen and (max-width: 768px) {
				font-size: 14px;
				line-height: 20px;
			}

			@media screen and (min-width: 768px) and (max-width: 1920px) {
				font-size: 15px;
				line-height: 24px;
			}

			@media screen and (min-width: 1920px) {
				font-size: 16px;
				line-height: 24px;
			}

			@media screen and (max-width: 480px) {
				font-size: 0.75rem;
				padding: 0.375rem 0.75rem;
			}

			@media screen and (min-width: 768px) {
				left: 2rem;
			}
		}

		.intro-card__content {
			padding: 24px;
			text-align: left;

			@media screen and (max-width: 480px) {
				padding: 16px;
			}

			p {
				margin: 0 0 16px 0;
				line-height: 1.6;
				font-size: 15px;
				color: #2d3748;

				@media screen and (max-width: 480px) {
					font-size: 14px;
				}
			}
		}

		&.doctor {
			background: #e3f2fd;

			.intro-card__label {
				background: linear-gradient(to right, #90caf9, #b2dcff);
			}
		}

		&.secretary {
			background: #ffe6ff;

			.intro-card__label {
				background: linear-gradient(to right, #e57ae5, #ffbaff);
			}
		}

		&.med-secretary {
			background: #ffeaea;

			.intro-card__label {
				background: linear-gradient(to right, #ffa8a8, #ffdbdb);
			}
		}

		&.attention {
			background: #fffde0;
			border: 1px #ffae00 solid;

			.intro-card__label {
				background: linear-gradient(to right, #ffd600, #fff614);
			}
		}

		&.important {
			background: #ffeaea;
			border: 1px #ff476a solid;

			.intro-card__label {
				background: linear-gradient(to right, #ff476a, #ffc0cc);
			}
		}

		&.info {
			background: #e5f9ff;
			border: 1px #43a6ec solid;

			.intro-card__label {
				background: linear-gradient(to right, #2dccff, #aeecff);
			}
		}

		@media screen and (max-width: 480px) {
			padding: 24px;
			margin: 12px;
		}

		@media screen and (min-width: 481px) and (max-width: 768px) {
			width: 100%;
			max-width: 600px;
		}
	}
}
.map-section {
	width: 100%;
	height: 880px;
	line-height: 0;
	margin-bottom: 128px;

	@media screen and (max-width: 768px) {
		height: 350px;
	}

	iframe {
		width: 100%;
		height: 100%;
		border: 0;
	}
}
/* ═══════════════════════════════════════════════════════════════
   SECTIONS - Page Section Layouts and Backgrounds
   ═══════════════════════════════════════════════════════════════ */
.section .title {
  padding: 64px 0px;
  text-align: center;
}

.section-category {
  margin-bottom: 96px;
  padding: 96px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* Staggered animation delays for sections */
.section-category:nth-of-type(1) { animation-delay: 0.1s; }
.section-category:nth-of-type(2) { animation-delay: 0.2s; }
.section-category:nth-of-type(3) { animation-delay: 0.3s; }
.section-category:nth-of-type(4) { animation-delay: 0.4s; }
.section-category:nth-of-type(5) { animation-delay: 0.5s; }

.section-category.blue {
  background: #f5fbff;
}
.section-category.purple {
  background: #fff8ff;
}
.section-category.alt {
  background: #fff7f7;
}

@media screen and (max-width: 480px) {
  .section-category {
    margin-bottom: 48px;
    padding: 48px 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .section-category {
    margin-bottom: 72px;
    padding: 72px 0;
  }
}
