/*
 * Sky Educate Main CSS
 * Dark Navy : #050E2B
 * Yellow    : #fdb72f
 * White     : #FFFFFF
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
	--color-navy-dark: #050E2B;
	--color-navy-mid : #0d1e4a;
	--color-yellow   : #fdb72f;
	--color-yellow-dk: #e8a520;
	--color-white    : #FFFFFF;
	--color-bg-light : #F8F9FA;
	--color-text     : #3a3a4a;
	--color-text-muted: #6b7280;
	--font-primary   : 'Outfit', sans-serif;
	--font-body      : 'Inter', sans-serif;
	--border-radius  : 12px;
	--border-radius-lg: 20px;
	--transition     : all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-card    : 0 8px 32px rgba(5, 14, 43, 0.10);
	--shadow-card-hover: 0 20px 48px rgba(5, 14, 43, 0.18);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	color: var(--color-text);
	background-color: var(--color-white);
	margin: 0;
	padding: 0;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	margin-top: 0;
	color: var(--color-navy-dark);
	line-height: 1.2;
}

a {
	color: var(--color-navy-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover { color: var(--color-yellow); }

img { max-width: 100%; height: auto; display: block; }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.text-center { text-align: center; }

/* ============================================================
   SHARED SECTION LABELS & HEADINGS
============================================================ */
.section-eyebrow {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--color-yellow);
	margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: rgba(253,183,47,0.85); }

.section-heading {
	font-size: 2.6rem;
	color: var(--color-navy-dark);
	margin-bottom: 3rem;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.95rem;
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
	border: 2px solid transparent;
	letter-spacing: 0.3px;
}

.btn-primary {
	background-color: var(--color-yellow);
	color: var(--color-navy-dark);
	border-color: var(--color-yellow);
}
.btn-primary:hover {
	background-color: var(--color-yellow-dk);
	border-color: var(--color-yellow-dk);
	color: var(--color-navy-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(253,183,47,0.35);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--color-navy-dark);
	color: var(--color-navy-dark);
}
.btn-outline:hover {
	background: var(--color-navy-dark);
	color: var(--color-white);
}

.btn-outline-primary {
	border: 2px solid var(--color-yellow);
	color: var(--color-yellow);
	background: transparent;
	width: 100%;
	margin-top: 1.5rem;
}
.btn-outline-primary:hover {
	background: var(--color-yellow);
	color: var(--color-navy-dark);
}

/* Hero buttons */
.btn-hero-primary {
	background-color: var(--color-yellow);
	color: var(--color-navy-dark);
	padding: 0.9rem 2.4rem;
	font-size: 1rem;
	box-shadow: 0 8px 24px rgba(253,183,47,0.3);
}
.btn-hero-primary:hover {
	background-color: var(--color-yellow-dk);
	color: var(--color-navy-dark);
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(253,183,47,0.45);
}

.btn-hero-outline {
	background: transparent;
	color: var(--color-white);
	border: 2px solid rgba(255,255,255,0.5);
	padding: 0.9rem 2.4rem;
	font-size: 1rem;
}
.btn-hero-outline:hover {
	background: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.9);
	color: var(--color-white);
	transform: translateY(-3px);
}

/* CTA Section buttons */
.btn-cta-yellow {
	background-color: var(--color-yellow);
	color: var(--color-navy-dark);
	border-color: var(--color-yellow);
	padding: 0.85rem 2.2rem;
}
.btn-cta-yellow:hover {
	background-color: var(--color-yellow-dk);
	border-color: var(--color-yellow-dk);
	color: var(--color-navy-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(253,183,47,0.35);
}

.btn-cta-navy {
	background-color: var(--color-navy-dark);
	color: var(--color-white);
	border-color: var(--color-navy-dark);
	padding: 0.85rem 2.2rem;
}
.btn-cta-navy:hover {
	background-color: var(--color-navy-mid);
	border-color: var(--color-navy-mid);
	color: var(--color-white);
	transform: translateY(-2px);
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
.site-header {
	background-color: var(--color-white);
	padding: 1.25rem 0;
	box-shadow: 0 2px 16px rgba(5,14,43,0.07);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-title { margin: 0; font-size: 1.5rem; }
.site-title a { color: var(--color-navy-dark); }

/* Custom logo (set via WP Customizer) */
.custom-logo-link { display: inline-block; line-height: 0; }
.custom-logo-link img.custom-logo {
	max-height: 104px;
	width: auto;
	margin-top: 6px;
	margin-bottom: 12px;
	display: block;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.main-navigation a {
	font-family: var(--font-primary);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.88rem;
	letter-spacing: 0.8px;
	color: var(--color-navy-dark);
	position: relative;
}
.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-yellow);
	transition: width 0.3s ease;
}
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after { width: 100%; }
.main-navigation a:hover { color: var(--color-navy-dark); }

.header-right { display: flex; align-items: center; gap: 1.5rem; }

.btn-header-login {
	background: var(--color-navy-dark);
	color: var(--color-white) !important;
	padding: 0.55rem 1.4rem;
	border-radius: 50px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.85rem;
	transition: var(--transition);
}
.btn-header-login:hover {
	background: var(--color-yellow);
	color: var(--color-navy-dark) !important;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 2px solid var(--color-navy-dark);
	border-radius: 8px;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}
.hamburger-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-navy-dark);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Animate to X when menu is open */
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
	opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 650px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.video-background-wrapper {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
@media (min-aspect-ratio: 16/9) { .hero-video { height: 56.25vw; } }
@media (max-aspect-ratio: 16/9) { .hero-video { width: 177.78vh; } }

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		145deg,
		rgba(5, 14, 43, 0.88) 0%,
		rgba(5, 14, 43, 0.65) 55%,
		rgba(5, 14, 43, 0.45) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--color-white);
	padding-top: 0;
}

