:root {
	--ites-red: #e30613;
	--ites-red-dark: #bb0711;
	--ites-blue: #183f72;
	--ites-blue-dark: #0d2a50;
	--ites-ink: #172033;
	--ites-muted: #5f6878;
	--ites-soft: #f4f7fb;
	--ites-border: #dfe6ef;
	--ites-white: #ffffff;
	--ites-shadow: 0 20px 55px rgba(19, 47, 84, 0.11);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 116px;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--ites-ink);
	background: var(--ites-white);
}

main {
	display: block;
	overflow: hidden;
}

p {
	color: var(--ites-muted);
	line-height: 1.75;
}

a,
button,
input,
select,
textarea {
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(227, 6, 19, 0.28);
	outline-offset: 3px;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.skip-link:focus-visible {
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	overflow: visible;
	clip: auto;
	clip-path: none;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 6px;
	opacity: 1;
	pointer-events: auto;
}

.section-padding {
	padding: 100px 0;
}

.bg-soft {
	background: var(--ites-soft);
}

.section-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--ites-red);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.section-kicker::before {
	content: "";
	width: 38px;
	height: 3px;
	background: currentColor;
}

.section-kicker-light {
	color: var(--ites-white);
}

.section-title {
	margin-bottom: 20px;
	color: var(--ites-blue);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.12;
}

.section-lead {
	max-width: 760px;
	font-size: 1.07rem;
	line-height: 1.85;
}

.section-heading-centered {
	max-width: 780px;
	margin: 0 auto;
}

.section-heading-centered .section-kicker {
	justify-content: center;
}

.section-heading-centered .section-lead {
	margin-right: auto;
	margin-left: auto;
}

.ites-btn {
	min-height: 52px;
	padding: 14px 24px;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.45;
}

.ites-btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--ites-red);
	border-color: var(--ites-red);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--ites-red-dark);
	border-color: var(--ites-red-dark);
}

.btn-secondary {
	background: var(--ites-blue);
	border-color: var(--ites-blue);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: var(--ites-blue-dark);
	border-color: var(--ites-blue-dark);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--ites-blue);
	font-weight: 700;
	text-decoration: none;
}

.text-link:hover {
	gap: 13px;
	color: var(--ites-red);
}

/* Header */
.ites-header .header-body {
	border: 0;
	box-shadow: 0 8px 32px rgba(13, 42, 80, 0.08);
}

.ites-header .header-top {
	min-height: 52px;
	border-bottom: 1px solid var(--ites-border) !important;
}

.topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 52px;
	padding: 0 18px;
	color: var(--ites-blue);
	font-size: 0.76rem;
	font-weight: 600;
	text-decoration: none;
}

.topbar-link i {
	color: var(--ites-red);
	font-size: 0.95rem;
}

.topbar-link:hover {
	color: var(--ites-red);
	background: var(--ites-soft);
}

.utility-links .topbar-link {
	border-left: 1px solid var(--ites-border);
}

.utility-links .topbar-link:last-child,
.portal-links .topbar-link:last-child {
	border-right: 1px solid var(--ites-border);
}

.portal-links .topbar-link {
	border-left: 1px solid var(--ites-border);
}

.portal-links .topbar-link + .topbar-link {
	border-left: 0;
}

.portal-links .topbar-link.active {
	color: var(--ites-red);
	background: var(--ites-soft);
}

.ites-header .header-container {
	min-height: 88px;
}

.ites-header .header-logo img {
	width: 154px;
	height: 70px;
	object-fit: contain;
}

.ites-header .header-nav-main nav > ul > li > a {
	position: relative;
	padding: 34px 13px !important;
	color: var(--ites-blue) !important;
	font-size: 0.78rem !important;
	font-weight: 600;
	text-transform: none !important;
}

.ites-header .header-nav-main nav > ul > li > a::after {
	content: "";
	position: absolute;
	right: 11px;
	bottom: 25px;
	left: 11px;
	height: 3px;
	background: var(--ites-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.ites-header .header-nav-main nav > ul > li:hover > a,
.ites-header .header-nav-main nav > ul > li > a.active {
	color: var(--ites-red) !important;
	background: transparent !important;
}

.ites-header .header-nav-main nav > ul > li:hover > a::after,
.ites-header .header-nav-main nav > ul > li > a.active::after {
	transform: scaleX(1);
}

.ites-header .header-btn-collapse-nav {
	margin: 0;
	background: var(--ites-red);
}

/* Home hero */
.ites-hero {
	position: relative;
	min-height: 680px;
	background-position: center 38%;
	background-size: cover;
}

.ites-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(9, 31, 61, 0.97) 0%, rgba(15, 47, 88, 0.9) 42%, rgba(15, 47, 88, 0.3) 73%, rgba(15, 47, 88, 0.08) 100%);
}

.hero-row {
	min-height: 680px;
	padding: 80px 0 120px;
}

.ites-hero h1 {
	max-width: 680px;
	margin: 0 0 24px;
	color: var(--ites-white);
	font-size: clamp(3rem, 6vw, 5.1rem);
	font-weight: 800;
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.ites-hero .hero-copy {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.12rem;
	line-height: 1.8;
}

.ites-hero .btn-outline-light:hover {
	color: var(--ites-blue);
}

/* Quick links */
.quick-actions {
	position: relative;
	z-index: 3;
	margin-top: -61px;
}

.quick-actions-grid {
	overflow: hidden;
	background: var(--ites-white);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.quick-actions-grid > div:not(:last-child) {
	border-right: 1px solid var(--ites-border);
}

.quick-action {
	display: flex;
	align-items: center;
	min-height: 122px;
	padding: 24px 26px;
	color: var(--ites-ink);
	text-decoration: none;
}

.quick-action:hover {
	color: var(--ites-ink);
	background: var(--ites-soft);
}

.quick-action-icon {
	display: grid;
	place-items: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	margin-right: 16px;
	color: var(--ites-red);
	background: rgba(227, 6, 19, 0.08);
	border-radius: 50%;
	font-size: 1.25rem;
}

.quick-action strong,
.quick-action small {
	display: block;
}

.quick-action strong {
	margin-bottom: 4px;
	color: var(--ites-blue);
	font-size: 0.96rem;
}

.quick-action small {
	color: var(--ites-muted);
	font-size: 0.74rem;
	line-height: 1.5;
}

.quick-action-arrow {
	margin-left: auto;
	color: var(--ites-red);
	font-size: 0.75rem;
}

/* Program cards */
.program-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 34px;
	color: var(--ites-ink);
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(19, 47, 84, 0.04);
	text-decoration: none;
}

.program-card:hover {
	color: var(--ites-ink);
	border-color: transparent;
	box-shadow: var(--ites-shadow);
	transform: translateY(-6px);
}

.program-icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 22px;
	color: var(--ites-red);
	background: rgba(227, 6, 19, 0.08);
	border-radius: 8px;
	font-size: 1.3rem;
}

