/* ===== VARIABLES ===== */
:root {
    --primary-teal: #2C5F2D;        /* Dark green from logo */
   /*  --primary-teal: #ffca08;        /* Dark green from logo */
    --primary-rust: #1e3a8ae6;         /* Rust orange from logo */
  /*  --primary-rust: #C44536;          Rust orange from logo */
    --secondary-teal: #4A7C59;       /* Lighter teal */
    --secondary-rust: #D9695F;        /* Lighter rust */
    --pure-white: #FFFFFF;
    --off-white: #F9F6F2;            /* Warm white */
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(196, 69, 54, 0.15);
    --transition: all 0.3s ease;
}


/* Logo color CSS HEX */
/*
--#e33547: #e33547;
--#ee2b2a: #ee2b2a;
--#6ecef2: #6ecef2;
--#90a93d: #90a93d;
--#3e4e96: #3e4e96;
--#ec4c98: #ec4c98;
--#575353: #575353;
--#ef652c: #ef652c;
--#fdca10: #fdca10;
*/

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-teal), var(--primary-rust));
}

/* ===== HEADER & NAVIGATION ===== */
/*header {*/
/*    background-color: var(--pure-white);*/
/*    box-shadow: var(--shadow);*/
/*    position: sticky;*/
/*    top: 0;*/
/*    z-index: 1000;*/
/*}*/

/*/* Header Styles */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text h3 {
    margin: 0;
    color: #00008B;
    font-size: 1.2rem;
}

.logo-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #C0C6C9;
    letter-spacing: 1.5px;
}

/* Main Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-rust);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-teal), var(--primary-rust));
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 100;
    margin: 0;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}

/* Submenu Items */
.submenu li a {
    padding: 0.7rem 1.2rem;
    border-bottom: 1px solid #eee;
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: #f5f5f5;
    color: var(--primary-rust);
    padding-left: 1.5rem;
}

/* Submenu without underline effect */
.submenu li a::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-teal);
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary-rust);
}

/* Responsive Design for Mobile */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        width: 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-menu > li > a {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    

    /* Mobile dropdown styles */
    .dropdown .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1.5rem;
        background: #f9f9f9;
        width: 100%;
        border-radius: 0;
    }
    
    .dropdown.active .submenu {
        display: block;
    }
    
    .dropdown > a i {
        float: right;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    .submenu li a {
        padding: 0.6rem 1rem 0.6rem 2rem;
        font-size: 0.9rem;
    }
    
    .submenu li a:hover {
        padding-left: 2.2rem;
    }
}
/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: var(--pure-white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-teal));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-rust), var(--secondary-rust));
    color: var(--pure-white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-rust), var(--primary-rust));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: var(--pure-white);
    border-color: transparent;
}

/* ===== HERO SECTION ===== */
/*.hero {*/
/*    background: linear-gradient(135deg, rgba(44, 95, 45, 0.9), rgba(196, 69, 54, 0.85)), url('../images/hero-bg.jpg');*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-attachment: fixed;*/
/*    color: var(--pure-white);*/
/*    padding: 6rem 0;*/
/*    text-align: center;*/
/*}*/

/*.hero h1 {*/
/*    font-size: 3rem;*/
/*    color: var(--pure-white);*/
/*    margin-bottom: 1.5rem;*/
/*    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.hero p {*/
/*    font-size: 1.2rem;*/
/*    max-width: 800px;*/
/*    margin: 0 auto 2rem;*/
/*    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.hero-buttons {*/
/*    display: flex;*/
/*    gap: 1rem;*/
/*    justify-content: center;*/
/*}*/


/* ===== HERO CAROUSEL SECTION ===== */
.hero-carousel-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--off-white), var(--pure-white));
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.carousel-slider {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for the carousel */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    background: var(--pure-white);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: absolute; /* Keep absolute positioning */
    z-index: 1;
}

/* Slide Image */
.slide-image {
    flex: 1;
    max-width: 50%;
    height: 500px; /* Fixed height */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

/*.slide-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
    /*object-fit: contain; */
/*    display: block;*/
/*}*/

.active .slide-image {
    transform: translateX(0);
    opacity: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-image:hover img {
    transform: scale(1.05);
}

/* Slide Content */
.slide-content {
    flex: 1;
    max-width: 50%;
    padding: 2rem;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s;
}

.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slide-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    color: var(--pure-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--pure-white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-control:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    color: var(--pure-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(44, 95, 45, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active {
    width: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
}

.indicator:hover {
    background: var(--primary-rust);
    transform: scale(1.2);
}

/* Auto-play button */
.carousel-autoplay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.autoplay-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--pure-white);
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    transition: var(--transition);
}

.autoplay-btn:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    color: var(--pure-white);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .carousel-slider {
        height: 700px;
    }
    
    .carousel-slide {
        flex-direction: column;
        padding: 2rem;
    }
    
    .slide-image,
    .slide-content {
        max-width: 100%;
        width: 100%;
    }
    
    .slide-image {
        height: 300px;
        transform: translateY(-30px);
    }
    
    .active .slide-image {
        transform: translateY(0);
    }
    
    .slide-content {
        transform: translateY(30px);
        text-align: center;
        padding: 1rem;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-slider {
        height: 600px;
    }
    
    .slide-image {
        height: 250px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .carousel-control {
        display: none;
    }
}
/* ===== STATS SECTION ===== */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--off-white), var(--pure-white));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, var(--primary-teal), var(--primary-rust));
    border-image-slice: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ===== CARDS GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--pure-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-teal), var(--primary-rust));
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-teal);
}