.hero-eyebrow {
	display: inline-block;
	background: rgba(253, 183, 47, 0.15);
	border: 1px solid rgba(253, 183, 47, 0.45);
	color: var(--color-yellow);
	padding: 0.38rem 1.2rem;
	border-radius: 50px;
	font-family: var(--font-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(4px);
	animation: fadeInDown 0.7s ease both;
}

.hero-title {
	color: var(--color-white);
	font-size: 4.2rem;
	line-height: 1.12;
	margin-bottom: 1.75rem;
	text-shadow: 0 2px 20px rgba(0,0,0,0.25);
	animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-stats-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stat {
	color: rgba(255,255,255,0.88);
	font-size: 0.95rem;
	font-family: var(--font-primary);
}
.hero-stat strong {
	color: var(--color-yellow);
	font-size: 1.1rem;
}

.hero-stat-divider {
	color: rgba(253,183,47,0.5);
	font-size: 1.4rem;
	font-weight: 300;
}

.hero-cta-row {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s 0.45s ease both;
}

/* Scroll cue */
.hero-scroll-cue {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	animation: heroScrollBounce 2.4s 1.5s ease-in-out infinite;
}
.scroll-mouse {
	width: 26px;
	height: 44px;
	border: 2px solid rgba(255,255,255,0.45);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	padding-top: 7px;
}
.scroll-dot {
	width: 4px;
	height: 9px;
	background: var(--color-yellow);
	border-radius: 2px;
	animation: scrollDotAnim 2s 1.5s ease infinite;
}
@keyframes scrollDotAnim {
	0%   { transform: translateY(0);   opacity: 1; }
	100% { transform: translateY(14px); opacity: 0; }
}
@keyframes heroScrollBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%       { transform: translateX(-50%) translateY(-7px); }
}

/* ============================================================
   OUR SERVICES SECTION
============================================================ */
.services-section {
	padding: 6rem 1.5rem 5rem;
	background: var(--color-white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: var(--color-navy-dark);
	border-radius: var(--border-radius-lg);
	padding: 2.5rem 1.25rem 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--color-yellow);
	transform: scaleX(0);
	transition: transform 0.35s ease;
}
.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(253,183,47,0.35);
	box-shadow: 0 24px 56px rgba(5,14,43,0.28);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
	width: 68px;
	height: 68px;
	background: rgba(253,183,47,0.15);
	border: 1.5px solid rgba(253,183,47,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	flex-shrink: 0;
}
.service-card:hover .service-icon-wrap {
	background: var(--color-yellow);
	border-color: var(--color-yellow);
}

.service-icon-wrap svg {
	width: 28px;
	height: 28px;
	stroke: var(--color-yellow);
	transition: stroke 0.3s ease;
}
.service-card:hover .service-icon-wrap svg { stroke: var(--color-navy-dark); }

.service-card h3 {
	color: var(--color-white);
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	line-height: 1.4;
	margin: 0;
}

/* ============================================================
   WHO WE ARE SECTION
============================================================ */
.who-we-are-section {
	padding: 6rem 1.5rem;
	background: var(--color-white);
	overflow: hidden;
}

.who-we-are-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

/* Stacked image layout */
.who-images-wrap {
	position: relative;
	height: 480px;
}

.who-img-accent-block {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 240px;
	height: 320px;
	background: rgba(253,183,47,0.12);
	border-radius: var(--border-radius-lg);
	z-index: 0;
}

.who-img-primary {
	position: absolute;
	top: 0;
	left: 0;
	width: 58%;
	height: 380px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card-hover);
	z-index: 1;
}

.who-img-secondary {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 280px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card-hover);
	z-index: 2;
	border: 5px solid var(--color-white);
}

/* Content */
.who-content {}
.who-content h2 { font-size: 2.6rem; margin-bottom: 1.25rem; }

.who-body-text {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
	font-size: 1.02rem;
	line-height: 1.8;
}
.who-body-text p { margin-top: 0; }

/* ============================================================
   WHY SKY EDUCATE SECTION
============================================================ */
.why-us-section {
	background: linear-gradient(150deg, var(--color-navy-dark) 0%, var(--color-navy-mid) 60%, #1a3370 100%);
	position: relative;
	color: var(--color-white);
	overflow: hidden;
}

.why-wave-top,
.why-wave-bottom { line-height: 0; display: block; }
.why-wave-top svg,
.why-wave-bottom svg { width: 100%; display: block; }
.why-wave-bottom { margin-bottom: -2px; }

.why-inner { padding: 4rem 1.5rem 5rem; }

.why-heading {
	color: var(--color-white);
	font-size: 2.6rem;
	margin-bottom: 1rem;
}

.why-subtitle {
	color: rgba(255,255,255,0.72);
	max-width: 620px;
	margin: 0 auto 3.5rem;
	font-size: 1rem;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.why-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--border-radius-lg);
	padding: 2.5rem 2rem;
	text-align: center;
	backdrop-filter: blur(6px);
	transition: var(--transition);
}
.why-card:hover {
	background: rgba(255,255,255,0.10);
	border-color: rgba(253,183,47,0.35);
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}

.why-icon-wrap {
	width: 72px;
	height: 72px;
	background: rgba(253,183,47,0.15);
	border: 1.5px solid rgba(253,183,47,0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
	background: var(--color-yellow);
	border-color: var(--color-yellow);
}

.why-icon-wrap svg {
	width: 30px;
	height: 30px;
	stroke: var(--color-yellow);
	transition: stroke 0.3s ease;
}
.why-card:hover .why-icon-wrap svg { stroke: var(--color-navy-dark); }

.why-card h3 {
	color: var(--color-white);
	font-size: 1.15rem;
	margin-bottom: 0.85rem;
}
.why-card p {
	color: rgba(255,255,255,0.68);
	font-size: 0.95rem;
	line-height: 1.75;
	margin: 0;
}

/* ============================================================
   HOW WE WORK SECTION
============================================================ */
.how-we-work-section {
	padding: 7rem 1.5rem;
	background: var(--color-white);
}

.how-we-work-section h2 {
	font-size: 2.6rem;
	margin-bottom: 4rem;
}

.timeline-container {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
}

/* Dotted connector track */
.timeline-track {
	position: absolute;
	top: 50px; /* vertically aligned with icon center */
	left: calc(12.5% + 25px);
	right: calc(12.5% + 25px);
	height: 3px;
	background: transparent;
	border-top: 3px dashed #d1d5db;
	z-index: 1;
}

.timeline-fill {
	position: absolute;
	top: -3px;
	left: 0;
	height: 3px;
	width: 0%;
	background: var(--color-yellow);
	border-top: 3px solid var(--color-yellow);
	transition: width 0.5s ease-out;
}

.timeline-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.timeline-step {
	width: 25%;
	text-align: center;
	padding: 0 0.75rem;
}

.step-number {
	font-family: var(--font-primary);
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--color-yellow);
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}

