/* =============================================
   IP Singh & Associates — Main Stylesheet
   Premium Taxation & Legal Consultancy
   ============================================= */

/* ------- Google Fonts imported via HTML ------- */

:root {
	--navy: #1b2a4a;
	--navy-dark: #0f1b33;
	--navy-mid: #243354;
	--gold: #c9a155;
	--gold-light: #e8c87a;
	--gold-dark: #a8822e;
	--cream: #f8f5ef;
	--white: #ffffff;
	--text: #3d3d3d;
	--text-light: #6b7280;
	--border: #e4ddd0;
	--shadow: 0 8px 40px rgba(27, 42, 74, 0.12);
	--shadow-lg: 0 20px 60px rgba(27, 42, 74, 0.18);
	--radius: 6px;
	--radius-lg: 12px;
	--transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family: "Poppins", sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.7;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
ul {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.section-pad {
	padding: 90px 0;
}
.section-pad-sm {
	padding: 70px 0;
}

/* ---- Preloader ---- */
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--navy-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		opacity 0.6s ease,
		visibility 0.6s ease;
}
#preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}
.preloader-inner {
	text-align: center;
}
.preloader-logo {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: var(--gold);
	letter-spacing: 2px;
	margin-bottom: 20px;
}
.preloader-spinner {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(201, 161, 85, 0.25);
	border-top-color: var(--gold);
	border-radius: 50%;
	animation: spin 0.9s linear infinite;
	margin: 0 auto;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ---- Top Bar ---- */
#top-bar {
	background: var(--navy-dark);
	padding: 8px 0;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	border-bottom: 1px solid rgba(201, 161, 85, 0.2);
}
.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.top-bar-left,
.top-bar-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.top-bar-left a,
.top-bar-right a {
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	gap: 6px;
}
.top-bar-left a:hover,
.top-bar-right a:hover {
	color: var(--gold);
}
.top-bar-left i,
.top-bar-right i {
	color: var(--gold);
	font-size: 0.8rem;
}
.top-bar-social {
	display: flex;
	gap: 12px;
}
.top-bar-social a {
	width: 26px;
	height: 26px;
	border: 1px solid rgba(201, 161, 85, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.6);
}
.top-bar-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--white);
}

/* ---- Header / Navbar ---- */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	transition: var(--transition);
}
#header.top-offset {
	top: 41px;
}
#header.scrolled {
	top: 0;
	background: var(--navy-dark) !important;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.navbar {
	background: transparent;
	padding: 18px 0;
	transition: var(--transition);
}
.navbar.scrolled-nav {
	padding: 12px 0;
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-logo .logo-icon {
	width: 44px;
	height: 44px;
	background: var(--gold);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--navy-dark);
}
.nav-logo .logo-text {
	line-height: 1.2;
}
.nav-logo .logo-name {
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--white);
	display: block;
}
.nav-logo .logo-tagline {
	font-size: 0.68rem;
	color: var(--gold);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: block;
}
.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav-menu > li {
	position: relative;
}
.nav-menu > li > a {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.88rem;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: var(--radius);
	display: block;
	letter-spacing: 0.3px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
	color: var(--gold);
}
.nav-menu > li.has-dropdown > a::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 5px;
	font-size: 0.75rem;
}
.dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: var(--white);
	border-top: 3px solid var(--gold);
	box-shadow: var(--shadow);
	border-radius: 0 0 var(--radius) var(--radius);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 100;
}
.nav-menu > li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown li a {
	display: block;
	padding: 10px 18px;
	font-size: 0.85rem;
	color: var(--text);
	border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a {
	border-bottom: none;
}
.dropdown li a:hover {
	background: var(--cream);
	color: var(--gold);
	padding-left: 24px;
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}
.btn-consult {
	background: var(--gold);
	color: var(--navy-dark) !important;
	padding: 10px 22px !important;
	border-radius: var(--radius) !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	letter-spacing: 0.5px;
}
.btn-consult:hover {
	background: var(--gold-light) !important;
	transform: translateY(-2px);
	color: var(--navy-dark) !important;
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
#hero {
	min-height: 100vh;
	background:
		linear-gradient(
			135deg,
			rgba(10, 18, 38, 0.88) 0%,
			rgba(27, 42, 74, 0.82) 55%,
			rgba(44, 62, 107, 0.78) 100%
		),
		url("../img/bg-hero.jpg") center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 100px;
}
.hero-bg-pattern {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 20% 50%,
			rgba(201, 161, 85, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(201, 161, 85, 0.06) 0%,
			transparent 40%
		);
	pointer-events: none;
}
.hero-lines {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.hero-lines::before {
	content: "";
	position: absolute;
	right: -100px;
	top: -100px;
	width: 600px;
	height: 600px;
	border: 1px solid rgba(201, 161, 85, 0.1);
	border-radius: 50%;
}
.hero-lines::after {
	content: "";
	position: absolute;
	right: -200px;
	top: -200px;
	width: 900px;
	height: 900px;
	border: 1px solid rgba(201, 161, 85, 0.06);
	border-radius: 50%;
}
.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
	width: 100%;
}
.hero-content {
	padding: 40px 0;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(201, 161, 85, 0.12);
	border: 1px solid rgba(201, 161, 85, 0.3);
	color: var(--gold-light);
	padding: 7px 16px;
	border-radius: 30px;
	font-size: 0.78rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.hero-badge i {
	font-size: 0.7rem;
}
.hero-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.22;
	margin-bottom: 20px;
}
.hero-title span {
	color: var(--gold);
}
.hero-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 500px;
	margin-bottom: 36px;
	line-height: 1.8;
}
.hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}
* .btn-primary {
	background: var(--gold);
	color: var(--navy-dark);
	padding: 14px 30px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
	box-shadow: 0 4px 20px rgba(201, 161, 85, 0.35);
}
.btn-primary:hover {
	background: var(--gold-light);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(201, 161, 85, 0.45);
	color: var(--navy-dark);
}
.btn-outline {
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: var(--white);
	padding: 12px 28px;
	border-radius: var(--radius);
	font-weight: 500;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}
