/* ===== SCHOOL OF COMMERCE PAGE ===== */

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

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

.page-banner::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.06) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

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

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

.banner-tagline {
	font-size: clamp(16px, 2.2vw, 22px);
	font-weight: 300;
	opacity: 0.9;
	max-width: 650px;
	line-height: 1.5;
}

/* --- 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.5;
}

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

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

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

/* --- SOC Intro Section --- */
.soc-intro .section-title {
	margin-bottom: 20px;
}

.soc-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.soc-intro-text p {
	color: #555;
	line-height: 1.75;
	margin-bottom: 16px;
}

.soc-intro-image img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.soc-highlights-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.soc-highlight-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--color-primary-bg);
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
}

.soc-highlight-chip svg {
	flex-shrink: 0;
}

/* --- Programmes Heading --- */
.soc-programmes-heading {
	padding-bottom: 0;
}

/* --- Programme Split Layout --- */
.soc-split-row {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 50px;
	align-items: start;
}

.soc-split-row.soc-split-reverse {
	grid-template-columns: 1fr 380px;
}

.soc-split-row.soc-split-reverse .soc-split-video {
	order: 2;
}

.soc-split-row.soc-split-reverse .soc-split-details {
	order: 1;
}

/* Portrait Video */
.soc-portrait-video {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	aspect-ratio: 9 / 14;
	background: #1a1a2e;
}

.soc-portrait-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Split Details */
.soc-split-details {
	padding: 10px 0;
}

.soc-programme-badge {
	display: inline-block;
	padding: 4px 16px;
	background: rgba(139, 35, 32, 0.1);
	color: var(--color-primary-bg);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.soc-split-details h3 {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 12px;
	line-height: 1.3;
}

.soc-programme-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
}

.soc-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #666;
}

.soc-meta-item svg {
	fill: var(--color-primary-bg);
}

.soc-split-details p {
	color: #555;
	line-height: 1.7;
	margin-bottom: 20px;
}

.soc-split-details h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-primary-bg);
	margin-bottom: 12px;
	margin-top: 8px;
}

.soc-subject-list,
.soc-career-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.soc-subject-list li,
.soc-career-list li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

.soc-subject-list li::before,
.soc-career-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-cta-bg);
}

.soc-career-list li::before {
	background: var(--color-primary-bg);
}

.soc-programme-cta {
	display: flex;
	gap: 16px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}

.soc-programme-cta .cta-btn {
	text-decoration: none;
}

.soc-programme-cta .cta-btn-outline {
	text-decoration: none;
}

/* --- Programme CTA Button --- */
.soc-programme-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;
}

.soc-programme-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);
}

.soc-programme-cta .cta-btn-outline {
	color: #6c2eb5;
	background: none;
	border: none;
	font-weight: 600;
	font-size: 16px;
	padding: 14px 0;
	transition: color 0.2s;
	text-decoration: none;
}

.soc-programme-cta .cta-btn-outline:hover {
	color: #4b1c7a;
	text-decoration: underline;
}

/* BCA section */
.soc-bca-section {
	padding-top: 40px;
}

/* BSc IT section alternate bg */
.soc-bscit-section {
	background: #fff;
}

/* Commerce sections */
.soc-bcom-section {
	padding-top: 40px;
}

.soc-mcom-section {
	background: #fff;
}

/* --- Why Choose Section --- */
.soc-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.soc-feature-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	text-align: center;
}

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

.soc-feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(139, 35, 32, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.soc-feature-icon svg {
	fill: var(--color-primary-bg);
}

.soc-feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.soc-feature-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

/* --- Comparison Table --- */
.soc-table-wrap {
	overflow-x: auto;
}

.soc-compare-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.soc-compare-table thead {
	background: linear-gradient(135deg, var(--color-primary-bg), #5c1a18);
	color: #fff;
}

.soc-compare-table th {
	padding: 18px 24px;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	letter-spacing: 0.3px;
}

.soc-compare-table td {
	padding: 16px 24px;
	font-size: 14px;
	color: #444;
	line-height: 1.6;
	border-bottom: 1px solid #eee;
	background: #fff;
}

.soc-compare-table tbody tr:hover td {
	background: #fdf5f5;
}

.soc-compare-table td:first-child {
	font-weight: 600;
	color: #1a1a2e;
}

/* --- CTA Section --- */
.overview-cta {
	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.85);
	max-width: 550px;
	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;
	text-decoration: none;
	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: 1024px) {
	.soc-intro-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.soc-intro-image {
		order: -1;
	}

	.soc-split-row,
	.soc-split-row.soc-split-reverse {
		grid-template-columns: 300px 1fr;
		gap: 30px;
	}

	.soc-split-row.soc-split-reverse .soc-split-video {
		order: 2;
	}

	.soc-split-row.soc-split-reverse .soc-split-details {
		order: 1;
	}

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

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

	.soc-split-row,
	.soc-split-row.soc-split-reverse {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.soc-split-row.soc-split-reverse .soc-split-video,
	.soc-split-row.soc-split-reverse .soc-split-details {
		order: unset;
	}

	.soc-portrait-video {
		max-width: 320px;
		margin: 0 auto;
	}

	.soc-features-grid {
		grid-template-columns: 1fr;
	}

	.soc-subject-list,
	.soc-career-list {
		grid-template-columns: 1fr;
	}

	.soc-programme-cta {
		flex-direction: column;
	}

	.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;
	}

	.soc-highlights-row {
		justify-content: center;
	}

	.soc-compare-table th,
	.soc-compare-table td {
		padding: 12px 14px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.soc-highlight-chip {
		font-size: 12px;
		padding: 6px 14px;
	}

	.soc-programme-meta {
		flex-direction: column;
		gap: 8px;
	}
}