.step-icon-wrap {
	width: 60px;
	height: 60px;
	background: var(--color-white);
	border: 2.5px solid #d1d5db;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	transition: var(--transition);
	box-shadow: 0 4px 16px rgba(5,14,43,0.08);
}
.step-icon-wrap svg {
	width: 24px;
	height: 24px;
	stroke: #9ca3af;
	transition: stroke 0.35s ease;
}

.timeline-step.active .step-icon-wrap {
	background: var(--color-yellow);
	border-color: var(--color-yellow);
	box-shadow: 0 8px 24px rgba(253,183,47,0.4);
	transform: scale(1.1);
}
.timeline-step.active .step-icon-wrap svg { stroke: var(--color-navy-dark); }
.timeline-step.active .step-number { color: var(--color-yellow); }

.timeline-step h3 {
	font-size: 0.92rem;
	color: var(--color-navy-dark);
	line-height: 1.45;
	transition: color 0.35s ease;
}
.timeline-step.active h3 { color: var(--color-navy-dark); }

/* ============================================================
   CTA: CONNECTING SCHOOLS SECTION
============================================================ */
.cta-schools-section {
	padding: 6rem 1.5rem;
	background: var(--color-bg-light);
}

.cta-schools-inner { text-align: center; }

.cta-schools-heading {
	font-size: 2.4rem;
	max-width: 720px;
	margin: 0 auto 3rem;
	line-height: 1.25;
}

.cta-pillars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 780px;
	margin: 0 auto 3rem;
	background: var(--color-white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.cta-pillar {
	flex: 1;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.cta-pillar-icon {
	width: 52px;
	height: 52px;
	background: rgba(253,183,47,0.1);
	border: 1.5px solid rgba(253,183,47,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cta-pillar-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--color-yellow);
}

.cta-pillar p {
	margin: 0;
	font-family: var(--font-primary);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-navy-dark);
	line-height: 1.5;
}

.cta-pillar-sep {
	width: 1px;
	height: 80px;
	background: #e5e7eb;
	flex-shrink: 0;
}

.cta-schools-btns {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   ANNIVERSARY SECTION
============================================================ */
.anniversary-section {
	height: 420px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.anniversary-overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 14, 43, 0.72);
}

.anniversary-content {
	position: relative;
	z-index: 2;
}

.anniversary-img {
	max-width: 260px;
	width: 100%;
	margin: 0 auto;
	display: block;
	filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

.badge-svg {
	max-width: 220px;
	margin: 0 auto;
	filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
	animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
	0%, 100% { transform: scale(1); }
	50%       { transform: scale(1.04); }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
	background-color: var(--color-navy-dark);
	color: var(--color-white);
	padding: 4.5rem 0 2rem;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.footer-column h3 {
	color: var(--color-yellow);
	margin-bottom: 1.5rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 0.7rem; }
.footer-column a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-column a:hover { color: var(--color-yellow); opacity: 1; }

.footer-site-title { color: var(--color-white); margin: 0 0 1rem; }

.social-icons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	color: rgba(255,255,255,0.7);
	font-size: 0.85rem;
	transition: var(--transition);
}
.social-icon:hover { background: var(--color-yellow); color: var(--color-navy-dark); }

.site-info {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.08);
	opacity: 0.55;
	font-size: 0.85rem;
}

/* ============================================================
   JOB CARDS & ARCHIVES
============================================================ */
.latest-jobs-section { padding: 5rem 1.5rem; }

.section-header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
}

.jobs-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 2rem;
	padding-bottom: 5rem;
}

.job-card {
	background: var(--color-white);
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--shadow-card);
	border: 1px solid #eef0f4;
	display: flex;
	flex-direction: column;
	transition: var(--transition);
}
.job-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover);
}

.job-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.25rem;
}

.job-title { font-size: 1.3rem; margin: 0; }
.job-title a { color: var(--color-navy-dark); }
.job-title a:hover { color: var(--color-yellow); }

.job-type-badge {
	background: rgba(253, 183, 47, 0.12);
	color: var(--color-yellow-dk);
	padding: 0.28rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.job-card-body { flex-grow: 1; }
.job-info-row { margin-bottom: 0.5rem; font-size: 0.92rem; display: flex; align-items: center; gap: 0.4rem; color: var(--color-text-muted); }

/* ============================================================
   SINGLE JOB PAGE
============================================================ */
.single-job-main { background-color: #f5f6fa; }

.job-single-header {
	background-color: var(--color-navy-dark);
	color: var(--color-white);
	padding: 6rem 0;
	margin-bottom: 3rem;
}
.job-single-header .header-inner { display: flex; justify-content: space-between; align-items: center; }
.job-single-header h1 { color: var(--color-white); font-size: 2.8rem; margin: 1rem 0; }

.job-meta-strip { display: flex; gap: 2rem; opacity: 0.85; flex-wrap: wrap; }

.job-content-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	padding-bottom: 7rem;
}

.job-main-column {
	background: var(--color-white);
	padding: 3rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-card);
}

.sidebar-box {
	background: var(--color-white);
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-card);
	margin-bottom: 2rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
	transition-delay: var(--delay, 0ms);
}
.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   JOBS BOARD PAGE
============================================================ */

/* Banner */
.jobs-page-banner {
	background: var(--color-navy-dark);
	position: relative;
	padding: 5rem 0 4rem;
	overflow: hidden;
}
.jobs-page-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.jobs-page-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(5,14,43,0.5) 0%, transparent 100%);
}
.jobs-page-banner-content {
	position: relative;
	z-index: 2;
	color: var(--color-white);
}
.jobs-page-banner-content h1 {
	color: var(--color-white);
	font-size: 2.8rem;
	margin-bottom: 0.75rem;
}
.banner-subtitle {
	color: rgba(255,255,255,0.72);
	max-width: 600px;
	font-size: 1.02rem;
	margin: 0;
}

/* Board layout */
.jobs-board-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 2.5rem;
	padding-top: 2.5rem;
	padding-bottom: 5rem;
	align-items: start;
}

/* ---- FILTER SIDEBAR ---- */
.jobs-filter-sidebar {
	position: sticky;
	top: 90px;
}

