/* ========== GOOGLE FONTS IMPORT ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Merriweather:wght@300;400;700&family=Cinzel:wght@600;700;800&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D4A574;
    --accent-color: #1D5F4F;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Merriweather', serif;
    --font-display: 'Playfair Display', serif;
}

/* ========== GENERAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    margin-top: 130px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

section {
    padding: 80px 0;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ========== TOP MENU BAR ========== */
.top-menu {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
}

.top-menu-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.top-menu-left {
    display: flex;
    align-items: center;
}

.top-menu-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-menu-link:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.top-menu-center {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 20px;
}

.contact-btn {
    background: #FFD700;
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.contact-btn:hover {
    background: #FFC700;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.donation-btn {
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.donation-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.top-menu-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: scale(1.2) rotate(5deg);
}

/* ========== NAVIGATION BAR ========== */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 56px;
    z-index: 1000;
    transition: var(--transition);
    width: 100%;
}

.nav-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    gap: 20px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    min-width: fit-content;
}

.logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    margin-top: 12px;
}

.brand-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    font-family: var(--font-display);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 8px 12px;
    font-size: 0.95rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

.nav-link i {
    font-size: 1rem;
    transition: var(--transition);
    color: var(--primary-color);
}

.nav-link:hover i {
    color: var(--accent-color);
    transform: scale(1.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll;
    background-repeat: no-repeat !important;
    filter: brightness(1.2) contrast(1.1) saturate(1.15);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0.8;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 40px;
    animation: slideInUp 0.8s ease;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: slideInDown 0.8s ease;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 1;
    animation: slideInUp 0.8s ease;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 1;
    animation: slideInUp 1s ease;
    line-height: 1.8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== SLIDER CONTROLS ========== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* ========== SLIDER INDICATORS ========== */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
    transform: scale(1);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== VISION SECTION ========== */
.vision-section {
    background: var(--bg-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vision-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vision-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== EDUCATION SECTION ========== */
.education-section {
    background: white;
}

.education-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.education-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    transition: var(--transition);
}

.education-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.education-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-item i {
    color: var(--accent-color);
}

.education-item p {
    color: #555;
    line-height: 1.8;
}

/* ========== PROJECTS SECTION ========== */
.projects-section {
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}

.project-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== FINANCE SECTION ========== */
.finance-section {
    background: white;
}

.finance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.finance-item {
    background: linear-gradient(135deg, #F0E68C 0%, #FFE4B5 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.finance-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.finance-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.finance-item p {
    color: #555;
    line-height: 1.8;
}

/* ========== HEALTH SECTION ========== */
.health-section {
    background: var(--bg-light);
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.health-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.health-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.health-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.health-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.health-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== CULTURAL SECTION ========== */
.cultural-section {
    background: white;
}

.cultural-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cultural-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(29, 95, 79, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-bottom: 3px solid var(--accent-color);
    border-radius: 5px;
    transition: var(--transition);
}

.cultural-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.cultural-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.cultural-item p {
    color: #555;
    line-height: 1.8;
}

/* ========== EVENTS SECTION ========== */
.events-section {
    background: var(--bg-light);
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 0;
}

.event-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.event-date {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .date {
    font-size: 2rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 0.9rem;
}

.event-details {
    padding: 25px;
    flex: 1;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-details p {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.event-details i {
    color: var(--accent-color);
    margin-right: 8px;
    width: 18px;
}

/* ========== NEWS SECTION ========== */
.news-section {
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 30px;
    border-top: 4px solid var(--secondary-color);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-top-color: var(--primary-color);
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.read-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* ========== DONATION SECTION ========== */
.donation-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.donation-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.donation-plan {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.donation-plan:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.donation-plan.featured {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.donation-plan h3 {
    margin-bottom: 15px;
    margin-top: 10px;
}

.donation-plan .amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.donation-plan p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.donation-plan .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.donation-plan .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.donation-methods {
    text-align: center;
}

.donation-methods h3 {
    color: white;
    margin-bottom: 30px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.method {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.method:hover {
    background: rgba(255, 255, 255, 0.2);
}

.method i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.method h4 {
    color: white;
    margin-bottom: 10px;
}

.method p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== COMMUNITY SECTION ========== */
.community-section {
    background: var(--bg-light);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.community-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.community-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.community-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.community-stat .label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.community-card p {
    color: #555;
    line-height: 1.8;
}

.community-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.community-form h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.community-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.community-form input,
.community-form textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.community-form input:focus,
.community-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
    color: var(--secondary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    color: #999;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 6px;
        margin-left: 20px;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .top-menu-container {
        padding: 0 15px;
    }

    .top-menu-link {
        font-size: 12px;
        gap: 6px;
    }

    .top-menu-center {
        margin: 0 12px;
        gap: 8px;
    }

    .contact-btn {
        padding: 5px 12px;
        font-size: 12px;
    }

    .donation-btn {
        padding: 5px 12px;
        font-size: 12px;
    }

    .top-menu-right {
        gap: 12px;
    }

    .social-icon {
        font-size: 14px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 126px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: var(--shadow);
        padding: 0;
        margin-left: 0;
        justify-content: flex-start;
        width: 100%;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: calc(100vh - 126px);
        padding: 20px 0 100px 0; /* Add bottom padding for scrolling */
        overflow-y: auto;
        background: white;
        display: flex;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        flex-shrink: 0; /* Prevent shrinking */
    }

    .nav-link {
        display: flex;
        padding: 15px 20px;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        width: 100%; /* Ensure full width */
    }

    .nav-link i {
        font-size: 1.1rem;
    }
    
    /* Ensure dropdown menu is visible when active */
    .nav-item.active .dropdown-menu {
        display: block !important;
        animation: fadeIn 0.3s ease;
        height: auto !important;
        overflow: visible !important;
    }

    .slider-container {
        height: 500px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 30px;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-list,
    .news-grid,
    .donation-grid {
        grid-template-columns: 1fr;
    }

    .donation-plan.featured {
        transform: scale(1);
    }

    section {
        padding: 60px 0;
    }

    h2 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-content {
        padding: 20px;
    }

    .slider-container {
        height: 400px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .logo {
        height: 40px;
        width: 40px;
    }

    .brand-name {
        font-size: 18px;
    }

    .nav-container {
        height: 60px;
    }

    section {
        padding: 40px 0;
    }

    .community-form {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ========== VGAI FORM SECTION ========== */
.vgai-form-section {
    background: var(--bg-light);
}

.vgai-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vgai-intro {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
}

.vgai-intro h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.vgai-intro p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.vgai-intro p strong {
    color: var(--primary-color);
}

.vgai-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vgai-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.vgai-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vgai-card h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.vgai-card.warning {
    border-left: 5px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.vgai-card.warning h3 {
    color: #c1243e;
}

.vgai-card.warning h3 i {
    color: #ff6b6b;
}

.vgai-list {
    list-style-position: inside;
    margin-left: 0;
    padding-left: 0;
}

.vgai-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

.vgai-list li strong {
    color: var(--primary-color);
}

.restriction-list li {
    padding-left: 8px;
}

.requirement-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.requirement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.requirement-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.requirement-item h4 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.requirement-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.requirement-item ul {
    margin-top: 12px;
    margin-left: 20px;
    color: #555;
}

.requirement-item ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========== VGAI FORM STYLES ========== */
.vgai-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ========== REGISTRATION FORM SECTION ========== */
.registration-form-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.form-container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.registration-form fieldset {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    background: rgba(139, 69, 19, 0.02);
}

.registration-form legend {
    padding: 0 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.registration-form legend i {
    margin-right: 10px;
    color: var(--accent-color);
}

.info-box {
    background: linear-gradient(135deg, rgba(29, 95, 79, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-box i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 0;
}

.info-box p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ========== FORM CONTROL SELECT STYLING ========== */
.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B4513' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1.5em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-control option {
    padding: 10px;
    background: white;
    color: var(--text-dark);
}

.form-control option:hover {
    background: var(--primary-color);
    color: white;
}

.vgai-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.option-card {
    background: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 5px solid var(--primary-color);
}

.option-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.option-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
}

.option-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.option-features li {
    color: #555;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.btn-large {
    padding: 14px 30px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    width: 100%;
    margin-top: 10px;
}

.vgai-form fieldset {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    background: rgba(139, 69, 19, 0.02);
}

.vgai-form legend {
    padding: 0 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label strong {
    color: #c1243e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="url"]:focus,
.form-group input[type="number"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(29, 95, 79, 0.05);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-label {
    margin: 0;
    cursor: pointer;
    line-height: 1.6;
    color: #555;
}

/* Radio Group Styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.radio-label {
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
    color: #555;
    font-size: 1rem;
}

/* Principles Checkbox Grid */
.checkbox-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.principle-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.principle-item label {
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
    color: #555;
    font-size: 0.95rem;
}

/* CAPTCHA Styling */
.error-message {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message i {
    margin-right: 6px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.form-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.form-card {
    margin-top: 40px;
}

.form-card h3 {
    margin-bottom: 30px;
    text-align: left;
}

/* ========== RESPONSIVE VGAI FORM ========== */
@media (max-width: 768px) {
    .vgai-card {
        padding: 20px;
    }

    .vgai-options {
        grid-template-columns: 1fr;
    }

    .option-card {
        padding: 25px;
    }

    .option-header i {
        font-size: 2rem;
    }

    .option-header h3 {
        font-size: 1.2rem;
    }

    .vgai-form fieldset {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-principles {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        min-width: 100%;
    }

    .requirement-item h4 {
        font-size: 1rem;
    }

    .btn-large {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .vgai-intro {
        padding: 20px;
    }

    .vgai-card {
        padding: 15px;
    }

    .option-card {
        padding: 20px;
    }

    .vgai-form fieldset {
        padding: 15px;
    }

    .vgai-card h3 {
        font-size: 1.2rem;
    }

    .option-header i {
        font-size: 1.8rem;
    }

    .option-header h3 {
        font-size: 1.1rem;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .checkbox-group input[type="checkbox"] {
        margin-top: 0;
    }

    .radio-group {
        gap: 10px;
    }

    .radio-item {
        gap: 8px;
    }

    .btn-large {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.nav-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu .nav-link {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    justify-content: flex-start;
}

.dropdown-menu .nav-link:hover {
    background-color: rgba(139, 69, 19, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu .nav-link::after {
    display: none;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        background-color: #f9f9f9;
        display: none;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .nav-item:hover .dropdown-menu {
        display: none; /* Disable hover on mobile, use click/toggle */
    }
}
