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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Container */
.container {
    font-family: 'Inter', sans-serif;
    background-color: #fafffe;
    color: #1a1a2e;
    overflow-x: hidden;
    position: relative;
}

/* Gradient Orbs */
.gradient-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 91, 21, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: left 0.3s ease-out, top 0.3s ease-out;
}

.gradient-orb-2 {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 140, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    right: -200px;
    bottom: -200px;
    pointer-events: none;
    z-index: 0;
    animation: gradientMove 20s ease-in-out infinite;
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(46, 91, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 91, 21, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(46, 91, 21, 0.15);
    animation: floatShape 8s ease-in-out infinite;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 16px;
}

.logo-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo .logo-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.logo-img {
    object-fit: contain;
}

.logo-text {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a2e;
}

.logo-text-mobile {
    display: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a2e;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
    color: #1a1a2e;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2e5b15;
}

.nav-link.active {
    color: #2e5b15;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(46, 91, 21, 0.1);
    border: 1px solid rgba(46, 91, 21, 0.2);
    padding: 10px 16px;
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    background-color: rgba(46, 91, 21, 0.15);
}

.lang-btn-text {
    letter-spacing: 0.5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 180px;
    border: 1px solid rgba(46, 91, 21, 0.1);
    display: none;
}

.lang-dropdown.open {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.lang-option:hover {
    background-color: rgba(46, 91, 21, 0.1);
}

.lang-option.active {
    background-color: rgba(46, 91, 21, 0.15);
}

.lang-option .check-icon {
    display: none;
    margin-left: auto;
}

.lang-option.active .check-icon {
    display: block;
}

.lang-form {
    margin: 0;
    padding: 0;
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
}

/* Mobile language selector */
@media (max-width: 768px) {
    .lang-selector {
        width: 100%;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(46, 91, 21, 0.1);
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown {
        position: relative;
        top: 0;
        margin-top: 12px;
        box-shadow: none;
        border: 1px solid rgba(46, 91, 21, 0.2);
    }
}

.join-btn {
    background: linear-gradient(135deg, #2e5b15 0%, #4a8c2a 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(46, 91, 21, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 91, 21, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle .hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1a1a2e;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

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

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 32px 100px;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #2e5b15;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(46, 91, 21, 0.15);
    border: 1px solid rgba(46, 91, 21, 0.2);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-highlight {
    background: linear-gradient(135deg, #2e5b15 0%, #4a8c2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 44px;
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #2e5b15 0%, #4a8c2a 100%);
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(46, 91, 21, 0.3);
    text-decoration: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(46, 91, 21, 0.4);
}

.secondary-btn {
    background-color: #fff;
    color: #1a1a2e;
    border: 2px solid rgba(46, 91, 21, 0.3);
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.secondary-btn:hover {
    border-color: #2e5b15;
    background-color: rgba(46, 91, 21, 0.05);
}

.play-icon-wrap {
    width: 32px;
    height: 32px;
    background-color: rgba(46, 91, 21, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background-color: #fff;
    padding: 28px 36px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(46, 91, 21, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(46, 91, 21, 0.15);
}

.stat-icon-wrap {
    width: 56px;
    height: 56px;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 91, 21, 0.15);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: rgba(26, 26, 46, 0.6);
    text-align: center;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background-color: rgba(46, 91, 21, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 6px;
    height: 20px;
    background-color: #2e5b15;
    border-radius: 3px;
    position: absolute;
    left: -2px;
    animation: scroll 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    color: rgba(26, 26, 46, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Section Content */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(46, 91, 21, 0.1);
    color: #2e5b15;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 91, 21, 0.15);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

/* About Section */
.about-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
}

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

.about-paragraph {
    font-size: 17px;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-values {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 18px;
    transition: all 0.3s;
    cursor: default;
    background-color: rgba(46, 91, 21, 0.03);
    border: 1px solid rgba(46, 91, 21, 0.08);
}

.value-item:hover {
    background-color: rgba(46, 91, 21, 0.08);
    border-color: rgba(46, 91, 21, 0.15);
}

.value-icon-wrap {
    width: 52px;
    height: 52px;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 91, 21, 0.15);
    flex-shrink: 0;
}

.value-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.value-desc {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.6);
}

/* About Visual */
.about-visual {
    position: relative;
}

.image-card {
    background-color: #fff;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(46, 91, 21, 0.1);
    border: 1px solid rgba(46, 91, 21, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 91, 21, 0.05) 0%, rgba(74, 140, 42, 0.1) 100%);
    position: relative;
}

.image-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(46, 91, 21, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
}

.image-icon-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.action-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Rasmni buzmasdan butun maydonni to'ldiradi */
    border-radius: 8px; /* Agar karta burchaklari yumaloq bo'lsa */
}

.image-label {
    font-size: 15px;
    color: #2e5b15;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: #fff;
    padding: 18px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(46, 91, 21, 0.1);
}

.floating-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    max-width: 150px;
}

.decor-circle-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(46, 91, 21, 0.2);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.decor-circle-2 {
    position: absolute;
    bottom: 50px;
    right: -50px;
    width: 60px;
    height: 60px;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 50%;
}

/* Programs Section */
.programs-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
}

.programs-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(26, 26, 46, 0.6);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden; /* Bu rasm burchaklarini karta burchaklariga moslab qirqadi */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(46, 91, 21, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 0; /* Kartadagi paddingni 0 qilamiz */
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 91, 21, 0.15);
    border-color: #2e5b15;
}

.program-icon-wrap {
    width: 100%;
    height: 220px; /* Agar rasm ko'proq ko'rinishini xohlasangiz buni 250px yoki 280px qiling */
    overflow: hidden;
    background-color: #f7fee7;
    border: none;
    margin: 0;
    border-radius: 0;
}

.program-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bu rasmni butun maydon bo'ylab yoyadi */
    transition: transform 0.5s ease;
}

.program-card:hover .program-icon-wrap {
    transform: scale(1.05);
}

.program-card:hover .program-icon-wrap svg {
    stroke: #fff;
}
.program-title, .program-desc, .program-link {
    margin-left: 30px;
    margin-right: 30px;
}

.program-title {
    margin-top: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
}

.program-desc {
    margin-top: 12px;
    font-size: 15px;
    color: rgba(26, 26, 46, 0.6);
    line-height: 1.6;
}

.program-link {
    display: inline-flex;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #2e5b15;
    text-decoration: none;
    font-weight: 600;
}

.program-card:hover .program-link {
    gap: 12px;
}

.program-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 91, 21, 0.1) 0%, transparent 50%);
    transition: opacity 0.4s;
    pointer-events: none;
    opacity: 0;
}