.filter-panel {
	background: var(--color-white);
	border: 1px solid #e8eaf0;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.filter-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #f0f1f5;
}
.filter-panel-header h2 {
	font-size: 1rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-navy-dark);
}
.filter-panel-header h2 svg { stroke: var(--color-yellow); }

.filter-clear-all {
	font-size: 0.8rem;
	color: var(--color-yellow-dk);
	font-weight: 600;
	font-family: var(--font-primary);
	text-decoration: underline;
}
.filter-clear-all:hover { color: var(--color-navy-dark); }

/* Filter groups */
.filter-group {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #f0f1f5;
}
.filter-group:last-of-type { border-bottom: none; }

.filter-label {
	display: block;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--color-navy-dark);
	margin-bottom: 0.75rem;
}

/* Input with icon */
.filter-input-wrap {
	position: relative;
}
.filter-input-icon-left .filter-icon {
	position: absolute;
	left: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	stroke: #9ca3af;
	pointer-events: none;
}

.filter-input {
	width: 100%;
	padding: 0.72rem 1rem 0.72rem 2.6rem;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--color-navy-dark);
	background: var(--color-bg-light);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	outline: none;
}
.filter-input:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(253,183,47,0.15);
	background: var(--color-white);
}
.filter-input::placeholder { color: #b0b7c3; }

/* Clear location button */
.filter-clear-input {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: var(--color-yellow);
	border: none;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s;
}
.filter-clear-input:hover { background: var(--color-yellow-dk); }
.filter-clear-input svg { stroke: var(--color-navy-dark); }
.filter-clear-input--hidden { display: none; }

/* Radius slider */
.filter-radius-wrap { margin-top: 1rem; }

.filter-radius-label {
	font-size: 0.82rem;
	font-weight: 700;
	font-family: var(--font-primary);
	color: var(--color-yellow-dk);
	margin-bottom: 0.6rem;
}
.filter-radius-label span { font-size: 0.88rem; }

.filter-range-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(to right, var(--color-yellow) 0%, var(--color-yellow) 25%, #e5e7eb 25%, #e5e7eb 100%);
	outline: none;
	cursor: pointer;
}
.filter-range-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-white);
	border: 3px solid var(--color-yellow);
	box-shadow: 0 2px 8px rgba(253,183,47,0.4);
	cursor: pointer;
	transition: box-shadow 0.2s;
}
.filter-range-slider::-webkit-slider-thumb:hover {
	box-shadow: 0 4px 16px rgba(253,183,47,0.5);
}
.filter-range-slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-white);
	border: 3px solid var(--color-yellow);
	cursor: pointer;
}

/* Select dropdowns */
.filter-select-wrap {
	position: relative;
}
.filter-select-wrap .filter-icon {
	position: absolute;
	left: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	stroke: #9ca3af;
	pointer-events: none;
}
.filter-chevron {
	position: absolute;
	right: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	stroke: #9ca3af;
	pointer-events: none;
}

.filter-select {
	width: 100%;
	padding: 0.72rem 2.5rem 0.72rem 1rem;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--color-navy-dark);
	background: var(--color-bg-light);
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	cursor: pointer;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.filter-select-wrap.filter-input-icon-left .filter-select {
	padding-left: 2.6rem;
}
.filter-select:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(253,183,47,0.15);
	background: var(--color-white);
}
.filter-select option { color: var(--color-navy-dark); }

/* Find Jobs button */
.btn-find-jobs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: calc(100% - 3rem);
	margin: 1.25rem 1.5rem 1.5rem;
	padding: 0.9rem 1.5rem;
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	border: none;
	border-radius: 10px;
	font-family: var(--font-primary);
	font-weight: 800;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 6px 20px rgba(253,183,47,0.3);
}
.btn-find-jobs:hover {
	background: var(--color-yellow-dk);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(253,183,47,0.4);
}
.btn-find-jobs svg { stroke: var(--color-navy-dark); }

/* ---- JOB LISTINGS COLUMN ---- */
.jobs-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding: 0.9rem 1.25rem;
	background: var(--color-white);
	border: 1px solid #e8eaf0;
	border-radius: var(--border-radius);
	box-shadow: 0 2px 8px rgba(5,14,43,0.05);
}

.jobs-result-count {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}
.jobs-result-count strong {
	color: var(--color-navy-dark);
	font-family: var(--font-primary);
	font-size: 1.05rem;
}
.result-count-filtered {
	color: var(--color-yellow-dk);
	font-size: 0.82rem;
}

.jobs-sort-select {
	padding: 0.45rem 2rem 0.45rem 0.85rem;
	border: 1.5px solid #e5e7eb;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.88rem;
	color: var(--color-navy-dark);
	background: var(--color-bg-light);
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.6rem center;
	cursor: pointer;
	outline: none;
}
.jobs-sort-select:focus { border-color: var(--color-yellow); }

/* Mobile filter button */
.btn-mobile-filter {
	display: none;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-navy-dark);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	padding: 0.65rem 1.2rem;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.88rem;
	cursor: pointer;
	margin-bottom: 1.25rem;
	position: relative;
}
.filter-active-badge {
	width: 8px;
	height: 8px;
	background: var(--color-yellow);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	right: 8px;
}

/* ---- JOB CARDS v2 ---- */
.jobs-cards-grid {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.job-card-v2 {
	background: var(--color-white);
	border: 1.5px solid #eef0f6;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	transition: var(--transition);
	position: relative;
}
.job-card-v2:hover {
	border-color: rgba(253,183,47,0.4);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-3px);
}
.job-card-v2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--color-yellow);
	border-radius: 12px 0 0 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.job-card-v2:hover::before { opacity: 1; }

.job-card-v2-top {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	margin-bottom: 0.9rem;
}

