/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #0F6D4D;
    --primary-dark: #0a5139;
    --secondary: #C8A44D;
    --secondary-light: #d4b76a;
    --background: #FFFFFF;
    --accent: #F7F7F7;
    --text: #2D2D2D;
    --text-light: #555555;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: #fff;
    box-shadow: var(--shadow);
    padding: 10px 0;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 6px;
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--text);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero.JPG') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 109, 77, 0.8), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

/* Hero View Button */
.hero-view-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-view-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    color: #fff;
}

/* ===== About Section ===== */
.page-header {
    background: var(--primary);
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.about {
    padding: 100px 0;
    background: var(--background);
}

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

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.mission, .vision {
    padding: 25px;
    background: var(--accent);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.mission h3, .vision h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.mission p, .vision p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Impact Section ===== */
.impact {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
}

.impact .section-title {
    color: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.impact-card {
    text-align: center;
    padding: 30px;
}

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.impact-plus {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.impact-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* ===== Projects Section ===== */
.projects {
    padding: 100px 0;
    background: var(--accent);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.project-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-image {
    height: 250px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.project-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 100px 0;
    background: var(--background);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--primary);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

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

/* ===== Partners Section ===== */
.partners {
    padding: 100px 0;
    background: var(--accent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.partner-placeholder {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--accent);
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
    border-left: 4px solid var(--secondary);
}

.testimonial-quote {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 0.95rem;
}

/* ===== Get Involved Section ===== */
.get-involved {
    padding: 100px 0;
    background: var(--accent);
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.involved-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.involved-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(15, 109, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.involved-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.involved-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.involved-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.involved-card .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===== News Section ===== */
.news {
    padding: 100px 0;
    background: var(--background);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.news-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.news-badge.upcoming {
    background: rgba(15, 109, 77, 0.1);
    color: var(--primary);
}

.news-badge.recent {
    background: rgba(200, 164, 77, 0.15);
    color: #8b6d1f;
}

.news-badge.announcement {
    background: rgba(45, 45, 45, 0.08);
    color: var(--text);
}

.news-card h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.news-date i {
    margin-right: 5px;
    color: var(--primary);
}

.news-card > p:last-child {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.25rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(15, 109, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.contact-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--accent);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background: var(--text);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 3rem;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--secondary);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .involved-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu .nav-link {
        color: var(--text);
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

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

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Donate Section ===== */
.donate-section {
    padding: 80px 0;
    background: var(--background);
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.donate-info h2 {
    margin-bottom: 1.5rem;
}

.donate-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.donate-list {
    margin-bottom: 2rem;
}

.donate-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
}

.donate-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.banking-card {
    background: var(--accent);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.banking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.banking-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.banking-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
}

.banking-details {
    margin-bottom: 1.5rem;
}

.banking-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.banking-row:last-child {
    border-bottom: none;
}

.banking-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.banking-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.banking-note {
    background: rgba(15, 109, 77, 0.06);
    border-radius: 8px;
    padding: 15px;
    margin-top: 1rem;
}

.banking-note p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.banking-note i {
    color: var(--primary);
    margin-right: 5px;
}

.banking-note a {
    color: var(--primary);
    font-weight: 500;
}

.banking-note a:hover {
    text-decoration: underline;
}

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

    .banking-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* ===== Footer Two Column Layout ===== */
.footer-two-col {
    grid-template-columns: 1.5fr 1fr;
}

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

/* ===== About Banner Layout ===== */
.about-banner {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.about-banner img {
    width: 100%;
    height: auto;
    display: block;
}

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

.about-content-full h2 {
    margin-bottom: 1.5rem;
}

.about-content-full > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== Events / Ticket Purchase Section ===== */
.events-section {
    padding: 80px 0;
    background: var(--background);
}

.event-ticket-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.event-ticket-header {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    text-align: center;
}

.event-ticket-header h2 {
    font-size: 2rem;
    margin-top: 0.75rem;
}

.event-tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.event-ticket-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.event-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.event-detail-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.event-detail-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.event-detail-item p {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.event-ticket-description {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.event-ticket-description h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.event-ticket-description p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.event-ticket-description ul {
    margin-top: 0.5rem;
}

.event-ticket-description li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text);
    font-size: 0.9rem;
}

.event-ticket-description li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.event-ticket-purchase {
    padding: 30px 40px 40px;
}

.event-ticket-purchase h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 1rem 0 1.5rem;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.ticket-total span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.payment-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.payment-note i {
    color: var(--primary);
    margin-right: 4px;
}

@media (max-width: 768px) {
    .event-ticket-details {
        grid-template-columns: 1fr;
        padding: 20px 25px;
    }

    .event-ticket-header,
    .event-ticket-description,
    .event-ticket-purchase {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* ===== Event Pricing & Contact ===== */
.event-motto {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.event-pricing {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.event-pricing h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--accent);
    border-radius: 8px;
    transition: var(--transition);
}

.pricing-item.featured {
    background: rgba(15, 109, 77, 0.06);
    border: 2px solid var(--primary);
}

.pricing-item:hover {
    transform: translateX(5px);
}

.pricing-icon {
    width: 40px;
    height: 40px;
    background: rgba(15, 109, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.pricing-info h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px;
}

.pricing-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.pricing-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.event-contact {
    padding: 25px 40px 30px;
    background: var(--accent);
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
}

.event-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.event-contact i {
    color: var(--primary);
    margin-right: 5px;
}

.event-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0.75rem;
}

.event-social span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-social i {
    margin-right: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

    .event-pricing {
        padding-left: 25px;
        padding-right: 25px;
    }

    .event-contact {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* ===== Event Banner ===== */
.event-banner {
    width: 100%;
    overflow: hidden;
}

.event-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Partner Cards with Images ===== */
.partner-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-name {
    padding: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}