.btn-outline:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-3px);
}
.hero-mini-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}
.hero-stat {
	border-left: 2px solid var(--gold);
	padding-left: 14px;
}
.hero-stat .num {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold);
	display: block;
	line-height: 1;
}
.hero-stat .lbl {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.5px;
	display: block;
	margin-top: 3px;
}
/* Hero right side - visual card */
.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-card-main {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 32px;
	width: 100%;
	max-width: 400px;
	position: relative;
}
.hero-card-main::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: var(--radius-lg);
	background: linear-gradient(
		135deg,
		rgba(201, 161, 85, 0.3),
		transparent 60%
	);
	z-index: -1;
}
.hero-card-top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-card-avatar {
	width: 56px;
	height: 56px;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--navy-dark);
}
.hero-card-title {
	color: var(--white);
	font-weight: 600;
	font-size: 1rem;
}
.hero-card-sub {
	color: var(--gold-light);
	font-size: 0.78rem;
}
.hero-services-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hero-service-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
}
.hero-service-item i {
	width: 28px;
	height: 28px;
	background: rgba(201, 161, 85, 0.15);
	border: 1px solid rgba(201, 161, 85, 0.25);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: var(--gold);
	flex-shrink: 0;
}
.hero-floating-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: var(--radius-lg);
	padding: 16px 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(201, 161, 85, 0.4);
	animation: float 3s ease-in-out infinite;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}
.hero-floating-badge .badge-num {
	font-family: "Playfair Display", serif;
	font-size: 1.6rem;
	font-weight: 700;
	display: block;
	line-height: 1;
}
.hero-floating-badge .badge-txt {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.hero-scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.72rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	z-index: 3;
	cursor: pointer;
}
.hero-scroll .scroll-dot {
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}
.hero-scroll .scroll-dot::after {
	content: "";
	width: 4px;
	height: 8px;
	background: var(--gold);
	border-radius: 2px;
	animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(16px);
		opacity: 0;
	}
}

/* ---- Section Labels / Typography ---- */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}
.section-label::before {
	content: "";
	width: 32px;
	height: 2px;
	background: var(--gold);
	display: block;
}
.section-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.28;
	margin-bottom: 16px;
}
.section-title span {
	color: var(--gold);
}
.section-title.light {
	color: var(--white);
}
.section-desc {
	font-size: 1rem;
	color: var(--text-light);
	max-width: 560px;
	line-height: 1.8;
}
.section-desc.light {
	color: rgba(255, 255, 255, 0.7);
}
.text-center {
	text-align: center;
}
.text-center .section-desc {
	margin: 0 auto;
}
.text-center .section-label {
	justify-content: center;
}
.text-center .section-label::before {
	display: none;
}
.text-center .section-label::after {
	content: "";
	width: 32px;
	height: 2px;
	background: var(--gold);
	display: block;
}

/* ---- Divider ---- */
.gold-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 14px 0 20px;
}
.gold-divider .line {
	flex: 1;
	height: 1px;
	background: var(--border);
}
.gold-divider .dot {
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
}
.text-center .gold-divider {
	justify-content: center;
}
.text-center .gold-divider .line {
	max-width: 60px;
}

/* ---- Marquee Strip ---- */
#marquee-strip {
	background: var(--gold);
	padding: 12px 0;
	overflow: hidden;
	white-space: nowrap;
}
.marquee-track {
	display: inline-flex;
	animation: marquee 35s linear infinite;
}
.marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--navy-dark);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 0 30px;
	text-transform: uppercase;
}
.marquee-item i {
	font-size: 0.9rem;
}
.marquee-item .sep {
	width: 5px;
	height: 5px;
	background: var(--navy-dark);
	border-radius: 50%;
	opacity: 0.4;
	margin: 0 6px;
}
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ---- About ---- */
#about {
	background: var(--white);
}
.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}
.about-img-wrap {
	position: relative;
}
.about-img-main {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.about-img-accent {
	position: absolute;
	bottom: -24px;
	right: -24px;
	width: 220px;
	height: 200px;
	object-fit: cover;
	border-radius: var(--radius);
	border: 6px solid var(--white);
	box-shadow: var(--shadow);
}
.about-exp-badge {
	position: absolute;
	top: 24px;
	left: -24px;
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius);
	padding: 20px 22px;
	text-align: center;
	box-shadow: var(--shadow);
}
.about-exp-badge .exp-num {
	font-family: "Playfair Display", serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--gold);
	display: block;
	line-height: 1;
}
.about-exp-badge .exp-txt {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.5px;
	display: block;
	margin-top: 4px;
}
.about-content .section-desc {
	max-width: 100%;
	margin-bottom: 24px;
}
.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 28px 0;
}
.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.about-feature i {
	width: 32px;
	height: 32px;
	background: rgba(201, 161, 85, 0.12);
	border: 1px solid rgba(201, 161, 85, 0.25);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 0.85rem;
	flex-shrink: 0;
	margin-top: 2px;
}
.about-feature span {
	font-size: 0.88rem;
	color: var(--text);
	line-height: 1.5;
}
.about-bottom {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--border);
}
.about-sign .sign-name {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: var(--navy);
	font-style: italic;
}
.about-sign .sign-role {
	font-size: 0.78rem;
	color: var(--gold);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 2px;
}
.about-divider {
	width: 1px;
	height: 50px;
	background: var(--border);
}
.about-cert {
	display: flex;
	align-items: center;
	gap: 10px;
}
.about-cert i {
	font-size: 1.5rem;
	color: var(--gold);
}
.about-cert p {
	font-size: 0.82rem;
	color: var(--text-light);
}
.about-cert strong {
	display: block;
	color: var(--navy);
	font-size: 0.88rem;
}