.job-card-logo {
	width: 56px;
	height: 56px;
	border: 1.5px solid #e8eaf0;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-light);
}
.job-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.job-card-logo-placeholder { color: #b0b7c3; }

.job-card-main { flex: 1; min-width: 0; }

.job-card-meta-top {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

.job-type-badge {
	display: inline-block;
	padding: 0.22rem 0.7rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-family: var(--font-primary);
}
.job-type-badge--full-time  { background: rgba(16,185,129,0.1);  color: #059669; }
.job-type-badge--part-time  { background: rgba(59,130,246,0.1);  color: #2563eb; }
.job-type-badge--contract   { background: rgba(139,92,246,0.1);  color: #7c3aed; }
.job-type-badge--temporary  { background: rgba(245,158,11,0.1);  color: #d97706; }
.job-type-badge--volunteer  { background: rgba(236,72,153,0.1);  color: #db2777; }

.job-urgent-badge {
	display: inline-block;
	padding: 0.22rem 0.7rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(239,68,68,0.1);
	color: #dc2626;
	font-family: var(--font-primary);
}

.job-card-title {
	font-size: 1.15rem;
	margin: 0 0 0.6rem;
	line-height: 1.35;
}
.job-card-title a { color: var(--color-navy-dark); }
.job-card-title a:hover { color: var(--color-yellow-dk); }

.job-card-details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.job-detail-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.83rem;
	color: var(--color-text-muted);
}
.job-detail-item svg { stroke: var(--color-yellow-dk); flex-shrink: 0; }

.job-card-excerpt {
	font-size: 0.88rem;
	color: var(--color-text-muted);
	line-height: 1.65;
	margin: 0 0 1rem;
}

.job-card-v2-footer {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-top: 1rem;
	border-top: 1px solid #f0f1f5;
}

.job-posted-date,
.job-deadline-date {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.78rem;
	color: #9ca3af;
}
.job-posted-date svg, .job-deadline-date svg { stroke: #9ca3af; }

.btn-card-apply {
	margin-left: auto;
	background: var(--color-navy-dark);
	color: var(--color-white);
	padding: 0.5rem 1.4rem;
	border-radius: 50px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.85rem;
	transition: var(--transition);
	white-space: nowrap;
}
.btn-card-apply:hover {
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	transform: translateY(-1px);
}

/* Pagination */
.jobs-pagination { margin-top: 2.5rem; }

.jobs-pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.jobs-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--color-navy-dark);
	transition: var(--transition);
}
.jobs-pagination .page-numbers:hover {
	border-color: var(--color-yellow);
	background: rgba(253,183,47,0.08);
	color: var(--color-navy-dark);
}
.jobs-pagination .page-numbers.current {
	background: var(--color-yellow);
	border-color: var(--color-yellow);
	color: var(--color-navy-dark);
}
.jobs-pagination .page-numbers.prev,
.jobs-pagination .page-numbers.next {
	width: auto;
	padding: 0 1rem;
}

/* No results */
.jobs-no-results {
	text-align: center;
	padding: 5rem 2rem;
	background: var(--color-white);
	border: 1.5px solid #eef0f6;
	border-radius: var(--border-radius-lg);
}
.no-results-icon {
	width: 96px;
	height: 96px;
	background: var(--color-bg-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	stroke: #9ca3af;
}
.jobs-no-results h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.jobs-no-results p  { color: var(--color-text-muted); margin-bottom: 2rem; }

/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* ============================================================
   ABOUT PAGE
============================================================ */

.text-yellow { color: var(--color-yellow); }

/* ---- Hero ---- */
.about-hero {
	position: relative;
	height: 420px;
	background-color: var(--color-navy-dark);
	background-size: cover;
	background-position: center top;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(5, 14, 43, 0.80) 0%,
		rgba(5, 14, 43, 0.50) 60%,
		rgba(5, 14, 43, 0.30) 100%
	);
}
.about-hero-content {
	position: relative;
	z-index: 2;
}
.about-hero-content h1 {
	color: var(--color-white);
	font-size: 3.5rem;
	margin: 0;
	text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* ---- Who We Are ---- */
.about-who-section {
	padding: 6rem 1.5rem;
	background: var(--color-white);
	overflow: hidden;
}
.about-who-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

/* Stacked images */
.about-who-images {
	position: relative;
	height: 500px;
}
.about-img-accent {
	position: absolute;
	top: -16px;
	left: -16px;
	width: 220px;
	height: 300px;
	background: rgba(253, 183, 47, 0.10);
	border-radius: var(--border-radius-lg);
}
.about-img-primary {
	position: absolute;
	top: 0;
	left: 0;
	width: 55%;
	height: 420px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card-hover);
	z-index: 1;
}
.about-img-secondary {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 52%;
	height: 300px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card-hover);
	border: 5px solid var(--color-white);
	z-index: 2;
}

/* Content */
.about-who-content h2 { font-size: 2.4rem; margin-bottom: 1.25rem; }
.about-who-content p  { color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

.about-roles-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}
.about-roles-list li {
	position: relative;
	padding: 0.45rem 0 0.45rem 1.5rem;
	font-size: 0.93rem;
	color: var(--color-text);
	border-bottom: 1px solid #f3f4f6;
	line-height: 1.5;
}
.about-roles-list li:last-child { border-bottom: none; }
.about-roles-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	background: var(--color-yellow);
	border-radius: 50%;
}
.roles-accent {
	color: var(--color-text-muted);
	font-size: 0.82rem;
}

/* ---- Senior Consultant ---- */
.about-consultant-section {
	padding: 6rem 1.5rem;
	background: var(--color-bg-light);
	overflow: hidden;
}
.about-consultant-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-consultant-content h2 { font-size: 2.4rem; margin-bottom: 0.5rem; }
.consultant-name {
	font-size: 1.4rem;
	color: var(--color-navy-dark);
	margin-bottom: 0.35rem;
}
.consultant-role {
	font-size: 0.9rem;
	font-family: var(--font-primary);
	font-weight: 600;
	color: var(--color-yellow-dk);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}
.consultant-bio p {
	color: var(--color-text-muted);
	line-height: 1.8;
	font-size: 0.95rem;
	margin-bottom: 1rem;
}
.about-consultant-content .btn { margin-top: 0.75rem; }

/* Consultant image */
.about-consultant-image { display: flex; justify-content: center; }
.consultant-img-wrap {
	position: relative;
	display: inline-block;
}
.consultant-img-wrap img {
	width: 420px;
	max-width: 100%;
	height: 520px;
	object-fit: cover;
	object-position: top center;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-card-hover);
	display: block;
}
.consultant-img-badge {
	position: absolute;
	bottom: 2rem;
	left: -1.5rem;
	background: var(--color-yellow);
	border-radius: var(--border-radius);
	padding: 1rem 1.25rem;
	text-align: center;
	box-shadow: 0 8px 24px rgba(253,183,47,0.4);
	line-height: 1.2;
}
.badge-years {
	display: block;
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 900;
	color: var(--color-navy-dark);
}
.badge-label {
	font-family: var(--font-primary);
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ---- Global Presence ---- */
.about-global-section {
	background: var(--color-navy-dark);
	padding: 6rem 1.5rem;
	position: relative;
	overflow: hidden;
}
.about-global-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-global-inner { position: relative; z-index: 2; }

.about-global-heading {
	color: var(--color-white);
	font-size: 3rem;
	margin-bottom: 1rem;
}

.about-global-sub { margin-bottom: 3.5rem; }
.global-sub-highlight {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-yellow);
	position: relative;
}
.global-sub-highlight::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--color-yellow);
	opacity: 0.5;
	border-radius: 2px;
}

