/* ============================================
    CSS VARIABLES & ROOT STYLES
============================================ */
:root {
    /* Brand Colors */
    --primary: #0c386d;
    --primary-light: #1a4a85;
    --primary-dark: #082548;
    --secondary: #dc5d49;
    --secondary-light: #e57565;
    --accent: #ee894b;
    --accent-light: #f19a64;
    
    /* Neutral Colors */
    --cream: #faf8f5;
    --cream-dark: #f5f1eb;
    --ivory: #fffff8;
    --charcoal: #2d2d2d;
    --charcoal-light: #4a4a4a;
    --gold: #c9a96e;
    --gold-light: #d4b87d;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
    RESET & BASE STYLES
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ============================================
    PRELOADER
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--cream);
}

.preloader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
    TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 1rem auto 0;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--charcoal-light);
    font-size: 1.05rem;
}

/* ============================================
    DECORATIVE ELEMENTS
============================================ */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}


/* ============================================
    HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--cream) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, var(--cream) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-decorative {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(250, 248, 245, 0.1);
    border-radius: 50%;
}

.hero-decorative::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 1px solid rgba(250, 248, 245, 0.08);
    border-radius: 50%;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--cream);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 248, 245, 0.1);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(250, 248, 245, 0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title span {
    color: var(--accent);
}

.hero-slogan {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--cream);
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 93, 73, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(250, 248, 245, 0.5);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--primary);
    border-color: var(--cream);
}

/* Hero Image */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-image-frame {
    position: relative;
    padding: 1.5rem;
    background: rgba(250, 248, 245, 0.05);
    border: 1px solid rgba(250, 248, 245, 0.1);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(20%);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: var(--ivory);
    padding: 1.5rem 2.5rem;
    box-shadow: 0 20px 50px rgba(12, 56, 109, 0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cream), transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
    ABOUT SECTION
============================================ */
.about {
    padding: var(--section-padding) 2rem;
    background: var(--ivory);
    position: relative;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    height: 200px;
    object-fit: cover;
    border: 8px solid var(--ivory);
    box-shadow: 0 20px 50px rgba(12, 56, 109, 0.15);
}

.about-year-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary);
    color: var(--cream);
    padding: 1.5rem;
    text-align: center;
}

.about-year-badge span {
    display: block;
    font-family: var(--font-display);
}

.about-year-badge .year {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-year-badge .label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    margin: 1rem 0 0;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--charcoal-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cream);
}

.about-feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.about-feature-text p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

/* ============================================
    PROGRAMS SECTION
============================================ */
.programs {
    padding: var(--section-padding) 2rem;
    background: var(--cream);
    position: relative;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(12, 56, 109, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 93, 73, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.programs-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.programs-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.program-category-btn {
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.program-category-btn:hover,
.program-category-btn.active {
    background: var(--primary);
    color: var(--cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--ivory);
    border: 1px solid rgba(12, 56, 109, 0.08);
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
    transition: var(--transition-smooth);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(12, 56, 109, 0.1);
}

.program-card:hover::before {
    height: 100%;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.program-card:hover .program-icon {
    background: var(--primary);
}

.program-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    transition: var(--transition-smooth);
}

.program-card:hover .program-icon svg {
    stroke: var(--cream);
}

.program-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.program-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.program-description {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.program-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: var(--transition-smooth);
}

.program-link:hover {
    color: var(--secondary);
}

.program-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
    WHY CHOOSE US SECTION
============================================ */
.why-us {
    padding: var(--section-padding) 2rem;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23faf8f5' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-us-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-us .section-subtitle {
    color: var(--gold-light);
}

.why-us .section-title {
    color: var(--cream);
}

.why-us .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--accent));
}

.why-us .section-description {
    color: rgba(250, 248, 245, 0.8);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-us-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(250, 248, 245, 0.05);
    border: 1px solid rgba(250, 248, 245, 0.1);
    transition: var(--transition-smooth);
}

.why-us-card:hover {
    background: rgba(250, 248, 245, 0.1);
    transform: translateY(-10px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--cream);
}

.why-us-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.why-us-text {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.7;
}

/* ============================================
    TESTIMONIALS SECTION
============================================ */
.testimonials {
    padding: var(--section-padding) 2rem;
    background: var(--cream-dark);
    position: relative;
}

.testimonials-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--ivory);
    border: 1px solid rgba(12, 56, 109, 0.08);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--cream);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    background: var(--ivory);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-nav-btn:hover {
    background: var(--primary);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    transition: var(--transition-smooth);
}

.testimonial-nav-btn:hover svg {
    stroke: var(--cream);
}

/* ============================================
    FAQ SECTION
============================================ */
.faq {
    padding: var(--section-padding) 2rem;
    background: var(--ivory);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(12, 56, 109, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-question:hover h3 {
    color: var(--secondary);
}

.faq-icon {
    width: 30px;
    height: 30px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--charcoal-light);
    line-height: 1.8;
}

/* ============================================
    ENROLLMENT CTA SECTION
============================================ */
.enrollment-cta {
    padding: var(--section-padding) 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.enrollment-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--cream) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--cream) 0%, transparent 50%);
}

.enrollment-cta-container {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.enrollment-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
}

.enrollment-cta-text {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.enrollment-cta .btn {
    background: var(--cream);
    color: var(--primary);
    border: 2px solid var(--cream);
}

.enrollment-cta .btn:hover {
    background: transparent;
    color: var(--cream);
}

/* ============================================
    CONTACT SECTION
============================================ */
.contact {
    padding: var(--section-padding) 2rem;
    background: var(--cream);
}

.contact-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    padding: 3rem;
    background: var(--primary);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(250, 248, 245, 0.05) 0%, transparent 70%);
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.contact-info > p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: rgba(250, 248, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-light);
}

.contact-detail-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-detail-text a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(250, 248, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.contact-social a:hover {
    background: var(--secondary);
}

.contact-social svg {
    width: 20px;
    height: 20px;
    fill: var(--cream);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 3rem;
    background: var(--ivory);
    border: 1px solid rgba(12, 56, 109, 0.08);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--charcoal-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    border: 1px solid rgba(12, 56, 109, 0.15);
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 56, 109, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    justify-self: start;
}

/* ============================================
    FOOTER
============================================ */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding-top: 5rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(250, 248, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--cream);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-contact-item a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    opacity: 1;
}

/* ============================================
    BACK TO TOP BUTTON
============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--cream);
}

/* ============================================
    REVEAL ON SCROLL ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
    RESPONSIVE STYLES
============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title::after {
        margin: 1rem auto 0;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--ivory);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .navbar-link {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .navbar-cta {
        margin-top: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        position: relative;
        bottom: 0;
        margin-top: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-secondary {
        display: none;
    }
    
    .about-year-badge {
        top: 10px;
        left: 10px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-slogan {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
}