/* ---- Services ---- */
#services {
	background: var(--cream);
}
.services-header {
	margin-bottom: 50px;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.service-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 26px;
	border: 1px solid var(--border);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	cursor: default;
}
.service-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}
.service-card:hover::before {
	transform: scaleX(1);
}
.service-icon {
	width: 60px;
	height: 60px;
	background: rgba(201, 161, 85, 0.1);
	border: 1px solid rgba(201, 161, 85, 0.2);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--gold);
	margin-bottom: 20px;
	transition: var(--transition);
}
.service-card:hover .service-icon {
	background: var(--gold);
	color: var(--navy-dark);
	border-color: var(--gold);
}
.service-card h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 10px;
	line-height: 1.35;
}
.service-card p {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 16px;
}
.service-link {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gold-dark);
	letter-spacing: 0.3px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.service-link i {
	font-size: 0.7rem;
	transition: transform 0.2s;
}
.service-card:hover .service-link i {
	transform: translateX(4px);
}
.service-card:hover .service-link {
	color: var(--gold);
}

/* ---- Stats ---- */
#stats {
	background: var(--navy-dark);
	position: relative;
	overflow: hidden;
}
.stats-bg {
	position: absolute;
	inset: 0;
	background: url("../img/bg-stats.jpg") center/cover no-repeat;
	opacity: 0.12;
}
.stats-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.stat-item {
	text-align: center;
	padding: 48px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	position: relative;
}
.stat-item:last-child {
	border-right: none;
}
.stat-icon {
	font-size: 2rem;
	color: var(--gold);
	opacity: 0.4;
	margin-bottom: 16px;
}
.stat-num {
	font-family: "Playfair Display", serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
	display: block;
}
.stat-num span.counter {
	color: var(--white);
}
.stat-plus {
	color: var(--gold);
	font-size: 1.6rem;
	font-weight: 700;
	vertical-align: top;
	line-height: 1.4;
}
.stat-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.5px;
	margin-top: 8px;
	display: block;
}
.stat-divider {
	width: 40px;
	height: 2px;
	background: var(--gold);
	margin: 10px auto 0;
	opacity: 0.4;
}

/* ---- Why Choose Us ---- */
#why-us {
	background: var(--white);
}
.why-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}
.why-content .section-desc {
	max-width: 100%;
}
.why-points {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.why-point {
	display: flex;
	gap: 18px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: var(--transition);
}
.why-point:hover {
	border-color: var(--gold);
	background: var(--cream);
	transform: translateX(6px);
}
.why-point-icon {
	width: 48px;
	height: 48px;
	background: rgba(201, 161, 85, 0.1);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 1.2rem;
	flex-shrink: 0;
}
.why-point h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 4px;
}
.why-point p {
	font-size: 0.84rem;
	color: var(--text-light);
	line-height: 1.6;
}
.why-visual {
	position: relative;
}
.why-img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
.why-float-card {
	position: absolute;
	bottom: 28px;
	left: -28px;
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius);
	padding: 20px 24px;
	box-shadow: var(--shadow);
}
.why-float-card h4 {
	font-size: 0.88rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.why-float-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.why-float-card ul li {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	align-items: center;
	gap: 8px;
}
.why-float-card ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--gold);
	font-size: 0.7rem;
}

/* ---- Process ---- */
#process {
	background: var(--cream);
}
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 50px;
	position: relative;
}
.process-grid::before {
	content: "";
	position: absolute;
	top: 52px;
	left: 12.5%;
	width: 75%;
	height: 2px;
	background: linear-gradient(
		to right,
		var(--gold),
		var(--gold-light),
		var(--gold)
	);
	z-index: 0;
}
.process-step {
	text-align: center;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
.process-num {
	width: 56px;
	height: 56px;
	background: var(--white);
	border: 3px solid var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0 auto 24px;
	transition: var(--transition);
	position: relative;
}
.process-step:hover .process-num {
	background: var(--gold);
	color: var(--white);
}
.process-icon {
	width: 64px;
	height: 64px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--gold);
	margin: 0 auto 18px;
	transition: var(--transition);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.process-step:hover .process-icon {
	background: var(--navy);
	color: var(--gold);
	box-shadow: var(--shadow);
}
.process-step h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}
.process-step p {
	font-size: 0.83rem;
	color: var(--text-light);
	line-height: 1.65;
}