.program-type {
	margin-bottom: 8px;
	color: var(--ites-red);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.program-card h3,
.academic-card h3 {
	margin-bottom: 14px;
	color: var(--ites-blue);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.3;
}

.program-card p {
	font-size: 0.9rem;
	line-height: 1.7;
}

.program-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 12px;
	color: var(--ites-blue);
	font-size: 0.78rem;
	font-weight: 700;
}

.program-card-featured {
	color: var(--ites-white);
	background: var(--ites-blue);
	border-color: var(--ites-blue);
}

.program-card-featured:hover {
	color: var(--ites-white);
	background: var(--ites-blue-dark);
}

.program-card-featured .program-icon {
	color: var(--ites-white);
	background: rgba(255, 255, 255, 0.12);
}

.program-card-featured .program-type,
.program-card-featured h3,
.program-card-featured p,
.program-card-featured .program-link {
	color: var(--ites-white);
}

/* Institution */
.image-frame {
	position: relative;
	padding: 0 26px 26px 0;
}

.image-frame::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 72%;
	height: 72%;
	background: var(--ites-red);
	border-radius: 10px;
}

.image-frame img {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 410px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.experience-badge {
	position: absolute;
	right: 0;
	bottom: 46px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 210px;
	padding: 18px 22px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 8px 0 0 8px;
	box-shadow: 0 14px 30px rgba(13, 42, 80, 0.25);
}

.experience-badge strong {
	font-size: 1.8rem;
	line-height: 1;
}

.experience-badge span {
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.value-item {
	display: flex;
	gap: 14px;
}

.value-item > i {
	flex: 0 0 36px;
	margin-top: 3px;
	color: var(--ites-red);
	font-size: 1.15rem;
}

.value-item h3 {
	margin-bottom: 5px;
	color: var(--ites-blue);
	font-size: 0.98rem;
	font-weight: 700;
}

.value-item p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.6;
}

/* Admission process */
.process-card {
	position: relative;
	height: 100%;
	padding: 38px 34px;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 10px;
}

.process-card .process-number {
	position: absolute;
	top: 24px;
	right: 28px;
	color: rgba(24, 63, 114, 0.1);
	font-size: 2.5rem;
	font-weight: 800;
}

.process-card > i {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 26px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 50%;
	font-size: 1.25rem;
}

.process-card h3 {
	margin-bottom: 12px;
	color: var(--ites-blue);
	font-size: 1.15rem;
	font-weight: 700;
}

.process-card p {
	margin-bottom: 0;
	font-size: 0.88rem;
}

.process-card > a {
	display: inline-block;
	margin-top: 12px;
	font-size: 0.78rem;
	font-weight: 700;
}

/* Campus banner */
.campus-banner {
	position: relative;
	padding: 105px 0;
	background-position: center;
	background-size: cover;
}

.campus-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 35, 67, 0.12), rgba(10, 35, 67, 0.55));
}

.campus-banner-card {
	padding: 46px;
	background: rgba(255, 255, 255, 0.97);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.campus-banner-card p:not(.section-kicker) {
	font-size: 1rem;
}

.final-cta {
	padding: 78px 0;
}

.final-cta h2 {
	margin-bottom: 10px;
	color: var(--ites-white);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.final-cta p:not(.section-kicker) {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1rem;
}

/* Inner pages */
.inner-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 420px;
	padding: 80px 0;
	background-position: center;
	background-size: cover;
}

.inner-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 35, 67, 0.96) 0%, rgba(10, 35, 67, 0.79) 52%, rgba(10, 35, 67, 0.28) 100%);
}

.inner-hero-admissions,
.inner-hero-life {
	background-position: center 42%;
}

.inner-hero h1 {
	margin-bottom: 16px;
	color: var(--ites-white);
	font-size: clamp(2.8rem, 5vw, 4.4rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1;
}

.inner-hero p:not(.section-kicker) {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.1rem;
}

.inner-hero .breadcrumb {
	margin-bottom: 42px;
	background: transparent;
}

.inner-hero .breadcrumb-item,
.inner-hero .breadcrumb-item a,
.inner-hero .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.76rem;
}

.inner-hero .breadcrumb-item.active {
	color: var(--ites-white);
}

/* Academic offer */
.academic-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 34px;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-top: 4px solid var(--ites-blue);
	border-radius: 8px;
}

.academic-card:hover {
	border-top-color: var(--ites-red);
	box-shadow: var(--ites-shadow);
	transform: translateY(-4px);
}

.academic-card .program-icon {
	margin-bottom: 20px;
}

.academic-card p:not(.program-type) {
	font-size: 0.86rem;
}

.academic-card > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 12px;
	font-size: 0.77rem;
	font-weight: 700;
	text-decoration: none;
}

.academic-help-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 38px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 8px;
}

.academic-help-card > i {
	margin-bottom: 22px;
	font-size: 2rem;
}

.academic-help-card h3 {
	color: var(--ites-white);
	font-size: 1.45rem;
	font-weight: 700;
}

