/* ===== ALUMNI PAGE — Full Rebuild ===== */

/* --- Page Banner --- */
.page-banner {
	position: relative;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 120px 0 64px;
	color: #fff;
	overflow: hidden;
}

.page-banner::before {
	content: "";
	position: absolute;
	top: -48%;
	right: -10%;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(244, 197, 66, 0.2) 0%,
		transparent 70%
	);
}

.page-banner::after {
	content: "";
	position: absolute;
	left: -6%;
	bottom: -45%;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
}

.banner-content {
	position: relative;
	z-index: 1;
}

.banner-content h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	margin: 12px 0 14px;
	line-height: 1.14;
}

.banner-tagline {
	font-size: clamp(16px, 2.2vw, 22px);
	max-width: 780px;
	opacity: 0.94;
	line-height: 1.6;
}

/* --- Breadcrumb --- */
.breadcrumb-list {
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb-list li + li::before {
	content: "/";
	opacity: 0.55;
}

.breadcrumb-list li a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.breadcrumb-list li a:hover {
	color: var(--color-cta-bg);
}

.breadcrumb-list li.active span {
	color: #fff;
	font-weight: 600;
}

/* --- Stats Bar --- */
.alumni-stats {
	background: #fff;
	padding: 0;
	margin-top: -32px;
	position: relative;
	z-index: 2;
}

.alumni-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.alumni-stat-item {
	padding: 28px 20px;
	text-align: center;
	border-right: 1px solid #f0e8e2;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.alumni-stat-item:last-child {
	border-right: none;
}

.alumni-stat-item strong {
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 800;
	color: var(--color-primary-bg);
	line-height: 1.1;
}

.alumni-stat-item span {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* --- Where BRD Talent Goes (Bento Grid) --- */
.talent-section {
	background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.talent-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 48px;
}

.talent-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: var(--color-primary-bg);
	background: rgba(139, 46, 43, 0.08);
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.talent-title {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: var(--color-primary-bg);
	margin-bottom: 16px;
	line-height: 1.2;
}

.talent-subtitle {
	font-size: clamp(16px, 2.2vw, 19px);
	color: #666;
	line-height: 1.6;
	max-width: 680px;
	margin: 0 auto;
}

.talent-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.talent-divider span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary-bg);
}

.talent-divider span:nth-child(2) {
	width: 6px;
	height: 6px;
	opacity: 0.6;
}

.talent-divider span:nth-child(3) {
	width: 4px;
	height: 4px;
	opacity: 0.3;
}

/* Bento Grid Layout */
.talent-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	grid-auto-rows: 260px;
}

/* Card Styles */
.talent-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	cursor: pointer;
}

.talent-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.talent-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}

.talent-card:hover img {
	transform: scale(1.08);
}

/* Card Variants */
.talent-card--hero {
	grid-column: span 2;
	grid-row: span 2;
}

.talent-card--featured-lg {
	grid-column: span 2;
	grid-row: span 1;
}

.talent-card--featured-md {
	grid-column: span 1;
	grid-row: span 2;
}

/* Overlay Content */
.talent-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.talent-card__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	background: rgba(244, 197, 66, 0.2);
	border: 1px solid rgba(244, 197, 66, 0.6);
	color: #f4c542;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 6px;
	width: fit-content;
}

.talent-card__name {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin: 0;
}

.talent-card--hero .talent-card__name {
	font-size: 28px;
}

.talent-card__role {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.4;
	font-weight: 500;
}

.talent-card--hero .talent-card__role {
	font-size: 16px;
}

.talent-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
	flex-wrap: wrap;
}

.talent-card__batch,
.talent-card__loc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
}

.talent-card__loc::before {
	content: "📍";
	margin-right: 4px;
}

.talent-card__batch {
	background: rgba(255, 255, 255, 0.1);
	padding: 4px 10px;
	border-radius: 8px;
}

/* --- Notable Alumni Spotlight --- */
.alumni-spotlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

.spotlight-card {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.spotlight-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.spotlight-card--featured {
	grid-column: span 2;
	grid-row: span 2;
}

.spotlight-img {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.spotlight-card--featured .spotlight-img {
	height: 100%;
	min-height: 380px;
}

.spotlight-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-img img {
	transform: scale(1.05);
}

.spotlight-info {
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.spotlight-card--featured .spotlight-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
	color: #fff;
}

.spotlight-card--featured {
	position: relative;
}

.spotlight-info h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary-bg);
	line-height: 1.3;
}

