/* CSS Variables - Override these in each HTML page */
:root {
	/* Default colors (semester) */
	--hero-gradient-start: #FF006E;
	--hero-gradient-mid: #FB5607;
	--hero-gradient-end: #FFBE0B;
	--programs-gradient-start: #8338EC;
	--programs-gradient-end: #3A86FF;
	--circle-1: #FF006E;
	--circle-2: #FB5607;
	--circle-3: #FFBE0B;
	--badge-color: #FF006E;
	--badge-featured: #FFBE0B;
	--expand-icon: #FF006E;
	--expand-icon-featured: #FFBE0B;
	--number-opacity: rgba(255, 0, 110, 0.08);
	--number-featured-opacity: rgba(255, 190, 11, 0.15);
	--experience-circle-1: #8338EC;
	--experience-circle-2: #3A86FF;
	--experience-circle-3: #06FFA5;
	--experience-gradient: linear-gradient(90deg, #8338EC, #3A86FF, #06FFA5);
	--label-bg: #FF006E;
	--cta-gradient-end: #FF006E;
	--btn-primary-bg: #FFBE0B;
	--btn-primary-shadow: rgba(255, 190, 11, 0.4);
}

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
}

/* Navigation */
.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.75rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo a {
	display: block;
	background: #fff;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.logo a:hover {
	background: #FF6B9D;
}

.logo img {
	height: 50px;
	width: auto;
	display: block;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
	background: rgba(44, 44, 44, 0.95);
	border-radius: 15px;
	padding: 0.5rem 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-item {
	position: relative;
}

.nav-link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: bold;
	padding: 0.6rem 1rem;
	display: block;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.nav-link:hover {
	color: #2C2C2C;
	background: #4ECDC4;
	transform: translateY(-2px);
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding-top: 1rem;
	z-index: 1001;
}

/* Position last two menu dropdowns to the right to prevent cutoff */
.nav-item:nth-last-child(1) .dropdown,
.nav-item:nth-last-child(2) .dropdown {
	left: auto;
	right: 0;
}

.dropdown-content {
	background: #FFFFFF;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 1rem 0;
	min-width: 220px;
	border: 3px solid #FF6B9D;
}

.dropdown-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-width: 360px;
	padding: 0.5rem;
}

.dropdown-two-col a {
	margin: 0.15rem;
}

.dropdown-content a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #2C2C2C;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	border-radius: 6px;
	font-weight: 500;
}

.dropdown-content a:hover {
	background: #4ECDC4;
	color: #FFFFFF;
	transform: translateX(5px);
}

.has-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease;
	display: block;
}

.mobile-toggle.active span:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: translateY(-4px) rotate(-45deg);
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 50%, var(--hero-gradient-end) 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* For semester-year page with floating shapes */
.hero-bg-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

.shape {
	position: absolute;
	border-radius: 50%;
	animation: float 20s infinite ease-in-out;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	top: -10%;
	left: -10%;
	animation-delay: 0s;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.15);
	bottom: -5%;
	right: -5%;
	animation-delay: 2s;
}

.shape-3 {
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.2);
	top: 50%;
	right: 20%;
	animation-delay: 4s;
}

.shape-4 {
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.12);
	bottom: 30%;
	left: 25%;
	animation-delay: 6s;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(50px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-30px, 30px) scale(0.9);
	}
}

/* For summer page with particle canvas */
#particleCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-content {
	text-align: center;
	z-index: 10;
	position: relative;
}

.hero-title {
	font-size: 12vw;
	font-weight: 900;
	line-height: 0.9;
	margin-bottom: 2rem;
	letter-spacing: -0.05em;
}

.hero-title span {
	display: inline-block;
	animation: slideUp 1s ease-out forwards;
	opacity: 0;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.3s; }
.hero-title span:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
	from {
		opacity: 0;
		transform: translateY(100px);
	}
}