/* ---- Team ---- */
#team {
	background: var(--white);
}
.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 50px;
}
.team-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
}
.team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}
.team-img-wrap {
	position: relative;
	overflow: hidden;
	height: 260px;
	background: linear-gradient(160deg, #1b2a4a 0%, #243560 60%, #1b2a4a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-img-wrap img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%;
	object-fit: contain;
	object-position: top center;
	display: block;
	position: relative;
	z-index: 1;
	transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img {
	transform: scale(1.05);
}
.team-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 40%,
		rgba(15, 27, 51, 0.9) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	opacity: 0;
	transition: var(--transition);
}
.team-card:hover .team-overlay {
	opacity: 1;
}
.team-social {
	display: flex;
	gap: 10px;
}
.team-social a {
	width: 34px;
	height: 34px;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-dark);
	font-size: 0.75rem;
	transition: var(--transition);
}
.team-social a:hover {
	background: var(--white);
	color: var(--navy);
}
.team-info {
	padding: 22px 24px;
	border-top: 3px solid var(--gold);
}
.team-info h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 4px;
}
.team-info .role {
	font-size: 0.8rem;
	color: var(--gold-dark);
	font-weight: 500;
	letter-spacing: 0.3px;
	margin-bottom: 10px;
	display: block;
}
.team-info p {
	font-size: 0.83rem;
	color: var(--text-light);
	line-height: 1.6;
}
.team-placeholder {
	width: 100%;
	height: 280px;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.team-placeholder .initials {
	width: 80px;
	height: 80px;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--navy-dark);
}
.team-placeholder .ti {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.78rem;
	letter-spacing: 1px;
}

/* ---- Testimonials ---- */
#testimonials {
	background: var(--navy-dark);
	position: relative;
	overflow: hidden;
}
.testi-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 30% 50%,
		rgba(201, 161, 85, 0.06) 0%,
		transparent 60%
	);
}
.testi-header {
	position: relative;
	z-index: 2;
	margin-bottom: 50px;
}
.testi-slider-wrap {
	position: relative;
	z-index: 2;
}
.testi-slider {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.testi-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	position: relative;
	transition: var(--transition);
}
.testi-card:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(201, 161, 85, 0.2);
	transform: translateY(-4px);
}
.testi-quote {
	font-size: 3rem;
	color: var(--gold);
	opacity: 0.3;
	line-height: 1;
	font-family: Georgia, serif;
	margin-bottom: 16px;
}
.testi-card .stars {
	color: var(--gold);
	font-size: 0.85rem;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.testi-card p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.8;
	margin-bottom: 24px;
	font-style: italic;
}
.testi-author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.testi-avatar {
	width: 46px;
	height: 46px;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--navy-dark);
	font-size: 0.9rem;
	flex-shrink: 0;
}
.testi-author h4 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--white);
}
.testi-author span {
	font-size: 0.78rem;
	color: var(--gold-light);
	display: block;
	margin-top: 2px;
}

/* ---- Blog / Updates ---- */
#blog {
	background: var(--cream);
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 50px;
}
.blog-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	transition: var(--transition);
}
.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}
.blog-img {
	height: 200px;
	overflow: hidden;
	position: relative;
}
.blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
	transform: scale(1.07);
}
.blog-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--gold);
	color: var(--navy-dark);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 3px;
}
.blog-body {
	padding: 24px;
}
.blog-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.blog-meta span {
	font-size: 0.78rem;
	color: var(--text-light);
	display: flex;
	align-items: center;
	gap: 5px;
}
.blog-meta i {
	color: var(--gold);
	font-size: 0.72rem;
}
.blog-card h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
	line-height: 1.4;
	margin-bottom: 10px;
}
.blog-card:hover h3 a {
	color: var(--gold);
}
.blog-card h3 a {
	color: inherit;
	transition: color 0.2s;
}
.blog-card p {
	font-size: 0.84rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 16px;
}
.blog-read-more {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gold-dark);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: var(--transition);
}
.blog-read-more:hover {
	color: var(--gold);
	gap: 10px;
}
.blog-read-more i {
	font-size: 0.7rem;
}

/* ---- Contact ---- */
#contact {
	background: var(--white);
}
.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 60px;
}
.contact-info .section-desc {
	max-width: 100%;
	margin-bottom: 36px;
}
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-bottom: 36px;
}
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.contact-icon {
	width: 48px;
	height: 48px;
	background: rgba(201, 161, 85, 0.1);
	border: 1px solid rgba(201, 161, 85, 0.2);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 1.1rem;
	flex-shrink: 0;
}
.contact-item h4 {
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--gold-dark);
	margin-bottom: 3px;
}
.contact-item p,
.contact-item a {
	font-size: 0.9rem;
	color: var(--text);
	line-height: 1.6;
}
.contact-item a:hover {
	color: var(--gold);
}
.contact-hours {
	background: var(--navy);
	border-radius: var(--radius);
	padding: 20px 22px;
	margin-bottom: 28px;
}
.contact-hours h4 {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}
.hours-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.85rem;
}
.hours-row:last-child {
	border-bottom: none;
}
.hours-row .day {
	color: rgba(255, 255, 255, 0.65);
}
.hours-row .time {
	color: var(--white);
	font-weight: 500;
}
.contact-social {
	display: flex;
	gap: 10px;
}
.contact-social a {
	width: 38px;
	height: 38px;
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	font-size: 0.85rem;
	transition: var(--transition);
}
.contact-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-dark);
	transform: translateY(-3px);
}
.contact-form-wrap {
	background: var(--cream);
	border-radius: var(--radius-lg);
	padding: 42px 38px;
	border: 1px solid var(--border);
}
.form-title {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}
.form-sub {
	font-size: 0.88rem;
	color: var(--text-light);
	margin-bottom: 28px;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.form-group {
	margin-bottom: 0;
}
.form-group.full {
	grid-column: 1 / -1;
}
.form-group label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 7px;
	letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	font-family: "Poppins", sans-serif;
	font-size: 0.88rem;
	color: var(--text);
	background: var(--white);
	transition: var(--transition);
	outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 161, 85, 0.12);
}
.form-group textarea {
	resize: vertical;
	min-height: 110px;
}
.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23C9A155' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	padding-right: 36px;
}
.btn-submit {
	width: 100%;
	padding: 14px;
	background: var(--navy);
	color: var(--white);
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: var(--transition);
	margin-top: 6px;
	border: 2px solid var(--navy);
}
.btn-submit:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(201, 161, 85, 0.35);
}