.spotlight-card--featured .spotlight-info h3 {
	color: #fff;
	font-size: 24px;
}

.spotlight-batch {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #f4c542;
}

.spotlight-role {
	font-size: 14px;
	color: #575757;
	line-height: 1.5;
}

.spotlight-card--featured .spotlight-role {
	color: rgba(255, 255, 255, 0.88);
}

.spotlight-loc {
	font-size: 12px;
	color: #999;
	display: flex;
	align-items: center;
	gap: 4px;
}

.spotlight-loc::before {
	content: "📍";
	font-size: 11px;
}

.spotlight-card--featured .spotlight-loc {
	color: rgba(255, 255, 255, 0.7);
}

/* --- Recruiting Partners Marquee --- */
.alumni-partners {
	padding: 60px 0 40px;
	background: linear-gradient(180deg, #fff8f5 0%, #fff 100%);
}

.partners-marquee {
	overflow: hidden;
	position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.partners-marquee::before {
	left: 0;
	background: linear-gradient(to right, #fff8f5 0%, transparent 100%);
}

.partners-marquee::after {
	right: 0;
	background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.partners-track {
	display: flex;
	gap: 48px;
	animation: marqueeScroll 28s linear infinite;
	width: max-content;
}

.partner-logo {
	flex-shrink: 0;
	width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-logo img {
	max-width: 100%;
	max-height: 50px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition:
		filter 0.3s,
		opacity 0.3s;
}

.partner-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

@keyframes marqueeScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* --- Why Stay Connected --- */
.alumni-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.why-card {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 18px;
	padding: 28px 24px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.why-icon {
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	margin-bottom: 16px;
}

.why-card h3 {
	font-size: 20px;
	line-height: 1.28;
	color: var(--color-primary-bg);
	margin-bottom: 10px;
}

.why-card p {
	color: #575757;
	line-height: 1.66;
	font-size: 15px;
}

/* --- Alumni Registration Form --- */
.alumni-form-wrapper {
	max-width: 740px;
	margin: 0 auto;
	position: relative;
}

.alumni-form {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 20px;
	padding: 36px 32px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
	transition: filter 0.5s ease;
}

.alumni-form.form-blurred {
	filter: blur(6px);
	pointer-events: none;
	user-select: none;
}

/* Photo upload area */
.form-photo-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
}

.photo-upload-label {
	cursor: pointer;
	display: block;
}

.photo-preview-circle {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 3px dashed rgba(139, 46, 43, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background-color: #faf6f3;
	background-size: cover;
	background-position: center;
	transition:
		border-color 0.3s,
		background-color 0.3s,
		transform 0.2s;
	overflow: hidden;
}

.photo-preview-circle:hover {
	border-color: var(--color-primary-bg);
	background-color: #f5ede8;
	transform: scale(1.04);
}

.photo-preview-circle.has-image {
	border-style: solid;
	border-color: var(--color-primary-bg);
}

.photo-placeholder-icon {
	color: rgba(139, 46, 43, 0.4);
}

.photo-upload-text {
	font-size: 11px;
	font-weight: 600;
	color: rgba(139, 46, 43, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.photo-hint {
	font-size: 12px;
	color: #999;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Form rows and groups */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}

.form-group .req {
	color: #d93025;
}

.optional-label {
	font-weight: 400;
	color: #999;
	font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #ddd5cf;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	color: #333;
	background: #fdfcfb;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--color-primary-bg);
	box-shadow: 0 0 0 3px rgba(139, 46, 43, 0.1);
	background: #fff;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23666' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

/* Submit button */
.submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition:
		background 0.3s,
		transform 0.2s,
		box-shadow 0.3s;
	letter-spacing: 0.3px;
	width: 100%;
	justify-content: center;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #5c1a18 0%, var(--color-primary-bg) 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(139, 46, 43, 0.25);
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Error message */
.form-error-msg {
	margin-top: 16px;
	padding: 14px 18px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	color: #b91c1c;
	font-size: 14px;
	line-height: 1.6;
}

/* --- Success Overlay --- */
.alumni-success-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.alumni-success-overlay.visible {
	opacity: 1;
}

.success-content {
	text-align: center;
	padding: 40px;
}

.success-checkmark {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
}

.success-checkmark svg {
	width: 100%;
	height: 100%;
}

.checkmark-circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #4caf50;
	fill: none;
	animation: checkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	stroke: #4caf50;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	animation: checkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes checkStroke {
	100% {
		stroke-dashoffset: 0;
	}
}

.success-content h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--color-primary-bg);
	margin-bottom: 8px;
}

.success-content p {
	font-size: 15px;
	color: #575757;
	line-height: 1.6;
	max-width: 380px;
	margin: 0 auto;
}

/* --- Admissions CTA --- */
.overview-cta {
	margin-top: 0;
	background: linear-gradient(135deg, var(--color-primary-bg) 0%, #5c1a18 100%);
	padding: 60px 0;
}

.overview-cta .cta-content {
	gap: 30px;
}

.overview-cta .cta-text h2 {
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.overview-cta .cta-text p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.86);
	max-width: 560px;
	line-height: 1.6;
}

.overview-cta .cta-actions {
	gap: 16px;
	flex-shrink: 0;
}

.overview-cta .cta-btn.apply {
	display: inline-block;
	padding: 14px 36px;
	background: linear-gradient(90deg, #f7c948 0%, #e3a617 100%);
	color: #222;
	font-weight: 700;
	border: none;
	box-shadow: 0 2px 12px rgba(247, 201, 72, 0.15);
	border-radius: 8px;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition:
		background 0.2s,
		box-shadow 0.2s,
		color 0.2s;
	text-transform: uppercase;
}

.overview-cta .cta-btn.apply:hover {
	background: linear-gradient(90deg, #e3a617 0%, #f7c948 100%);
	color: #000;
	box-shadow: 0 4px 18px rgba(247, 201, 72, 0.22);
}

.overview-cta .cta-btn-outline {
	display: inline-block;
	padding: 14px 36px;
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.overview-cta .cta-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
	.talent-bento {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 240px;
	}

	.talent-card--hero {
		grid-column: span 2;
		grid-row: span 2;
	}

	.talent-card--featured-lg {
		grid-column: span 2;
		grid-row: span 1;
	}

	.talent-card--featured-md {
		grid-column: span 1;
		grid-row: span 2;
	}

	.alumni-spotlight-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}

	.spotlight-card--featured {
		grid-column: span 2;
		grid-row: span 1;
	}

	.spotlight-card--featured .spotlight-img {
		min-height: 280px;
	}

	.alumni-why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.page-banner {
		padding: 100px 0 52px;
	}

	.talent-bento {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 220px;
		gap: 12px;
	}

	.talent-card--hero {
		grid-column: span 2;
		grid-row: span 2;
	}

	.talent-card--featured-lg {
		grid-column: span 2;
		grid-row: span 1;
	}

	.talent-card--featured-md {
		grid-column: span 1;
		grid-row: span 2;
	}

	.talent-card__overlay {
		padding: 16px;
	}

	.talent-card__name {
		font-size: 16px;
	}

	.talent-card--hero .talent-card__name {
		font-size: 22px;
	}

	.talent-card__role {
		font-size: 13px;
	}

	.talent-card--hero .talent-card__role {
		font-size: 14px;
	}

	.alumni-stats {
		margin-top: -20px;
	}

	.alumni-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 14px;
	}

	.alumni-stat-item {
		padding: 20px 16px;
	}

	.alumni-stat-item:nth-child(2) {
		border-right: none;
	}

	.alumni-stat-item:nth-child(1),
	.alumni-stat-item:nth-child(2) {
		border-bottom: 1px solid #f0e8e2;
	}

	.alumni-spotlight-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.spotlight-card--featured {
		grid-column: span 1;
	}

	.spotlight-card--featured .spotlight-img {
		min-height: 220px;
	}

	.spotlight-card--featured .spotlight-info {
		padding: 16px;
	}

	.spotlight-card--featured .spotlight-info h3 {
		font-size: 18px;
	}

	.alumni-why-grid {
		grid-template-columns: 1fr;
	}

	.why-card {
		padding: 22px 20px;
	}

	.alumni-form {
		padding: 28px 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.overview-cta .cta-content {
		flex-direction: column;
		text-align: center;
	}

	.overview-cta .cta-text p {
		margin: 0 auto;
	}

	.overview-cta .cta-actions {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.talent-bento {
		grid-template-columns: 1fr;
		grid-auto-rows: 280px;
	}

	.talent-card--hero,
	.talent-card--featured-lg,
	.talent-card--featured-md {
		grid-column: span 1;
		grid-row: span 1;
	}

	.talent-card--hero {
		grid-row: span 2;
	}

	.alumni-stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.spotlight-img {
		height: 180px;
	}

	.spotlight-info {
		padding: 14px 16px;
	}

	.photo-preview-circle {
		width: 90px;
		height: 90px;
	}
}
