/**
 * about.css — Student Point Sikar 2026
 *
 * About Us page design (ported from about-us.html). Hand-written semantic CSS —
 * no Tailwind. Loaded only on the About page (is_page('about-us')) after the
 * base/header/footer styles so its selectors win specificity ties.
 *
 * Self-contained: reuses the global .container (style.css) but ships its own
 * button (.about-btn*) and section-header (.about-section-head / .about-heading)
 * styles, because the theme's .btn*/.section-* live in front-page-only home.css.
 * Fonts (Sora + DM Sans) and FontAwesome are enqueued globally by the theme.
 */

.about-page {
	font-family: 'DM Sans', sans-serif;
	color: #1a1a2e;
}

.about-page h1,
.about-page h2,
.about-page h3 {
	font-family: 'Sora', sans-serif;
}

/* ---- shared primitives ---- */
.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 6px 16px;
	border: 1px solid rgba( 249, 214, 123, 0.5 );
	border-radius: 999px;
	background: rgba( 249, 214, 123, 0.2 );
	font-family: 'Sora', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #1565c0;
}
.about-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #f0c44a;
}
.about-badge-light {
	border-color: rgba( 249, 214, 123, 0.45 );
	background: rgba( 249, 214, 123, 0.18 );
	color: #f9d67b;
}
.about-badge-light .about-badge-dot {
	background: #f9d67b;
}

.about-heading {
	margin: 0 0 16px;
	font-size: clamp( 28px, 4vw, 42px );
	font-weight: 700;
	line-height: 1.2;
}
.about-section-head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}
.about-section-sub {
	font-size: 16px;
	line-height: 1.75;
	color: #5a6a85;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 999px;
	border: 2px solid transparent;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.about-btn:hover {
	transform: translateY( -2px );
}
.about-btn-accent {
	border-color: #f9d67b;
	background: #f9d67b;
	color: #1565c0;
}
.about-btn-accent:hover {
	background: #f0c44a;
	box-shadow: 0 8px 24px rgba( 249, 214, 123, 0.35 );
}
.about-btn-ghost {
	border-color: rgba( 255, 255, 255, 0.45 );
	color: #fff;
}
.about-btn-ghost:hover {
	background: #fff;
	color: #1565c0;
}

/* ---- HERO ---- */
.about-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 104px;
	background: linear-gradient( 135deg, #0d47a1, #1565c0 55%, #1976d2 );
}
.about-hero-ring {
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba( 255, 255, 255, 0.1 );
	pointer-events: none;
}
.about-hero-ring-1 {
	top: -176px;
	right: -96px;
	width: 430px;
	height: 430px;
}
.about-hero-ring-2 {
	bottom: -96px;
	left: 6%;
	width: 240px;
	height: 240px;
}
.about-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 360px;
	align-items: center;
	gap: 48px;
}
.about-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 13px;
	color: rgba( 255, 255, 255, 0.65 );
}
.about-breadcrumb a {
	color: rgba( 255, 255, 255, 0.65 );
	text-decoration: none;
	transition: color 0.2s ease;
}
.about-breadcrumb a:hover {
	color: #f9d67b;
}
.about-breadcrumb-sep {
	font-size: 10px;
	color: rgba( 255, 255, 255, 0.35 );
}
.about-breadcrumb-current {
	font-weight: 600;
	color: #f9d67b;
}
.about-hero-title {
	margin: 0 0 20px;
	font-size: clamp( 34px, 5vw, 58px );
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
	text-transform: uppercase;
}
.about-hero-sub {
	max-width: 650px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba( 255, 255, 255, 0.75 );
}
.about-hero-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.about-hero-card {
	padding: 20px;
	border: 1px solid rgba( 255, 255, 255, 0.15 );
	border-radius: 12px;
	background: rgba( 255, 255, 255, 0.1 );
	backdrop-filter: blur( 6px );
}
.about-hero-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-bottom: 12px;
	border-radius: 8px;
	background: rgba( 249, 214, 123, 0.2 );
	color: #f9d67b;
}
.about-hero-card strong {
	display: block;
	font-family: 'Sora', sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}