/* ---- Footer ---- */
#footer {
	background: var(--navy-dark);
	border-top: 1px solid rgba(201, 161, 85, 0.15);
}
.footer-top {
	padding: 70px 0 50px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr;
	gap: 50px;
}
.footer-brand .footer-logo {
	font-family: "Playfair Display", serif;
	font-size: 1.4rem;
	color: var(--white);
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-logo .fl-icon {
	width: 36px;
	height: 36px;
	background: var(--gold);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-dark);
	font-size: 1rem;
}
.footer-brand p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.8;
	margin: 14px 0 22px;
}
.footer-brand .footer-social {
	display: flex;
	gap: 10px;
}
.footer-social a {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.82rem;
	transition: var(--transition);
}
.footer-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-dark);
}
.footer-col h4 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 12px;
}
.footer-col h4::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--gold);
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	gap: 7px;
	transition: var(--transition);
}
.footer-links a::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.6rem;
	color: var(--gold);
	opacity: 0.5;
}
.footer-links a:hover {
	color: var(--gold);
	padding-left: 4px;
}
.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.footer-contact-item i {
	color: var(--gold);
	font-size: 0.9rem;
	margin-top: 3px;
	flex-shrink: 0;
	width: 16px;
}
.footer-contact-item span {
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
}
.footer-contact-item a {
	color: rgba(255, 255, 255, 0.55);
}
.footer-contact-item a:hover {
	color: var(--gold);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 22px 0;
}
.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-bottom p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
}
.footer-bottom p a {
	color: var(--gold);
	font-weight: 500;
}
.footer-bottom-links {
	display: flex;
	gap: 20px;
}
.footer-bottom-links a {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
	transition: color 0.2s;
}
.footer-bottom-links a:hover {
	color: var(--gold);
}

/* ---- Back to Top ---- */
#back-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 44px;
	height: 44px;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	box-shadow: 0 4px 20px rgba(201, 161, 85, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: var(--transition);
	z-index: 800;
	cursor: pointer;
}
#back-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#back-top:hover {
	background: var(--navy);
	color: var(--gold);
	transform: translateY(-4px);
}

/* ---- AOS fallback (when AOS not loaded) ---- */
[data-aos] {
	opacity: 1 !important;
	transform: none !important;
}

/* ---- Mobile Nav ---- */
@media (max-width: 992px) {
	.hamburger {
		display: flex;
	}
	#top-bar {
		display: none;
	}
	#header {
		top: 0 !important;
	}
	.navbar {
		background: var(--navy-dark) !important;
		padding: 14px 0;
	}
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: var(--navy-dark);
		flex-direction: column;
		align-items: flex-start;
		padding: 80px 28px 40px;
		gap: 0;
		transition: right 0.35s ease;
		overflow-y: auto;
		box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
		z-index: 998;
	}
	.nav-menu.open {
		right: 0;
	}
	.nav-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
	.nav-menu > li > a {
		padding: 14px 4px;
		font-size: 0.95rem;
	}
	.dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: rgba(255, 255, 255, 0.03);
		display: none;
	}
	.dropdown.open {
		display: block;
	}
	.dropdown li a {
		padding: 9px 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.04);
		color: rgba(255, 255, 255, 0.6);
	}
	.nav-cta .btn-consult {
		display: none;
	}
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 900px) {
	.hero-inner,
	.about-inner,
	.why-inner,
	.contact-inner {
		grid-template-columns: 1fr;
	}
	.hero-visual {
		display: none;
	}
	.about-img-accent,
	.about-exp-badge {
		display: none;
	}
	.about-img-main {
		height: 360px;
	}
	.why-float-card {
		display: none;
	}
	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	.stat-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}
	.stat-item:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.07);
	}
	.stat-item:last-child,
	.stat-item:nth-last-child(2) {
		border-bottom: none;
	}
	.testi-slider {
		grid-template-columns: 1fr;
	}
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
	.process-grid::before {
		display: none;
	}
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}
@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	.team-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.about-features {
		grid-template-columns: 1fr;
	}
	.hero-mini-stats {
		gap: 20px;
	}
	.testi-slider {
		grid-template-columns: 1fr;
	}
	.form-grid {
		grid-template-columns: 1fr;
	}
	.contact-form-wrap {
		padding: 28px 22px;
	}
	.section-pad {
		padding: 60px 0;
	}
	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}
	.hero-btns {
		flex-direction: column;
	}
	.btn-primary,
	.btn-outline {
		text-align: center;
		justify-content: center;
	}
}

/* =============================================
   INNER PAGE STYLES (added for multi-page)
   ============================================= */

/* Nav CTA button fix */
.nav-cta-btn {
	display: inline-flex;
	background: var(--gold);
	color: var(--navy-dark) !important;
	padding: 10px 22px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	align-items: center;
	transition: var(--transition);
}
.nav-cta-btn:hover {
	background: var(--gold-light) !important;
	transform: translateY(-2px);
	color: var(--navy-dark) !important;
}