.academic-help-card p {
	color: rgba(255, 255, 255, 0.87);
}

.academic-help-card .btn {
	align-self: flex-start;
}

.master-card {
	display: flex;
	gap: 22px;
	height: 100%;
	padding: 30px;
	background: var(--ites-white);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(19, 47, 84, 0.06);
}

.master-card > span {
	flex: 0 0 52px;
	color: var(--ites-red);
	font-size: 1.4rem;
	font-weight: 800;
}

.master-card h3 {
	margin-bottom: 8px;
	color: var(--ites-blue);
	font-size: 1.05rem;
	font-weight: 700;
}

.master-card p {
	margin-bottom: 8px;
	font-size: 0.82rem;
}

.master-card a {
	font-size: 0.75rem;
	font-weight: 700;
}

.program-note {
	padding: 16px 20px;
	color: var(--ites-muted);
	background: #e9eef6;
	border-radius: 6px;
	font-size: 0.78rem;
}

/* Admissions */
.requirements-card {
	padding: 36px;
	background: var(--ites-white);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.requirements-tabs {
	gap: 10px;
	border-bottom: 1px solid var(--ites-border);
}

.requirements-tabs .nav-link {
	padding: 12px 20px;
	color: var(--ites-blue);
	background: transparent;
	border-radius: 5px 5px 0 0;
	font-weight: 700;
}

.requirements-tabs .nav-link.active {
	background: var(--ites-blue);
}

.check-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: var(--ites-muted);
	font-size: 0.88rem;
	line-height: 1.6;
}

.check-list li::before {
	content: "\f00c";
	position: absolute;
	top: 2px;
	left: 0;
	color: var(--ites-red);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.rounded-ites {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.scholarship-panel {
	padding: 46px;
	background: var(--ites-soft);
	border-radius: 10px;
}

.scholarship-icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin-bottom: 24px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 50%;
	font-size: 1.45rem;
}

.scholarship-panel h2 {
	color: var(--ites-blue);
	font-size: 2rem;
	font-weight: 800;
}

.scholarship-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 26px;
}

/* Scholarships */
.inner-hero-scholarships {
	background-position: center 38%;
}

.scholarship-page-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 30px;
}

.scholarship-summary-card {
	padding: 38px;
	background: var(--ites-soft);
	border: 1px solid var(--ites-border);
	border-top: 5px solid var(--ites-red);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.scholarship-summary-heading {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}

.scholarship-summary-heading > span {
	display: grid;
	place-items: center;
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 50%;
}

.scholarship-summary-heading small {
	display: block;
	margin-bottom: 3px;
	color: var(--ites-red);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.scholarship-summary-heading h3 {
	margin: 0;
	color: var(--ites-blue);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.35;
}

.scholarship-support-grid > div {
	display: flex;
}

.scholarship-support-card {
	width: 100%;
	padding: 34px;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 9px;
	box-shadow: 0 12px 34px rgba(19, 47, 84, 0.07);
}

.scholarship-support-card:hover {
	border-color: rgba(227, 6, 19, 0.3);
	box-shadow: var(--ites-shadow);
	transform: translateY(-4px);
}

.scholarship-support-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 24px;
	color: var(--ites-red);
	background: rgba(227, 6, 19, 0.08);
	border-radius: 8px;
	font-size: 1.35rem;
}

.scholarship-support-card h3 {
	margin-bottom: 12px;
	color: var(--ites-blue);
	font-size: 1.12rem;
	font-weight: 800;
}

.scholarship-support-card p {
	margin: 0;
	font-size: 0.86rem;
}

.scholarship-route .process-card {
	padding: 30px 26px;
}

.scholarship-route .process-card h3 {
	font-size: 1rem;
}

.scholarship-route .process-card p {
	font-size: 0.8rem;
}

.scholarship-disclaimer {
	display: flex;
	gap: 14px;
	margin: 26px 0 0;
	padding: 18px 20px;
	color: var(--ites-blue);
	background: #edf2f8;
	border-radius: 7px;
	font-size: 0.78rem;
	line-height: 1.65;
}

.scholarship-disclaimer i {
	flex: 0 0 auto;
	margin-top: 4px;
	color: var(--ites-red);
}

.ites-accordion .accordion-item {
	margin-bottom: 12px;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 7px !important;
	overflow: hidden;
}

.ites-accordion .accordion-button {
	padding: 20px 24px;
	color: var(--ites-blue);
	font-size: 0.93rem;
	font-weight: 700;
	box-shadow: none;
}

.ites-accordion .accordion-button:not(.collapsed) {
	color: var(--ites-red);
	background: var(--ites-white);
}

.ites-accordion .accordion-body {
	padding: 0 24px 22px;
	color: var(--ites-muted);
	font-size: 0.86rem;
	line-height: 1.7;
}

/* About */
.purpose-card {
	position: relative;
	height: 100%;
	padding: 50px;
	background: var(--ites-white);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.purpose-card-blue {
	color: var(--ites-white);
	background: var(--ites-blue);
}

.purpose-icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin-bottom: 24px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 8px;
	font-size: 1.4rem;
}

.purpose-card h2 {
	color: var(--ites-blue);
	font-size: 2rem;
	font-weight: 800;
}

.purpose-card-blue h2,
.purpose-card-blue p {
	color: var(--ites-white);
}

.purpose-card-blue p:last-child {
	color: rgba(255, 255, 255, 0.84);
}

.values-cards article {
	height: 100%;
	padding: 30px;
	text-align: center;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 8px;
}

.values-cards i {
	margin-bottom: 20px;
	color: var(--ites-red);
	font-size: 1.8rem;
}

.values-cards h3 {
	color: var(--ites-blue);
	font-size: 1.05rem;
	font-weight: 700;
}

.values-cards p {
	margin: 0;
	font-size: 0.8rem;
}

.stats-section {
	padding: 70px 0;
}

.stats-section strong,
.stats-section span {
	display: block;
	color: var(--ites-white);
}

.stats-section strong {
	margin-bottom: 10px;
	font-size: 2.7rem;
	font-weight: 800;
}

.stats-section span {
	max-width: 190px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.76rem;
	line-height: 1.5;
}

.check-list-columns {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 30px;
}

.quote-card {
	padding: 42px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 10px;
}

.quote-card i {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 2.2rem;
}

.quote-card blockquote {
	margin-bottom: 24px;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.55;
}

.quote-card span {
	font-size: 0.74rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* Campus life */
.life-photo-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 16px;
}

.life-photo-grid img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 9px;
}