.about-global-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}
.global-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 3.5rem;
}
.global-stat strong {
	font-family: var(--font-primary);
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--color-yellow);
	line-height: 1;
	margin-bottom: 0.4rem;
}
.global-stat span {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.65);
	font-family: var(--font-primary);
	letter-spacing: 0.5px;
}
.global-stat-divider {
	width: 1px;
	height: 60px;
	background: rgba(255,255,255,0.15);
	flex-shrink: 0;
}

/* ---- About Page Responsive ---- */
@media (max-width: 991px) {
	.about-who-inner,
	.about-consultant-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.about-who-images { height: 380px; order: 2; }
	.about-who-content { order: 1; }
	.about-consultant-image { order: 2; }
	.about-consultant-content { order: 1; }
	.consultant-img-wrap img { width: 100%; height: 380px; }
	.consultant-img-badge { left: 1rem; }
	.about-hero-content h1 { font-size: 2.6rem; }
	.about-global-heading { font-size: 2.2rem; }
	.global-sub-highlight { font-size: 1.2rem; }
	.global-stat { padding: 0 2rem; }
	.global-stat strong { font-size: 2.8rem; }
}

@media (max-width: 600px) {
	.about-hero { height: 300px; }
	.about-hero-content h1 { font-size: 2rem; }
	.about-who-images { height: 300px; }
	.about-img-primary { width: 60%; height: 240px; }
	.about-img-secondary { width: 55%; height: 190px; }
	.about-global-stats { flex-direction: column; gap: 2rem; }
	.global-stat-divider { width: 60px; height: 1px; }
	.global-stat { padding: 0; }
}

/* ============================================================
   SERVICES PAGE
============================================================ */

/* ---- Hero ---- */
.services-hero {
	position: relative;
	height: 380px;
	background-color: var(--color-navy-dark);
	background-image: url('https://www.skyeducate.com/wp-content/uploads/2023/08/image-28.jpg');
	background-size: cover;
	background-position: center 30%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.services-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(5, 14, 43, 0.82) 0%,
		rgba(5, 14, 43, 0.55) 60%,
		rgba(5, 14, 43, 0.3) 100%
	);
}
.services-hero-content {
	position: relative;
	z-index: 2;
}
.services-hero-content h1 {
	color: var(--color-white);
	font-size: 3.5rem;
	margin: 0;
	text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* ---- Sections wrap ---- */
.services-sections-wrap { overflow: hidden; }

/* ---- Colour divider (before section 3) ---- */
.services-color-divider {
	display: flex;
	height: 6px;
}
.services-color-divider span {
	flex: 1;
}
.services-color-divider span:nth-child(1) { background: #e74c3c; }
.services-color-divider span:nth-child(2) { background: #e67e22; }
.services-color-divider span:nth-child(3) { background: var(--color-yellow); }
.services-color-divider span:nth-child(4) { background: #27ae60; }
.services-color-divider span:nth-child(5) { background: #2980b9; }

/* ---- Individual service row ---- */
.service-row {
	padding: 5.5rem 1.5rem;
	background: var(--color-white);
}
.service-row:nth-child(even) {
	background: var(--color-bg-light);
}

.service-row-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

/* Image column */
.service-image-col { display: flex; justify-content: center; align-items: center; }

.service-img-wrap {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card-hover);
}
.service-img-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(253, 183, 47, 0.08) 0%,
		transparent 60%
	);
	z-index: 1;
	pointer-events: none;
}
.service-img-wrap img {
	width: 100%;
	max-width: 480px;
	height: 360px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.service-row:hover .service-img-wrap img {
	transform: scale(1.03);
}

/* Content column */
.service-content-col {}

.service-heading {
	margin-bottom: 1.5rem;
	line-height: 1.15;
}
.service-heading-dark {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	color: var(--color-navy-dark);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.service-heading-accent {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	color: var(--color-yellow);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	position: relative;
}
.service-heading-accent::after {
	content: '';
	display: block;
	width: 50px;
	height: 4px;
	background: var(--color-yellow);
	border-radius: 2px;
	margin-top: 0.75rem;
	opacity: 0.6;
}

.service-description {
	margin-bottom: 1.5rem;
}
.service-description p {
	color: var(--color-text-muted);
	line-height: 1.8;
	font-size: 0.95rem;
	margin: 0 0 0.75rem;
}

/* Bullet list */
.service-bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}
.service-bullets li {
	position: relative;
	padding: 0.45rem 0 0.45rem 1.6rem;
	font-size: 0.92rem;
	color: var(--color-text);
	border-bottom: 1px solid #f0f1f5;
	line-height: 1.5;
}
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--color-yellow);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
============================================================ */

/* ---- Hero ---- */
.contact-hero {
	position: relative;
	height: 380px;
	background-color: var(--color-navy-dark);
	background-image: url('https://www.skyeducate.com/wp-content/uploads/2026/02/14-15-768x998.jpg');
	background-size: cover;
	background-position: center 20%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(5, 14, 43, 0.80) 0%,
		rgba(5, 14, 43, 0.50) 55%,
		rgba(5, 14, 43, 0.25) 100%
	);
}
.contact-hero-content {
	position: relative;
	z-index: 2;
}
.contact-hero-content h1 {
	color: var(--color-white);
	font-size: 3.5rem;
	margin: 0;
	text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* ---- Contact body ---- */
.contact-body-section {
	padding: 5rem 1.5rem;
	background: var(--color-white);
}
.contact-body-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 4rem;
	align-items: start;
}

/* ---- Left info column ---- */
.contact-reach-heading { margin-bottom: 2.5rem; }
.contact-reach-heading h2 {
	font-size: 2.2rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.contact-heading-rule {
	width: 60px;
	height: 4px;
	background: var(--color-yellow);
	border-radius: 2px;
}

.contact-info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem;
}
.contact-info-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid #f0f1f5;
}
.contact-info-list li:first-child { padding-top: 0; }
.contact-info-list li:last-child  { border-bottom: none; }