/* ---- Inner Page Hero ---- */
.inner-hero {
	background:
		linear-gradient(
			135deg,
			rgba(10, 18, 38, 0.87) 0%,
			rgba(27, 42, 74, 0.82) 60%,
			rgba(44, 62, 107, 0.8) 100%
		),
		url("../img/bg-inner-hero.jpg") center 60% / cover no-repeat;
	padding: 160px 0 70px;
	position: relative;
	overflow: hidden;
}
.inner-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 80% 50%,
		rgba(201, 161, 85, 0.1) 0%,
		transparent 60%
	);
	pointer-events: none;
}
.inner-hero-content {
	position: relative;
	z-index: 2;
}
.inner-hero h1 {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.9rem, 3.5vw, 3rem);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;
	line-height: 1.25;
}
.inner-hero h1 span {
	color: var(--gold);
}
.inner-hero p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	line-height: 1.8;
}
.inner-hero-icon {
	position: absolute;
	right: 0;
	bottom: -20px;
	font-size: 11rem;
	color: rgba(201, 161, 85, 0.05);
	line-height: 1;
	pointer-events: none;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
	background: var(--cream);
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
}
.breadcrumb-inner a {
	color: var(--text-light);
	transition: color 0.2s;
}
.breadcrumb-inner a:hover {
	color: var(--gold);
}
.breadcrumb-inner .sep {
	color: var(--border);
	font-size: 0.7rem;
}
.breadcrumb-inner .current {
	color: var(--gold);
	font-weight: 500;
}

/* ---- Service Detail Layout ---- */
.service-detail-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}
.service-detail-content h2 {
	font-family: "Playfair Display", serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--navy);
	margin: 36px 0 14px;
	line-height: 1.3;
}
.service-detail-content h2:first-child {
	margin-top: 0;
}
.service-detail-content p {
	font-size: 0.92rem;
	color: var(--text);
	line-height: 1.85;
	margin-bottom: 16px;
}
.service-detail-content ul {
	list-style: none;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.service-detail-content ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--text);
	line-height: 1.6;
}
.service-detail-content ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--gold);
	font-size: 0.75rem;
	margin-top: 4px;
	flex-shrink: 0;
}
.service-highlight-box {
	background: var(--cream);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 20px 24px;
	margin: 24px 0;
}
.service-highlight-box h3 {
	font-family: "Playfair Display", serif;
	font-size: 1rem;
	color: var(--navy);
	margin-bottom: 8px;
}
.service-highlight-box p {
	font-size: 0.87rem;
	color: var(--text-light);
	margin: 0;
}
.service-process-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 28px 0;
}
.service-step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 18px;
	text-align: center;
	transition: var(--transition);
}
.service-step:hover {
	border-color: var(--gold);
	box-shadow: var(--shadow);
}
.service-step-num {
	width: 40px;
	height: 40px;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0 auto 12px;
}
.service-step h4 {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}
.service-step p {
	font-size: 0.8rem;
	color: var(--text-light);
	margin: 0;
}
.partners-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0;
}
.partner-badge {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 10px 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 8px;
}
.partner-badge::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
}
.partner-badge:hover {
	border-color: var(--gold);
	background: var(--cream);
}

/* ---- Sidebar ---- */
.service-sidebar {
	position: sticky;
	top: 100px;
}
.sidebar-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 24px;
}
.sidebar-card-header {
	background: var(--navy);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.sidebar-card-header h4 {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.sidebar-card-header i {
	color: var(--gold);
}
.sidebar-services-list {
	padding: 8px 0;
}
.sidebar-services-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	font-size: 0.85rem;
	color: var(--text);
	border-bottom: 1px solid var(--cream);
	transition: var(--transition);
}
.sidebar-services-list a:last-child {
	border-bottom: none;
}
.sidebar-services-list a:hover,
.sidebar-services-list a.active {
	background: var(--cream);
	color: var(--gold);
	padding-left: 24px;
}
.sidebar-services-list a i {
	color: var(--gold);
	font-size: 0.75rem;
	width: 14px;
}
.sidebar-cta {
	background: var(--navy-dark);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	text-align: center;
	margin-bottom: 24px;
}
.sidebar-cta h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 8px;
}
.sidebar-cta p {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 18px;
	line-height: 1.6;
}
.sidebar-cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold);
	color: var(--navy-dark);
	padding: 11px 22px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.85rem;
	transition: var(--transition);
	width: 100%;
	justify-content: center;
}
.sidebar-cta a:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
	color: var(--navy-dark);
}
.sidebar-contact-card {
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
}
.sidebar-contact-card h4 {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--navy);
	margin-bottom: 14px;
}
.sidebar-contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 0.83rem;
	color: var(--text);
}
.sidebar-contact-row i {
	color: var(--gold);
	width: 16px;
}
.sidebar-contact-row a {
	color: var(--text);
}
.sidebar-contact-row a:hover {
	color: var(--gold);
}

/* ---- CTA Banner ---- */
.cta-banner {
	background:
		linear-gradient(
			135deg,
			rgba(10, 18, 38, 0.9) 0%,
			rgba(27, 42, 74, 0.88) 100%
		),
		url("../img/bg-cta.jpg") center 40% / cover no-repeat;
	position: relative;
	overflow: hidden;
}
.cta-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 20% 50%,
		rgba(201, 161, 85, 0.12) 0%,
		transparent 60%
	);
}
.cta-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.cta-text h2 {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--white);
	margin-bottom: 8px;
}
.cta-text p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
}
.cta-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.cta-actions .btn-primary {
	box-shadow: none;
}
.cta-actions .btn-ghost {
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	padding: 12px 24px;
	border-radius: var(--radius);
	font-weight: 500;
	font-size: 0.88rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}