.about-hero-card p {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.4;
	color: rgba( 255, 255, 255, 0.65 );
}

/* ---- INTRO ---- */
.about-intro {
	padding: 80px 0;
	background: #f5f8ff;
}
.about-intro-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	align-items: center;
	gap: 48px;
}
.about-intro-media {
	position: relative;
}
.about-intro-blob {
	position: absolute;
	border-radius: 999px;
	z-index: 0;
}
.about-intro-blob-1 {
	top: -20px;
	left: -20px;
	width: 112px;
	height: 112px;
	background: rgba( 249, 214, 123, 0.25 );
}
.about-intro-blob-2 {
	right: -16px;
	bottom: -20px;
	width: 128px;
	height: 128px;
	background: rgba( 21, 101, 192, 0.1 );
}
.about-intro-figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid #d0def5;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 48px rgba( 21, 101, 192, 0.12 );
}
.about-intro-figure img {
	display: block;
	width: 100%;
	height: 520px;
	object-fit: cover;
	object-position: top;
}
.about-intro-figure figcaption {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	padding: 16px;
	border: 1px solid rgba( 255, 255, 255, 0.35 );
	border-radius: 12px;
	background: rgba( 255, 255, 255, 0.9 );
	backdrop-filter: blur( 6px );
	box-shadow: 0 8px 32px rgba( 21, 101, 192, 0.14 );
	font-family: 'Sora', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1565c0;
}
.about-prose p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.75;
	color: #5a6a85;
}
.about-feature-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}
.about-feature-card {
	padding: 20px;
	border: 1px solid #d0def5;
	border-radius: 12px;
	background: #fff;
}
.about-feature-card i {
	margin-bottom: 12px;
	font-size: 20px;
	color: #1565c0;
}
.about-feature-card h3 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
}
.about-feature-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6a85;
}

/* ---- WHY CHOOSE US ---- */
.about-why {
	padding: 80px 0;
	background: #fff;
}
.about-why-grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 24px;
}
.about-why-card {
	padding: 24px;
	border: 1px solid #d0def5;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 12px rgba( 21, 101, 192, 0.08 );
}
.about-why-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: #eef4ff;
	font-size: 20px;
	color: #1565c0;
}
.about-why-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}
.about-why-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6a85;
}

/* ---- VISION & MISSION ---- */
.about-vm {
	padding: 80px 0;
	background: #f5f8ff;
}
.about-vm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.about-vm-card {
	position: relative;
	overflow: hidden;
	padding: 32px;
	border: 1px solid #d0def5;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 32px rgba( 21, 101, 192, 0.1 );
}
.about-vm-corner {
	position: absolute;
	top: 0;
	right: 0;
	width: 96px;
	height: 96px;
	border-bottom-left-radius: 999px;
	background: rgba( 249, 214, 123, 0.25 );
}
.about-vm-corner-alt {
	background: rgba( 21, 101, 192, 0.1 );
}
.about-vm-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	border-radius: 12px;
	font-size: 24px;
}
.about-vm-icon-primary {
	background: #1565c0;
	color: #fff;
}
.about-vm-icon-accent {
	background: #f9d67b;
	color: #1565c0;
}
.about-vm-card h2 {
	position: relative;
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
}
.about-vm-card p {
	position: relative;
	margin: 0;
	line-height: 1.75;
	color: #5a6a85;
}

