/* ===== General Section Styles ===== */
.section {
	padding: var(--space-20, 5rem) 0;
}

@media (max-width: 768px) {
	.section {
		padding: var(--space-16, 4rem) 0;
	}
}

.container {
	max-width: var(--container-max-width, 1200px);
	margin: 0 auto;
	padding: 0 var(--space-6, 1.5rem);
}

.section-header {
	text-align: center;
	margin-bottom: var(--space-16, 4rem);
}

.section-title {
	font-size: clamp(var(--font-size-3xl, 1.875rem), 5vw, var(--font-size-5xl, 3rem));
	font-weight: var(--font-weight-extrabold, 800);
	color: var(--text-primary, #1e1b29);
	margin-bottom: var(--space-4, 1rem);
}

body.dark-mode .section-title {
	color: var(--color-white, #ffffff);
}

.section-subtitle {
	font-size: var(--font-size-lg, 1.125rem);
	color: var(--text-secondary, #666);
	max-width: 700px;
	margin: 0 auto;
	line-height: var(--line-height-relaxed, 1.75);
}

body.dark-mode .section-subtitle {
	color: var(--gray-400, #9ca3af);
}

.section-gradient-light {
	background: var(--bg-light-lavender, #f5f3ff);
}

body.dark-mode .section-gradient-light {
	background: #1a1625;
}

/* ===== Hero Section ===== */
.hero-section {
	background: linear-gradient(135deg,
			var(--bg-light-lavender, #f5f3ff) 0%,
			var(--bg-light-rose, #fff1f7) 50%,
			var(--bg-light-blue, #f0f9ff) 100%);
	padding: var(--space-24, 6rem) 0;
	position: relative;
	overflow: hidden;
}

body.dark-mode .hero-section {
	background: linear-gradient(135deg,
			#1a1625 0%,
			#1f1620 50%,
			#141a20 100%);
}

.hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out;
}

.hero-title {
	font-size: clamp(var(--font-size-4xl, 2.25rem), 6vw, var(--font-size-7xl, 4.5rem));
	font-weight: var(--font-weight-extrabold, 800);
	background: linear-gradient(135deg, #1e1b29 0%, #c51f5d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: var(--space-6, 1.5rem);
	line-height: 1.2;
	overflow-wrap: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphenate-limit-chars: 6 3 3;
}

body.dark-mode .hero-title {
	background: linear-gradient(135deg, #f5f5f5 0%, #d946a3 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: clamp(var(--font-size-xl, 1.25rem), 3vw, var(--font-size-3xl, 1.875rem));
	color: var(--text-secondary, #666);
	font-weight: var(--font-weight-medium, 500);
}

body.dark-mode .hero-subtitle {
	color: var(--gray-400, #9ca3af);
}

/* ===== Intro Section ===== */
.intro-section {
	background: var(--bg-light, #ffffff);
}

body.dark-mode .intro-section {
	background: var(--bg-dark, #0a0a0a);
}

.intro-text {
	max-width: 900px;
	margin: 0 auto;
	font-size: var(--font-size-lg, 1.125rem);
	line-height: var(--line-height-relaxed, 1.75);
	color: var(--text-secondary, #666);
	text-align: center;
}

body.dark-mode .intro-text {
	color: var(--gray-400, #9ca3af);
}

.intro-text p {
	margin-bottom: var(--space-4, 1rem);
}

.intro-text strong {
	color: var(--primary-color, #c51f5d);
	font-weight: var(--font-weight-semibold, 600);
}

body.dark-mode .intro-text strong {
	color: var(--primary-light, #d946a3);
}

.intro-text em {
	color: var(--text-primary, #1e1b29);
	font-style: italic;
}

body.dark-mode .intro-text em {
	color: var(--color-white, #ffffff);
}

/* ===== Offerings Section ===== */
.offerings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: var(--space-8, 2rem);
}

.offering-card {
	background: linear-gradient(135deg, #ffffff 0%, rgba(248, 247, 255, 0.6) 100%);
	border-radius: var(--radius-2xl, 1rem);
	padding: var(--space-8, 2rem);
	box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
	border: 1px solid rgba(197, 31, 93, 0.08);
	transition: all var(--transition-medium, 0.3s);
	animation: fadeInUp 0.8s ease-out;
	position: relative;
}

body.dark-mode .offering-card {
	background: linear-gradient(135deg, #1e1e1e 0%, rgba(30, 22, 37, 0.6) 100%);
	border-color: rgba(197, 31, 93, 0.15);
}

.offering-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 65px rgba(197, 31, 93, 0.18), 0 15px 35px rgba(138, 43, 226, 0.12);
	border-color: rgba(197, 31, 93, 0.20);
}

body.dark-mode .offering-card:hover {
	box-shadow: 0 30px 65px rgba(197, 31, 93, 0.3), 0 15px 35px rgba(138, 43, 226, 0.2);
	border-color: rgba(197, 31, 93, 0.4);
}

.offering-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color, #c51f5d) 0%, var(--secondary-color, #8a2be2) 100%);
	border-radius: var(--radius-xl, 0.75rem);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white, #ffffff);
	font-size: var(--font-size-3xl, 1.875rem);
	margin-bottom: var(--space-6, 1.5rem);
}

.offering-title {
	font-size: var(--font-size-2xl, 1.5rem);
	font-weight: var(--font-weight-bold, 700);
	color: var(--text-primary, #1e1b29);
	margin-bottom: var(--space-4, 1rem);
}

body.dark-mode .offering-title {
	color: var(--color-white, #ffffff);
}

.offering-text {
	font-size: var(--font-size-base, 1rem);
	color: var(--text-secondary, #666);
	line-height: var(--line-height-relaxed, 1.75);
}

body.dark-mode .offering-text {
	color: var(--gray-400, #9ca3af);
}

.offering-text p {
	margin-bottom: var(--space-3, 0.75rem);
}

.offering-text strong {
	color: var(--primary-color, #c51f5d);
	font-weight: var(--font-weight-semibold, 600);
}

body.dark-mode .offering-text strong {
	color: var(--primary-light, #d946a3);
}

/* ===== Gallery Section ===== */
.gallery-section {
	background: var(--bg-light, #ffffff);
}

body.dark-mode .gallery-section {
	background: var(--bg-dark, #0a0a0a);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: var(--space-6, 1.5rem);
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-xl, 0.75rem);
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: var(--shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
	transition: all var(--transition-medium, 0.3s);
	cursor: pointer;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-xl, 0 20px 25px rgba(0, 0, 0, 0.15));
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-medium, 0.3s);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.hero-section {
		padding: var(--space-16, 4rem) 0;
	}

	.offerings-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: var(--space-4, 1rem);
	}

	.section-header {
		margin-bottom: var(--space-12, 3rem);
	}
}

/* ===== Loading State ===== */
.is-loading {
	opacity: 0.6;
	pointer-events: none;
	position: relative;
}

.is-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border: 4px solid var(--primary-color, #c51f5d);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* ===== Animations ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

/* ===== Offerings Carousel Styles ===== */
.offerings-carousel-container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: visible;
}

.offerings-carousel-wrapper {
	overflow-x: clip;
	overflow-y: visible;
	position: relative;
	margin: 0;
}

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

.offering-carousel-item {
	flex: 0 0 calc(33.333% - 40px);
	margin: 0 20px;
	opacity: 1;
	padding: 1rem 0;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.offering-carousel-item .offering-card {
	height: 100%;
}

/* Carousel Navigation Dots */
.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: var(--space-3);
	margin-top: var(--space-8);
	position: relative;
	z-index: 3;
}

.carousel-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(197, 31, 93, 0.3);
	border: 2px solid rgba(197, 31, 93, 0.5);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.carousel-indicator::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: transparent;
	transition: background 0.4s ease;
}

.carousel-indicator:hover::before {
	background: rgba(197, 31, 93, 0.1);
}

.carousel-indicator.active {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-color: transparent;
	width: 40px;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(197, 31, 93, 0.4);
}

body.dark-mode .carousel-indicator {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .carousel-indicator.active {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-color: transparent;
}

/* Carousel Controls */
.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	z-index: 3;
	pointer-events: none;
	padding: 0 var(--space-4);
}

.carousel-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(197, 31, 93, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: auto;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	position: relative;
}

.carousel-prev {
	margin-left: calc(-50px - var(--space-6));
}

.carousel-next {
	margin-right: calc(-50px - var(--space-6));
}

.carousel-btn:hover {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-color: transparent;
	transform: scale(1.15);
	box-shadow: 0 8px 25px rgba(197, 31, 93, 0.35);
}

.carousel-btn:active {
	transform: scale(1.05);
}

.carousel-btn:hover svg {
	stroke: white;
}

.carousel-btn svg {
	width: 24px;
	height: 24px;
	stroke: var(--primary-color);
	stroke-width: 2.5;
	fill: none;
	transition: stroke 0.3s ease;
}

body.dark-mode .carousel-btn {
	background: rgba(30, 30, 30, 0.95);
	border-color: rgba(197, 31, 93, 0.3);
}

body.dark-mode .carousel-btn svg {
	stroke: var(--primary-light);
}

body.dark-mode .carousel-btn:hover {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body.dark-mode .carousel-btn:hover svg {
	stroke: white;
}

/* Progress indicator */
.carousel-progress {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 4px;
	background: rgba(197, 31, 93, 0.2);
	border-radius: 2px;
	overflow: hidden;
	z-index: 3;
}

.carousel-progress-bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	border-radius: 2px;
	transition: width 0.1s linear;
}

body.dark-mode .carousel-progress {
	background: rgba(255, 255, 255, 0.1);
}

/* Responsive breakpoints for carousel */
@media (max-width: 992px) {
	.offering-carousel-item {
		flex: 0 0 calc(50% - 2rem);
		margin: 0 1rem;
	}

	.carousel-btn {
		display: none;
	}
}

@media (max-width: 768px) {
	.offering-carousel-item {
		flex: 0 0 calc(100% - 1.5rem);
		margin: 0 0.75rem;
	}

	.offerings-carousel-container {
		padding: 2rem 0 3rem 0;
		overflow: hidden;
		max-width: 100vw;
	}

	.offerings-carousel-wrapper {
		padding: 1rem 0;
		overflow: hidden;
		max-width: 100%;
	}

	.offering-card {
		padding: var(--space-6, 1.5rem);
	}

	.carousel-btn {
		display: none;
	}

	.carousel-indicators {
		gap: var(--space-2);
		margin-top: var(--space-6);
	}

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

	.carousel-indicator.active {
		width: 30px;
	}

	.carousel-progress {
		width: 150px;
	}
}

@media (max-width: 576px) {
	.offering-carousel-item {
		flex: 0 0 calc(100% - 1rem);
		margin: 0 0.5rem;
	}

	.offerings-carousel-container {
		padding: 1.5rem 0 2rem 0;
		overflow: hidden;
		max-width: 100vw;
	}

	.offering-card {
		padding: var(--space-5, 1.25rem);
	}

	.offering-icon {
		width: 50px;
		height: 50px;
		font-size: var(--font-size-2xl, 1.5rem);
	}

	.offering-title {
		font-size: var(--font-size-xl, 1.25rem);
	}

	.carousel-btn {
		display: none;
	}

	.carousel-indicator {
		width: 8px;
		height: 8px;
	}

	.carousel-indicator.active {
		width: 24px;
	}
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ============================================== */
/* ===== CTA COMPONENT STYLES ===== */
/* ============================================== */

.service-cta-section {
	padding: var(--space-20, 5rem) 0 var(--space-24, 6rem);
	background: transparent;
	position: relative;
	overflow: hidden;
}

body.dark-mode .service-cta-section {
	background: transparent;
}

.service-cta-section .page-container2 {
	padding: 0 var(--space-8, 2rem);
}

.service-cta-card {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: var(--space-20, 5rem) var(--space-16, 4rem);
	background: linear-gradient(135deg,
			#fef3f9 0%,
			#f5f3ff 25%,
			#f0f9ff 50%,
			#fff1f7 75%,
			#f8f7ff 100%);
	border-radius: var(--radius-3xl, 1.5rem);
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(197, 31, 93, 0.15),
		0 15px 40px rgba(138, 43, 226, 0.12),
		inset 0 2px 4px rgba(255, 255, 255, 0.8);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(197, 31, 93, 0.2);
	z-index: 1;
	animation: fadeInUp 1s ease-out;
}

.service-cta-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg,
			rgba(197, 31, 93, 0.15) 0deg,
			rgba(138, 43, 226, 0.12) 90deg,
			transparent 180deg,
			rgba(197, 31, 93, 0.15) 270deg,
			transparent 360deg);
	animation: ctaSpin 15s linear infinite;
	pointer-events: none;
}

@keyframes ctaSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.service-cta-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%,
			rgba(197, 31, 93, 0.12) 0%,
			rgba(138, 43, 226, 0.08) 30%,
			transparent 60%);
	pointer-events: none;
}

.service-cta-card:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow: 0 40px 100px rgba(197, 31, 93, 0.25),
		0 20px 50px rgba(138, 43, 226, 0.18),
		inset 0 2px 4px rgba(255, 255, 255, 0.9);
	border-color: rgba(197, 31, 93, 0.35);
}

body.dark-mode .service-cta-card {
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	box-shadow: 0 30px 80px rgba(197, 31, 93, 0.35),
		0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: transparent;
}

body.dark-mode .service-cta-card::before {
	background: conic-gradient(from 0deg,
			rgba(255, 255, 255, 0.1) 0deg,
			transparent 90deg,
			transparent 180deg,
			rgba(255, 255, 255, 0.1) 270deg,
			transparent 360deg);
}

body.dark-mode .service-cta-card::after {
	background: radial-gradient(circle at 30% 50%,
			rgba(255, 255, 255, 0.08) 0%,
			transparent 60%);
}

body.dark-mode .service-cta-card:hover {
	box-shadow: 0 40px 100px rgba(197, 31, 93, 0.45),
		0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #1e1b29;
}

body.dark-mode .cta-content {
	color: var(--color-white, #ffffff);
}

.cta-title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: var(--font-weight-black, 900);
	margin-bottom: var(--space-6, 1.5rem);
	letter-spacing: -1.5px;
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: var(--line-height-tight, 1.2);
	position: relative;
	z-index: 1;
}

body.dark-mode .cta-title {
	background: linear-gradient(135deg, #ffffff 0%, #fde1f0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta-description {
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	margin-bottom: var(--space-10, 2.5rem);
	opacity: 0.85;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: var(--line-height-relaxed, 1.7);
	color: #4a4458;
	position: relative;
	z-index: 1;
}

body.dark-mode .cta-description {
	color: rgba(255, 255, 255, 0.95);
	opacity: 1;
}

.cta-button-link {
	text-decoration: none;
	display: inline-block;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3, 0.75rem);
	padding: var(--space-6, 1.5rem) var(--space-12, 3rem);
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	font-weight: var(--font-weight-bold, 700);
	font-family: inherit;
	color: var(--primary-color, #c51f5d);
	background: linear-gradient(135deg, #ffffff 0%, rgba(248, 247, 255, 0.9) 100%);
	border: 2px solid rgba(197, 31, 93, 0.15);
	border-radius: var(--radius-full, 9999px);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 5px 15px rgba(197, 31, 93, 0.12), 0 2px 8px rgba(138, 43, 226, 0.08);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(197, 31, 93, 0.1), transparent);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	border-radius: 50%;
}

.cta-button:hover::before {
	width: 300px;
	height: 300px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(197, 31, 93, 0.18), 0 5px 15px rgba(138, 43, 226, 0.12);
	background: linear-gradient(135deg, #ffffff 0%, rgba(254, 243, 249, 0.9) 100%);
	border-color: rgba(197, 31, 93, 0.25);
}

body.dark-mode .cta-button {
	background: #fff;
	color: var(--primary-color, #c51f5d);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	border-color: transparent;
}

body.dark-mode .cta-button::before {
	background: radial-gradient(circle, rgba(197, 31, 93, 0.15), transparent);
}

body.dark-mode .cta-button:hover {
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
	border-color: transparent;
}

.cta-button:active {
	transform: translateY(-3px) scale(1.02);
}

.cta-button:focus-visible {
	outline: 3px solid var(--color-white, #ffffff);
	outline-offset: 3px;
}

.cta-icon {
	width: 1.5rem;
	height: 1.5rem;
	transition: transform var(--transition-base, 200ms);
}

.cta-button:hover .cta-icon {
	transform: translateX(5px);
}


.cta-decorative {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	opacity: 0.3;
}

.cta-circle {
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	animation: circleFloat 20s ease-in-out infinite;
}

.cta-circle-1 {
	width: 200px;
	height: 200px;
	top: -50px;
	right: -50px;
	animation-delay: 0s;
}

.cta-circle-2 {
	width: 150px;
	height: 150px;
	bottom: -30px;
	left: 10%;
	animation-delay: 7s;
}

.cta-circle-3 {
	width: 180px;
	height: 180px;
	top: 50%;
	left: -60px;
	animation-delay: 14s;
}

@keyframes circleFloat {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}

	50% {
		transform: translate(20px, -20px) scale(1.1);
		opacity: 0.5;
	}
}

@media (max-width: 1024px) {
	.service-cta-card {
		padding: var(--space-16, 4rem) var(--space-12, 3rem);
	}

	.cta-circle-1 {
		width: 150px;
		height: 150px;
	}

	.cta-circle-2 {
		width: 120px;
		height: 120px;
	}

	.cta-circle-3 {
		width: 140px;
		height: 140px;
	}
}

@media (max-width: 768px) {
	.service-cta-section {
		padding: var(--space-16, 4rem) 0 var(--space-20, 5rem);
	}

	.service-cta-card {
		padding: var(--space-12, 3rem) var(--space-8, 2rem);
	}

	.cta-title {
		margin-bottom: var(--space-5, 1.25rem);
	}

	.cta-description {
		margin-bottom: var(--space-8, 2rem);
	}

	.cta-button {
		padding: var(--space-5, 1.25rem) var(--space-10, 2.5rem);
		font-size: 1.1rem;
	}

	.cta-circle {
		border-width: 1.5px;
	}

	.cta-circle-1 {
		width: 120px;
		height: 120px;
	}

	.cta-circle-2 {
		width: 90px;
		height: 90px;
	}

	.cta-circle-3 {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 576px) {
	.service-cta-card {
		padding: var(--space-10, 2.5rem) var(--space-6, 1.5rem);
	}

	.cta-button {
		width: 100%;
		max-width: 320px;
	}
}

/* ============================================== */
/* ===== REQUEST FORM COMPONENT STYLES ===== */
/* ============================================== */

.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	animation: fadeIn 0.3s ease-out;
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

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

.modal-content {
	background: linear-gradient(135deg, #ffffff 0%, rgba(248, 247, 255, 0.95) 100%);
	margin: auto;
	padding: 0;
	border-radius: var(--radius-3xl, 1.5rem);
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(197, 31, 93, 0.1);
	position: relative;
	animation: slideIn 0.3s ease-out;
}

body.dark-mode .modal-content {
	background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(197, 31, 93, 0.3);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 2.5rem;
	border-bottom: 2px solid rgba(197, 31, 93, 0.1);
	background: linear-gradient(135deg,
			rgba(197, 31, 93, 0.05) 0%,
			rgba(138, 43, 226, 0.05) 100%);
	border-radius: var(--radius-3xl, 1.5rem) var(--radius-3xl, 1.5rem) 0 0;
}

body.dark-mode .modal-header {
	border-bottom-color: rgba(197, 31, 93, 0.3);
	background: linear-gradient(135deg,
			rgba(197, 31, 93, 0.15) 0%,
			rgba(138, 43, 226, 0.15) 100%);
}

.modal-header h2 {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: var(--font-weight-black, 900);
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

body.dark-mode .modal-header h2 {
	background: linear-gradient(135deg, #ff6b9d 0%, #a855f7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: var(--text-secondary, #64748b);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	padding: 0;
}

.modal-close:hover {
	background: rgba(197, 31, 93, 0.1);
	color: var(--primary-color, #c51f5d);
	transform: rotate(90deg);
}

body.dark-mode .modal-close {
	color: var(--text-light-secondary, #cbd5e1);
}

body.dark-mode .modal-close:hover {
	background: rgba(197, 31, 93, 0.2);
	color: var(--primary-light, #ff6b9d);
}

.modal-close svg {
	width: 24px;
	height: 24px;
}

.service-form {
	padding: 2rem 2.5rem;
}

.form-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(197, 31, 93, 0.1);
}

.form-section:last-of-type {
	border-bottom: none;
}

body.dark-mode .form-section {
	border-bottom-color: rgba(197, 31, 93, 0.2);
}

.form-section h3 {
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: var(--font-weight-bold, 700);
	color: var(--primary-color, #c51f5d);
	margin: 0 0 1.5rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(197, 31, 93, 0.2);
	display: inline-block;
}

body.dark-mode .form-section h3 {
	color: var(--primary-light, #ff6b9d);
	border-bottom-color: rgba(197, 31, 93, 0.3);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-row:last-child {
	margin-bottom: 0;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	font-size: 0.95rem;
	font-weight: var(--font-weight-semibold, 600);
	color: var(--text-primary, #1e293b);
}

body.dark-mode .form-group label {
	color: var(--text-light, #f5f5f5);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	border: 2px solid rgba(197, 31, 93, 0.2);
	border-radius: var(--radius-lg, 0.75rem);
	background: #ffffff;
	color: var(--text-primary, #1e293b);
	transition: all 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
	background: #1a1a1a;
	color: var(--text-light, #f5f5f5);
	border-color: rgba(197, 31, 93, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color, #c51f5d);
	box-shadow: 0 0 0 3px rgba(197, 31, 93, 0.1);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
	border-color: var(--primary-light, #ff6b9d);
	box-shadow: 0 0 0 3px rgba(197, 31, 93, 0.2);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
	border-color: #dc2626;
}

.form-group input[type="date"] {
	cursor: pointer;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 2px solid rgba(197, 31, 93, 0.1);
}

body.dark-mode .form-actions {
	border-top-color: rgba(197, 31, 93, 0.2);
}

.btn-primary,
.btn-secondary {
	padding: 0.875rem 2rem;
	font-size: 1.05rem;
	font-weight: var(--font-weight-bold, 700);
	font-family: inherit;
	border: none;
	border-radius: var(--radius-full, 9999px);
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-primary {
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(197, 31, 93, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(197, 31, 93, 0.4);
}

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

.btn-secondary {
	background: transparent;
	color: var(--text-secondary, #64748b);
	border: 2px solid rgba(197, 31, 93, 0.2);
}

.btn-secondary:hover {
	background: rgba(197, 31, 93, 0.05);
	color: var(--primary-color, #c51f5d);
	border-color: var(--primary-color, #c51f5d);
}

body.dark-mode .btn-secondary {
	color: var(--text-light-secondary, #cbd5e1);
	border-color: rgba(197, 31, 93, 0.3);
}

body.dark-mode .btn-secondary:hover {
	background: rgba(197, 31, 93, 0.15);
	color: var(--primary-light, #ff6b9d);
	border-color: var(--primary-light, #ff6b9d);
}

/* Responsive Design */
@media (max-width: 768px) {
	.modal.show {
		padding: 1rem 0.5rem;
	}

	.modal-content {
		max-height: 95vh;
	}

	.modal-header {
		padding: 1.5rem 1.5rem;
	}

	.service-form {
		padding: 1.5rem 1.5rem;
	}

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

	.form-section {
		margin-bottom: 2rem;
		padding-bottom: 1.5rem;
	}

	.form-actions {
		flex-direction: column-reverse;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.modal-header h2 {
		font-size: 1.25rem;
	}

	.modal-close {
		width: 35px;
		height: 35px;
	}

	.modal-close svg {
		width: 20px;
		height: 20px;
	}
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
	width: 8px;
}

.modal-content::-webkit-scrollbar-track {
	background: rgba(197, 31, 93, 0.05);
	border-radius: 0 var(--radius-3xl, 1.5rem) var(--radius-3xl, 1.5rem) 0;
}

.modal-content::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #c51f5d 0%, #8a2be2 100%);
	border-radius: var(--radius-full, 9999px);
}

.modal-content::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #a01849 0%, #6b22b3 100%);
}

body.dark-mode .modal-content::-webkit-scrollbar-track {
	background: rgba(197, 31, 93, 0.1);
}