.life-photo-grid img:last-child {
	height: 360px;
	margin-top: 100px;
}

.experience-cards article {
	height: 100%;
	padding: 32px;
	background: var(--ites-white);
	border-radius: 9px;
	box-shadow: 0 8px 26px rgba(19, 47, 84, 0.06);
}

.experience-cards article > span {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 22px;
	color: var(--ites-red);
	background: rgba(227, 6, 19, 0.08);
	border-radius: 50%;
	font-size: 1.2rem;
}

.experience-cards h3 {
	color: var(--ites-blue);
	font-size: 1.05rem;
	font-weight: 700;
}

.experience-cards p {
	margin: 0;
	font-size: 0.82rem;
}

.campus-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 220px);
	gap: 16px;
}

.campus-gallery figure {
	margin: 0;
	overflow: hidden;
	border-radius: 9px;
}

.campus-gallery .gallery-wide {
	grid-row: 1 / 3;
}

.campus-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Student portal */
.student-hero {
	min-height: 440px;
	padding-bottom: 105px;
	background-position: center 43%;
}

.student-shortcuts-section {
	position: relative;
	z-index: 3;
	margin-top: -58px;
}

.student-shortcuts {
	padding: 0 12px;
}

.student-shortcut {
	display: flex;
	align-items: center;
	gap: 15px;
	height: 100%;
	min-height: 116px;
	padding: 22px;
	color: var(--ites-ink);
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 9px;
	box-shadow: var(--ites-shadow);
	text-decoration: none;
}

.student-shortcut:hover {
	color: var(--ites-ink);
	border-color: transparent;
	transform: translateY(-5px);
}

.student-shortcut > i {
	display: grid;
	place-items: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 50%;
	font-size: 1.08rem;
}

.student-shortcut strong,
.student-shortcut small {
	display: block;
}

.student-shortcut strong {
	margin-bottom: 4px;
	color: var(--ites-blue);
	font-size: 0.86rem;
}

.student-shortcut small {
	color: var(--ites-muted);
	font-size: 0.67rem;
	line-height: 1.45;
}

.student-services-section {
	padding-top: 118px;
}

.student-service-card {
	display: flex;
	align-items: flex-start;
	gap: 17px;
	height: 100%;
	min-height: 205px;
	padding: 30px;
	color: var(--ites-ink);
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 9px;
	text-decoration: none;
}

.student-service-card:hover {
	color: var(--ites-ink);
	border-color: transparent;
	box-shadow: var(--ites-shadow);
	transform: translateY(-5px);
}

.student-service-icon {
	display: grid;
	place-items: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	color: var(--ites-red);
	background: rgba(227, 6, 19, 0.08);
	border-radius: 8px;
	font-size: 1.2rem;
}

.student-service-content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.student-service-content small,
.student-service-content strong,
.student-service-content em {
	display: block;
}

.student-service-content small {
	margin-bottom: 6px;
	color: var(--ites-red);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.student-service-content strong {
	margin-bottom: 9px;
	color: var(--ites-blue);
	font-size: 0.98rem;
	line-height: 1.4;
}

.student-service-content em {
	color: var(--ites-muted);
	font-size: 0.73rem;
	font-style: normal;
	line-height: 1.65;
}

.student-service-arrow {
	margin-top: 4px;
	color: var(--ites-red);
	font-size: 0.72rem;
}

.student-alert {
	display: flex;
	gap: 14px;
	margin-top: 28px;
	padding: 20px;
	background: #fff4e6;
	border-left: 4px solid #f49b23;
	border-radius: 6px;
}

.student-alert > i {
	margin-top: 4px;
	color: #c77507;
}

.student-alert p {
	margin: 0;
	font-size: 0.76rem;
	line-height: 1.6;
}

.student-alert strong {
	display: block;
	margin-bottom: 3px;
	color: var(--ites-ink);
}

.student-process {
	position: relative;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.student-process::before {
	content: "";
	position: absolute;
	top: 27px;
	bottom: 27px;
	left: 27px;
	width: 2px;
	background: var(--ites-border);
}

.student-process li {
	position: relative;
	display: flex;
	gap: 22px;
	padding: 0 0 28px;
}

.student-process li:last-child {
	padding-bottom: 0;
}

.student-process li > span {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border: 5px solid var(--ites-soft);
	border-radius: 50%;
	font-size: 0.68rem;
	font-weight: 700;
}

.student-process h3 {
	margin: 4px 0 5px;
	color: var(--ites-blue);
	font-size: 0.98rem;
	font-weight: 700;
}

.student-process p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.65;
}

.student-document-panel {
	padding: 48px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.student-document-panel h2 {
	margin-bottom: 16px;
	color: var(--ites-white);
	font-size: 2rem;
	font-weight: 800;
}

.student-document-panel > p:not(.section-kicker) {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
}

.student-document-panel ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 13px 22px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.student-document-panel li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.75rem;
}

.student-document-panel li i {
	color: #ff858c;
	font-size: 0.68rem;
}

.student-contact-list {
	display: grid;
	gap: 12px;
	margin-top: 26px;
}

.student-contact-list a {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 17px 20px;
	color: var(--ites-ink);
	background: var(--ites-soft);
	border: 1px solid var(--ites-border);
	border-radius: 7px;
	text-decoration: none;
}

.student-contact-list a:hover {
	color: var(--ites-ink);
	background: var(--ites-white);
	border-color: var(--ites-blue);
	transform: translateX(4px);
}

.student-contact-list a > i {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 50%;
}

.student-contact-list small,
.student-contact-list strong {
	display: block;
}

.student-contact-list small {
	margin-bottom: 3px;
	color: var(--ites-muted);
	font-size: 0.66rem;
}

.student-contact-list strong {
	color: var(--ites-blue);
	font-size: 0.82rem;
}

/* Degree options */
.degree-hero {
	min-height: 450px;
	padding-bottom: 110px;
	background-position: center 42%;
}

.degree-overview-section {
	position: relative;
	z-index: 3;
	margin-top: -64px;
}

.degree-overview-card {
	padding: 34px 38px;
	background: var(--ites-white);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.degree-overview-card h2 {
	margin: 0;
	color: var(--ites-blue);
	font-size: 1.65rem;
	font-weight: 800;
}

.degree-requirements {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.degree-requirements li {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--ites-muted);
	font-size: 0.78rem;
	line-height: 1.55;
}

.degree-requirements i {
	color: var(--ites-red);
	font-size: 1rem;
}

.degree-requirements strong {
	color: var(--ites-blue);
}

.degree-options-section {
	padding-top: 120px;
}

.degree-option-card {
	height: 100%;
	padding: 34px;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 9px;
}

.degree-option-card:hover {
	border-color: transparent;
	box-shadow: var(--ites-shadow);
	transform: translateY(-5px);
}

.degree-option-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.degree-option-top span {
	color: rgba(24, 63, 114, 0.13);
	font-size: 2.3rem;
	font-weight: 800;
	line-height: 1;
}

.degree-option-top i {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	color: var(--ites-red);
	background: rgba(227, 6, 19, 0.08);
	border-radius: 8px;
	font-size: 1.15rem;
}

.degree-option-card h3 {
	margin-bottom: 13px;
	color: var(--ites-blue);
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.35;
}

.degree-option-card > p:not(.program-type) {
	min-height: 78px;
	font-size: 0.8rem;
	line-height: 1.65;
}

.degree-option-card ul {
	display: grid;
	gap: 8px;
	margin: 20px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--ites-border);
	list-style: none;
}

.degree-option-card li {
	position: relative;
	padding-left: 17px;
	color: var(--ites-muted);
	font-size: 0.7rem;
	line-height: 1.5;
}

.degree-option-card li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--ites-red);
	border-radius: 50%;
}

