/* Services Page Styles */

/* Hero */
.services-hero {
	padding: 8rem 0 3rem 0;
	text-align: center;
}

.services-title {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, var(--primary-yellow), var(--accent-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.service-media {
	margin: 0.75rem 0 0.5rem 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(250, 204, 21, 0.15);
	background: rgba(255,255,255,0.02);
	position: relative;
	aspect-ratio: 16 / 9; /* Consistent media area without stretching */
}

.service-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

.service-card:hover .service-image {
	transform: scale(1.03);
}

.services-subtitle {
	color: var(--text-gray-300);
	max-width: 840px;
	margin: 0 auto;
	font-size: 1.125rem;
}

/* Grid */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: stretch;
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.services-grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2rem;
	}
}

/* Service Card overrides to fit page */
.service-section { position: relative; height: 100%; }

.service-card {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.08));
	border: 1px solid rgba(250, 204, 21, 0.2);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	border-bottom: 1px solid rgba(250, 204, 21, 0.12);
	padding-bottom: 0.75rem;
	margin-bottom: 0.75rem;
}

.service-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--primary-yellow);
}

.service-price {
	color: var(--text-gray-400);
	font-weight: 600;
	white-space: nowrap;
}

.service-desc {
	color: var(--text-gray-300);
	line-height: 1.7;
	min-height: 72px;
}

.service-actions { margin-top: auto; padding-top: 1rem; }

.service-card:hover {
	transform: translateY(-10px) rotate(0.5deg);
	border-color: rgba(250, 204, 21, 0.45);
	box-shadow: 0 20px 40px rgba(250, 204, 21, 0.15);
}

.service-section:nth-child(even) .service-card:hover {
	transform: translateY(-10px) rotate(-0.5deg);
}

/* Why Choose */
.bg-soft {
	background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), rgba(30, 58, 138, 0.05));
}

.section-title {
	font-size: 2rem;
	font-weight: 800;
}

.section-title .accent { color: var(--primary-yellow); }

.section-lead {
	color: var(--text-gray-300);
	max-width: 720px;
	margin: 0.25rem auto 0 auto;
}

.why-list {
	max-width: 880px;
	margin: 2rem auto 0 auto;
	display: grid;
	gap: 0.75rem;
}

.why-list li { color: var(--text-gray-300); }

.why-bullet {
	color: var(--primary-yellow);
	font-weight: 700;
}

/* CTA */
.cta {
	text-align: center;
	background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(250, 204, 21, 0.25);
	border-radius: var(--radius-xl);
	padding: 2rem;
}

.cta-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.25rem;
}

.cta-subtitle { color: var(--text-gray-300); }

.btn-group { justify-content: center; margin-top: 1.25rem; }

/* Scroll/Entrance helpers reuse utilities.css .section-enter */
.service-section, .cta, .why-list li { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.section-enter.visible .service-section,
.section-enter.visible .cta,
.section-enter.visible .why-list li { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
	.services-title { font-size: 2.25rem; }
	.service-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 6rem 0 2rem 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-price {
        font-size: 0.9rem;
    }

    .service-desc {
        min-height: auto;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