.cta-actions .btn-ghost:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* ---- About Page ---- */
.values-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.value-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 20px;
	text-align: center;
	transition: var(--transition);
}
.value-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: var(--gold);
}
.value-icon {
	width: 56px;
	height: 56px;
	background: rgba(201, 161, 85, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: var(--gold);
	margin: 0 auto 14px;
}
.value-card h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}
.value-card p {
	font-size: 0.8rem;
	color: var(--text-light);
	line-height: 1.6;
}
.timeline {
	position: relative;
	padding-left: 40px;
	margin-top: 30px;
}
.timeline::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--gold), var(--navy-mid));
}
.timeline-item {
	position: relative;
	margin-bottom: 36px;
}
.timeline-item::before {
	content: "";
	position: absolute;
	left: -32px;
	top: 4px;
	width: 12px;
	height: 12px;
	background: var(--gold);
	border-radius: 50%;
	border: 2px solid var(--white);
	box-shadow: 0 0 0 3px var(--gold);
}
.timeline-item .year {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.timeline-item h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}
.timeline-item p {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* ---- Blog Page ---- */
.blog-filter-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}
.filter-btn {
	padding: 8px 20px;
	border: 1.5px solid var(--border);
	border-radius: 30px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text-light);
	background: var(--white);
	cursor: pointer;
	transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-dark);
}

/* ---- FAQ Page ---- */
.faq-accordion {
	margin-top: 36px;
}
.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 12px;
	overflow: hidden;
	transition: var(--transition);
}
.faq-item.open {
	border-color: var(--gold);
}
.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	cursor: pointer;
	background: var(--white);
	transition: background 0.2s;
}
.faq-question:hover {
	background: var(--cream);
}
.faq-item.open .faq-question {
	background: var(--cream);
}
.faq-question h4 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
	padding-right: 16px;
}
.faq-icon {
	width: 28px;
	height: 28px;
	background: rgba(201, 161, 85, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 0.75rem;
	flex-shrink: 0;
	transition: transform 0.3s;
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: var(--gold);
	color: var(--navy-dark);
}
.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
}
.faq-item.open .faq-answer {
	max-height: 400px;
	padding: 0 24px 20px;
}
.faq-answer p {
	font-size: 0.88rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* ---- Services Overview Page ---- */
.services-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 70px;
}
.services-intro-img {
	height: 400px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	width: 100%;
}

/* ---- Responsive additions ---- */
@media (max-width: 900px) {
	.service-detail-wrap {
		grid-template-columns: 1fr;
	}
	.service-sidebar {
		position: static;
	}
	.services-intro {
		grid-template-columns: 1fr;
	}
	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.service-process-steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.cta-inner {
		flex-direction: column;
		text-align: center;
	}
	.cta-actions {
		justify-content: center;
	}
}
@media (max-width: 600px) {
	.inner-hero {
		padding: 130px 0 50px;
	}
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-process-steps {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   COMPATIBILITY ALIASES (agent-generated pages)
   ============================================= */

/* breadcrumb-bar = breadcrumb section */
.breadcrumb-bar {
	background: var(--cream);
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}
.breadcrumb-bar .breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	background: none;
	padding: 0;
	border: none;
}
.breadcrumb-bar .breadcrumb a {
	color: var(--text-light);
	transition: color 0.2s;
}
.breadcrumb-bar .breadcrumb a:hover {
	color: var(--gold);
}
.breadcrumb-bar .breadcrumb .sep {
	color: var(--border);
	font-size: 0.65rem;
}
.breadcrumb-bar .breadcrumb .current {
	color: var(--gold);
	font-weight: 500;
}

/* inner-hero-overlay — subtle extra darkening on service pages (base gradient already in .inner-hero) */
.inner-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 18, 38, 0.18) 0%,
		rgba(27, 42, 74, 0.1) 100%
	);
	pointer-events: none;
}
/* inner-hero-icon inside inner-hero-content — flows above h1 title */
.inner-hero-content .inner-hero-icon {
	position: relative;
	right: auto;
	bottom: auto;
	font-size: 2.6rem;
	color: var(--gold);
	opacity: 0.85;
	margin-bottom: 14px;
	display: block;
}

/* service-detail-section */
.service-detail-section {
	padding: 80px 0;
	background: var(--white);
}

/* service-list — checkmark list with explicit FA icons */
.service-list {
	list-style: none;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.service-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--text);
	line-height: 1.6;
}
.service-list li i.fa-check-circle {
	color: var(--gold);
	font-size: 0.85rem;
	margin-top: 3px;
	flex-shrink: 0;
}

/* service-highlight-box h3 with icon */
.service-highlight-box h3 i {
	color: var(--gold);
	margin-right: 8px;
	font-size: 0.9rem;
}
.service-highlight-box ul {
	list-style: none;
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.service-highlight-box ul li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.87rem;
	color: var(--text);
}
.service-highlight-box ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--gold);
	font-size: 0.72rem;
	margin-top: 3px;
	flex-shrink: 0;
}

/* process-step (agent style: .process-step with .step-icon and .step-number) */
.service-process-steps .process-step {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 20px;
	text-align: center;
	transition: var(--transition);
}
.service-process-steps .process-step:hover {
	border-color: var(--gold);
	box-shadow: var(--shadow);
}
.service-process-steps .step-icon {
	font-size: 1.6rem;
	color: var(--gold);
	margin-bottom: 10px;
	display: block;
}
.service-process-steps .step-number {
	width: 36px;
	height: 36px;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	margin: 0 auto 12px;
}
.service-process-steps .process-step h4 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 6px;
}
.service-process-steps .process-step p {
	font-size: 0.82rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.6;
}

