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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a2f0d;
    overflow-x: hidden;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(45, 80, 22, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d5016;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #6ba84f;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.burger span {
    width: 100%;
    height: 3px;
    background: #2d5016;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-child(3) {
    bottom: 0;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        text-align: center;
        width: 100%;
        max-width: 200px;
        border-bottom: 1px solid #e8f5e8;
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 320px) {
    .nav-menu {
        padding: 1rem;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
}

.hero-asymmetric {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 50%, #d4e8d4 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a7c3a;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-btn {
    background: #4a7c3a;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-btn:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

.floating-plants {
    position: relative;
    height: 500px;
}

.plant-main {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.plant-float-1 {
    position: absolute;
    top: 10%;
    right: 0;
    width: 40%;
    border-radius: 15px;
    transform: rotate(5deg);
    opacity: 0;
    transform: translateY(30px) rotate(5deg);
    animation: fadeInUp 1s ease 0.8s forwards;
}

.plant-float-2 {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 35%;
    border-radius: 12px;
    transform: rotate(-3deg);
    opacity: 0;
    transform: translateY(30px) rotate(-3deg);
    animation: fadeInUp 1s ease 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.species-showcase {
    padding: 100px 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.2s forwards;
}

.species-header {
    text-align: center;
    margin-bottom: 4rem;
}

.species-header h2 {
    font-size: 3rem;
    color: #1a2f0d;
    margin-bottom: 1rem;
}

.species-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 200px;
    gap: 1rem;
}

.mosaic-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.mosaic-item:nth-child(1) { animation-delay: 0.1s; }
.mosaic-item:nth-child(2) { animation-delay: 0.2s; }
.mosaic-item:nth-child(3) { animation-delay: 0.3s; }

.mosaic-item.large {
    grid-row: span 2;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.species-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem;
}

.rarity {
    background: #6ba84f;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.plant-philosophy {
    padding: 100px 0;
    background: linear-gradient(45deg, #e8f5e8, #f8fff8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.philosophy-text h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a2f0d;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #6ba84f;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.point:nth-child(1) { animation-delay: 0.1s; }
.point:nth-child(2) { animation-delay: 0.2s; }
.point:nth-child(3) { animation-delay: 0.3s; }

.point h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.care-calculator {
    padding: 100px 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calculator-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.calculator-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2f0d;
}

.calculator-description {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5016;
}

.input-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8f5e8;
    border-radius: 8px;
    background: white;
}

#calculateCare {
    background: #4a7c3a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 2rem;
}

.care-result {
    padding: 1.5rem;
    background: #f8fff8;
    border-radius: 10px;
    border-left: 4px solid #6ba84f;
}

.seasonal-wheel {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}
.seasonal-wheel h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2f0d;
}

.wheel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.wheel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.season {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.season.active {
    border-color: #6ba84f;
    background: #f8fff8;
    transform: scale(1.05);
}

.season h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.season p {
    color: #666;
    font-size: 0.9rem;
}

.season-display {
    position: relative;
    height: 400px;
}

.season-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.season-image.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .wheel-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .wheel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 320px) {
    .seasonal-wheel {
        padding: 60px 0;
    }

    .seasonal-wheel h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .wheel-container {
        gap: 2rem;
    }

    .wheel {
        grid-template-columns: 1fr;
        order: 2;
    }

    .season {
        padding: 1rem;
        min-height: 80px;
        border-radius: 8px;
    }

    .season h3 {
        font-size: 1.1rem;
    }

    .season p {
        font-size: 0.8rem;
    }

    .season-display {
        height: 250px;
        order: 1;
    }

    .season-image {
        border-radius: 10px;
    }
}
@media (max-width: 768px) {
    .seasonal-wheel h2 {
        font-size: 2rem;
    }

    .wheel-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .season {
        padding: 1.2rem;
        min-height: 100px;
    }
}

.plant-stories {
    padding: 100px 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.plant-stories h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a2f0d;
}

.stories-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-phase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.story-phase:nth-child(1) { animation-delay: 0.1s; }
.story-phase:nth-child(2) { animation-delay: 0.2s; }
.story-phase:nth-child(3) { animation-delay: 0.3s; }

.story-phase.reverse {
    direction: rtl;
}

.story-phase.reverse > * {
    direction: ltr;
}

.phase-image img {
    width: 100%;
    border-radius: 15px;
}

.phase-content {
    padding: 2rem;
}

.phase-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e8f5e8;
    margin-bottom: 1rem;
    display: block;
}

.stats-counter {
    padding: 80px 0;
    background: linear-gradient(45deg, #2d5016, #4a7c3a);
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.texture-garden {
    padding: 100px 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.texture-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.texture-header h2 {
    font-size: 3rem;
    color: #1a2f0d;
    margin-bottom: 1rem;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.texture-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.texture-item:nth-child(1) { animation-delay: 0.1s; }
.texture-item:nth-child(2) { animation-delay: 0.2s; }
.texture-item:nth-child(3) { animation-delay: 0.3s; }

.texture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.texture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.texture-item:hover .texture-overlay {
    transform: translateY(0);
}

.texture-item:hover img {
    transform: scale(1.1);
}

.scent-experience {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.scent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.scent-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
}

.scent-notes {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.note {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.note:nth-child(1) { animation-delay: 0.1s; }
.note:nth-child(2) { animation-delay: 0.2s; }
.note:nth-child(3) { animation-delay: 0.3s; }

.note:hover {
    border-color: #6ba84f;
    background: #f8fff8;
}

.scent-visual {
    position: relative;
}

.scent-visual img {
    width: 100%;
    border-radius: 20px;
}

.scent-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #2d5016, #4a7c3a);
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-btn.primary {
    background: white;
    color: #2d5016;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.footer {
    background: #1a2f0d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo svg {
    height: 40px;
}

.footer-tagline {
    color: #6ba84f;
    font-style: italic;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nav-column h4 {
    margin-bottom: 1.5rem;
    color: #6ba84f;
}

.nav-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.nav-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d5016;
    padding-top: 2rem;
    text-align: center;
    color: #6ba84f;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .floating-plants {
        height: 300px;
        order: -1;
    }

    .plant-main {
        width: 100%;
    }

    .plant-float-1,
    .plant-float-2 {
        display: none;
    }

    .species-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

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

    .wheel-container {
        grid-template-columns: 1fr;
    }

    .story-phase {
        grid-template-columns: 1fr;
    }

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

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

    .scent-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .scent-notes {
        justify-content: center;
    }

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

    .footer-navigation {
        grid-template-columns: 1fr;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero-asymmetric {
        padding: 120px 0 60px;
    }

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

    .hero-text {
        font-size: 1.1rem;
    }

    .species-header h2,
    .plant-philosophy h2,
    .seasonal-wheel h2,
    .plant-stories h2,
    .texture-header h2,
    .scent-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .floating-plants {
        height: 250px;
    }

    .point {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .texture-item {
        height: 250px;
    }

    .scent-notes {
        flex-direction: column;
        align-items: center;
    }

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

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.item-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.item-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
.shop-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.shop-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.shop-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a2f0d;
}

.shop-hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a7c3a;
}

.shop-categories {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2f0d;
}

.categories-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 150px;
    gap: 1rem;
}

.mosaic-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.mosaic-item.large {
    grid-row: span 2;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem;
}

.mosaic-btn {
    display: inline-block;
    background: #6ba84f;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 0.5rem;
}

.shop-featured {
    padding: 80px 0;
    background: #f8fff8;
}

.featured-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.featured-main {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-info {
    padding: 2rem;
}

.featured-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.featured-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-btn {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.side-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    /*flex-shrink: 0;*/
}

.side-info {
    padding: 1rem;
    flex: 1;
}

.side-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.side-btn {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
}

.shop-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e8f5e8;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #4a7c3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.shop-testimonials {
    padding: 80px 0;
    background: #f8fff8;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-card.reverse {
    direction: rtl;
}

.testimonial-card.reverse > * {
    direction: ltr;
}

.testimonial-text {
    padding: 2rem;
}

.testimonial-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2d5016;
    font-style: italic;
}

.testimonial-text span {
    color: #4a7c3a;
    font-weight: 600;
}

.testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.shop-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, #2d5016, #4a7c3a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #2d5016;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 2.5rem;
    }
    
    .categories-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .featured-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .shop-hero {
        padding: 120px 0 60px;
    }
    
    .shop-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .side-item {
        flex-direction: column;
    }
    
    .side-item img {
        width: 100%;
        height: 150px;
    }
}
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
    line-height: 1.1;
}

.about-hero-text p {
    font-size: 1.4rem;
    color: #4a7c3a;
}

.about-hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-story {
    padding: 100px 0;
    background: white;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8f5e8, #4a7c3a, #e8f5e8);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: #4a7c3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.timeline-content p {
    color: #666;
    line-height: 1.5;
}

.about-values {
    padding: 100px 0;
    background: #f8fff8;
}

.values-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-circle {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-circle:hover {
    transform: scale(1.05);
}

.circle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-circle h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.value-circle p {
    color: #666;
    line-height: 1.4;
}

.about-team {
    padding: 100px 0;
    background: white;
}

.team-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.team-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.team-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem;
}

.team-main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #f8fff8;
    padding: 2rem;
    border-radius: 15px;
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.member-info span {
    color: #4a7c3a;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #666;
    font-size: 0.9rem;
}

.about-mission {
    padding: 100px 0;
    background: #f8fff8;
}

.mission-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a2f0d;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
}

.mission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.mission-img-large {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.mission-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-facilities {
    padding: 100px 0;
    background: white;
}

.facilities-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.facility-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.facility-info {
    padding: 2rem;
}

.facility-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.facility-info p {
    color: #666;
    line-height: 1.5;
}

.about-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d5016, #4a7c3a);
    color: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.impact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-innovation {
    padding: 100px 0;
    background: #f8fff8;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
}

.innovation-text > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.innovation-feature {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.innovation-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.innovation-feature p {
    color: #666;
    line-height: 1.4;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.innovation-main {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.innovation-side-1, .innovation-side-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-partners {
    padding: 100px 0;
    background: white;
}

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

.partner-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.partner-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.partner-item p {
    color: #666;
    line-height: 1.4;
}

.about-testimonials {
    padding: 100px 0;
    background: #f8fff8;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid #4a7c3a;
}

.testimonial-quote {
    font-size: 4rem;
    color: #4a7c3a;
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d5016;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author strong {
    display: block;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #4a7c3a;
    font-size: 0.9rem;
}

.about-join {
    padding: 100px 0;
    background: linear-gradient(45deg, #1a2f0d, #2d5016);
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.join-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.join-btn.primary {
    background: white;
    color: #2d5016;
}

.join-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.join-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text h1 {
        font-size: 3rem;
    }
    
    .story-timeline {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .values-circles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .mission-statement {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .mission-img-large {
        grid-row: auto;
        height: 300px;
    }
    
    .mission-img-small {
        height: 200px;
    }
    
    .facilities-showcase {
        grid-template-columns: 1fr;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .innovation-main {
        grid-row: auto;
        height: 300px;
    }
    
    .innovation-side-1, .innovation-side-2 {
        height: 200px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .values-circles {
        grid-template-columns: 1fr;
    }
    
    .value-circle {
        border-radius: 20px;
        aspect-ratio: auto;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid,
    .innovation-grid {
        height: auto;
        gap: 1rem;
    }
    
    .mission-img-large,
    .innovation-main {
        height: 250px;
    }
    
    .mission-img-small,
    .innovation-side-1,
    .innovation-side-2 {
        height: 150px;
    }
    
    .about-join {
        padding: 80px 0;
    }
    
    .join-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .join-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .join-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
.services-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    text-align: center;
}

.services-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
}

.services-hero-text {
    font-size: 1.3rem;
    color: #4a7c3a;
    max-width: 600px;
    margin: 0 auto;
}

.services-offerings {
    padding: 100px 0;
    background: white;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.offering-card.large {
    background: #f8fff8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.offering-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.offering-content {
    padding: 2.5rem;
}

.offering-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.offering-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offering-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.offering-content li {
    color: #4a7c3a;
    margin-bottom: 0.5rem;
}

.offering-btn {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.offering-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.offering-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.offering-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offering-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.offering-card p {
    color: #666;
    line-height: 1.4;
}

.services-workflow {
    padding: 100px 0;
    background: #f8fff8;
}

.workflow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.workflow-step {
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #4a7c3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.workflow-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.workflow-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.3;
}

.workflow-arrow {
    font-size: 2rem;
    color: #4a7c3a;
    margin: 0 1rem;
}

.workflow-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
}

.workflow-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.workflow-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #4a7c3a;
    border-radius: 50%;
    flex-shrink: 0;
}

.services-packages {
    padding: 100px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: #f8fff8;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    background: linear-gradient(135deg, #4a7c3a, #6ba84f);
    color: white;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d5016;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.package-card.featured .package-header h3 {
    color: white;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #4a7c3a;
}

.package-card.featured .package-price {
    color: white;
}

.package-price span {
    font-size: 1rem;
    font-weight: normal;
}

.package-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8f5e8;
    color: #666;
}

.package-card.featured .feature {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.package-btn {
    display: block;
    background: #4a7c3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.package-btn.primary {
    background: white;
    color: #4a7c3a;
}

.services-benefits {
    padding: 100px 0;
    background: #f8fff8;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2f0d;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.benefit-item p {
    color: #666;
    line-height: 1.4;
}

.benefits-visual img {
    width: 100%;
    border-radius: 20px;
}

.services-testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.testimonial-main {
    background: #f8fff8;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.testimonial-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2d5016;
    margin-bottom: 2rem;
    font-style: italic;
}

.client-info strong {
    display: block;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.client-info span {
    color: #4a7c3a;
    font-size: 0.9rem;
}

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

.testimonial-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-mini {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #4a7c3a;
}

.testimonial-mini p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-mini span {
    color: #4a7c3a;
    font-size: 0.9rem;
    font-weight: 600;
}

.services-faq {
    padding: 100px 0;
    background: #f8fff8;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2d5016;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #4a7c3a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

.services-cta {
    padding: 100px 0;
    background: linear-gradient(45deg, #2d5016, #4a7c3a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #2d5016;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-content {
        grid-template-columns: 1fr;
    }
    
    .workflow-diagram {
        flex-direction: column;
        gap: 2rem;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-showcase {
        grid-template-columns: 1fr;
    }
    
    .testimonial-main {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .services-hero {
        padding: 120px 0 60px;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .offering-content {
        padding: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}
.services-approaches {
    padding: 100px 0;
    background: white;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-card {
    background: #f8fff8;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: #e8f5e8;
}

.approach-card.featured {
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    border-color: #4a7c3a;
    transform: scale(1.02);
}

.approach-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a7c3a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.approach-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.approach-features span {
    color: #4a7c3a;
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(74, 124, 58, 0.1);
    border-radius: 8px;
}

.approach-link {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.approach-link.primary {
    background: #2d5016;
}

.approach-link:hover {
    background: #2d5016;
}

.approach-link.primary:hover {
    background: #1a2f0d;
}

@media (max-width: 768px) {
    .approaches-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-card.featured {
        transform: none;
    }
}

@media (max-width: 320px) {
    .approach-card {
        padding: 1.5rem;
    }
}
@media (max-width: 768px) {
    .approach-card.featured .approach-icon {
        margin-top: 2rem;
    }
}
.gallery-hero-mosaic {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.gallery-mosaic-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    grid-template-rows: 300px 200px 250px;
    gap: 1rem;
    height: 800px;
}

.mosaic-cell {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.mosaic-cell.large-cell {
    grid-row: span 2;
    grid-column: span 2;
}

.mosaic-cell.tall-cell {
    grid-row: span 2;
}

.mosaic-cell.wide-cell {
    grid-column: span 2;
}

.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-cell:hover img {
    transform: scale(1.05);
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 47, 13, 0.8), rgba(74, 124, 58, 0.6));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.mosaic-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.mosaic-overlay p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.gallery-text-asymmetric {
    padding: 100px 0;
    background: white;
}

.text-asymmetric-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-block-main h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a2f0d;
}

.text-block-main p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
}

.text-block-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-text-item {
    padding: 2rem;
    background: #f8fff8;
    border-radius: 15px;
    border-left: 4px solid #4a7c3a;
}

.side-text-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.side-text-item p {
    color: #666;
    line-height: 1.5;
}

.gallery-spiral-showcase {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8fff8, #e8f5e8);
}

.spiral-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.spiral-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4a7c3a, #6ba84f, #4a7c3a);
    transform: translateX(-50%);
}

.spiral-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.spiral-item:nth-child(even) {
    direction: rtl;
}

.spiral-item:nth-child(even) > * {
    direction: ltr;
}

.spiral-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.spiral-content {
    padding: 2rem;
}

.spiral-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.spiral-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.spiral-link {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.spiral-link:hover {
    background: #2d5016;
}

.gallery-color-stories {
    padding: 100px 0;
    background: white;
}

.color-stories-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a2f0d;
}

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

.palette-item {
    text-align: center;
    padding: 2rem;
    background: #f8fff8;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.color-swatch {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-swatch.deep-emerald svg circle {
    fill: #2d5016;
}

.color-swatch.vibrant-lime svg circle {
    fill: #6ba84f;
}

.color-swatch.soft-sage svg circle {
    fill: #a8c69a;
}

.color-swatch.forest-green svg circle {
    fill: #4a7c3a;
}

.palette-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.palette-item p {
    color: #666;
    line-height: 1.4;
}

.gallery-texture-wall {
    padding: 100px 0;
    background: #f8fff8;
}

.texture-wall-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.texture-wall-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a2f0d;
}

.texture-wall-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.texture-wall-btn {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.texture-wall-btn:hover {
    background: #2d5016;
}

.texture-image-single img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-seasonal-evolution {
    padding: 100px 0;
    background: white;
}

.evolution-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a2f0d;
}

.evolution-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.evolution-phase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.evolution-phase.reverse {
    direction: rtl;
}

.evolution-phase.reverse > * {
    direction: ltr;
}

.phase-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.phase-content {
    padding: 2rem;
}

.phase-season {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.phase-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.gallery-minimalist-spotlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
}

.minimalist-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.minimalist-spotlight {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.minimalist-spotlight img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.spotlight-content {
    padding: 2.5rem;
    text-align: center;
}

.spotlight-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.spotlight-content p {
    color: #666;
    line-height: 1.6;
}

.minimalist-aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aside-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.aside-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.aside-item p {
    color: #666;
    line-height: 1.4;
}

.gallery-immersive-experience {
    padding: 100px 0;
    background: white;
}

.immersive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.immersive-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a2f0d;
}

.immersive-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fff8;
    border-radius: 10px;
}

.feature-icon {
    font-size: 1.5rem;
}

.visual-composition {
    position: relative;
    height: 500px;
}

.main-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    text-align: center;
}

.visual-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-cta-asymmetric {
    padding: 100px 0;
    background: linear-gradient(45deg, #2d5016, #4a7c3a);
    color: white;
}

.cta-asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-action-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-action-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-action-btn.primary {
    background: white;
    color: #2d5016;
}

.cta-action-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-action-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gallery-hero-mosaic {
        padding: 120px 0 60px;
    }
    
    .gallery-mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1rem;
    }
    
    .mosaic-overlay h1 {
        font-size: 2.5rem;
    }
    
    .text-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .spiral-container::before {
        display: none;
    }
    
    .spiral-item {
        grid-template-columns: 1fr;
    }
    
    .color-palette-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .texture-wall-grid {
        grid-template-columns: 1fr;
    }
    
    .texture-image-single img {
        height: 400px;
    }
    
    .evolution-phase {
        grid-template-columns: 1fr;
    }
    
    .minimalist-grid {
        grid-template-columns: 1fr;
    }
    
    .immersive-content {
        grid-template-columns: 1fr;
    }
    
    .cta-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-action-buttons {
        flex-direction: column;
    }
    
    .cta-action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .gallery-hero-mosaic {
        padding: 100px 0 40px;
    }
    
    .mosaic-overlay h1 {
        font-size: 2rem;
    }
    
    .mosaic-overlay p {
        font-size: 1.1rem;
    }
    
    .text-block-main h2,
    .color-stories-title,
    .texture-wall-text h2,
    .evolution-title,
    .immersive-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .color-palette-grid {
        grid-template-columns: 1fr;
    }
    
    .texture-image-single img {
        height: 300px;
    }
    
    .visual-composition {
        height: 350px;
    }
    
    .spiral-content,
    .phase-content,
    .spotlight-content {
        padding: 1.5rem;
    }
    
    .side-text-item,
    .aside-item {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}
.policy-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    text-align: center;
}

.policy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a2f0d;
}

.policy-hero p {
    font-size: 1.3rem;
    color: #4a7c3a;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    padding: 80px 0;
    background: white;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 120px 0 60px;
    }
    
    .policy-hero h1 {
        font-size: 2.5rem;
    }
    
    .policy-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .policy-hero {
        padding: 100px 0 40px;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section p {
        font-size: 1rem;
    }
}
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    padding: 20px;
}

.thanks-content {
    text-align: center;
    max-width: 500px;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2f0d;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.thanks-btn {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-btn:hover {
    background: #2d5016;
}

@media (max-width: 768px) {
    .thanks-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 320px) {
    .thanks-content {
        padding: 1.5rem;
    }
    
    .thanks-icon {
        font-size: 3rem;
    }
    
    .thanks-content h1 {
        font-size: 1.8rem;
    }
    
    .thanks-content p {
        font-size: 1.1rem;
    }
}
.gallery-hero-asymmetric {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.gallery-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gallery-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a2f0d;
    line-height: 1.2;
}

.gallery-hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a7c3a;
}

.gallery-hero-btn {
    background: #4a7c3a;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-hero-btn:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

.gallery-floating-plants {
    position: relative;
    height: 500px;
}

.gallery-plant-main {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-plant-float {
    position: absolute;
    top: 20%;
    right: 0;
    width: 45%;
    border-radius: 15px;
    transform: rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .gallery-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .gallery-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .gallery-floating-plants {
        height: 300px;
        order: -1;
    }
    
    .gallery-plant-main {
        width: 100%;
    }
    
    .gallery-plant-float {
        display: none;
    }
}

@media (max-width: 320px) {
    .gallery-hero-asymmetric {
        padding: 120px 0 60px;
    }
    
    .gallery-hero-text h1 {
        font-size: 2rem;
    }
    
    .gallery-hero-text p {
        font-size: 1.1rem;
    }
    
    .gallery-floating-plants {
        height: 250px;
    }
}

.side-visual-item {
    border-radius: 15px;
    overflow: hidden;
    height: 290px;
}

.side-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-visual-item:hover img {
    transform: scale(1.05);
}

.gallery-masonry-showcase {
    padding: 100px 0;
    background: white;
}

.masonry-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a2f0d;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 200px 250px;
    gap: 1.5rem;
}

.masonry-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.masonry-item:nth-child(1) {
    grid-column: span 2;
}

.masonry-item:nth-child(2) {
    grid-row: span 2;
}

.masonry-item:nth-child(4) {
    grid-row: span 2;
}

.masonry-item:nth-child(5) {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.masonry-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.masonry-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-accordion-feature {
    padding: 100px 0;
    background: #f8fff8;
}

.accordion-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.accordion-feature-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.accordion-feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2f0d;
}

.accordion-feature-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.gallery-feature-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-feature-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8f5e8;
}

.gallery-feature-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-feature-header:hover {
    background: #e8f5e8;
}

.gallery-feature-header h3 {
    font-size: 1.2rem;
    color: #2d5016;
    margin: 0;
}

.gallery-feature-toggle {
    font-size: 1.5rem;
    color: #4a7c3a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.gallery-feature-panel {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-feature-panel p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 1.5rem;
}

.gallery-feature-item.active .gallery-feature-panel {
    max-height: 200px;
}

.gallery-feature-item.active .gallery-feature-toggle {
    transform: rotate(45deg);
}

.gallery-texture-display {
    padding: 100px 0;
    background: white;
}

.texture-display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.texture-display-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a2f0d;
}

.texture-display-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.texture-display-btn {
    display: inline-block;
    background: #4a7c3a;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.texture-display-btn:hover {
    background: #2d5016;
}

.texture-display-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.texture-display-main {
    grid-row: span 2;
}

.texture-display-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.texture-display-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-cta-visual {
    padding: 100px 0;
    background: linear-gradient(45deg, #2d5016, #4a7c3a);
    color: white;
}

.cta-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-visual-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-visual-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-visual-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-visual-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-visual-btn.primary {
    background: white;
    color: #2d5016;
}

.cta-visual-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-visual-btn:hover {
    transform: translateY(-2px);
}

.cta-visual-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .gallery-visual-hero {
        padding: 120px 0 60px;
    }
    
    .visual-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual-main {
        height: 400px;
    }
    
    .hero-visual-overlay h1 {
        font-size: 2.5rem;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .masonry-item:nth-child(1),
    .masonry-item:nth-child(5) {
        grid-column: span 1;
    }
    
    .masonry-item:nth-child(2),
    .masonry-item:nth-child(4) {
        grid-row: span 1;
    }
    
    .accordion-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-feature-visual img {
        height: 400px;
    }
    
    .texture-display-grid {
        grid-template-columns: 1fr;
    }
    
    .texture-display-images {
        height: 400px;
    }
    
    .cta-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-visual-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-visual-buttons {
        flex-direction: column;
    }
    
    .cta-visual-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 320px) {
    .gallery-visual-hero {
        padding: 100px 0 40px;
    }
    
    .hero-visual-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-visual-overlay p {
        font-size: 1.1rem;
    }
    
    .masonry-title,
    .texture-display-text h2,
    .cta-visual-content h2 {
        font-size: 2rem;
    }
    
    .accordion-feature-content h2 {
        font-size: 1.8rem;
    }
    
    .texture-display-images {
        height: 300px;
        grid-template-columns: 1fr;
    }
    
    .gallery-feature-header {
        padding: 1rem 1.5rem;
    }
    
    .gallery-feature-header h3 {
        font-size: 1.1rem;
    }
    
    .gallery-feature-panel {
        padding: 0 1.5rem;
    }
    
    .side-visual-item {
        height: 200px;
    }
}
.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 47, 13, 0.8), rgba(74, 124, 58, 0.6));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.mosaic-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.mosaic-overlay p {
    font-size: 1.3rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .mosaic-overlay {
        padding: 1.5rem;
    }
    
    .mosaic-overlay h1 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .mosaic-overlay p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mosaic-overlay {
        padding: 1rem;
    }
    
    .mosaic-overlay h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .mosaic-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .mosaic-overlay {
        padding: 0.8rem;
    }
    
    .mosaic-overlay h1 {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .mosaic-overlay p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}