.contact-info-icon {
	width: 44px;
	height: 44px;
	background: rgba(253, 183, 47, 0.12);
	border: 1.5px solid rgba(253, 183, 47, 0.3);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-info-icon svg { stroke: var(--color-yellow); width: 18px; height: 18px; }

.contact-info-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.contact-info-label {
	font-family: var(--font-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-text-muted);
}
.contact-info-text a,
.contact-info-text span {
	font-size: 0.95rem;
	color: var(--color-navy-dark);
	font-weight: 500;
}
.contact-info-text a:hover { color: var(--color-yellow-dk); }

/* Social block (left col) */
.contact-social-block { margin-top: 1rem; }
.contact-social-label {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--color-navy-dark);
	margin-bottom: 0.85rem;
}
.contact-social-icons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.contact-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--color-navy-dark);
	color: var(--color-white);
	border-radius: 10px;
	transition: var(--transition);
}
.contact-social-btn:hover {
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	transform: translateY(-3px);
}
.contact-social-btn svg { fill: currentColor; }

/* ---- Right form card ---- */
.contact-form-card {
	background: var(--color-navy-dark);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(5, 14, 43, 0.25);
}

.contact-form-card-header {
	padding: 1.75rem 2rem 1.25rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-form-card-header p {
	color: rgba(255,255,255,0.8);
	font-size: 0.9rem;
	margin: 0 0 0.5rem;
	line-height: 1.6;
}
.contact-form-email-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-yellow);
	font-size: 0.85rem;
	font-weight: 600;
	font-family: var(--font-primary);
	transition: opacity 0.2s;
}
.contact-form-email-link:hover { opacity: 0.8; color: var(--color-yellow); }
.contact-form-email-link svg  { stroke: var(--color-yellow); flex-shrink: 0; }

/* Alert messages */
.contact-alert {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 1.25rem 2rem 0;
	padding: 0.85rem 1.25rem;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 600;
	font-family: var(--font-primary);
}
.contact-alert--success {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #34d399;
}
.contact-alert--success svg { stroke: #34d399; flex-shrink: 0; }
.contact-alert--error {
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #f87171;
}
.contact-alert--error svg { stroke: #f87171; flex-shrink: 0; }

/* Form */
.contact-form { padding: 1.5rem 2rem 0; }

.cform-row { margin-bottom: 1rem; }
.cform-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.cform-group { display: flex; flex-direction: column; }

.cform-input {
	background: rgba(255,255,255,0.07);
	border: 1.5px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	padding: 0.8rem 1rem;
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.9rem;
	outline: none;
	transition: border-color 0.25s ease, background 0.25s ease;
	width: 100%;
}
.cform-input::placeholder { color: rgba(255,255,255,0.4); }
.cform-input:focus {
	border-color: var(--color-yellow);
	background: rgba(255,255,255,0.10);
	box-shadow: 0 0 0 3px rgba(253,183,47,0.12);
}
.cform-textarea { resize: vertical; min-height: 120px; }

/* Social icons inside form */
.cform-social-row {
	display: flex;
	gap: 0.6rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}
.cform-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(255,255,255,0.1);
	border-radius: 6px;
	color: rgba(255,255,255,0.7);
	transition: var(--transition);
}
.cform-social-icon:hover {
	background: var(--color-yellow);
	color: var(--color-navy-dark);
}
.cform-social-icon svg { fill: currentColor; display: block; }

/* Submit button */
.btn-contact-submit {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 1rem;
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	border: none;
	border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
	font-family: var(--font-primary);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: var(--transition);
	margin-top: 0.5rem;
}
.btn-contact-submit:hover {
	background: var(--color-yellow-dk);
	box-shadow: 0 8px 24px rgba(253, 183, 47, 0.35);
}
.btn-contact-submit svg { stroke: var(--color-navy-dark); }

/* ---- Map ---- */
.contact-map-wrap {
	width: 100%;
	line-height: 0;
	border-top: 4px solid var(--color-yellow);
}
.contact-map-wrap iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

/* ---- Contact page responsive ---- */
@media (max-width: 991px) {
	.contact-body-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.contact-hero-content h1 { font-size: 2.6rem; }
	.contact-hero { height: 300px; }
}

@media (max-width: 600px) {
	.contact-hero { height: 260px; }
	.contact-hero-content h1 { font-size: 2rem; }
	.cform-row--two { grid-template-columns: 1fr; }
	.contact-form-card-header,
	.contact-form { padding-left: 1.25rem; padding-right: 1.25rem; }
	.contact-alert { margin-left: 1.25rem; margin-right: 1.25rem; }
	.contact-reach-heading h2 { font-size: 1.8rem; }
	.contact-map-wrap iframe { height: 300px; }
}

/* ---- Services page responsive ---- */
@media (max-width: 991px) {
	.service-row-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	/* Always show image above content on mobile */
	.service-image-col { order: -1; }
	.service-content-col { order: 1; }

	.service-img-wrap img {
		max-width: 100%;
		height: 280px;
	}

	.service-heading-dark,
	.service-heading-accent { font-size: 1.6rem; }

	.services-hero-content h1 { font-size: 2.6rem; }
	.services-hero { height: 300px; }
}

@media (max-width: 600px) {
	.service-row { padding: 3.5rem 1.5rem; }
	.service-heading-dark,
	.service-heading-accent { font-size: 1.4rem; }
	.services-hero-content h1 { font-size: 2rem; }
	.services-hero { height: 260px; }
}


/* ============================================================
   REFERENCE FORM PAGE
   ============================================================ */

.ref-form-page {
	background: #f5f7fa;
	min-height: 80vh;
	padding: 3rem 1rem 5rem;
}

.ref-form-wrap {
	max-width: 860px;
	margin: 0 auto;
}

/* Header / logo strip */
.ref-form-logo {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: 1.5rem;
}
.ref-form-logo img {
	height: 36px;
	width: auto;
}
.ref-form-logo-text {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--color-navy-dark);
}

