/* professional.css — FINAL CLEAN VERSION */

:root {
	--pf-bg: #060505;
	--pf-contrast: #f3efe8;
	--pf-muted: #b9b0a6;
	--pf-accent: #caa24a;
	--pf-deep: #0b0b0b;
}

/* Base */
body {
	background: var(--pf-bg) !important;
	color: var(--pf-contrast) !important;
}

/* ===============================
   HERO SECTION
================================= */

.service-hero-dark {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 120px 20px;
	background-size: cover;
	background-position: center;
}

/* WIDER CONTAINER */
.service-hero-dark .container {
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: center;
	/* 🔥 CENTER EVERYTHING */

	gap: 80px;
	padding: 0 60px;
}

/* CONTENT (NO MORE THIN LOOK) */
.service-hero-content {
	flex: 1.3;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	padding: 50px;
	border-radius: 16px;
	backdrop-filter: blur(6px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

	animation: fadeSlideUp 0.8s ease forwards;
	opacity: 0;
	flex: 1;
	max-width: 800px;
	/* keeps it wide but controlled */
	margin: 0 auto;
	/* 🔥 centers the content block */
}

/* TEXT */
.service-hero-content h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}

.service-subtitle {
	color: var(--pf-accent);
	text-transform: uppercase;
	letter-spacing: 0.36em;
	font-size: 0.78rem;
	margin-bottom: 14px;
}

.hero-underline {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--pf-accent), rgba(202, 162, 74, 0.6));
	margin: 12px 0 22px;
}

.lead {
	color: var(--pf-muted);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 28px;
}

/* ===============================
   SERVICE LIST (FIXED GRID)
================================= */

.service-section-title {
	color: var(--pf-accent);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.78rem;
	margin-bottom: 18px;
}

.service-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;

	/* FIXED */
	grid-template-columns: repeat(2, minmax(300px, 1fr));
	gap: 20px 80px;
}

/* CARD STYLE */
.service-list li {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	border-radius: 12px;

	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.06);

	transition: all 0.35s ease;
	transform: translateY(0);

	opacity: 0;
	animation: fadeSlideUp 0.6s ease forwards;
}

/* HOVER */
.service-list li:hover {
	transform: translateY(-6px) scale(1.02);
	background: rgba(202, 162, 74, 0.08);
	border: 1px solid rgba(202, 162, 74, 0.4);
	box-shadow: 0 10px 30px rgba(202, 162, 74, 0.15);
}

/* ICON */
.service-list .icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(202, 162, 74, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
}

.service-list li:hover .icon {
	background: var(--pf-accent);
	color: #0b0b0b;
	transform: rotate(6deg) scale(1.1);
}

.service-list span {
	color: var(--pf-contrast);
}

/* ===============================
   BUTTONS
================================= */

.actions {
	margin-top: 28px;
	display: flex;
	gap: 20px;
	align-items: center;

	animation: fadeSlideUp 0.8s ease forwards;
	animation-delay: 1s;
	opacity: 0;
}

.request-btn {
	background: var(--pf-accent);
	border: 0;
	color: #0b0b0b;
	padding: 14px 30px;
	border-radius: 6px;
	font-weight: 600;
}

.request-btn:hover {
	opacity: 0.95;
}

/* ===============================
   MEDIA
================================= */

.service-hero-media {
	flex: 1;
	min-height: 600px;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
	transition: all 0.4s ease;
}

.service-hero-media:hover {
	transform: scale(1.02);
}

/* ===============================
   FOOTER
================================= */

.site-footer {
	margin-top: 72px;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width: 900px) {
	.service-hero-dark .container {
		flex-direction: column;
		padding: 0 20px;
	}

	.service-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.service-hero-content h1 {
		font-size: 32px;
	}

	.service-hero-media {
		width: 100%;
		min-height: 300px;
	}
}

/* ===============================
   ANIMATIONS
================================= */

@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* stagger animation */
.service-list li:nth-child(1) {
	animation-delay: 0.4s;
}

.service-list li:nth-child(2) {
	animation-delay: 0.5s;
}

.service-list li:nth-child(3) {
	animation-delay: 0.6s;
}

.service-list li:nth-child(4) {
	animation-delay: 0.7s;
}

.service-list li:nth-child(5) {
	animation-delay: 0.8s;
}

.service-list li:nth-child(6) {
	animation-delay: 0.9s;
}