:root {
    --primary-red: #ff6b6b;
    --primary-orange: #ffa726;
    --primary-teal: #26c6da;
    --primary-dark: #333333;
    --primary-gray: #f5f5f5;
    --text-light: #ffffff;
    --text-gray: #666666;
    --border-radius: 50px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --header-translucent: rgba(255, 255, 255, 0.3);
    --header-opaque: rgba(255, 255, 255, 0.95);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* ===== MOBILE HEADER ===== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 5%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-header.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 5%;
}

.mobile-header .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.mobile-header .logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-dark);
    margin-left: 0.5rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.mobile-nav-links a {
    display: block;
    border-radius: 3rem;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
}

/* Mobile Header Responsive */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        padding-top: 100px;
    }

    .utility-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-header {
        padding: 0.8rem 5%;
    }

    .mobile-header.scrolled {
        padding: 0.6rem 5%;
    }
}

/* ===== DESKTOP HEADER ===== */
.desktop-header {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--header-translucent);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.desktop-header.scrolled {
    background-color: var(--header-opaque);
    backdrop-filter: blur(15px);
}

/* Utility Bar */
.utility-bar {
    background-color: transparent;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.utility-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-header .logo {
    display: flex;
    align-items: center;
}

.desktop-header .logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-dark);
    margin-left: 0.5rem;
}

.utility-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-dark);
}

.info-item i {
    color: var(--primary-red);
}

.highlight {
    color: var(--primary-red);
    font-weight: 600;
}

/* Navigation Bar */
.main-nav {
    background-color: transparent;
    padding: 0px;
    border-radius: 12px;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
    border-radius: 30px;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
}

/* Desktop Header Responsive */
@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }

    .desktop-header {
        display: block;
    }
}

@media (max-width: 992px) {
    .utility-info {
        flex-direction: row;
        gap: 10px;
    }

    .utility-info .info-item span {
        font-size: 0.6rem;
    }

    .utility-info .info-item i {
        font-size: 1.2rem;
    }

    .utility-info .info-item .location {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-background .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 1;
    backdrop-filter: blur(1.2px);
    -webkit-backdrop-filter: blur(1.2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 140px;
}

.hero-text {
    max-width: 600px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.slide-control {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--primary-dark);
}

.slide-control:hover {
    background-color: white;
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Hero Section Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .slide-control {
        width: 40px;
        height: 40px;
    }
}

/* ===== MAIN CONTENT WRAPPER ===== */
main {
    position: relative;
    z-index: 10;
    background-color: white;
    margin-top: -60px;
    padding-top: 120px;
}

/* ===== UPDATED FEATURES SECTION ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
    position: relative;
}

.feature-card {
    border-radius: 16px;
    padding: 32px 24px;
    color: var(--primary-dark);
    text-align: center;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-red);
}

.feature-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s cubic-bezier(0.34, 0.56, 0.64, 1);
    z-index: 1;
    overflow: hidden;
}

.feature-hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.feature-card:hover .feature-hover-image {
    opacity: 1;
    transform: translateX(0);
}

.feature-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--primary-red);
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.feature-card:hover p {
    opacity: 1;
}

/* Features Section Responsive */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .feature-card h3 {
        font-size: 20px;
    }
}

/* ===== ABOUT & PRINCIPAL'S MESSAGE SECTION ===== */
.about-principal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    background-color: white;
}

.about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.read-more {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    transform: translateY(-50%);
    transition: left 0.3s ease;
    z-index: -1;
}

.read-more:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.read-more:hover::before {
    left: 0;
}

.principal-card {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.principal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 20px 20px 0 0;
}

.principal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.principal-header {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: center;
}

.principal-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
    transition: transform 0.4s ease;
}

.principal-card:hover .principal-image {
    transform: scale(1.08);
}

.principal-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.principal-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 4px;
}

.principal-info span {
    font-size: 14px;
    color: var(--text-gray);
}

