/* CSS Variables */
:root {
    /* Colors */
    --burgundy: #923246;
    --slate: #2C3E50;
    --cream: #f2e282;
    --near-black: #09080d;
    --white: #ffffff;
    
    /* Fonts */
    --font-heading: "bebas-neue", sans-serif;
    --font-body: "dm-sans", sans-serif;
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--near-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 100;
    padding: var(--spacing-sm) 0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 90px;
    width: auto;
}

.logo span{
    font-weight: bold;
    color: var(--slate);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.3;
    letter-spacing: 2px;
}

/* Hamburger */
.hamburger {
    background: none;
    border: solid 1px var(--slate);
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    border-radius: 50%;
}

.hamburger span {
    display: block;
    width: 27px;
    height: 4px;
    background: var(--slate);
    margin: 5px ;
    transition: var(--transition);
    border-radius: 3px;
}

/* Slide Menu */
.slide-menu {
    position: fixed;
    top: 0;
    right: -40vw; /* Hidden by default */
    width: 35vw;
    height: 100vh;
    background: var(--burgundy);
    color: var(--white);
    z-index: 200;
    transition: right 0.4s ease;
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.slide-menu.active {
    right: 0;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-xl);
    background: none;
    border-radius: 50%;
    border: solid 1px var(--white);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 202;
    line-height: 1;
    padding: 10px;
}

/* Faint Logo Background */
.menu-logo-bg {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    /* opacity: 0.4; */
    z-index: 201;
    pointer-events: none;
}

.menu-logo-bg img {
    width: 250px;
    height: auto;
}

/* Menu Links */
.menu-links {
    position: relative;
    z-index: 202;
    list-style: none;
    text-align: left;
    margin-top: 10vh;
    border-right: 1px solid rgb(143, 139, 139);
    width: 15vw;
    margin-left: 3rem;
}

.menu-links li {
    margin-bottom: 5px;
}

.menu-links a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    font-weight: bold;
}

.menu-links a:hover {
    color: var(--cream);
    transform: translateX(-5px);
}

/* Menu Footer Icons */
.menu-footer {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-md);
    z-index: 202;
    display: flex;
    gap: var(--spacing-md);
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.icon-item:hover {
    color: var(--cream);
}

.icon-item img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.icon-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .logo{
        gap: 8px;
    }

    .logo img {
        height: 80px;
    }

    .logo span{
        font-size: 1.1rem;
        line-height: 1.2;
        letter-spacing: 1.5px;
    }

    .hammy{
        display: none;
    }

    .slide-menu {
        right: -101%;
        width: 100%;
    }
    
    .menu-logo-bg {
        opacity: 0; /* Hide faint logo on mobile */
    }
    
    /* Bold logo on mobile */
    .slide-menu::before {
        content: '';
        position: absolute;
        top: var(--spacing-md);
        left: var(--spacing-md);
        width: 100px;
        height: 100px;
        background: url('/images/logo.png') no-repeat center/contain;
        z-index: 203;
    }

    .close-menu{
        right: var(--spacing-md);
        top: 3rem;
    }
    
    .menu-links {
        margin-top: 15vh;
        border-right: none;
    }
    
    .menu-links a {
        font-size: 2rem;
        border-bottom: 1px solid rgb(143, 139, 139);
        font-size: 1.5rem;
        width: 85vw;
        margin-left: -3rem;
        margin-bottom: 1.2rem;
    }
    
    .menu-footer {
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        justify-content: space-around;
    }
}

/* Main content spacing */
main {
    margin-top: 100px; /* Account for fixed navbar */
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    width: 90%;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3.3rem;
}

.btn {
    font-family: "bebas-neue", sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    background: transparent;
    border-radius: 30px;
}

.btn-outline:hover {
    background: white;
    color: #09080d;
}

/* Arrows */
.hero-arrows {
    position: absolute;
    bottom: 4%;
    right: 1%;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: white;
    color: #09080d;
}

/* Mobile */
@media (max-width: 768px) {

    .hero-overlay{
        height: 60%;
    }

    .hero-content{
        bottom: 15%
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        text-align: center;
        padding: 1rem 1.2rem;
    }
    
    .hero-arrows {
        bottom: auto;
        top: 45%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 1rem;
    }

    .arrow{
        background-color: rgba(0,0,0,0.7);
    }
}

/* About Section */
.about-section {
    background: white;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* Faint background logo */
.about-bg-logo {
    position: absolute;
    left: -5%;
    top: 40%;
    transform: translateY(-50%);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.about-bg-logo img {
    width: 500px;
    height: auto;
}

/* Header with lines and logo */
.about-header {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
    position: relative;
    z-index: 3;
}

.title-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
}

.line {
    height: 1px;
    width: 150px;
    background: var(--slate);
    opacity: 0.3;
}

.logo-in-lines img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Main heading */
.about-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: -2rem;
}

