@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #c9a227;
    --primary-dark: #a68520;
    --primary-darker: #7a5f14;
    --primary-light: #e8c865;
    --primary-lighter: #f5e8b0;
    --primary-50: rgba(201,162,39,0.05);
    --primary-100: rgba(201,162,39,0.1);
    --secondary: #da5427;
    --secondary-dark: #b8431e;
    --secondary-light: #e07045;
    --secondary-lighter: #f0a080;
    --secondary-50: rgba(218,84,39,0.05);
    --secondary-100: rgba(218,84,39,0.1);
    --accent: #17a861;
    --accent-dark: #129650;
    --dark: #1a1a2e;
    --light: #f4f6f9;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.18);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.25);
    --shadow-primary: 0 8px 30px rgba(201,162,39,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Page Loader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--gray-100);
}

p {
    text-align: justify;
}

p, .lead, .text-muted, .text-white-50 {
    text-align: justify;
}

main {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand span {
    color: var(--secondary) !important;
    -webkit-text-fill-color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    color: var(--gray-700) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-item.active .nav-link {
    color: var(--primary) !important;
}

.nav-item.active .nav-link::after {
    width: 60% !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,162,39,0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 85vh;
    height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide-1 {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary-dark) 100%);
}

.hero-slide-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../Images/home-01.jpg') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero-slide-2 {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-light) 50%, var(--secondary) 100%);
}

.hero-slide-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../Images/home-09.jpg') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(201,162,39,0.2) 0%, transparent 60%);
    transform: rotate(-20deg);
    pointer-events: none;
}

.hero-slide .container,
.hero-slide .container-fluid {
    position: relative;
    z-index: 2;
    padding-left: 4rem;
    padding-right: 4rem;
}

.hero-slide h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff 0%, #e8c865 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .carousel {
    width: 100%;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-indicators {
    bottom: 30px;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-section .carousel-indicators button.active {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 85vh;
}

.hero-section .carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.tagline {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tagline::before,
.tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.tagline::before {
    right: 100%;
    margin-right: 15px;
}

.tagline::after {
    left: 100%;
    margin-left: 15px;
}

/* Quick Action Cards */
.quick-cards-section {
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.quick-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quick-card .quick-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.quick-card:hover .quick-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.quick-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.quick-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
    text-align: center;
}

.quick-card .quick-arrow {
    display: inline-block;
    margin-top: 0.75rem;
    color: #ffc80b;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-arrow {
    transform: translateX(5px);
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-card .text-primary.fw-semibold {
    color: #ffc80b !important;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(201,162,39,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Section */
.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--secondary-dark) 100%);
    padding: 7rem 0 4rem;
    margin-bottom: -2.5rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(201,162,39,0.15) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

/* Feature Box */
.feature-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--gray-200);
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    height: 280px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.team-image img:hover {
    opacity: 1;
}

.team-image i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.6;
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
    border-left: 4px solid var(--primary);
}

.program-card h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-meta i {
    color: var(--primary);
}

.program-modules ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.program-modules li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Resource Cards */
.resource-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-card .resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.resource-card:hover .resource-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.05);
}

.resource-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
    text-align: left;
}

.resource-card .resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #ffc80b;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-link {
    gap: 0.75rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,162,39,0.4);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,162,39,0.2) 0%, transparent 60%);
}

.contact-section h2 {
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    font-weight: 800;
}

/* Forms */
.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    background: var(--gray-100);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(201,162,39,0.15);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--secondary);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

footer h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

footer a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--primary);
    padding-left: 5px;
}

footer ul li {
    margin-bottom: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,162,39,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.stat-number .suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 1rem auto;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::quote {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-slide h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .quick-cards-section {
        margin-top: -1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .hero-slide {
        min-height: 70vh;
        padding: 6rem 0 3rem;
    }

    .hero-slide .container-fluid {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .hero-slide h1 {
        font-size: 2.25rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .program-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .quick-cards-section {
        margin-top: -1rem;
        padding: 1.5rem 0;
    }

    .quick-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.1;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Loading State */
.btn-loading {
    pointer-events: none;
    position: relative;
}

.btn-loading .btn-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}