/* ===== CSS VARIABLES ===== */
:root {
    --pastel-green: #a8d5ba;
    --dark-green: #1a4d2e;
    --earth: #c4a77d;
    --beige: #f5f1eb;
    --warm-brown: #6b5a3c;
    --cream: #faf8f5;
    --moss: #4a6741;
    --sage: #87a878;
    --deep-forest: #0d2818;
    --gold: #d4a853;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--dark-green);
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--deep-forest);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--pastel-green);
    opacity: 0;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 2rem;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pastel-green), var(--gold));
    border-radius: 2px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(13, 40, 24, 0.95);
    backdrop-filter: blur(25px);
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.header.scrolled .nav-link { color: rgba(255,255,255,0.8); }
.header.scrolled .nav-link:hover { color: var(--pastel-green); }
.header.scrolled .logo-ecological { color: var(--pastel-green); }
.header.scrolled .logo-home-wrapper { background: rgba(255,255,255,0.12); }
.header.scrolled .header-cta { background: var(--pastel-green); color: var(--dark-green); }

.logo-ecological {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--pastel-green);
    letter-spacing: -0.03em;
    transition: color 0.4s;
}

.logo-home-wrapper {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--cream);
    padding: 0.15rem 0.55rem;
    border-radius: 5px;
    margin-left: 2px;
    transition: background 0.4s;
}

.logo-home {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: -0.03em;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9); /* Promenjeno na belu */
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--cream); /* Promenjeno sa var(--dark-green) */
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--earth);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

.header-cta {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    background: var(--dark-green);
    color: var(--cream);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 77, 46, 0.4);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--deep-forest);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--pastel-green); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark-green);
    transition: all 0.3s;
}

.header.scrolled .hamburger span { background: var(--cream); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.8) 0%, rgba(26, 77, 46, 0.4) 50%, rgba(196, 167, 125, 0.15) 100%);
}

.hero-gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 5;
}

/* Floating Cards */
.floating-card {
    position: absolute;
   background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
   transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.floating-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    /* Blaga promena nijanse - povećavamo prozirnost ili svetlinu */
    background: rgba(255, 255, 255, 1); 
    
    /* Opciono: dodajte blagi "glow" efekat koristeći vašu zlatnu boju */
    border-color: rgba(212, 168, 83, 0.4);
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pastel-green), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.card-icon svg { width: 22px; height: 22px; stroke: var(--dark-green); }

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark-green);
    margin-bottom: 0.2rem;
}

.card-desc { font-size: 0.75rem; color: var(--warm-brown); line-height: 1.4; }

/* ===== SECTION STYLES ===== */
.content-block {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.block-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.block-image:hover img { transform: scale(1.06); }

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Povećano sa 600 */
    font-size: 0.7rem;
    letter-spacing: 0.25em; /* Povećano sa 0.2em */
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 2.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--earth);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--warm-brown);
    max-width: 520px;
}

/* ===== FEATURE SECTION STYLES ===== */
.feature-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.feature-section:nth-child(even) {
    background: var(--beige);
}

.feature-section:nth-child(odd) {
    background: var(--cream);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--pastel-green), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 20px 50px rgba(168, 213, 186, 0.3);
}

.feature-icon-large svg {
    width: 48px;
    height: 48px;
    stroke: var(--dark-green);
}

.feature-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-stat {
    text-align: left;
}

.feature-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--dark-green);
    line-height: 1;
}

.feature-stat-label {
    font-size: 0.9rem;
    color: var(--warm-brown);
    margin-top: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--warm-brown);
    line-height: 1.6;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pastel-green);
}

.feature-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--dark-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--dark-green);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(26, 77, 46, 0.25);
    letter-spacing: 0.02em;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(26, 77, 46, 0.4);
    background: var(--moss);
}

.cta-btn svg { transition: transform 0.3s; }
.cta-btn:hover svg { transform: translateX(5px); }

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
    box-shadow: none;
}

.cta-btn-secondary:hover {
    background: var(--dark-green);
    color: var(--cream);
}

.cta-btn-light {
    background: var(--cream);
    color: var(--dark-green);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-btn-light:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ===== MARQUEE ===== */
.marquee-section {
    overflow: hidden;
    padding: 2.5rem 0;
    background: var(--dark-green);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(168, 213, 186, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pastel-green);
    opacity: 0.4;
}

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

/* ===== PROCESS SECTION ===== */
.process-step {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(168, 213, 186, 0.2);
    transition: all 0.4s;
}

.process-step:hover {
    box-shadow: 0 30px 80px rgba(26, 77, 46, 0.1);
    transform: translateY(-5px);
}

.process-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--pastel-green);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.95rem;
    color: var(--warm-brown);
    line-height: 1.7;
}