.program-card:hover .program-glow {
    opacity: 1;
}

/* Section Footer with View All Button */
.section-footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: transparent;
    border: 2px solid #2e5b15;
    border-radius: 50px;
    color: #2e5b15;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: #2e5b15;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 91, 21, 0.3);
}

.view-all-btn .icon {
    transition: transform 0.3s ease;
}

.view-all-btn:hover .icon {
    transform: translateX(5px);
}

/* Impact Section */
.impact-section {
    padding: 80px 32px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(46, 91, 21, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.impact-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-tag-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(46, 91, 21, 0.2);
    color: #4a8c2a;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 91, 21, 0.3);
}

.impact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 56px;
    letter-spacing: -1px;
}

.impact-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
    cursor: default;
}

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

.impact-item .icon {
    margin-bottom: 12px;
}

.impact-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #4a8c2a;
    letter-spacing: -2px;
}

.impact-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.impact-btn {
    background-color: #fff;
    color: #1a1a2e;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.impact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Impact Section */
.impact-section {
    padding: 60px 32px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 100%);
}

.impact-header {
    text-align: center;
    margin-bottom: 40px;
}

.impact-section .section-tag {
    background: rgba(46, 91, 21, 0.2);
    color: #4a8c2a;
}

.impact-section .section-title {
    color: #fff;
    font-size: 1.8rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-card {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(46, 91, 21, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 91, 21, 0.4);
    transform: translateY(-3px);
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2e5b15;
    line-height: 1;
    margin-bottom: 8px;
}

.impact-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.impact-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

@media (max-width: 968px) {
    .impact-section {
        padding: 50px 24px;
    }

    .impact-header {
        margin-bottom: 32px;
    }

    .impact-section .section-title {
        font-size: 1.5rem;
    }

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

    .impact-card {
        padding: 24px 14px;
    }

    .impact-number {
        font-size: 2rem;
    }

    .impact-label {
        font-size: 0.85rem;
    }

    .impact-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .impact-section {
        padding: 40px 16px;
    }

    .impact-header {
        margin-bottom: 24px;
    }

    .impact-section .section-title {
        font-size: 1.3rem;
    }

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

    .impact-card {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .impact-number {
        font-size: 1.8rem;
    }

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

    .impact-desc {
        font-size: 0.7rem;
    }
}

/* News Section */
.news-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
    background-color: rgba(46, 91, 21, 0.02);
}

.news-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.news-card {
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(46, 91, 21, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 91, 21, 0.15);
    border-color: #2e5b15;
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 91, 21, 0.05) 0%, rgba(74, 140, 42, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    overflow: hidden;
}

.news-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card:hover .news-image-placeholder {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #2e5b15;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 28px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(26, 26, 46, 0.5);
    font-size: 13px;
}

.news-dot {
    color: rgba(26, 26, 46, 0.3);
}

.news-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e5b15;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}