/* partners-grid (FCI page) */
.partners-section {
	margin: 28px 0;
}
.partners-section h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	color: var(--navy);
	margin-bottom: 16px;
}

/* ===== BOOK SESSION MODAL (Scoped) ===== */

/* Modal backdrop */
#bookModal.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

/* Modal box */
#bookModal .modal-content {
	background: #f5f2ec; /* matches your ceramic style */
	margin: 5% auto;
	padding: 30px;
	border-radius: 16px;
	width: 700px;
	max-width: 95%;
	position: relative;
	animation: bookFadeIn 0.3s ease;
}

/* Close button */
#bookModal .close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 22px;
	cursor: pointer;
}

/* Subtitle */
#bookModal .subtitle {
	margin-bottom: 20px;
	color: #666;
}

/* Grid layout */
#bookModal .form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

#bookModal .form-group {
	display: flex;
	flex-direction: column;
}

#bookModal .form-group.full {
	grid-column: span 2;
}

/* Inputs */
#bookModal input,
#bookModal select,
#bookModal textarea {
	padding: 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
	margin-top: 5px;
	font-size: 14px;
	background: #fff;
}

/* Textarea */
#bookModal textarea {
	min-height: 100px;
	resize: none;
}

/* Time slots */
#bookModal .time-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

#bookModal .time-slot {
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #ddd;
	cursor: pointer;
	background: #fff;
	font-size: 14px;
	transition: all 0.2s ease;
}

#bookModal .time-slot:hover {
	border-color: #1f2f4a;
}

#bookModal .time-slot.active {
	background: #1f2f4a;
	color: #fff;
	border-color: #1f2f4a;
}

.booking-form .time-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.booking-form .time-slot {
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #ddd;
	cursor: pointer;
	background: #fff;
	font-size: 14px;
	transition: all 0.2s ease;
}

.booking-form .time-slot:hover {
	border-color: #1f2f4a;
}

.booking-form .time-slot.active {
	background: #1f2f4a;
	color: #fff;
	border-color: #1f2f4a;
}

/* Submit button */
#bookModal .submit-btn {
	background: #1f2f4a;
	color: #fff;
	padding: 14px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

/* Animation */
@keyframes bookFadeIn {
	from {
		opacity: 0;
		transform: translateY(-15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile */
@media (max-width: 600px) {
	#bookModal .form-grid {
		grid-template-columns: 1fr;
	}

	#bookModal .form-group.full {
		grid-column: span 1;
	}
}

/* ---- Field Officer verification links (FCI page) ---- */
.fo-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 12px;
	margin: 20px 0 28px;
}
.fo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 3px solid var(--gold);
	border-radius: var(--radius);
	font-size: 0.87rem;
	font-weight: 600;
	color: var(--navy);
	text-decoration: none;
	transition: var(--transition);
}
.fo-link > i:first-child {
	color: var(--gold);
	font-size: 0.95rem;
	flex-shrink: 0;
}
.fo-link span {
	flex: 1;
	line-height: 1.4;
}
.fo-link .fo-link-ext {
	color: var(--text-light);
	font-size: 0.7rem;
	flex-shrink: 0;
	transition: var(--transition);
}
.fo-link:hover {
	background: var(--cream);
	border-color: var(--gold);
	border-left-color: var(--gold-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(27, 42, 74, 0.08);
}
.fo-link:hover .fo-link-ext {
	color: var(--gold);
}
.fo-link:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}
@media (max-width: 480px) {
	.fo-links-grid {
		grid-template-columns: 1fr;
	}
}

/* ---- Service detail lists: single marker, inline label + description ---- */
/* The generic `.service-detail-content ul li::before` adds a checkmark, and the
   markup also carries an explicit <i class="fa-check-circle">, so these lists
   rendered two ticks. Flex also promoted <strong> and the description to
   separate flex items, splitting them into columns. */
.service-detail-content ul.service-list li::before {
	content: none;
}
.service-detail-content ul.service-list li {
	display: block;
	position: relative;
	padding-left: 26px;
	gap: 0;
}
.service-detail-content ul.service-list li i.fa-check-circle {
	position: absolute;
	left: 0;
	top: 7px;
	margin-top: 0;
}
.service-detail-content ul.service-list li strong {
	color: var(--navy);
	font-weight: 600;
}

/* ---- CTA banner on service detail pages ---- */
/* These pages use .cta-banner-content + .btn-light, neither of which had any
   rules, so the banner collapsed to zero height with dark text on the dark
   background and an unstyled text link. */
.cta-banner-content {
	position: relative;
	z-index: 2;
	padding: 70px 0;
	text-align: center;
}
.cta-banner-content h2 {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--white);
	margin-bottom: 10px;
}
.cta-banner-content p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 640px;
	margin: 0 auto 26px;
	line-height: 1.7;
}
.btn-light {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 30px;
	background: var(--white);
	border: 2px solid var(--white);
	border-radius: var(--radius);
	color: var(--navy);
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
	transition: var(--transition);
}
.btn-light i {
	font-size: 0.85rem;
}
.btn-light:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.btn-light:focus-visible {
	outline: 2px solid var(--gold-light);
	outline-offset: 3px;
}
@media (max-width: 768px) {
	.cta-banner-content {
		padding: 50px 0;
	}
}