.ref-form-header {
	margin-bottom: 2rem;
}
.ref-form-main-title {
	font-size: 1.7rem;
	color: var(--color-navy-dark);
	margin-bottom: .75rem;
}
.ref-form-intro {
	font-size: .9rem;
	color: #4a5568;
	line-height: 1.7;
}

/* Full-page form body */
.ref-form-body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Sections */
.ref-section {
	background: #fff;
	border-radius: 14px;
	padding: 2rem;
	box-shadow: 0 2px 16px rgba(5,14,43,.07);
}
.ref-section-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin-bottom: 1.5rem;
	padding-bottom: .75rem;
	border-bottom: 2px solid var(--color-yellow);
	display: flex;
	align-items: center;
	gap: .75rem;
}
.ref-section-title span {
	background: var(--color-navy-dark);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .25rem .65rem;
	border-radius: 20px;
}
.ref-section-intro {
	font-size: .875rem;
	color: #4a5568;
	margin: -.75rem 0 1.25rem;
}

/* Sub-sections */
.ref-subsection {
	margin-bottom: 1.75rem;
}
.ref-subsection:last-child {
	margin-bottom: 0;
}
.ref-subsection-title {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #8492a6;
	margin-bottom: 1rem;
	padding-bottom: .5rem;
	border-bottom: 1px solid #edf0f7;
}
.ref-subsection-note {
	font-size: .85rem;
	color: #4a5568;
	margin-bottom: .75rem;
	font-style: italic;
}

/* Fields */
.ref-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.25rem;
	margin-bottom: 1rem;
}
.ref-field {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	margin-bottom: .75rem;
}
.ref-field--full {
	grid-column: 1 / -1;
}
.ref-field label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--color-navy-dark);
}
.ref-req { color: #e53e3e; }

.ref-field input[type="text"],
.ref-field input[type="email"],
.ref-field input[type="tel"],
.ref-field input[type="date"],
.ref-field textarea {
	border: 1.5px solid #dce3ee;
	border-radius: 8px;
	padding: .65rem .9rem;
	font-size: .875rem;
	font-family: var(--font-body);
	color: var(--color-navy-dark);
	outline: none;
	transition: border-color .2s;
	background: #fff;
}
.ref-field input:focus,
.ref-field textarea:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(253,183,47,.15);
}
.ref-field textarea { resize: vertical; }
.ref-input-readonly {
	background: #f5f7fa !important;
	color: #8492a6 !important;
	cursor: not-allowed;
}

/* Disclosure blocks */
.ref-disclosure-block {
	background: #f9fafb;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
}
.ref-disclosure-question {
	font-size: .9rem;
	font-weight: 600;
	color: var(--color-navy-dark);
	margin-bottom: .75rem;
}
.ref-radio-group {
	display: flex;
	gap: 1.5rem;
}
.ref-radio-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
}
.ref-radio-item input[type="radio"] {
	accent-color: var(--color-yellow);
	width: 15px;
	height: 15px;
}
.ref-conditional-detail {
	margin-top: .75rem;
}
.ref-conditional-detail label {
	display: block;
	font-size: .8rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: .35rem;
}
.ref-conditional-detail textarea {
	width: 100%;
	border: 1.5px solid #fca5a5;
	border-radius: 8px;
	padding: .65rem .9rem;
	font-size: .875rem;
	font-family: var(--font-body);
	outline: none;
	resize: vertical;
	background: #fff5f5;
}
.ref-conditional-detail textarea:focus {
	border-color: #f87171;
}

/* Rating table */
.ref-rating-table-wrap {
	overflow-x: auto;
	margin-bottom: 1.5rem;
}
.ref-rating-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .82rem;
}
.ref-rating-table thead tr {
	background: var(--color-navy-dark);
	color: #fff;
}
.ref-rating-table thead th {
	padding: .65rem .75rem;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
}
.ref-rating-table thead th.ref-criterion-col {
	text-align: left;
	min-width: 260px;
}
.ref-rating-table tbody tr:nth-child(even) { background: #f9fafb; }
.ref-rating-table tbody tr:hover { background: #fffbeb; }
.ref-rating-table tbody td {
	padding: .55rem .75rem;
	border-bottom: 1px solid #edf0f7;
	vertical-align: middle;
}
.ref-criterion-col {
	color: var(--color-navy-dark);
}
.ref-criterion-num {
	display: inline-block;
	min-width: 22px;
	color: #8492a6;
	font-size: .75rem;
}
.ref-rating-cell {
	text-align: center;
}
.ref-rating-radio {
	display: flex;
	justify-content: center;
	cursor: pointer;
}
.ref-rating-radio input[type="radio"] {
	accent-color: var(--color-yellow);
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.ref-rating-overall {
	background: #fffbeb !important;
	font-weight: 700;
}

/* Actions */
.ref-form-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.ref-submit-btn {
	min-width: 200px;
}
.ref-decline-link {
	font-size: .825rem;
	color: #9ca3af;
	text-decoration: underline;
	cursor: pointer;
}
.ref-decline-link:hover {
	color: #e53e3e;
}

/* Status cards (invalid / success / notice) */
.ref-form-card {
	background: #fff;
	border-radius: 14px;
	padding: 3rem 2.5rem;
	box-shadow: 0 2px 16px rgba(5,14,43,.07);
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.ref-form-card h1 {
	font-size: 1.6rem;
	color: var(--color-navy-dark);
	margin-bottom: .75rem;
}
.ref-form-card p {
	font-size: .95rem;
	color: #4a5568;
	line-height: 1.7;
}
.ref-done-note {
	font-size: .85rem !important;
	color: #9ca3af !important;
	margin-top: 1rem;
}
.ref-status-icon {
	margin: 0 auto 1.5rem;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ref-status-icon--success {
	background: #dcfce7;
	color: #16a34a;
}
.ref-status-icon--error {
	background: #fee2e2;
	color: #dc2626;
}

/* Responsive */
@media (max-width: 700px) {
	.ref-form-section-title { font-size: .95rem; }
	.ref-form-row { grid-template-columns: 1fr; }
	.ref-form-card { padding: 2rem 1.25rem; }
	.ref-section { padding: 1.5rem 1rem; }
}