.degree-guidance-card {
	display: flex;
	align-items: center;
	gap: 32px;
	height: 100%;
	min-height: 320px;
	padding: 42px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 9px;
}

.degree-guidance-card > div:first-child {
	display: grid;
	place-items: center;
	flex: 0 0 86px;
	width: 86px;
	height: 86px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 50%;
	font-size: 2rem;
}

.degree-guidance-card h3 {
	margin-bottom: 10px;
	color: var(--ites-white);
	font-size: 1.55rem;
	font-weight: 800;
}

.degree-guidance-card p:not(.section-kicker) {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
}

.degree-guidance-card .btn {
	margin-top: 7px;
}

.degree-process-section .process-card {
	padding: 30px 24px;
}

.degree-process-section .process-card > i {
	width: 52px;
	height: 52px;
}

.degree-process-section .process-card h3 {
	font-size: 0.96rem;
}

.degree-process-section .process-card p {
	font-size: 0.75rem;
}

.degree-protocol-card {
	padding: 48px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.degree-protocol-card h2 {
	margin-bottom: 16px;
	color: var(--ites-white);
	font-size: 2rem;
	font-weight: 800;
}

.degree-protocol-card > p:not(.section-kicker) {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.86rem;
}

.degree-protocol-card ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.degree-protocol-card li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.72rem;
}

.degree-protocol-card li i {
	color: #ff858c;
}

.postgrad-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 28px;
}

.postgrad-options span {
	position: relative;
	padding: 16px 16px 16px 40px;
	color: var(--ites-blue);
	background: var(--ites-soft);
	border: 1px solid var(--ites-border);
	border-radius: 6px;
	font-size: 0.73rem;
	font-weight: 600;
	line-height: 1.45;
}

.postgrad-options span::before {
	content: "\f19d";
	position: absolute;
	top: 17px;
	left: 15px;
	color: var(--ites-red);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.degree-contact-section {
	padding: 72px 0;
}

.degree-contact-section h2 {
	margin-bottom: 10px;
	color: var(--ites-white);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.degree-contact-section p:not(.section-kicker) {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.degree-contact-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
}

.degree-contact-actions > a:not(.btn) {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ites-white);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}

/* Academic program detail */
.program-detail-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 610px;
	padding: 88px 0 92px;
	background-position: center;
	background-size: cover;
}

.program-detail-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 27, 53, 0.96) 0%, rgba(12, 42, 78, 0.9) 52%, rgba(12, 42, 78, 0.56) 100%);
}

.program-detail-hero .container {
	z-index: 1;
}

.program-detail-hero .breadcrumb {
	margin-bottom: 58px;
}

.program-detail-hero .breadcrumb-item,
.program-detail-hero .breadcrumb-item a,
.program-detail-hero .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.74rem;
	font-weight: 600;
	text-decoration: none;
}

.program-detail-hero .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.4);
}

.program-detail-icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 22px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 18px;
	box-shadow: 0 14px 34px rgba(227, 6, 19, 0.3);
	font-size: 1.65rem;
}