.card-date {
    color: var(--primary-rust);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-excerpt {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 45, 0.9), rgba(196, 69, 54, 0.7));
    color: var(--pure-white);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


/*====================================*/
/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    color: var(--pure-white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Add decorative pattern overlay */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-title {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* CTA Buttons */
.btn-cta-primary {
    background: var(--pure-white);
    color: var(--primary-teal) !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: transparent;
    color: var(--pure-white) !important;
    border-color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: var(--pure-white);
    color: var(--primary-rust) !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary:hover {
    background: transparent;
    color: var(--pure-white) !important;
    border-color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Add pulse animation on hover */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-cta-primary:hover, .btn-cta-secondary:hover {
    animation: pulse 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-teal);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-rust);
    box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, var(--primary-teal), var(--primary-rust));
    border-image-slice: 1;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid transparent;
    border-image: linear-gradient(to right, var(--primary-teal), var(--primary-rust));
    border-image-slice: 1;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--primary-teal), #1a3b1a);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

footer h4 {
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-rust);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-rust);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.95), rgba(196, 69, 54, 0.9));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ===== CATEGORY TAGS ===== */
.category-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== LOADING SPINNER ===== */
.spinner {
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-rust);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ALERTS ===== */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(196, 69, 54, 0.1));
    color: var(--primary-teal);
    border-left: 4px solid var(--primary-teal);
}

.alert-error {
    background: rgba(196, 69, 54, 0.1);
    color: var(--primary-rust);
    border-left: 4px solid var(--primary-rust);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        padding: 2rem;
        box-shadow: var(--shadow);
        gap: 1rem;
        z-index: 1000;
    }
    
    .logo-text .main-logo {
        font-size: 1.4rem;
    }
    
    .logo-text .tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 50px;
    }
}

/* ===== PUBLICATIONS PAGE ===== */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.publication-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.publication-cover {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.publication-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.publication-card:hover .publication-cover img {
    transform: scale(1.05);
}

.publication-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44,95,45,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.publication-card:hover .publication-overlay {
    opacity: 1;
}

.publication-details {
    padding: 2rem;
}

.publication-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.publication-badge {
    background: var(--primary-teal);
    color: var(--pure-white);
    padding: 0.3rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
}

.publication-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.publication-date i {
    margin-right: 0.3rem;
    color: var(--primary-rust);
}

.publication-title {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.publication-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.publication-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Archive Section */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.archive-year {
    background: var(--pure-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.archive-year h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-rust);
}

.archive-list {
    list-style: none;
}

.archive-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.archive-link {
    text-decoration: none;
    color: var(--dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.archive-link:hover {
    color: var(--primary-rust);
    padding-left: 5px;
}

.archive-link i {
    color: var(--primary-rust);
    margin-right: 0.5rem;
}

.archive-link span:last-child {
    color: var(--primary-teal);
    font-size: 0.9rem;
}

/* Online Reader Section */
.reader-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-rust));
    border-radius: 20px;
    padding: 3rem;
    color: var(--pure-white);
}

.reader-content h2 {
    color: var(--pure-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reader-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.reader-features {
    list-style: none;
    margin-bottom: 2rem;
}

.reader-features li {
    margin-bottom: 0.5rem;
}

.reader-features i {
    margin-right: 0.5rem;
    color: var(--pure-white);
}

.reader-preview img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 992px) {
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reader-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reader-features {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .publication-cover {
        height: 350px;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .reader-section {
        padding: 2rem;
    }
    
    .reader-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .publication-actions {
        flex-direction: column;
    }
    
    .publication-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/*========================*/
/* ===== ACTIVITIES PAGE ===== */
.initiative-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.initiative-card:hover img {
    transform: scale(1.05);
}

.initiative-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-rust);
    margin-bottom: 0.25rem;
}

.category-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--primary-teal);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .initiative-card {
        grid-template-columns: 1fr !important;
    }
    
    .initiative-card > div {
        padding: 2rem !important;
    }
    
    .initiative-card > div:first-child {
        order: 1;
    }
    
    .initiative-card > div:last-child {
        order: 2;
    }
    
    .initiative-card .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .initiative-card .stat-number {
        font-size: 1.2rem;
    }
}



/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--primary-rust);
    transform: rotate(90deg);
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

.modal-text {
    padding: 2rem;
    text-align: center;
    background: white;
}

.modal-text h3 {
    color: var(--primary-teal);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.modal-text .btn {
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
    
    .modal-text h3 {
        font-size: 1.4rem;
    }
    
    .modal-text p {
        font-size: 0.9rem;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
}