/* ===== HORIZONTAL STORYTELLING ===== */
.horizontal-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--deep-forest);
}

.horizontal-wrapper {
    display: flex;
    height: 100vh;
    width: fit-content;
}

.story-panel {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    flex-shrink: 0;
    position: relative;
}

.story-panel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(168,213,186,0.2), transparent);
}

.story-panel:last-child::after { display: none; }

.story-content { max-width: 550px; }

.story-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(168, 213, 186, 0.1);
    border: 1px solid rgba(168, 213, 186, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.story-icon svg { width: 36px; height: 36px; stroke: var(--pastel-green); }

.story-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(168,213,186,0.15);
    line-height: 1;
    margin-bottom: -1rem;
}

.story-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(168, 213, 186, 0.7);
}

/* ===== GALLERY ===== */
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,40,24,0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--cream);
    font-size: 1.1rem;
}

/* ===== STATS BANNER ===== */
.stats-banner {
    background: linear-gradient(135deg, var(--dark-green), var(--deep-forest));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(168,213,186,0.05);
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--pastel-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(168, 213, 186, 0.15);
    transition: all 0.4s;
}

.testimonial-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.testimonial-star {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-brown);
    margin-bottom: 1.5rem;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pastel-green), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1.1rem;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-green);
    font-size: 0.95rem;
}

.testimonial-role { font-size: 0.8rem; color: var(--earth); }

/* ===== PARTNERS ===== */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    filter: grayscale(1);
    opacity: 0.4;
    transition: all 0.4s;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-green);
}

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid rgba(168, 213, 186, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-green);
    text-align: left;
}

.faq-question:hover { color: var(--moss); }

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pastel-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-brown);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--beige);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(168,213,186,0.15);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pastel-green), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box svg { width: 24px; height: 24px; stroke: var(--dark-green); }

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-green);
    margin-bottom: 0.35rem;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--warm-brown);
    line-height: 1.6;
}

.contact-value a {
    color: var(--warm-brown);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover { color: var(--dark-green); }

.contact-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

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

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid rgba(168,213,186,0.3);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-green);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--pastel-green);
    box-shadow: 0 0 0 4px rgba(168,213,186,0.2);
}

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

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--dark-green);
    color: var(--cream);
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

.form-submit:hover {
    background: var(--moss);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(26,77,46,0.3);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 4px solid white;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-green), var(--moss));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(168,213,186,0.08);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212,168,83,0.06);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--deep-forest);
    padding: 5rem 0 0;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.3s;
}

.footer-link:hover { color: var(--pastel-green); }

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--pastel-green);
}

.footer-social a svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.5); }
.footer-social a:hover svg { stroke: var(--dark-green); }

/* ===== FLOATING SHAPES ===== */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pastel-green), var(--gold));
    z-index: 1001;
    width: 0%;
    transition: width 0.05s linear;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .floating-card {
        position: relative !important;
        transform: none !important;
    }
    
    .hero-cards-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0 1.5rem;
        margin-top: 2rem;
        position: relative;
    }
    
    .hero-cards-container .floating-card {
        flex: 1 1 140px;
    }
    
    .horizontal-section { height: auto; }
    .horizontal-wrapper { flex-direction: column; width: 100%; }
    .story-panel { width: 100%; min-height: 80vh; height: auto; }
    .story-panel::after { display: none; }
    .story-number { font-size: 4rem; }
    .story-title { font-size: 1.75rem; }
    
    .feature-stats { gap: 2rem; }
    .feature-stat-value { font-size: 2rem; }
}

@media (max-width: 768px) {
    .header { padding: 1rem 1.25rem; padding-top: max(1rem, env(safe-area-inset-top)); }
    .header.scrolled { padding: 0.6rem 1.25rem; padding-top: max(0.6rem, env(safe-area-inset-top)); }
    .nav-desktop { display: none !important; }
    .hamburger { display: flex; }
    .content-block { padding: 4rem 0; }
    .feature-section { padding: 5rem 0; }
    .stat-value { font-size: 2.5rem; }
    .stat-divider { display: none; }
    .contact-form { padding: 2rem 1.5rem; }
    
    .marquee-item { font-size: 1.15rem; padding: 0 2rem; }
    .marquee-section { padding: 1.75rem 0; }
    
    .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .section-text { font-size: 0.95rem; }
    .section-label { padding-left: 1.75rem; font-size: 0.65rem; letter-spacing: 0.2em; }
    .section-label::before { width: 1.25rem; }
    
    .faq-question { padding: 1.25rem 0; font-size: 0.95rem; }
    .faq-answer p { font-size: 0.9rem; }
    .faq-item.active .faq-answer { max-height: 500px; }
    
    .stats-banner { padding: 3.5rem 0; }
    .stats-banner .stat-item { flex: 1 1 45%; }
    
    .cta-banner { padding: 4rem 1rem; }
    .cta-banner .flex { flex-direction: column; align-items: center; }
    .cta-banner a { width: 100%; max-width: 280px; justify-content: center; }
    
    .footer-top { padding-bottom: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem 0; }
    .footer-copy { text-align: center; font-size: 0.8rem; }
    
    .mobile-menu { padding: env(safe-area-inset-top) 1rem env(safe-area-inset-bottom); }
}