.program-detail-hero h1 {
	max-width: 900px;
	margin-bottom: 20px;
	color: var(--ites-white);
	font-size: clamp(2.7rem, 5.2vw, 4.7rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.program-detail-hero .col-lg-8 > p:last-child {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.02rem;
	line-height: 1.8;
}

.program-hero-fact {
	padding: 26px 28px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	backdrop-filter: blur(12px);
}

.program-hero-fact small,
.program-hero-fact strong {
	display: block;
}

.program-hero-fact small {
	margin-bottom: 9px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.5;
	text-transform: uppercase;
}

.program-hero-fact strong {
	color: var(--ites-white);
	font-size: 1.15rem;
	font-weight: 700;
}

.program-detail-nav {
	position: relative;
	z-index: 4;
	background: var(--ites-white);
	border-bottom: 1px solid var(--ites-border);
	box-shadow: 0 8px 25px rgba(19, 47, 84, 0.05);
}

.program-detail-nav-inner {
	display: flex;
	align-items: center;
	gap: 38px;
	min-height: 72px;
}

.program-detail-nav a {
	position: relative;
	padding: 26px 0 23px;
	color: var(--ites-ink);
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: none;
}

.program-detail-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: var(--ites-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.program-detail-nav a:hover {
	color: var(--ites-red);
}

.program-detail-nav a:hover::after,
.program-detail-nav a:focus-visible::after {
	transform: scaleX(1);
}

.program-objective {
	max-width: 830px;
	margin: 0;
	color: var(--ites-muted);
	font-size: 1.08rem;
	line-height: 1.95;
}

.program-benefits article {
	height: 100%;
	padding: 26px 24px;
	background: var(--ites-soft);
	border: 1px solid var(--ites-border);
	border-radius: 14px;
}

.program-benefits article > i {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 20px;
	color: var(--ites-red);
	background: var(--ites-white);
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(19, 47, 84, 0.08);
}

.program-benefits h3 {
	margin-bottom: 10px;
	color: var(--ites-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
}

.program-benefits p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.7;
}

.program-why-heading {
	max-width: 930px;
	margin-bottom: 46px;
}

.program-why-heading .section-title {
	max-width: 900px;
}

.program-why-heading .section-lead {
	max-width: 820px;
}

.program-why-grid > div {
	display: flex;
}

.program-why-card {
	position: relative;
	width: 100%;
	min-height: 330px;
	padding: 36px 32px 32px;
	overflow: hidden;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-top: 4px solid var(--ites-red);
	border-radius: 16px;
	box-shadow: 0 14px 38px rgba(19, 47, 84, 0.07);
}

.program-why-number {
	position: absolute;
	top: 24px;
	right: 26px;
	color: rgba(24, 63, 114, 0.09);
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.08em;
}

.program-why-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 27px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 15px;
	font-size: 1.25rem;
	box-shadow: 0 12px 28px rgba(24, 63, 114, 0.2);
}

.program-why-card h3 {
	max-width: 240px;
	margin-bottom: 14px;
	color: var(--ites-ink);
	font-size: 1.12rem;
	font-weight: 750;
	line-height: 1.4;
}

.program-why-card p {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.75;
}

.program-info-card {
	position: sticky;
	top: 136px;
	padding: 34px;
	color: var(--ites-white);
	background: linear-gradient(145deg, var(--ites-blue) 0%, var(--ites-blue-dark) 100%);
	border-radius: 18px;
	box-shadow: var(--ites-shadow);
}

.program-info-label {
	margin-bottom: 24px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.program-info-card dl {
	margin-bottom: 28px;
}

.program-info-card dl > div {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.program-info-card dt,
.program-info-card dd {
	margin: 0;
	line-height: 1.45;
}

.program-info-card dt {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.72rem;
	font-weight: 500;
}

.program-info-card dd {
	max-width: 64%;
	color: var(--ites-white);
	font-size: 0.76rem;
	font-weight: 700;
	text-align: right;
}

.program-whatsapp-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
}

.program-whatsapp-link:hover {
	color: var(--ites-white);
}

.program-whatsapp-link i {
	color: #52da83;
	font-size: 1rem;
}

.program-skills-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.program-skills-list li {
	display: grid;
	grid-template-columns: 52px 1fr;
	align-items: start;
	gap: 22px;
	padding: 21px 0;
	border-bottom: 1px solid var(--ites-border);
}

.program-skills-list li:first-child {
	padding-top: 0;
}

.program-skills-list li span {
	color: var(--ites-red);
	font-size: 1.05rem;
	font-weight: 800;
}

.program-skills-list li p {
	margin: 0;
	color: var(--ites-ink);
	font-size: 0.94rem;
	line-height: 1.7;
}

.program-career-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.program-career-grid > div {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 88px;
	padding: 22px 24px;
	background: var(--ites-white);
	border: 1px solid var(--ites-border);
	border-radius: 13px;
	box-shadow: 0 10px 28px rgba(19, 47, 84, 0.05);
}

.program-career-grid i {
	color: var(--ites-red);
	font-size: 0.82rem;
}

.program-career-grid span {
	color: var(--ites-ink);
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.5;
}

.program-plan-section {
	padding: 78px 0;
}

.program-plan-section h2 {
	margin-bottom: 12px;
	color: var(--ites-white);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.program-plan-section p:not(.section-kicker) {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.program-plan-actions,
.program-next-actions {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 14px;
}

.program-plan-actions small {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.68rem;
}

.program-next-step {
	background: linear-gradient(135deg, var(--ites-white) 0%, var(--ites-soft) 100%);
}

.program-next-actions .text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ites-blue);
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: none;
}

.program-next-actions .text-link:hover {
	color: var(--ites-red);
}

/* Contact */
.contact-options-section {
	position: relative;
	z-index: 2;
	margin-top: -48px;
}

.contact-options {
	padding: 0 12px;
}

.contact-option {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 190px;
	padding: 26px;
	color: var(--ites-ink);
	background: var(--ites-white);
	border-radius: 9px;
	box-shadow: var(--ites-shadow);
	text-decoration: none;
}

.contact-option:hover {
	color: var(--ites-ink);
	transform: translateY(-5px);
}

.contact-option > span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	color: var(--ites-white);
	background: var(--ites-red);
	border-radius: 50%;
}

.contact-option small,
.contact-option strong,
.contact-option em {
	display: block;
}

.contact-option small {
	margin-bottom: 3px;
	color: var(--ites-muted);
	font-size: 0.7rem;
}

.contact-option strong {
	color: var(--ites-blue);
	font-size: 1rem;
}

.contact-option em {
	margin-top: 5px;
	color: var(--ites-muted);
	font-size: 0.69rem;
	font-style: normal;
}

.ites-form {
	margin-top: 32px;
}

.ites-form .form-label {
	margin-bottom: 8px;
	color: var(--ites-blue);
	font-size: 0.78rem;
	font-weight: 700;
}

.ites-form .form-control,
.ites-form .form-select {
	min-height: 54px;
	padding: 13px 15px;
	color: var(--ites-ink);
	background-color: var(--ites-soft);
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.85rem;
}

.ites-form textarea.form-control {
	min-height: 140px;
}

.ites-form .form-control:focus,
.ites-form .form-select:focus {
	background-color: var(--ites-white);
	border-color: var(--ites-blue);
	box-shadow: 0 0 0 3px rgba(24, 63, 114, 0.1);
}

.ites-form .form-check-label {
	color: var(--ites-muted);
	font-size: 0.73rem;
	line-height: 1.55;
}

.ites-form .form-check-input:checked {
	background-color: var(--ites-red);
	border-color: var(--ites-red);
}

.form-helper {
	color: var(--ites-muted);
	font-size: 0.72rem;
}

.form-status {
	margin-top: 16px;
	font-size: 0.8rem;
}

.contact-details-card {
	position: sticky;
	top: 140px;
	padding: 44px;
	color: var(--ites-white);
	background: var(--ites-blue);
	border-radius: 10px;
	box-shadow: var(--ites-shadow);
}

.contact-details-card h2 {
	margin-bottom: 28px;
	color: var(--ites-white);
	font-size: 1.8rem;
	font-weight: 800;
}

.contact-details-card address {
	margin-bottom: 30px;
}

.contact-details-card address p {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.8rem;
	font-style: normal;
	line-height: 1.65;
}

.contact-details-card address i {
	flex: 0 0 20px;
	margin-top: 4px;
	color: #ff858c;
}

.contact-details-card address a {
	color: rgba(255, 255, 255, 0.9);
}

.map-section,
.map-section iframe {
	display: block;
}

.error-page {
	min-height: 640px;
	display: flex;
	align-items: center;
}

.error-page .error-code {
	margin-bottom: -20px;
	color: rgba(24, 63, 114, 0.08);
	font-size: clamp(7rem, 18vw, 13rem);
	font-weight: 800;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.error-page h1 {
	max-width: 760px;
	margin: 0 auto 16px;
	color: var(--ites-blue);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
}

/* Footer */
#footer.ites-footer {
	position: relative;
	color: rgba(255, 255, 255, 0.78);
}

#footer.ites-footer::before {
	display: none;
}

.footer-logo {
	width: 190px;
	height: auto;
	padding: 8px;
	background: var(--ites-white);
	border-radius: 6px;
}

.footer-intro {
	max-width: 360px;
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 0.8rem;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.footer-socials a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: var(--ites-white) !important;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 50%;
	text-decoration: none;
}

.footer-socials a:hover {
	background: var(--ites-red);
}

.footer-heading {
	margin-bottom: 22px;
	color: var(--ites-white);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 11px;
}

#footer .footer-links a,
#footer .footer-contact a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	text-decoration: none;
}