/* ---- STATS BAND ---- */
.about-stats {
	padding: 80px 0;
	background: #fff;
}
.about-stats-panel {
	overflow: hidden;
	padding: 40px;
	border-radius: 12px;
	background: linear-gradient( 135deg, #0d47a1, #1565c0 55%, #1976d2 );
	box-shadow: 0 16px 48px rgba( 21, 101, 192, 0.18 );
}
.about-stats-grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 20px;
}
.about-stats-item {
	padding: 24px;
	border: 1px solid rgba( 255, 255, 255, 0.15 );
	border-radius: 12px;
	background: rgba( 255, 255, 255, 0.1 );
	backdrop-filter: blur( 6px );
	text-align: center;
}
.about-stats-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 auto 12px;
	border-radius: 12px;
	background: rgba( 249, 214, 123, 0.2 );
	color: #f9d67b;
}
.about-stats-item strong {
	display: block;
	font-family: 'Sora', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #fff;
}
.about-stats-item span {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: rgba( 255, 255, 255, 0.7 );
}

/* ---- PROCESS ---- */
.about-process {
	padding: 80px 0;
	background: #f5f8ff;
}
.about-process-grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 24px;
}
.about-process-card {
	padding: 24px;
	border: 1px solid #d0def5;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 12px rgba( 21, 101, 192, 0.08 );
}
.about-process-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: #1565c0;
	font-family: 'Sora', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
}
.about-process-num-accent {
	background: #f9d67b;
	color: #1565c0;
}
.about-process-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}
.about-process-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6a85;
}

/* ---- TESTIMONIALS ---- */
.about-testimonials {
	padding: 80px 0;
	background: #fff;
}
.about-testimonials-grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 24px;
}
.about-testimonial {
	padding: 24px;
	border: 1px solid #d0def5;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 32px rgba( 21, 101, 192, 0.1 );
}
.about-stars {
	margin-bottom: 16px;
	font-size: 14px;
	color: #f0c44a;
}
.about-testimonial-quote {
	margin: 0 0 24px;
	line-height: 1.75;
	color: #5a6a85;
}
.about-testimonial-person {
	display: flex;
	align-items: center;
	gap: 12px;
}
.about-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #eef4ff;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	color: #1565c0;
}
.about-testimonial-person h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}
.about-testimonial-person p {
	margin: 0;
	font-size: 12px;
	color: #5a6a85;
}

/* ---- CTA ---- */
.about-cta {
	padding: 80px 0;
	background: #f5f8ff;
}
.about-cta-panel {
	position: relative;
	overflow: hidden;
	padding: 40px;
	border-radius: 12px;
	background: linear-gradient( 135deg, #0d47a1, #1565c0 55%, #1976d2 );
	box-shadow: 0 16px 48px rgba( 21, 101, 192, 0.18 );
}
.about-cta-ring {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}
.about-cta-ring-1 {
	top: -80px;
	right: -64px;
	width: 224px;
	height: 224px;
	border: 1px solid rgba( 255, 255, 255, 0.1 );
}
.about-cta-ring-2 {
	bottom: -80px;
	left: 40px;
	width: 176px;
	height: 176px;
	border: 1px solid rgba( 249, 214, 123, 0.2 );
}
.about-cta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 40px;
}
.about-cta-title {
	margin: 0 0 16px;
	font-size: clamp( 28px, 4vw, 44px );
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
}
.about-cta-sub {
	max-width: 620px;
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: rgba( 255, 255, 255, 0.75 );
}
.about-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

/* ---- responsive ---- */
@media ( max-width: 992px ) {
	.about-hero-inner,
	.about-intro-grid,
	.about-cta-inner {
		grid-template-columns: 1fr;
	}
	.about-why-grid,
	.about-stats-grid,
	.about-process-grid {
		grid-template-columns: 1fr 1fr;
	}
	.about-testimonials-grid {
		grid-template-columns: 1fr;
	}
	.about-cta-actions {
		justify-content: flex-start;
	}
}

@media ( max-width: 600px ) {
	.about-vm-grid,
	.about-why-grid,
	.about-stats-grid,
	.about-process-grid,
	.about-feature-cards {
		grid-template-columns: 1fr;
	}
	.about-intro-figure img {
		height: 420px;
	}
}

/* Mockup hides the hero stat cards on the narrowest screens. */
@media ( max-width: 520px ) {
	.about-hero-cards {
		display: none;
	}
}
