*,
*::before,
*::after {
	box-sizing: border-box;
}
body {
	overflow-x: hidden;
}

/* ── Fonts ───────────────────────────────────── */
.font-serif {
	font-family: "Playfair Display", serif;
}
.font-sans {
	font-family: "Lato", sans-serif;
}

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: #f7f4ee;
}
::-webkit-scrollbar-thumb {
	background: rgba(26, 58, 92, 0.35);
	border-radius: 3px;
}

/* ── Selection ───────────────────────────────── */
::selection {
	background: rgba(200, 169, 99, 0.3);
	color: #0d1f35;
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideLeft {
	from {
		opacity: 0;
		transform: translateX(-36px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes slideRight {
	from {
		opacity: 0;
		transform: translateX(36px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes pulse-gold {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(200, 169, 99, 0);
	}
	50% {
		box-shadow: 0 0 0 6px rgba(200, 169, 99, 0.2);
	}
}

.anim-fade-up {
	animation: fadeUp 0.7s ease-out both;
}
.anim-slide-l {
	animation: slideLeft 0.7s ease-out both;
}
.anim-slide-r {
	animation: slideRight 0.7s ease-out both;
}

.delay-150 {
	animation-delay: 0.15s;
}
.delay-300 {
	animation-delay: 0.3s;
}
.delay-450 {
	animation-delay: 0.45s;
}

/* ── Navbar ──────────────────────────────────── */
#navbar {
	transition: all 0.3s ease;
}
#navbar.scrolled {
	background: rgba(13, 31, 53, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(200, 169, 99, 0.2);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* ── Hamburger ───────────────────────────────── */
.ham-line {
	display: block;
	width: 22px;
	height: 2px;
	background: #c8a963;
	border-radius: 1px;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
#hamburger.open .ham-line:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
#hamburger.open .ham-line:nth-child(2) {
	opacity: 0;
}
#hamburger.open .ham-line:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ── Decorative gold divider line ────────────── */
.gold-rule {
	width: 56px;
	height: 2px;
	background: linear-gradient(to right, #c8a963, #e8c97a);
}
.gold-rule-center {
	margin-left: auto;
	margin-right: auto;
}

/* ── Classic section tag ─────────────────────── */
.classic-tag {
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #c8a963;
}

/* ── Service cards (classic border + hover) ───── */
.service-card-cl {
	background: #ffffff;
	border: 1px solid #e5dfd5;
	border-radius: 4px;
	padding: 32px 28px;
	transition:
		border-color 0.3s,
		box-shadow 0.3s,
		transform 0.3s;
	position: relative;
}
.service-card-cl::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, #c8a963, #e8c97a);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.service-card-cl:hover {
	border-color: #c8a963;
	box-shadow: 0 8px 32px rgba(13, 31, 53, 0.1);
	transform: translateY(-3px);
}
.service-card-cl:hover::after {
	transform: scaleX(1);
}

/* ── Team cards ──────────────────────────────── */
.team-card-cl {
	background: #fff;
	border: 1px solid #e5dfd5;
	border-radius: 4px;
	text-align: center;
	padding: 40px 28px 32px;
	transition:
		border-color 0.3s,
		box-shadow 0.3s,
		transform 0.3s;
}
.team-card-cl:hover {
	border-color: #c8a963;
	box-shadow: 0 12px 40px rgba(13, 31, 53, 0.1);
	transform: translateY(-4px);
}

/* ── Testimonial cards ───────────────────────── */
.testi-card-cl {
	background: #ffffff;
	border: 1px solid #e5dfd5;
	border-radius: 4px;
	padding: 36px 32px;
	height: 100%;
}

/* ── Trust badges ────────────────────────────── */
.trust-badge-cl {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 28px;
	background: #ffffff;
	border: 1px solid #e5dfd5;
	border-radius: 4px;
	transition:
		border-color 0.3s,
		box-shadow 0.2s,
		transform 0.2s;
}
.trust-badge-cl:hover {
	border-color: #c8a963;
	box-shadow: 0 4px 16px rgba(200, 169, 99, 0.15);
	transform: translateY(-2px);
}

/* ── Form inputs ─────────────────────────────── */
.form-inp-cl {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	padding: 13px 16px;
	font-size: 0.875rem;
	font-family: "Lato", sans-serif;
	color: #fff;
	outline: none;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
}
.form-inp-cl::placeholder {
	color: rgba(255, 255, 255, 0.35);
}
.form-inp-cl:focus {
	border-color: rgba(200, 169, 99, 0.7);
	box-shadow: 0 0 0 3px rgba(200, 169, 99, 0.12);
}

/* ── Primary button ──────────────────────────── */
.btn-primary-cl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #c8a963;
	color: #0d1f35;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 14px 32px;
	border-radius: 3px;
	border: 2px solid #c8a963;
	transition:
		background 0.2s,
		color 0.2s,
		transform 0.2s;
	cursor: pointer;
}
.btn-primary-cl:hover {
	background: #b8963c;
	border-color: #b8963c;
	transform: translateY(-1px);
}

/* ── Outline button ──────────────────────────── */
.btn-outline-cl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: transparent;
	color: #ffffff;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 14px 32px;
	border-radius: 3px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	transition:
		border-color 0.2s,
		background 0.2s,
		transform 0.2s;
	cursor: pointer;
}
.btn-outline-cl:hover {
	border-color: #c8a963;
	color: #c8a963;
	transform: translateY(-1px);
}

/* ── Swiper overrides ────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
	color: #c8a963 !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 16px !important;
}
.swiper-pagination-bullet {
	background: rgba(200, 169, 99, 0.4) !important;
	opacity: 1 !important;
}
.swiper-pagination-bullet-active {
	background: #c8a963 !important;
}

.cases-swiper-cl {
	overflow: visible !important;
}
.cases-outer-cl {
	overflow: hidden;
}
.testi-swiper-cl {
	overflow: visible !important;
}

/* ── Process step ────────────────────────────── */
.process-step-cl {
	text-align: center;
	position: relative;
}
.process-icon-cl {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e5dfd5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
	transition:
		border-color 0.3s,
		box-shadow 0.3s;
}
.process-icon-cl:hover {
	border-color: #c8a963;
	box-shadow: 0 0 0 6px rgba(200, 169, 99, 0.1);
}

/* ── Stats number ────────────────────────────── */
.stat-num-cl {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: 3.5rem;
	color: #c8a963;
	line-height: 1;
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings:
		"lnum" 1,
		"tnum" 1;
}
@media (min-width: 768px) {
	.stat-num-cl {
		font-size: 4.5rem;
	}
}

/* ── Autofill ────────────────────────────────── */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px rgba(13, 31, 53, 0.9) inset !important;
	-webkit-text-fill-color: #fff !important;
}

/* ── Mobile process left border ──────────────── */
@media (max-width: 767px) {
	.process-mobile {
		position: relative;
		padding-left: 2.5rem;
	}
	.process-mobile::before {
		content: "";
		position: absolute;
		left: 0.6rem;
		top: 1rem;
		bottom: 1rem;
		width: 1px;
		background: linear-gradient(to bottom, #c8a963, rgba(200, 169, 99, 0.1));
	}
}

/* ── Ornamental divider ──────────────────────── */
.ornament {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #c8a963;
}
.ornament::before,
.ornament::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #c8a963;
	opacity: 0.4;
}
