/* ===== STUDENT WELFARE SERVICE PAGE ===== */

/* --- 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: 820px;
	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;
}

/* --- Intro --- */
.sws-intro {
	background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
}

.sws-intro-grid {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 30px;
	align-items: center;
}

.sws-intro-text p {
	color: #585858;
	line-height: 1.72;
	margin-bottom: 14px;
}

.sws-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.sws-chip {
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(139, 46, 43, 0.12);
	color: var(--color-primary-bg);
	font-size: 13px;
	font-weight: 600;
}

.sws-intro-media {
	position: relative;
	min-height: 360px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #eadcd2;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.sws-intro-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sws-intro-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	background: linear-gradient(135deg, #f7c948 0%, #e3a617 100%);
	color: #272018;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.45px;
	padding: 8px 14px;
	border-radius: 999px;
}

/* --- Service Cards --- */
.sws-service-overview {
	padding-top: 6px;
}

.sws-service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.sws-service-card {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.sws-service-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: 14px;
}

.sws-service-card h3 {
	font-size: 23px;
	line-height: 1.25;
	color: var(--color-primary-bg);
	margin-bottom: 10px;
}

.sws-service-card p {
	color: #5a5a5a;
	line-height: 1.68;
	margin-bottom: 12px;
}

.sws-mini-list {
	display: grid;
	gap: 8px;
}

.sws-mini-list li {
	position: relative;
	padding-left: 23px;
	line-height: 1.55;
	color: #444;
}

.sws-mini-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle, #f4c542 0%, #d79a16 70%);
	box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.2);
}

/* --- Details --- */
.sws-detail {
	padding-top: 14px;
	padding-bottom: 14px;
}

.sws-detail-alt {
	background: linear-gradient(180deg, #fff8f6 0%, #ffffff 100%);
}

.sws-detail-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 26px;
	align-items: stretch;
}

.sws-detail-grid.reverse .sws-detail-media {
	order: 2;
}

.sws-detail-grid.reverse .sws-detail-content {
	order: 1;
}

.sws-detail-media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #eadfd8;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	min-height: 320px;
}

.sws-detail-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sws-media-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(0, 0, 0, 0.62);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	padding: 7px 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.sws-detail-content {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.sws-kicker {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(139, 46, 43, 0.1);
	color: var(--color-primary-bg);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.45px;
}

.sws-detail-content .section-title {
	margin-bottom: 12px;
}

.sws-detail-content p {
	color: #575757;
	line-height: 1.72;
}

.sws-point-list {
	margin-top: 14px;
	display: grid;
	gap: 11px;
}

.sws-point-list li {
	position: relative;
	color: #3f3f3f;
	line-height: 1.62;
	padding-left: 28px;
}

.sws-point-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: radial-gradient(circle, #f4c542 0%, #d79a16 70%);
	box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.2);
}

/* --- Clubs --- */
.sws-club-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.sws-club-card {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 16px;
	padding: 20px 18px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.sws-club-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(139, 46, 43, 0.12);
}

.sws-club-tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(139, 46, 43, 0.1);
	color: var(--color-primary-bg);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

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

.sws-club-card p {
	color: #555;
	line-height: 1.62;
}

/* --- Anti Ragging --- */
.sws-ragging-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.sws-ragging-card {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #eee2db;
	padding: 22px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.sws-ragging-card h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.sws-ragging-card.danger h3 {
	color: #9e2a24;
}

.sws-ragging-card.success h3 {
	color: #1d6b41;
}

.sws-ragging-list {
	display: grid;
	gap: 12px;
}

.sws-ragging-list li {
	position: relative;
	padding-left: 28px;
	color: #474747;
	line-height: 1.6;
}

.sws-ragging-list li::before {
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.sws-ragging-list.cross li::before {
	content: "X";
	color: #a52f26;
	background: #fde8e6;
	border: 1px solid #f1c5bf;
}

.sws-ragging-list.tick li::before {
	content: "V";
	color: #1c7a4a;
	background: #e6f7ef;
	border: 1px solid #b8e8cf;
}

.sws-ragging-support {
	margin-top: 22px;
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.sws-ragging-support h3 {
	font-size: 24px;
	color: var(--color-primary-bg);
	margin-bottom: 12px;
}

.sws-support-list {
	display: grid;
	gap: 10px;
}

.sws-support-list li {
	position: relative;
	padding-left: 24px;
	color: #464646;
	line-height: 1.62;
}

.sws-support-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle, #f4c542 0%, #d79a16 70%);
	box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.2);
}

.sws-ragging-note {
	margin-top: 16px;
	padding: 14px 16px;
	border-radius: 10px;
	background: #f7f2ef;
	border-left: 4px solid var(--color-primary-bg);
	color: #4d4d4d;
	line-height: 1.6;
}

/* --- Digital Support --- */
.sws-digital {
	background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.sws-digital-shell {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 26px;
	align-items: stretch;
}

.sws-digital-content {
	background: #fff;
	border: 1px solid #eee2db;
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.sws-digital-content .section-title {
	margin-bottom: 12px;
}

.sws-digital-content p {
	color: #565656;
	line-height: 1.72;
}

.sws-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
}

.sws-action-row .cta-btn.apply {
	display: inline-block;
	padding: 12px 28px;
	background: linear-gradient(90deg, #f7c948 0%, #e3a617 100%);
	color: #222;
	font-weight: 700;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.sws-action-row .cta-btn.apply:hover {
	background: linear-gradient(90deg, #e3a617 0%, #f7c948 100%);
}

.sws-action-row .cta-btn-outline {
	display: inline-block;
	padding: 12px 28px;
	background: transparent;
	color: var(--color-primary-bg);
	border: 2px solid rgba(139, 46, 43, 0.36);
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.2s ease;
}

.sws-action-row .cta-btn-outline:hover {
	background: rgba(139, 46, 43, 0.08);
	border-color: var(--color-primary-bg);
}

.sws-digital-media {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #eadfd8;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	min-height: 320px;
}

.sws-digital-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Admissions CTA --- */
.overview-cta {
	margin-top: 28px;
	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: 620px;
	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;
	text-transform: uppercase;
	transition:
		background 0.2s,
		box-shadow 0.2s,
		color 0.2s;
}

.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: 1200px) {
	.sws-club-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.sws-intro-grid,
	.sws-detail-grid,
	.sws-detail-grid.reverse,
	.sws-digital-shell {
		grid-template-columns: 1fr;
	}

	.sws-detail-grid.reverse .sws-detail-media,
	.sws-detail-grid.reverse .sws-detail-content {
		order: initial;
	}
}

@media (max-width: 900px) {
	.sws-service-grid,
	.sws-ragging-grid {
		grid-template-columns: 1fr;
	}
}

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

	.sws-intro-media,
	.sws-detail-media,
	.sws-digital-media {
		min-height: 260px;
	}

	.sws-detail-content,
	.sws-digital-content,
	.sws-ragging-card,
	.sws-ragging-support {
		padding: 20px;
	}

	.sws-club-grid {
		grid-template-columns: 1fr;
	}

	.sws-action-row .cta-btn.apply,
	.sws-action-row .cta-btn-outline {
		width: 100%;
		text-align: center;
	}

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