* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #064e3b;
    /* Deep Forest Green */
    --secondary-color: #047857;
    /* Emerald Green */
    --accent-color: #fbbf24;
    /* Golden Yellow */
    --highlight-color: #d97706;
    /* Earthy Orange */
    --light-bg: #f0fdf4;
    /* Very light green tint */
    --text-dark: #1f2937;
    --text-light: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
}

/* Header & Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.join-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.join-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.modal input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

/* Video Banner Section */
.video-banner {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-text {
    text-align: center;
    color: white;
    z-index: 1;
}

.banner-text {
    margin-top: -55px;
}

.banner-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-text p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-bar a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.social-bar a:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}

/* What We Do Section */
.what-we-do {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
}

.cards-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0fdf4;
}

.cards-container::-webkit-scrollbar {
    height: 8px;
}

.cards-container::-webkit-scrollbar-track {
    background: #f0fdf4;
    border-radius: 4px;
}

.cards-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.card {
    max-width: 211px;
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::before {
    opacity: 0.1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.know-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.card:hover .know-more {
    opacity: 1;
    transform: translateY(0);
}

/* Our Work Section */
.our-work {
    padding: 5rem 5%;
    background: white;
}

.work-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.work-left {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.work-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.work-left p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.work-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.orbit-container {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.orbit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.orbit-item span {
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
}

.orbit-item:nth-child(1) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.orbit-item:nth-child(3) {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item:nth-child(4) {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gallery-slide {
    display: none;
    position: relative;
}

.gallery-slide.active {
    display: block;
    animation: slideInCustom 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInCustom {
    from {
        opacity: 0;
        transform: translateX(30px) scale(1.05);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-slide:hover img {
    transform: scale(1.1) rotate(1deg);
}


.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem;
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.form-section textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    resize: vertical;
}

.send-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.send-btn:hover {
    background: var(--primary-color);
    color: white;
}

.map-container {
    grid-column: 1 / -1;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Sticky WhatsApp */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

/* Chat Toggle Button */
.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-widget.hidden {
    display: none;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    cursor: pointer;
    font-size: 1.5rem;
}

.chat-body {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.chat-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.chat-send {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Impact Section */
.impact {
    position: relative;
    padding: 5rem 5%;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1200&h=600&fit=crop') center/cover fixed;
    color: white;
    text-align: center;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9), rgba(4, 120, 87, 0.8));
}

.impact-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.impact .section-title {
    color: white;
}

.impact .section-title::after {
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.impact-item:hover {
    transform: translateY(-10px);
}

.impact-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.impact-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.impact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #022c22, #064e3b);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #d1d5db;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Inner Page Banner */
.page-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(4, 120, 87, 0.7), rgba(6, 78, 59, 0.8));
}

.page-banner h1 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Split Layout */
.gallery-split {
    display: flex;
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 700px;
}

.gallery-left {
    flex: 2;
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-left-content {
    padding: 2rem;
}

.gallery-left-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery-left-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.sector-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.gallery-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    max-height: 700px;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0fdf4;
}

.gallery-right::-webkit-scrollbar {
    width: 8px;
}

.gallery-right::-webkit-scrollbar-track {
    background: #f0fdf4;
    border-radius: 4px;
}

.gallery-right::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.thumbnail-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    height: 200px;
    flex-shrink: 0;
}

.thumbnail-card:hover {
    transform: scale(1.02);
}

.thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: white;
}

.thumbnail-card.active {
    border: 3px solid var(--accent-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}


.pdf-row {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    flex-wrap: wrap;
    /* Allows wrapping on small screens */
    gap: 1rem;
}

/* --- PRESS RELEASE TREE STYLES --- */
.pr-section {
    padding: 2rem 5%;
    background: linear-gradient(145deg, #0a2f1f 0%, #0c4a2e 35%, #083d1f 100%);
    position: relative;
    overflow: hidden;
}

.pr-section .section-title {
    color: white;
    position: relative;
    z-index: 10;
}

.pr-section .section-title::after {
    background: white;
}

.pr-forest-scene {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.pr-tree-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.4));
}

.pr-tree-canvas {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}




.pr-big-tree {
    width: 100%;
    height: 80%;
    display: block;
    border-radius: 40px 40px 30px 30px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 18px rgba(80, 200, 40, 0.3));
}

.pr-hanging-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pr-fruit-card {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
    z-index: 20;
    animation: floatFruit 3s ease-in-out infinite;
}

.pr-fruit-card:nth-child(odd) {
    animation-delay: 0.5s;
}

.pr-fruit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.pr-fruit-card:hover {
    transform: translateY(-12px) scale(1.05) !important;
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.5));
    z-index: 30;
    animation-play-state: paused;
}

.pr-fruit-card::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 28px;
    background: linear-gradient(to bottom, #8B5E3C, #C28B5B);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pr-press-fruit-small {
    width: 150px;
    background: linear-gradient(145deg, #fffef7, #fff7e8);
    border-radius: 30px 30px 35px 35px;
    overflow: hidden;
    box-shadow: 0 18px 28px -8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 200, 0.8);
    border: 2px solid rgba(255, 215, 120, 0.7);
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}

.pr-fruit-card:hover .pr-press-fruit-small {
    border-color: #FFD966;
    box-shadow: 0 22px 35px -10px black;
    background: white;
}

.pr-fruit-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    border-bottom: 4px solid #FFC857;
    transition: transform 0.4s;
}

.pr-fruit-card:hover .pr-fruit-image {
    transform: scale(1.02);
}

.pr-fruit-info {
    padding: 12px 10px 16px;
    background: linear-gradient(135deg, #fff6e0, #fff0da);
    text-align: center;
}

.pr-fruit-title {
    font-size: 12px;
    font-weight: 800;
    color: #2c5a2a;
    line-height: 1.35;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-fruit-date {
    font-size: 9px;
    color: #C97E2A;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pr-glow-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 30% 40%, rgba(120, 255, 80, 0.08) 0%, transparent 60%);
    border-radius: 40px;
    z-index: 5;
}

.pr-ground-grass {
    margin-top: -275px;
    text-align: center;
    font-size: 32px;
    letter-spacing: 12px;
    color: #b8e46b;
    text-shadow: 0 3px 12px #2c6e2a;
    opacity: 0.8;
    pointer-events: none;
    font-weight: 400;
}

@keyframes floatFruit {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.pr-modal-fruit {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 30, 12, 0.92);
    backdrop-filter: blur(12px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pr-modal-fruit.active {
    display: flex;
    opacity: 1;
}

.pr-modal-content-box {
    background: linear-gradient(145deg, #FFFCF0, #FFF5E0);
    max-width: 600px;
    width: 90%;
    border-radius: 55px 30px 55px 30px;
    overflow: hidden;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.6), 0 0 0 5px rgba(255, 215, 0, 0.3);
    animation: modalRise 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalRise {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.pr-modal-img-fruit {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-bottom: 6px solid #F4B942;
}

.pr-modal-text-content {
    padding: 28px 30px 40px;
}

.pr-modal-text-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #2C6E2A;
    margin-bottom: 12px;
}

.pr-modal-date-fruit {
    font-size: 14px;
    font-weight: 600;
    color: #D9822B;
    margin-bottom: 20px;
    display: inline-block;
    border-left: 5px solid #F4B942;
    padding-left: 15px;
}

.pr-modal-text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3e2a;
    font-weight: 500;
}

.pr-close-modal-fruit {
    position: absolute;
    top: 18px;
    right: 22px;
    background: #FFE8C7;
    width: 44px;
    height: 44px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #5A3A1A;
    transition: all 0.2s;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pr-close-modal-fruit:hover {
    background: #FFD966;
    transform: scale(1.07);
    color: #2c5a2a;
}