/* Mobile phones - small screens */
@media (max-width: 480px) {
    .header .max-w-7xl { padding: 0; }
    .logo-ecological { font-size: 1.1rem; }
    .logo-home { font-size: 1.1rem; }
    
    .hero { min-height: 100svh; min-height: 100dvh; padding-top: 0; }
    .hero .max-w-2xl { padding-top: 7rem; }
    .hero .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.15; }
    .hero .section-text { font-size: 0.9rem; }
    .hero .flex.flex-wrap.gap-4 { flex-direction: column; align-items: stretch; }
    .hero .cta-btn { width: 100%; justify-content: center; min-height: 48px; padding: 1rem 1.5rem; }
    
    .floating-shape { width: 200px !important; height: 200px !important; }
    .floating-shape:last-of-type { width: 150px !important; height: 150px !important; }
    
    .hero-cards-container { padding: 0 1rem; margin-top: 1.5rem; gap: 0.5rem; }
    .hero-cards-container .floating-card { flex: 1 1 calc(50% - 0.5rem); padding: 0.9rem 1rem; min-height: 80px; }
    .hero-cards-container .card-icon { width: 36px; height: 36px; margin-bottom: 0.4rem; }
    .hero-cards-container .card-icon svg { width: 16px; height: 16px; }
    .hero-cards-container .card-title { font-size: 0.7rem; }
    
    .marquee-item { font-size: 0.95rem; padding: 0 1.5rem; gap: 1.5rem; }
    
    .content-block, .feature-section { padding-left: 1rem; padding-right: 1rem; }
    .max-w-7xl.mx-auto.px-6 { padding-left: 1rem !important; padding-right: 1rem !important; }
    
    .feature-icon-large { width: 72px; height: 72px; margin-bottom: 1.25rem; }
    .feature-icon-large svg { width: 34px; height: 34px; }
    .feature-stats { gap: 1.5rem; margin-top: 1.5rem; }
    .feature-stat-value { font-size: 1.75rem; }
    .feature-stat-label { font-size: 0.8rem; }
    .feature-list li { font-size: 0.9rem; padding-left: 1.5rem; }
    
    .block-image, .feature-image { border-radius: 16px; }
    
    .testimonial-card { padding: 1.5rem; }
    .testimonial-quote { font-size: 0.95rem; }
    .testimonial-star { width: 14px; height: 14px; }
    
    .stats-banner .stat-item { flex: 1 1 100%; }
    .stat-value { font-size: 2.25rem; }
    .stat-label { font-size: 0.85rem; }
    
    .story-panel { padding: 3rem 1.5rem; min-height: 70vh; }
    .story-icon { width: 60px; height: 60px; }
    .story-icon svg { width: 28px; height: 28px; }
    .story-number { font-size: 3rem; }
    .story-title { font-size: 1.5rem; }
    .story-text { font-size: 0.95rem; }
    
    .contact-info-card { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
    .contact-icon-box { width: 48px; height: 48px; }
    .contact-icon-box svg { width: 20px; height: 20px; }
    .contact-form { padding: 1.5rem 1rem; }
    .form-input, .form-textarea, .form-select { padding: 0.85rem 1rem; min-height: 48px; }
    .form-textarea { min-height: 100px; }
    .form-submit { padding: 1rem; min-height: 48px; }
    
    .map-container { height: 250px !important; border-radius: 16px; }
    
    .grid.grid-cols-2.gap-4 > * { min-width: 0; }
    
    .footer-title { font-size: 0.95rem; margin-bottom: 1rem; }
    .footer-link { font-size: 0.85rem; }
    .footer-copy { font-size: 0.75rem; line-height: 1.5; }
    
    .cta-btn { min-height: 48px; padding: 1rem 1.5rem; }
    .preloader-logo { font-size: 1.8rem; }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    .nav-link, .footer-link { padding: 0.5rem 0; min-height: 44px; display: inline-flex; align-items: center; }
    .faq-question { min-height: 48px; padding: 1rem 0; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body { padding-bottom: env(safe-area-inset-bottom); }
    .footer { padding-bottom: env(safe-area-inset-bottom); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; }
}