#footer .footer-links a:hover,
#footer .footer-contact a:hover {
	color: var(--ites-white);
}

.footer-contact {
	font-style: normal;
}

.footer-contact p {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	line-height: 1.65;
}

.footer-contact i {
	flex: 0 0 18px;
	margin-top: 4px;
	color: #ff858c;
}

.footer-bottom {
	color: rgba(255, 255, 255, 0.56);
	background: rgba(0, 0, 0, 0.16);
}

.footer-bottom p,
#footer .footer-bottom a {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.69rem;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 999;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	color: var(--ites-white);
	background: #25d366;
	border: 3px solid var(--ites-white);
	border-radius: 50%;
	box-shadow: 0 12px 30px rgba(9, 46, 24, 0.25);
	font-size: 1.65rem;
	text-decoration: none;
}

.whatsapp-float:hover {
	color: var(--ites-white);
	background: #1eae54;
	transform: translateY(-4px);
}

@media (max-width: 1199px) {
	.ites-header .header-nav-main nav > ul > li > a {
		padding-right: 8px !important;
		padding-left: 8px !important;
		font-size: 0.72rem !important;
	}

	.ites-hero {
		min-height: 610px;
	}

	.hero-row {
		min-height: 610px;
	}
}

@media (max-width: 991px) {
	.section-padding {
		padding: 78px 0;
	}

	.ites-header .header-container {
		min-height: 74px;
	}

	.ites-header .header-logo img {
		width: 145px;
		height: 58px;
	}

	.ites-header .header-nav-main nav > ul > li > a {
		padding: 13px 18px !important;
	}

	.ites-header .header-nav-main nav > ul > li > a::after {
		display: none;
	}

	.ites-header .header-nav-main nav > ul > li > a.active {
		color: var(--ites-white) !important;
		background: var(--ites-red) !important;
	}

	.ites-hero,
	.hero-row {
		min-height: 590px;
	}

	.ites-hero::before {
		background: rgba(9, 31, 61, 0.82);
	}

	.ites-hero {
		background-position: center;
	}

	.quick-actions {
		margin-top: -36px;
	}

	.quick-action {
		padding: 22px;
	}

	.institution-section .image-frame {
		margin-bottom: 25px;
	}

	.contact-details-card {
		position: static;
	}

	.student-document-panel {
		margin-bottom: 10px;
	}

	.degree-guidance-card {
		min-height: 280px;
	}

	.degree-contact-actions {
		justify-content: flex-start;
	}

	.program-detail-hero {
		min-height: 570px;
	}

	.program-detail-nav-inner {
		overflow-x: auto;
		gap: 30px;
		white-space: nowrap;
	}

	.program-info-card {
		position: static;
	}

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

	.program-plan-actions,
	.program-next-actions {
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.section-padding {
		padding: 64px 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.ites-hero,
	.hero-row {
		min-height: 560px;
	}

	.hero-row {
		padding: 64px 0 85px;
	}

	.ites-hero h1 {
		font-size: 3.1rem;
	}

	.ites-hero .hero-copy {
		font-size: 0.98rem;
	}

	.quick-actions {
		margin-top: 0;
		background: var(--ites-soft);
	}

	.quick-actions .container {
		padding: 0;
	}

	.quick-actions-grid {
		border-radius: 0;
	}

	.quick-actions-grid > div:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid var(--ites-border);
	}

	.quick-action {
		min-height: 104px;
	}

	.campus-banner {
		padding: 70px 0;
	}

	.campus-banner-card,
	.purpose-card,
	.scholarship-panel,
	.scholarship-summary-card,
	.contact-details-card {
		padding: 32px;
	}

	.inner-hero {
		min-height: 360px;
		padding: 60px 0;
	}

	.inner-hero .breadcrumb {
		margin-bottom: 30px;
	}

	.inner-hero h1 {
		font-size: 2.8rem;
	}

	.life-photo-grid {
		grid-template-columns: 1fr 0.75fr;
	}

	.life-photo-grid img {
		height: 350px;
	}

	.life-photo-grid img:last-child {
		height: 280px;
		margin-top: 70px;
	}

	.contact-options-section {
		margin-top: 0;
		padding-top: 48px;
	}

	.contact-option {
		min-height: 170px;
	}

	.check-list-columns {
		grid-template-columns: 1fr;
	}

	.student-hero {
		padding-bottom: 70px;
	}

	.student-shortcuts-section {
		margin-top: -36px;
	}

	.student-services-section {
		padding-top: 90px;
	}

	.degree-hero {
		padding-bottom: 75px;
	}

	.degree-overview-section {
		margin-top: -36px;
	}

	.degree-overview-card {
		padding: 28px;
	}

	.degree-requirements {
		grid-template-columns: 1fr;
	}

	.degree-options-section {
		padding-top: 90px;
	}

	.degree-guidance-card {
		align-items: flex-start;
		flex-direction: column;
		padding: 34px;
	}

	.degree-protocol-card {
		padding: 34px;
	}

	.program-detail-hero {
		min-height: 540px;
		padding: 66px 0 72px;
	}

	.program-detail-hero .breadcrumb {
		margin-bottom: 38px;
	}

	.program-detail-hero h1 {
		font-size: 2.85rem;
	}

	.program-hero-fact {
		padding: 22px 24px;
	}

	.program-detail-nav-inner {
		min-height: 64px;
	}

	.program-detail-nav a {
		padding: 23px 0 20px;
	}

	.program-career-grid {
		grid-template-columns: 1fr;
	}

	.program-plan-section {
		padding: 64px 0;
	}
}

@media (max-width: 575px) {
	.ites-header .header-top {
		display: block !important;
	}

	.ites-header .topbar-link {
		padding-right: 9px;
		padding-left: 9px;
		font-size: 0.66rem;
	}

	.ites-header .portal-link span {
		display: none;
	}

	.student-shortcuts-section {
		margin-top: 0;
		padding-top: 24px;
		background: var(--ites-soft);
	}

	.student-shortcut {
		min-height: 96px;
	}

	.student-services-section {
		padding-top: 64px;
	}

	.student-document-panel {
		padding: 32px;
	}

	.student-document-panel ul {
		grid-template-columns: 1fr;
	}

	.degree-overview-section {
		margin-top: 0;
		padding-top: 24px;
		background: var(--ites-soft);
	}

	.degree-options-section {
		padding-top: 64px;
	}

	.degree-option-card > p:not(.program-type) {
		min-height: 0;
	}

	.degree-protocol-card ul,
	.postgrad-options {
		grid-template-columns: 1fr;
	}

	.degree-contact-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.program-detail-hero {
		min-height: 510px;
		padding: 54px 0 62px;
	}

	.program-detail-hero h1 {
		font-size: 2.35rem;
	}

	.program-detail-icon {
		width: 56px;
		height: 56px;
		border-radius: 15px;
	}

	.program-detail-nav .container {
		padding-right: 0;
	}

	.program-detail-nav-inner {
		gap: 24px;
	}

	.program-info-card {
		padding: 28px;
	}

	.program-why-heading {
		margin-bottom: 34px;
	}

	.program-why-card {
		min-height: 0;
		padding: 30px 26px 28px;
	}

	.program-skills-list li {
		grid-template-columns: 40px 1fr;
		gap: 14px;
	}

	.program-career-grid > div {
		min-height: 78px;
		padding: 20px;
	}

	.program-plan-actions .btn,
	.program-next-actions .btn {
		width: 100%;
	}

	.ites-hero h1 {
		font-size: 2.65rem;
	}

	.ites-hero .ites-btn {
		width: 100%;
	}

	.image-frame {
		padding: 0 14px 14px 0;
	}

	.image-frame img {
		min-height: 320px;
	}

	.experience-badge {
		right: 0;
		bottom: 25px;
		min-width: 180px;
		padding: 14px 18px;
	}

	.scholarship-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.requirements-card {
		padding: 24px;
	}

	.requirements-tabs .nav-link {
		padding: 10px 13px;
		font-size: 0.78rem;
	}

	.stats-section strong {
		font-size: 2.1rem;
	}

	.life-photo-grid {
		grid-template-columns: 1fr;
	}

	.life-photo-grid img,
	.life-photo-grid img:last-child {
		height: 280px;
		margin: 0;
	}

	.campus-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, 230px);
	}

	.campus-gallery .gallery-wide {
		grid-row: auto;
	}

	.whatsapp-float {
		right: 14px;
		bottom: 14px;
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