.hero-subtitle {
	font-size: 2rem;
	font-weight: 300;
	opacity: 0;
	animation: fadeIn 1s ease-out 0.8s forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

/* Programs Section */
.programs-section {
	background: linear-gradient(180deg, var(--programs-gradient-start) 0%, var(--programs-gradient-end) 100%);
	padding: 8rem 2rem;
	position: relative;
}

.section-title {
	font-size: 8rem;
	font-weight: 900;
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.03em;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.section-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.programs-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.program-card {
	background: rgba(255, 255, 255, 0.95);
	color: #000;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
}

.program-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.program-header {
	padding: 3rem 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.program-header-content {
	flex: 1;
}

.program-expand-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: transform 0.3s ease;
	color: var(--expand-icon);
}

.program-card.expanded .program-expand-icon {
	transform: rotate(45deg);
}

.program-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
	padding: 0 4rem;
}

.program-card.expanded .program-body {
	max-height: 500px;
	padding: 2rem 4rem 3rem 4rem;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-number {
	position: absolute;
	top: -20px;
	right: 20px;
	font-size: 12rem;
	font-weight: 900;
	color: var(--number-opacity);
	line-height: 1;
	pointer-events: none;
}

.program-badge {
	display: inline-block;
	background: transparent;
	color: var(--badge-color);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	border: 2px solid var(--badge-color);
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeSlideIn 0.8s ease-out forwards;
}

.program-card:nth-child(1) .program-badge {
	animation-delay: 0.3s;
}

.program-card:nth-child(2) .program-badge {
	animation-delay: 0.5s;
}

.program-card.featured .program-badge {
	animation-delay: 0.7s;
	border-color: var(--badge-featured);
	color: var(--badge-featured);
}

@keyframes fadeSlideIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.program-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.program-meta {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 0;
}

.program-desc {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin: 0;
	padding: 1rem 0 0 0;
}

/* Featured Card */
.program-card.featured {
	background: #000;
	color: #fff;
}

.program-card.featured .program-number {
	color: var(--number-featured-opacity);
}

.program-card.featured .program-meta {
	color: #999;
}

.program-card.featured .program-desc {
	color: #ddd;
}

.program-card.featured .program-expand-icon {
	color: var(--expand-icon-featured);
}

/* Experience/Highlights Section */
.experience-section,
.highlights-section {
	background: #fff;
	padding: 8rem 2rem;
	position: relative;
	color: #000;
}

.experience-title,
.highlights-title {
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 6rem;
	letter-spacing: -0.02em;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.experience-title.visible,
.highlights-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.experience-flow,
.highlights-flow {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.experience-item,
.highlight-item {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 4rem;
	opacity: 0;
	transform: translateX(-100px);
	transition: all 1s ease;
}

.experience-item.visible,
.highlight-item.visible {
	opacity: 1;
	transform: translateX(0);
}

.experience-item:nth-child(even),
.highlight-item:nth-child(even) {
	flex-direction: row-reverse;
	transform: translateX(100px);
}

.experience-item:nth-child(even).visible,
.highlight-item:nth-child(even).visible {
	transform: translateX(0);
}

.experience-item:nth-child(1),
.highlight-item:nth-child(1) { transition-delay: 0.2s; }
.experience-item:nth-child(2),
.highlight-item:nth-child(2) { transition-delay: 0.4s; }
.experience-item:nth-child(3),
.highlight-item:nth-child(3) { transition-delay: 0.6s; }

.experience-circle,
.highlight-circle {
	min-width: 200px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	transition: transform 0.4s ease;
}

.experience-circle:hover,
.highlight-circle:hover {
	transform: scale(1.1);
}

.experience-item:nth-child(1) .experience-circle,
.highlight-item:nth-child(1) .highlight-circle {
	background: var(--experience-circle-1);
}

.experience-item:nth-child(2) .experience-circle,
.highlight-item:nth-child(2) .highlight-circle {
	background: var(--experience-circle-2);
}

.experience-item:nth-child(3) .experience-circle,
.highlight-item:nth-child(3) .highlight-circle {
	background: var(--experience-circle-3);
}

.experience-connector,
.highlight-connector {
	flex: 1;
	height: 3px;
	background: #ddd;
	position: relative;
	margin: 0 2rem;
}

.experience-connector::before,
.highlight-connector::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--experience-gradient);
	width: 0%;
	transition: width 1.5s ease;
}

.experience-item.visible .experience-connector::before,
.highlight-item.visible .highlight-connector::before {
	width: 100%;
}

.experience-content,
.highlight-content {
	flex: 1;
	padding: 2rem;
}

.experience-label,
.highlight-label {
	display: inline-block;
	background: var(--label-bg);
	color: #fff;
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.experience-content h3,
.highlight-content h3 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.experience-content p,
.highlight-content p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #555;
}

.experience-image,
.highlight-image {
	width: 100%;
	max-width: 400px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-image img,
.highlight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Living Section */
.living-section {
	background: #000;
	padding: 8rem 2rem;
	position: relative;
	color: #fff;
	overflow: hidden;
}

.living-title {
	font-size: 4rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 6rem;
	letter-spacing: 0.02em;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.living-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.living-grid {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.living-circle {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem;
	position: relative;
	opacity: 0;
	transform: scale(0.3) rotate(-180deg);
	transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
}

.living-circle.visible {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.living-circle:nth-child(1) { 
	background: var(--circle-1);
	transition-delay: 0.2s; 
}

.living-circle:nth-child(2) { 
	background: var(--circle-2);
	transition-delay: 0.4s; 
}

.living-circle:nth-child(3) { 
	background: var(--circle-3);
	transition-delay: 0.6s; 
}

.living-circle:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 30px 80px rgba(255, 255, 255, 0.2);
}

.living-circle-content h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.living-circle-content p {
	font-size: 1.05rem;
	line-height: 1.5;
	font-weight: 400;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	/* Navigation */
	.mobile-toggle {
		display: flex;
	}

	.nav-container {
		padding: 0.75rem 1rem;
	}

	.logo img {
		height: 40px;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		padding: 1rem 0;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-item {
		width: 100%;
	}

	.nav-link {
		padding: 1rem 1.5rem;
		border-radius: 0;
	}

	.dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		padding-top: 0;
	}

	.dropdown-content {
		border-radius: 0;
		border: none;
		border-top: 2px solid #4ECDC4;
		box-shadow: none;
	}

	.dropdown-two-col {
		grid-template-columns: 1fr;
		min-width: auto;
	}

	.has-dropdown .dropdown {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.has-dropdown.active .dropdown {
		max-height: 500px;
	}

	/* Hero Section */
	.hero {
		height: 70vh;
		min-height: 500px;
	}

	.hero-title {
		font-size: 16vw;
		margin-bottom: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
		padding: 0 1rem;
	}

	.shape-1 {
		width: 250px;
		height: 250px;
	}

	.shape-2 {
		width: 200px;
		height: 200px;
	}

	.shape-3 {
		width: 150px;
		height: 150px;
	}

	.shape-4 {
		width: 180px;
		height: 180px;
	}

	/* Programs Section */
	.programs-section {
		padding: 4rem 1rem;
	}

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

	.program-card {
		border-radius: 20px;
	}

	.program-header {
		padding: 2rem 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.program-number {
		font-size: 5rem;
		top: -10px;
		right: 10px;
	}

	.program-badge {
		font-size: 0.7rem;
		padding: 0.4rem 1rem;
	}

	.program-title {
		font-size: 1.6rem;
	}

	.program-meta {
		font-size: 0.9rem;
	}

	.program-body {
		padding: 0 1.5rem;
	}

	.program-card.expanded .program-body {
		padding: 1.5rem 1.5rem 2rem 1.5rem;
		max-height: 800px;
	}

	.program-desc {
		font-size: 0.95rem;
	}

	.program-expand-icon {
		font-size: 1.5rem;
		position: absolute;
		right: 1.5rem;
		top: 2rem;
	}

	/* Experience/Highlights Section */
	.experience-section,
	.highlights-section {
		padding: 4rem 1rem;
	}

	.experience-title,
	.highlights-title {
		font-size: 2.2rem;
		margin-bottom: 3rem;
	}

	.experience-item,
	.highlight-item {
		flex-direction: column !important;
		margin-bottom: 3rem;
		transform: translateX(0) !important;
	}

	.experience-item.visible,
	.highlight-item.visible {
		transform: translateX(0) !important;
	}

	.experience-circle,
	.highlight-circle {
		min-width: 140px;
		width: 140px;
		height: 140px;
		margin-bottom: 1.5rem;
	}

	.experience-connector,
	.highlight-connector {
		display: none;
	}

	.experience-content,
	.highlight-content {
		padding: 1rem;
		text-align: center;
	}

	.experience-content h3,
	.highlight-content h3 {
		font-size: 1.6rem;
	}

	.experience-content p,
	.highlight-content p {
		font-size: 0.95rem;
	}

	.experience-image,
	.highlight-image {
		max-width: 100%;
		height: 220px;
		margin: 0 auto 1.5rem;
	}

	/* Living Section */
	.living-section {
		padding: 4rem 1rem;
	}

	.living-title {
		font-size: 2.2rem;
		margin-bottom: 3rem;
	}

	.living-grid {
		gap: 2rem;
	}

	.living-circle {
		width: 260px;
		height: 260px;
		padding: 1.8rem;
	}

	.living-circle-content h3 {
		font-size: 1.4rem;
	}

	.living-circle-content p {
		font-size: 0.9rem;
	}

	/* Cost Toggle Section */
	.cost-toggle {
		margin: 0 1rem 3rem;
		padding: 1.5rem 1rem;
		border-radius: 15px;
	}

	.cost-toggle h4 {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.toggle-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.toggle-btn {
		padding: 1rem 1.5rem;
		font-size: 1rem;
		min-width: auto;
		width: 100%;
	}

	/* Price Section */
	.price-section {
		padding: 4rem 1rem;
	}

	.price-title {
		font-size: 3rem;
		margin-bottom: 0.5rem;
	}

	.price-subtitle {
		font-size: 1.1rem;
		margin-bottom: 3rem;
		padding: 0 1rem;
	}

	.price-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 3rem;
	}

	.price-card {
		padding: 2rem 1.5rem;
		border-radius: 20px;
	}

	.price-badge {
		font-size: 0.75rem;
		padding: 0.4rem 1rem;
	}

	.price-name {
		font-size: 1rem;
	}

	.price-period {
		font-size: 0.95rem;
	}

	.price-amount {
		font-size: 3.5rem;
		margin: 1.5rem 0;
	}

	.price-currency {
		font-size: 1.8rem;
		margin-top: 0.3rem;
	}

	.detail-item {
		padding: 1rem 0;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.detail-item:hover {
		padding-left: 0.5rem;
	}

	.detail-label {
		font-size: 0.95rem;
	}

	.detail-value {
		font-size: 1.1rem;
	}

	.included-section {
		margin-top: 2rem;
		padding: 1.5rem;
		border-radius: 15px;
	}

	.included-title {
		font-size: 1.1rem;
	}

	.included-icon {
		font-size: 1.3rem;
	}

	.included-list {
		font-size: 0.95rem;
	}

	/* Additional Fees Section */
	.additional-fees {
		padding: 2rem 1.5rem !important;
		border-radius: 20px !important;
	}

	.additional-title {
		font-size: 1.8rem !important;
	}

	.fee-row {
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start !important;
	}

	.fee-name {
		font-size: 1rem !important;
	}

	.fee-note {
		font-size: 0.85rem !important;
	}

	.fee-amount {
		font-size: 1.8rem !important;
	}

	/* Photo/Cinemagraph Section */
	.photo-section {
		padding: 4rem 1rem !important;
	}

	.cinemagraph-container {
		border-radius: 20px;
	}

	.cinemagraph-content h3 {
		font-size: 1.8rem !important;
	}

	.cinemagraph-content p {
		font-size: 1rem !important;
	}
}

/* Extra small phones */
@media (max-width: 480px) {
	.hero {
		height: 60vh;
		min-height: 450px;
	}

	.hero-title {
		font-size: 14vw;
		margin-bottom: 1rem;
	}

	.hero-subtitle {
		font-size: 1rem;
		padding: 0 0.5rem;
	}

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

	.program-number {
		font-size: 4rem;
		right: 5px;
	}

	.program-header {
		padding: 1.5rem 1rem;
	}

	.program-title {
		font-size: 1.4rem;
	}

	.program-badge {
		font-size: 0.65rem;
		padding: 0.3rem 0.8rem;
	}

	.program-body {
		padding: 0 1rem;
	}

	.program-card.expanded .program-body {
		padding: 1rem 1rem 1.5rem 1rem;
	}

	.experience-title,
	.highlights-title,
	.living-title {
		font-size: 1.8rem;
	}

	.experience-circle,
	.highlight-circle {
		min-width: 120px;
		width: 120px;
		height: 120px;
	}

	.experience-content h3,
	.highlight-content h3 {
		font-size: 1.4rem;
	}

	.living-circle {
		width: 240px;
		height: 240px;
		padding: 1.5rem;
	}

	.living-circle-content h3 {
		font-size: 1.2rem;
	}

	.living-circle-content p {
		font-size: 0.85rem;
	}

	/* Cost Toggle */
	.cost-toggle {
		padding: 1rem 0.75rem;
		margin: 0 0.5rem 2rem;
	}

	.cost-toggle h4 {
		font-size: 0.9rem;
	}

	.toggle-btn {
		padding: 0.9rem 1rem;
		font-size: 0.95rem;
	}

	/* Price Section */
	.price-title {
		font-size: 2.2rem;
	}

	.price-subtitle {
		font-size: 1rem;
		padding: 0 0.5rem;
	}

	.price-card {
		padding: 1.5rem 1rem;
	}

	.price-amount {
		font-size: 2.8rem;
		margin: 1rem 0;
	}

	.price-currency {
		font-size: 1.5rem;
	}

	.detail-label {
		font-size: 0.9rem;
	}

	.detail-value {
		font-size: 1rem;
	}

	.included-section {
		padding: 1rem;
	}

	.included-title {
		font-size: 1rem;
	}

	.additional-fees {
		padding: 1.5rem 1rem !important;
	}

	.additional-title {
		font-size: 1.5rem !important;
	}

	.fee-amount {
		font-size: 1.5rem !important;
	}
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
	.hero-title {
		font-size: 10vw;
	}

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

	.program-header {
		padding: 2.5rem 3rem;
	}

	.program-body {
		padding: 0 3rem;
	}

	.program-card.expanded .program-body {
		padding: 2rem 3rem 3rem 3rem;
	}

	.living-circle {
		width: 300px;
		height: 300px;
	}
}