.principal-card blockquote {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    border-left: 4px solid var(--primary-red);
}

.principal-card blockquote::before {
    content: '"';
    position: absolute;
    left: -8px;
    top: -10px;
    font-size: 32px;
    color: var(--primary-red);
    opacity: 0.3;
}

.principal-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.principal-signature span {
    color: var(--text-gray);
    font-size: 14px;
}

.signature {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
}

/* About & Principal Responsive */
@media (max-width: 992px) {
    .about-principal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 24px;
    }

    .principal-header {
        flex-direction: column;
        text-align: center;
    }

    .principal-card {
        padding: 32px;
    }
}

/* ===== UPDATED ACADEMIC PROGRAMS SECTION ===== */
.academic-programs {
    background-color: var(--primary-gray);
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px 0;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.program-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

.program-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.program-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
    margin-top: auto;
}

/* Academic Programs Responsive */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .academic-programs {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-content {
        padding: 24px;
    }

    .program-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .program-image {
        height: 180px;
    }
}

/* ===== WHY CHOOSE OUR SCHOOL SECTION ===== */
.why-choose {
    padding: 60px 20px;
    background-color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 32px;
    border-radius: 18px;
    background-color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gray) 0%, transparent 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-icon {
    color: var(--primary-red);
    font-size: 52px;
    margin-bottom: 24px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 107, 0.3));
}

.why-choose-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.why-choose-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Why Choose Responsive */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-choose-item {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FACILITIES CAROUSEL SECTION ===== */
.facilities-carousel-section {
    padding: 60px 20px;
    background-color: var(--primary-gray);
    border-radius: 20px;
    margin: 40px 0;
}

.facilities-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.carousel-container {
    position: relative;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.9) 100%);
    color: white;
    padding: 50px 32px 32px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slide-overlay p {
    opacity: 0.95;
    font-size: 16px;
}

.facilities-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facilities-carousel .carousel-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.facilities-carousel .carousel-prev {
    left: 20px;
}

.facilities-carousel .carousel-next {
    right: 20px;
}

.facilities-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.facilities-carousel .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facilities-carousel .indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