.burgundy {
    color: var(--burgundy);
}

.slate {
    color: var(--slate);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    margin-bottom: 10px;
}

.feature-icon img {
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--slate);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #636363;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1px;
    margin: 0 auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: var(--spacing-lg) 0;
    }
    
    .about-bg-logo {
        left: -50%;
        top: 5%;
        transform: none;
    }
    
    .about-bg-logo img {
        width: 500px;
    }
    
    .title-lines {
        gap: 1rem;
    }
    
    .line {
        width: 130px;
    }
    
    .about-heading {
        font-size: 2rem;
        margin-bottom: -3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .feature-icon img {
        width: 18px;
        height: 18px;
    }
    
    .feature-text {
        max-width: 85vw;
        font-size: 0.8rem;
    }
}

/* Reasons Section */
.reasons-section {
    background: var(--burgundy);
    padding: var(--spacing-xl) 0;
    color: white;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: bold;
    margin: 1rem 0;

}

.section-title .white {
    color: white;
}

.section-title .gold {
    color: var(--cream);
}

.section-description {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 90vw;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-card {
    flex: 0 0 100%;
    max-width: 90vw;
    max-height: 70vh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
}

.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--slate);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    text-transform: uppercase;
    z-index: 3;
}

.card-layout {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

.card-left {
    flex: 0 0 30%;
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -9rem;
    margin-left: -7rem;
}

.card-right {
    flex: 1;
    text-align: center;
    margin-top: -5rem;
}

.card-subtitle {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.card-text {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.card-divider {
    width: 130px;
    height: 1.5px;
    background: white;
    margin: auto;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 7rem;
}

.stat-item {
    text-align: center;
    font-weight: bold;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto ;
    filter: brightness(0) invert(1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: -10px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Carousel Arrows */
.carousel-arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: white;
    color: var(--burgundy);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        width: 90vw;
        margin: auto;
        margin-bottom: 1rem;
    }

    .section-description{
        font-size: 1rem;
        width: 80vw;
        margin: auto;
    }

    .carousel-card{
        max-height: none;
    }
    
    .card-layout {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .card-left {
        flex: 0 0 auto;
        width: 80%;
        margin: 0 auto;
    }

    .card-image {
        margin-bottom: 5rem;
        margin-right: auto;
        margin-left: auto;
    }

    .card-subtitle{
        font-size: 1.8rem;
        width: 85vw;
    }

    .card-text{
        font-size: 1rem;
    }
    
    .card-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        margin-top: 5rem;
    }

    .stat-icon{
        width: 40px;
        height: 40px;
    }

    .stat-label{
        font-size: 0.8rem;
    }

    .stat-number{
        font-size: 1.2rem;
    }
    
    .carousel-arrows {
        bottom: auto;
        top: 53%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 var(--spacing-sm);
    }
    
    .carousel-arrow {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
    }
}

/* Programs Section */
.programs-section {
    background: white;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    margin-left: 5vw;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    direction: rtl; /* THIS LINE swaps left and right */
}

/* Then set content back to ltr so text reads normally */
.programs-grid > * {
    direction: ltr;
}

/* Left side - Image */
.programs-image {
    position: relative;
    height: 500px;
    width: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-right: -2rem;
}

.programs-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.programs-image img.active-image {
    opacity: 1;
}

/* Right side - Content */
.programs-content {
    position: relative;
}

.programs-title {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 3.2rem;
    text-transform: uppercase;
    margin-bottom: 3.3rem;
}

.programs-title .slate {
    color: var(--slate);
}

.programs-title .burgundy {
    color: var(--burgundy);
}

/* School Selector (Desktop) */
.school-selector {
    position: relative;
    display: flex;
    gap: 10rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
}

.school-btn {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgb(99, 99, 99);
    background: none;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: bold;
}

.school-btn.active {
    color: var(--burgundy);
}

.selector-bg {
    position: absolute;
    left: 25px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.selector-bg img {
    height: 70px;
    width: auto;
}

/* School Content */
.school-content {
    display: none;
}

.school-content.active {
    display: block;
}

.school-age {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--slate);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.school-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: #636363;
    margin-bottom: var(--spacing-md);
    word-spacing: 1px;
}

.programs-cta {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--burgundy);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid var(--burgundy);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.programs-cta:hover {
    background: var(--burgundy);
    color: white;
}

/* Mobile Accordion (hidden on desktop) */
.mobile-accordion {
    display: none;
}

/* Desktop styles */
@media (min-width: 769px) {
    .desktop-selector {
        display: flex;
    }
    .mobile-accordion {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .programs-section{
        margin-left: 0;
        padding: var(--spacing-lg) 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    

    .school-content.active, .programs-image, .desktop-selector, .school-content{
        display: none; /* Hide desktop image on mobile */
    }
    
    .programs-title {
        font-size: 2.3rem;
        text-align: left;
        margin-bottom: 0;
        letter-spacing: -2px;
    }
    
    
    /* Show accordion on mobile */
    .mobile-accordion {
        display: block;
        margin-top: 0;
    }
    
    .accordion-item {
        border-bottom: 2px solid rgba(73, 79, 100, 0.2);
        margin-bottom: var(--spacing-sm);
    }
    
    .accordion-header {
        width: 100%;
        text-align: left;
        font-weight: bold;
        padding: 10px 0;
        background: none;
        border: none;
        font-family: var(--font-heading);
        font-size: 1.2rem;
        color: var(--slate);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .accordion-header.active {
        color: var(--burgundy);
    }
    
    .accordion-icon {
        font-size: 2rem;
        color: var(--slate);
        transition: transform 0.3s ease;
    }
    
    .accordion-header.active .accordion-icon {
        transform: rotate(45deg);
    }
    
    .accordion-content {
        display: none;
        padding-bottom: var(--spacing-md);
    }
    
    .accordion-content.active {
        display: block;
    }
    
    .accordion-content img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: var(--spacing-md);
    }
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 12rem 0;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Faint centered logo */
.cta-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    max-width: 600px;
}

.cta-bg-logo img {
    width: 100%;
    height: auto;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    font-weight: bold; /* Bold */
    letter-spacing: -2px;
}

.cta-title .slate {
    color: var(--slate);
    font-weight: 700;
}

.cta-title .burgundy {
    color: var(--burgundy);
    font-weight: 700;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 1.6;
    color: #373737;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 700; /* Bold */
}

.cta-text .burgundy {
    color: var(--burgundy);
    font-weight: 700;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    font-weight: bold; /* Bold */
    border-radius: 30px;
}

.btn-enroll {
    background: var(--slate);
    color: white;
}

.btn-enroll:hover {
    background: var(--burgundy);
    color: white;
}

.btn-apply {
    background: var(--burgundy);
    color: white;
}

.btn-apply:hover {
    background: var(--slate);
    color: white;
}

.btn-visit {
    background: var(--slate);
    color: white;
}

.btn-visit:hover {
    background: var(--burgundy);
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .cta-section{
        padding: 7rem 0;
        margin-top: -3rem;
    }

    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        padding: 0 var(--spacing-sm);
    }

    .cta-buttons{
        gap: 10px;
    }
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: var(--spacing-lg) 0 var(--spacing-lg);
    border-top: 1px solid rgba(73, 79, 100, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Left Column */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.footer-school-name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 2rem;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.social-icon:hover img {
    opacity: 0.8;
}

/* Middle Column */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    letter-spacing: -1px;
    color: var(--burgundy);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    font-weight: bold;
}

.contact-info {
    font-family: var(--font-body);
    color: #373737;
    font-weight: bold;
    line-height: 1.8;
    font-size: 0.9rem;
}

.contact-address {
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    color: #373737;
    font-weight: bold;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.contact-icon {
    color: var(--burgundy);
}

/* Right Column */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    font-family: var(--font-body);
    text-decoration: none;
    transition: color 0.3s ease;
    color: #373737;
    font-weight: bold;
    font-size: 0.9rem;
}

.quick-links a:hover {
    color: var(--burgundy);
}

/* Full width border */
.footer-border {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 1px;
    background: rgba(73, 79, 100, 0.2);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

/* Bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--slate);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-weight: 500;
}

.credit {
    font-weight: 500;
}

.credit-link {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: var(--slate);
}

/* Mobile Styles */
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-left: -1rem;
    }

    .footer-logo-wrapper {
        justify-content: flex-start; /* Left align logo + name */
    }
    
    .social-icons {
        justify-content: flex-start; /* Left align social icons */
        gap: 3rem;
        border-bottom: rgba(73, 79, 100, 0.2) 1px solid;
        padding-bottom: 2rem;
        margin-bottom: -1rem;
    }

    .social-icon img {
        width: 35px;
        height: 35px;
    }
    
    .footer-title {
        text-align: left; /* Left align titles */
        font-size: 1.2rem;
    }
    
    .contact-item {
        justify-content: flex-start; /* Left align contact items */
    }
    
    .contact-address {
        text-align: left; /* Left align address */
    }
    
    .quick-links {
        text-align: left; /* Left align quick links */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: left; /* Left align bottom text */
        align-items: flex-start; /* Left align the column */
        gap: 0.5rem;
    }
}