.news-card:hover .news-link {
    gap: 12px;
}

/* Events Section */
.events-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.all-events-btn {
    background-color: transparent;
    color: #2e5b15;
    border: 2px solid #2e5b15;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.all-events-btn:hover {
    background-color: #2e5b15;
    color: #fff;
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background-color: rgba(46, 91, 21, 0.03);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 91, 21, 0.1);
    flex-wrap: wrap;
}

.event-card:hover {
    background-color: rgba(46, 91, 21, 0.08);
    transform: translateX(10px);
    border-color: #2e5b15;
    box-shadow: 0 10px 30px rgba(46, 91, 21, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #2e5b15 0%, #4a8c2a 100%);
    color: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    min-width: 90px;
}

.event-day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.event-info {
    flex: 1;
    min-width: 200px;
}

.event-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.event-location {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-btn {
    background-color: rgba(46, 91, 21, 0.1);
    color: #2e5b15;
    border: 1px solid rgba(46, 91, 21, 0.2);
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-btn:hover {
    background-color: #2e5b15;
    color: #fff;
    border-color: #2e5b15;
}

/* Team Section */
.team-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background-color: #fff;
    padding: 36px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(46, 91, 21, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 91, 21, 0.15);
    border-color: #2e5b15;
}

.team-avatar-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.team-avatar {
    width: 100%;
    height: 100%;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(46, 91, 21, 0.15);
    overflow: hidden;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(46, 91, 21, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s infinite;
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.6);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(46, 91, 21, 0.15);
}

.social-icon:hover {
    background-color: #2e5b15;
}

.social-icon:hover svg {
    stroke: #fff;
}

/* CTA Section */
.cta-section {
    padding: 100px 32px;
    background: linear-gradient(135deg, #2e5b15 0%, #4a8c2a 50%, #2e5b15 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-heart {
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background-color: #fff;
    color: #2e5b15;
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-item.page-link {
    background-color: rgba(46, 91, 21, 0.08);
    color: #1a1a2e;
    border-color: rgba(46, 91, 21, 0.15);
}

.pagination-item.page-link:hover {
    background-color: rgba(46, 91, 21, 0.15);
    border-color: #2e5b15;
    transform: translateY(-2px);
}

.pagination-item.active {
    background-color: #2e5b15;
    color: #fff;
    border-color: #2e5b15;
    box-shadow: 0 4px 15px rgba(46, 91, 21, 0.3);
}

.pagination-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-item.nav-btn {
    background-color: #fff;
    color: #2e5b15;
    border-color: rgba(46, 91, 21, 0.3);
}

.pagination-item.nav-btn:hover:not(.disabled) {
    background-color: #2e5b15;
    color: #fff;
    border-color: #2e5b15;
    transform: translateY(-2px);
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(26, 26, 46, 0.5);
    font-weight: 600;
}

.pagination-info {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: rgba(26, 26, 46, 0.6);
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 80px 32px 40px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(46, 91, 21, 0.1);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo .logo-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.footer-desc {
    font-size: 15px;
    color: rgba(26, 26, 46, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(46, 91, 21, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(46, 91, 21, 0.15);
}

.footer-social-icon:hover {
    background-color: #2e5b15;
}

.footer-social-icon:hover svg {
    stroke: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(26, 26, 46, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-link:hover {
    color: #2e5b15;
}

.footer-contact {
    color: rgba(26, 26, 46, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-contact .icon {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(46, 91, 21, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: rgba(26, 26, 46, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.legal-link {
    color: rgba(26, 26, 46, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #2e5b15;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(100px, 0) scale(1);
    }
    75% {
        transform: translate(50px, 50px) scale(0.9);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

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

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

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

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        order: -1;
    }

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 14px;
    }

    .nav-link {
        font-size: 14px;
    }

    .lang-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Desktop/Mobile visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

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

    .desktop-only {
        display: none;
    }

    .nav-content {
        padding: 0 16px;
        justify-content: space-between;
    }

    .nav-content .logo {
        order: 1;
    }

    .logo-icons {
        gap: 8px;
    }

    .nav-content .logo .logo-img {
        width: 45px;
        height: 45px;
    }

    .logo-text-mobile {
        display: block;
        margin-left: 8px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        align-items: center;
    }

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

    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        text-align: center;
        border-bottom: 1px solid rgba(46, 91, 21, 0.1);
    }

    .nav-links .join-btn.mobile-only {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

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

    .stat-card {
        width: 100%;
        max-width: 300px;
    }

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

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

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

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

    .impact-grid {
        gap: 40px;
    }

    .impact-number {
        font-size: 42px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .impact-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .floating-card {
        left: 10px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 20px 80px;
    }

    .hero-tag {
        padding: 10px 18px;
        font-size: 12px;
    }

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-btn {
        width: 100%;
        justify-content: center;
    }

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

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Contact Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(46, 91, 21, 0.1);
    border: 1px solid rgba(46, 91, 21, 0.15);
}

.contact-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(46, 91, 21, 0.05);
    border: 1px solid rgba(26, 26, 46, 0.12);
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
    margin-bottom: 16px;
}

.contact-input::placeholder {
    color: rgba(26, 26, 46, 0.4);
    opacity: 1;
}

.contact-input::-webkit-input-placeholder {
    color: rgba(26, 26, 46, 0.4);
}

.contact-input::-moz-placeholder {
    color: rgba(26, 26, 46, 0.4);
    opacity: 1;
}

.contact-input:-ms-input-placeholder {
    color: rgba(26, 26, 46, 0.4);
}

.contact-input:focus {
    background: #fff;
    border-color: #2e5b15;
    box-shadow: 0 0 0 3px rgba(46, 91, 21, 0.15);
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

/* Utility Classes for Detail Pages */
.detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.detail-container-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e5b15;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
}

.detail-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.detail-title-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.detail-meta-text {
    color: #4a4a4a;
    font-size: 15px;
}

.detail-image-container {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(46, 91, 21, 0.2);
    position: relative;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
}

.category-badge-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.detail-excerpt {
    padding: 30px;
    background: rgba(46, 91, 21, 0.05);
    border-left: 4px solid #2e5b15;
    border-radius: 8px;
    margin-bottom: 40px;
}

.detail-excerpt-text {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.detail-content {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.detail-content-large {
    color: #4a4a4a;
    font-size: 17px;
    line-height: 1.8;
}

.detail-section {
    margin-bottom: 50px;
}

.detail-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.share-section {
    padding: 30px;
    background: rgba(46, 91, 21, 0.05);
    border-radius: 12px;
    text-align: center;
}

.share-title {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-button {
    background: rgba(46, 91, 21, 0.1);
    border: 1px solid rgba(46, 91, 21, 0.2);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.share-button:hover {
    background: rgba(46, 91, 21, 0.2);
    transform: translateY(-2px);
}

.cta-box {
    padding: 40px;
    background: rgba(46, 91, 21, 0.05);
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.cta-box-title {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-box-text {
    color: #4a4a4a;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Messages */
.message-success {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(46, 91, 21, 0.2);
    border: 1px solid rgba(46, 91, 21, 0.4);
    color: #2e5b15;
}

.message-error {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Gallery Styles */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.gallery-description {
    max-width: 700px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.news-badge-outline {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(46, 91, 21, 0.3);
    color: #2e5b15;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.news-badge-outline:hover {
    background: rgba(46, 91, 21, 0.1);
    border-color: rgba(46, 91, 21, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(46, 91, 21, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46, 91, 21, 0.2);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: rgba(46, 91, 21, 0.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-content {
    padding: 24px;
}

.gallery-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.gallery-card-description {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.gallery-card-date {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2e5b15;
    font-size: 14px;
}

.gallery-empty {
    text-align: center;
    padding: 80px 20px;
}

.gallery-empty-icon {
    margin-bottom: 24px;
}

.gallery-empty-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.gallery-empty-text {
    color: #4a4a4a;
    font-size: 16px;
}

/* Empty State Utilities */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.empty-state-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

/* Animation Delays */
.delay-0 {
    animation-delay: 0s;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* Event Detail Page Styles */
.event-detail-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.back-nav {
    margin-bottom: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.back-link:hover {
    color: #2e5b15;
}

.event-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.event-info-card,
.registration-card {
    background: #ffffff;
    border: 1px solid rgba(46, 91, 21, 0.15);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(46, 91, 21, 0.08);
}

.event-header-detail {
    margin-bottom: 30px;
}

.event-title-detail {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 10px;
    line-height: 1.2;
}

.event-meta-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(46, 91, 21, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(46, 91, 21, 0.1);
    transition: all 0.3s ease;
}

.event-meta-item:hover {
    background: rgba(46, 91, 21, 0.08);
    border-color: rgba(46, 91, 21, 0.2);
}

.icon-large {
    color: #2e5b15;
    flex-shrink: 0;
}

.meta-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}

.meta-value {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 600;
}

.event-description {
    padding-top: 30px;
    border-top: 1px solid rgba(46, 91, 21, 0.15);
}

.description-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.description-text {
    color: #475569;
    line-height: 1.8;
}

.registration-header {
    margin-bottom: 30px;
}

.registration-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.registration-subtitle {
    color: #64748b;
    font-size: 14px;
}

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: rgba(46, 91, 21, 0.1);
    border: 1px solid rgba(46, 91, 21, 0.3);
    color: #1f3d0f;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.required {
    color: #dc2626;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2e5b15;
    background: rgba(46, 91, 21, 0.02);
    box-shadow: 0 0 0 4px rgba(46, 91, 21, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2e5b15, #1f3d0f);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(46, 91, 21, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 91, 21, 0.35);
    background: linear-gradient(135deg, #1f3d0f, #2e5b15);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .event-detail-container {
        grid-template-columns: 1fr;
    }

    .event-info-card,
    .registration-card {
        padding: 28px;
    }

    .event-title-detail {
        font-size: 26px;
    }
}

/* Icon Utilities */
.icon-mb {
    margin-bottom: 4px;
}

/* Static Pages Styles (FAQ, Privacy, Terms, etc.) */
.static-page-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 16px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.page-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-top: 12px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(46, 91, 21, 0.15);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2e5b15;
    box-shadow: 0 8px 24px rgba(46, 91, 21, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-answer {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 40px;
    background: #ffffff;
    border: 1px solid rgba(46, 91, 21, 0.15);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: #2e5b15;
    box-shadow: 0 8px 24px rgba(46, 91, 21, 0.1);
    transform: translateY(-2px);
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.content-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.page-cta {
    text-align: center;
    padding: 60px 40px;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(46, 91, 21, 0.05) 0%, rgba(46, 91, 21, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(46, 91, 21, 0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta .cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.page-cta .cta-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .static-page-section {
        padding: 60px 20px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .section-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .faq-item,
    .content-block {
        padding: 20px;
        margin-bottom: 16px;
    }

    .faq-question,
    .content-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .faq-answer,
    .content-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-container {
        margin-bottom: 40px;
    }

    .page-cta {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .page-cta .cta-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .page-cta .cta-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .error-code {
        font-size: 120px;
    }

    .error-title {
        font-size: 28px;
    }

    .error-message {
        font-size: 15px;
    }
}

/* Link Colors */
.link-green {
    color: #2e5b15;
    text-decoration: none;
}

.link-green:hover {
    text-decoration: underline;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.partners-carousel {
    display: flex;
    gap: 60px;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x;
}

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

.partners-carousel:active {
    cursor: grabbing;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-link:hover {
    transform: scale(1.05);
}

.partner-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-header {
        margin-bottom: 40px;
    }

    .partners-carousel {
        gap: 40px;
    }

    .partner-item {
        height: 50px;
    }

    .partners-carousel-wrapper::before,
    .partners-carousel-wrapper::after {
        width: 50px;
    }
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Navigation - Clean Compact Design */
    .nav {
        padding: 12px 0;
    }

    .nav-content {
        padding: 0 20px;
    }

    .logo {
        gap: 8px;
    }

    .logo .logo-img {
        width: 45px;
        height: 45px;
    }

    .logo .logo-text,
    .logo .logo-text-mobile,
    .logo-text.desktop-only,
    span.logo-text {
        display: none !important;
        visibility: hidden !important;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-link {
        font-size: 13px;
        padding: 8px 10px;
    }

    .join-btn.desktop-only {
        padding: 10px 16px;
        font-size: 13px;
    }

    .join-btn.desktop-only .icon {
        width: 14px;
        height: 14px;
    }

    /* Base */
    .section-content {
        padding: 0 32px;
    }

    /* Hero Section */
    .hero {
        padding: 130px 32px 80px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
        max-width: 90%;
    }

    /* About Section */
    .about-section {
        padding: 70px 32px;
    }

    .about-grid {
        gap: 50px;
    }

    .about-paragraph {
        font-size: 16px;
    }

    .about-values {
        gap: 14px;
    }

    .value-item {
        gap: 14px;
    }

    .value-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .image-card {
        max-width: 100%;
    }

    .action-image {
        height: 350px;
    }

    /* Programs Section */
    .programs-section {
        padding: 70px 32px;
    }

    .programs-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .program-card {
        padding: 28px;
    }

    .program-title {
        font-size: 18px;
    }

    .program-desc {
        font-size: 14px;
    }

    /* News Section */
    .news-section {
        padding: 70px 32px;
    }

    .news-header {
        margin-bottom: 50px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 17px;
    }

    /* Events Section */
    .events-section {
        padding: 70px 32px;
    }

    .events-header {
        margin-bottom: 40px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .event-card {
        padding: 18px;
    }

    .event-title {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 70px 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 17px;
    }

    /* Footer */
    .footer {
        padding: 70px 32px 30px;
    }

    .footer-main {
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-col-title {
        font-size: 15px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-desc {
        font-size: 14px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Partners */
    .partners-section {
        padding: 60px 32px;
    }

    .partner-item {
        height: 60px;
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    /* Base */
    .section-content {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

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

    /* About Section */
    .about-section {
        padding: 60px 20px;
    }

    .about-paragraph {
        font-size: 15px;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Programs Section */
    .programs-section {
        padding: 60px 20px;
    }

    .programs-header {
        margin-bottom: 40px;
    }

    .program-card {
        padding: 24px;
    }

    /* News Section */
    .news-section {
        padding: 60px 20px;
    }

    .news-header {
        margin-bottom: 40px;
    }

    .news-image {
        height: 180px;
    }

    /* Events Section */
    .events-section {
        padding: 60px 20px;
    }

    .events-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

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

    /* CTA Section */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        padding: 0;
    }

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

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        text-align: left;
    }

    .footer-column:last-child {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    /* Base */
    .section-content {
        padding: 0 16px;
    }

    .section-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

    .section-title {
        font-size: 24px;
    }

    /* Hero */
    .hero {
        padding: 90px 16px 50px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-tag {
        font-size: 11px;
    }

    /* About Section */
    .about-section {
        padding: 50px 16px;
    }

    .about-values {
        gap: 20px;
    }

    .value-icon-wrap {
        width: 48px;
        height: 48px;
    }

    /* Programs */
    .programs-section {
        padding: 50px 16px;
    }

    .program-card {
        padding: 20px;
    }

    .program-title {
        font-size: 18px;
    }

    /* News */
    .news-section {
        padding: 50px 16px;
    }

    .news-content {
        padding: 16px;
    }

    .news-title {
        font-size: 16px;
    }

    /* Events */
    .events-section {
        padding: 50px 16px;
    }

    .event-card {
        padding: 16px;
    }

    .event-date {
        padding: 12px;
    }

    .event-day {
        font-size: 20px;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 16px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-text {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 50px 16px 24px;
    }

    .footer-logo-text {
        font-size: 18px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .footer-column:last-child {
        grid-column: span 2;
    }

    .footer-col-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-contact {
        font-size: 13px;
    }

    .copyright {
        font-size: 12px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================
   MATERIALS PAGE
   ========================================== */
.materials-page {
    padding: 140px 32px 80px;
    min-height: 70vh;
}

.materials-header {
    text-align: center;
    margin-bottom: 60px;
}

.materials-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 16px;
}

.materials-list {
    max-width: 700px;
    margin: 0 auto;
}

.material-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid rgba(46, 91, 21, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.material-item:hover {
    border-color: #2e5b15;
    box-shadow: 0 8px 24px rgba(46, 91, 21, 0.1);
    transform: translateY(-2px);
}

.material-name {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
}

.download-icon {
    color: #2e5b15;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.material-item:hover .download-icon {
    transform: translateY(2px);
}

.no-materials {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-materials svg {
    margin-bottom: 20px;
}

/* Materials Page Responsive */
@media (max-width: 768px) {
    .materials-page {
        padding: 120px 20px 60px;
    }

    .materials-header {
        margin-bottom: 40px;
    }

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

    .material-item {
        padding: 16px 20px;
    }

    .material-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .materials-page {
        padding: 100px 16px 50px;
    }

    .material-item {
        padding: 14px 16px;
    }
}

/* ==========================================
   404 ERROR PAGE
   ========================================== */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-visual {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: 120px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #2e5b15, #1f3d0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.error-content {
    margin-top: 40px;
}

.error-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.error-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2e5b15, #1f3d0f);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 91, 21, 0.2);
}

.btn-primary-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 91, 21, 0.35);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #2e5b15;
    border: 2px solid #2e5b15;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: rgba(46, 91, 21, 0.1);
    transform: translateY(-2px);
}

.error-links {
    padding-top: 40px;
    border-top: 1px solid rgba(46, 91, 21, 0.15);
}

.error-links-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 20px;
}

.quick-links-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-link {
    padding: 10px 24px;
    background: rgba(46, 91, 21, 0.05);
    color: #2e5b15;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 91, 21, 0.1);
}

.quick-link:hover {
    background: rgba(46, 91, 21, 0.1);
    border-color: #2e5b15;
    transform: translateY(-2px);
}

/* 404 Page Responsive */
@media (max-width: 768px) {
    .error-number {
        font-size: 80px;
    }

    .error-title {
        font-size: 28px;
    }

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

    .error-actions {
        flex-direction: column;
    }

    .btn-primary-green,
    .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }
}