.facilities-carousel .indicator.active {
    background-color: white;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* Facilities Carousel Responsive */
@media (max-width: 768px) {
    .facilities-carousel-section {
        padding: 40px 15px;
    }

    .carousel-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .facilities-carousel .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .carousel-container {
        height: 250px;
    }
}

/* ===== STUDENT LIFE SECTION ===== */
.student-life {
    padding: 60px 20px;
    background-color: white;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.activity-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.activity-card.large {
    grid-column: span 2;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.activity-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.activity-card:hover img {
    transform: scale(1.08);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    color: white;
    padding: 40px 24px 24px;
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.activity-card:hover .activity-overlay {
    transform: translateY(0);
}

.activity-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.activity-card:hover .activity-date {
    transform: scale(1.1);
}

.activity-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.activity-overlay p {
    opacity: 0.95;
    font-size: 14px;
}

/* Student Life Responsive */
@media (max-width: 992px) {
    .activity-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
}

.statistics-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.statistics-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.85), rgba(255, 167, 38, 0.85));
    z-index: -1;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover {
    transform: scale(1.08);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 52px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Statistics Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-number.animated {
    animation: countUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.stat-item:hover .stat-number {
    animation: pulse 0.6s ease-in-out;
}

/* Statistics Responsive */
@media (max-width: 992px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .statistics-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY PREVIEW SECTION ===== */
.gallery-preview {
    padding: 60px 20px;
    background-color: var(--primary-gray);
    border-radius: 20px;
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 167, 38, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-navigation {
    text-align: center;
}

.gallery-btn {
    background: var(--primary-red);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
    transition: left 0.4s ease;
}

.gallery-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

.gallery-btn:hover::before {
    left: 100%;
}

/* Gallery Preview Responsive */
@media (max-width: 768px) {
    .gallery-preview {
        padding: 40px 15px;
    }

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== QUICK LINKS SECTION ===== */
.quick-links {
    padding: 60px 20px;
    background-color: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.quick-link-item {
    background-color: white;
    padding: 36px 28px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-link-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    opacity: 0.1;
    transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.quick-link-item:hover::before {
    top: 0;
}

.quick-link-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.15);
    border-color: var(--primary-red);
}

.quick-link-icon {
    color: var(--primary-red);
    font-size: 52px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.25) rotateY(360deg);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 107, 0.3));
}

.quick-link-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.quick-link-item p {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.quick-link-item:hover p {
    color: var(--primary-red);
}

/* Quick Links Responsive */
@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .quick-link-item {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NEW FOOTER ===== */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: white;
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer {
        padding: 60px 0 25px;
        margin-top: 60px;
    }
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
    padding: 3px;
}

.footer-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
    line-height: 1.7;
    font-size: 15px;
}

/* Social Icons */
.footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    border-color: transparent;
}

/* Quick Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary-red);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul li a:hover::before {
    transform: translateX(3px);
    color: var(--primary-orange);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-red);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-info a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.contact-info a:hover i {
    color: var(--primary-orange);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== CUSTOM ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-slide-in {
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    padding-top: 160px;
    background-color: var(--primary-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.2;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 30px 0 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.about-text ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-text li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding-top: 50px;
    }

    .about-text h1 {
        font-size: 28px;
    }
}
/* ===== UPDATED ABOUT PAGE STRUCTURE ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-details {
    padding: 10px 0;
    background-color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 40px 0 20px;
}

.about-mission p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.about-features {
    text-align: center;
}

.about-features h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background-color: var(--primary-gray);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-features > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 0px;
    }
    
    .about-details {
        padding: 0;
    }
    
    .about-mission h2,
    .about-features h2 {
        font-size: 28px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .about-mission p,
    .about-features > p {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== DISCLOSURES PAGE STYLES ===== */
.disclosures-hero {
    padding-top: 140px;
    padding-bottom: 0px;
    background-color: var(--primary-gray);
    text-align: center;
}

.disclosures-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclosures-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.disclosures-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ===== DISCLOSURES MAIN CONTENT SECTION ===== */
/* ===== DISCLOSURES MAIN CONTENT SECTION ===== */
.disclosures-main {
    padding: 20px 20px;
    background-color: white;
}

.disclosures-main .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* PDF Filter Styles - Simplified */
.pdf-filter {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--primary-gray);
    border-radius: 15px;
    padding: 20px 25px;
    margin: 0 auto 10px;
    text-align: left;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.filter-icon {
    color: var(--primary-red);
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.pdf-select {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
    background-color: white;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    min-width: 0; /* This helps with flexbox overflow */
}

.pdf-select:hover {
    border-color: var(--primary-red);
}

.pdf-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.dropdown-arrow {
    position: absolute;
    right: 40px;
    color: var(--text-gray);
    pointer-events: none;
    flex-shrink: 0;
}

/* PDF Viewer Container */
.pdf-viewer-container {
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    width: 100%;
}

.pdf-viewer-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    padding: 25px 30px 15px;
    text-align: left;
    margin: 0;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pdf-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    height: 1000px;
}

.pdf-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* PDF Info */
.pdf-viewer-container .pdf-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 15px;
}

.pdf-viewer-container .pdf-desc {
    flex: 1;
    text-align: left;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    min-width: 200px;
}

.pdf-viewer-container .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.pdf-viewer-container .download-btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.pdf-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    padding: 20px;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pdf-note a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pdf-note a:hover {
    color: #ff5252;
    text-decoration: underline;
}

/* Disclosures Notes */
.disclosures-notes {
    background-color: var(--primary-gray);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.disclosures-notes h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: left;
}

.disclosures-notes ul {
    text-align: left;
    list-style-position: inside;
    margin: 0;
    padding-left: 0;
}

.disclosures-notes li {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclosures-notes li:last-child {
    margin-bottom: 0;
}

/* Disclosures Page Responsive */
@media (max-width: 768px) {
    .disclosures-hero {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .disclosures-hero h1 {
        font-size: 36px;
    }
    
    .disclosures-hero p {
        font-size: 16px;
    }
    
    .disclosures-main {
        padding: 0px 15px;
    }
    
    /* Mobile-optimized PDF filter */
    .pdf-filter {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .filter-icon {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .pdf-select {
        width: 100%;
        padding: 12px 40px 12px 15px;
        box-sizing: border-box;
        font-size: 15px;
    }
    
    .dropdown-arrow {
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Adjust PDF info for mobile */
    .pdf-viewer-container .pdf-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .pdf-viewer-container .pdf-desc {
        min-width: auto;
        padding-right: 0;
        margin-bottom: 0;
    }
    
    .pdf-viewer-container .download-btn {
        align-self: flex-start;
    }
    
    .pdf-viewer-container h3 {
        font-size: 20px;
        padding: 20px;
    }

    .pdf-wrapper {
        height: 400px;
    }
    
    .disclosures-notes {
        padding: 20px;
    }
    
    .disclosures-notes h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .disclosures-hero h1 {
        font-size: 28px;
    }
    
    .disclosures-main {
        padding: 0px 10px;
    }
    
    .pdf-filter {
        padding: 12px;
    }
    
    .pdf-select {
        padding: 10px 35px 10px 12px;
        font-size: 14px;
    }
    
    .dropdown-arrow {
        right: 20px;
    }
    
    .pdf-viewer-container h3 {
        font-size: 18px;
        padding: 15px;
    }
    
    .pdf-note {
        padding: 15px;
        font-size: 13px;
    }
    
    .pdf-viewer-container .pdf-info {
        padding: 15px;
    }
    
    .pdf-viewer-container .pdf-desc {
        font-size: 13px;
    }
}

/* Mobile-specific: Hide hero section on mobile */
@media (max-width: 768px) {
    .disclosures-hero {
        display: none;
        margin-top: 0;
    }
    
    .disclosures-main {
        padding-top: 50px; /* Give space for mobile header */
    }
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-hero {
    padding-top: 140px;
    padding-bottom: 10px;
    background-color: var(--primary-gray);
    text-align: center;
}

.gallery-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.gallery-hero p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 10px;
}

/* Infinite Carousel */
.infinite-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 30px 0 10px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.carousel-track img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5 - 20px * 5));
    }
}

/* Image Grid */
.image-grid-section {
    padding: 60px 0;
}

.image-grid-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.grid-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* Gallery Page Responsive */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 36px;
    }

    .carousel-track img {
        width: 250px;
        height: 150px;
    }

    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .grid-item {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .gallery-hero h1 {
        font-size: 28px;
    }
}

/* ===== CONTACTS PAGE STYLES ===== */
.contacts-hero {
    padding-top: 140px;
    padding-bottom: 10px;
    background-color: white;
    text-align: center;
}

.contacts-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contacts-hero p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 10px;
}

.contact-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: var(--primary-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    margin: 60px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Links Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.social-item {
    background-color: var(--primary-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-item:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
}

.social-item:hover i,
.social-item:hover h3,
.social-item:hover a {
    color: white;
}

.social-item i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.social-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.social-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-item a:hover {
    text-decoration: underline;
}

/* Contacts Page Responsive */
@media (max-width: 768px) {
    .contacts-hero h1 {
        font-size: 36px;
    }

    .contact-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .contacts-hero {
        padding-top: 50px;
        padding-bottom: 10px;
    }

    .contacts-hero h1 {
        font-size: 28px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    }
    
    .mobile-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background-color: rgba(255, 255, 255, 0.95);
    }
}