@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c4a3d;
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    overflow-x: hidden;
}

.container {
    padding: 0 20px;
    width: 100%;
}

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 50%, #0d2818 100%);
    color: #f4f7f1;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    animation: leafSway 20s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-3px); }
    50% { transform: translateX(-3px) translateY(5px); }
    75% { transform: translateX(3px) translateY(-2px); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #e8f5e8;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #d4edda;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #4caf50 0%, #66bb6a 100%);
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
    border-color: #81c784;
}

/* Reviews Section - Block 5 */
.reviews-section {
    background: linear-gradient(135deg, #81c784 0%, #a5d6a7 100%);
    color: #1b5e20;
    padding: 80px 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(76, 175, 80, 0.05) 35px,
            rgba(76, 175, 80, 0.05) 70px
        );
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2e7d32;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.3);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.3);
}

.review-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.review-item p {
    font-style: italic;
    margin-bottom: 15px;
    color: #2e7d32;
}

.rating {
    font-size: 1.2rem;
    color: #ff8f00;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Services Section - Block 3 */
.services-section {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: #e8f5e8;
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #c8e6c9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(200, 230, 201, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(200, 230, 201, 0.5);
}

.service-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c8e6c9;
}

.service-item p {
    margin-bottom: 20px;
    color: #e8f5e8;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #81c784;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Article Styling */
.info-article {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #81c784;
    position: relative;
    overflow: hidden;
}

.info-article::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(76, 175, 80, 0.03) 2deg, transparent 4deg);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-article h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.info-article p {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 2;
}

/* Specialists Section - Block 4 */
.specialists-section {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    color: #1b5e20;
    padding: 80px 0;
    position: relative;
}

.specialists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(76, 175, 80, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(76, 175, 80, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(76, 175, 80, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(76, 175, 80, 0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

.specialists-section .container {
    position: relative;
    z-index: 2;
}

.specialists-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2e7d32;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialist-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.specialist-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.3);
}

.specialist-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 15px;
}

.specialist-item p {
    color: #2e7d32;
    margin-bottom: 10px;
}

/* Subscription Section - Block 2 */
.subscription-section {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.subscription-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.subscription-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subscription-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.subscription-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2e7d32;
    outline: none;
    transition: all 0.3s ease;
}

.subscription-form input[type="email"]:focus {
    border-color: #c8e6c9;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    background: linear-gradient(45deg, #2e7d32 0%, #388e3c 100%);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-subscribe:hover {
    background: linear-gradient(45deg, #1b5e20 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

/* Contact Section - Block 6 */
.contact-section {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #e8f5e8;
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(76, 175, 80, 0.05) 100px,
            rgba(76, 175, 80, 0.05) 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(76, 175, 80, 0.05) 100px,
            rgba(76, 175, 80, 0.05) 102px
        );
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #c8e6c9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.address {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(200, 230, 201, 0.3);
    backdrop-filter: blur(10px);
}

.address h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #c8e6c9;
}

.address p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e8f5e8;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(200, 230, 201, 0.4);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: sepia(20%) contrast(1.2) saturate(1.3);
}

/* Copyright Section - Block 7 */
.copyright-section {
    background: linear-gradient(135deg, #0d2818 0%, #1b5e20 100%);
    color: #a5d6a7;
    padding: 40px 0;
    text-align: center;
    position: relative;
    border-top: 3px solid rgba(76, 175, 80, 0.3);
}

.copyright-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
}

.copyright-section .container {
    position: relative;
    z-index: 2;
}

.copyright-section p {
    font-size: 1rem;
    color: #a5d6a7;
}

/* Common section styles */
section {
    position: relative;
}

h2 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

h3 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .reviews-section,
    .services-section,
    .specialists-section,
    .subscription-section,
    .contact-section {
        padding: 60px 0;
    }

    .reviews-section h2,
    .services-section h2,
    .specialists-section h2,
    .subscription-section h2,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .reviews-grid,
    .services-grid,
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-item,
    .service-item,
    .specialist-item {
        padding: 25px;
    }

    .info-article {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .info-article h3 {
        font-size: 1.6rem;
    }

    .info-article p {
        font-size: 1rem;
    }

    .subscription-form {
        flex-direction: column;
        gap: 20px;
    }

    .subscription-form input[type="email"] {
        min-width: 100%;
        font-size: 1rem;
    }

    .btn-subscribe {
        width: 100%;
        font-size: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .address {
        padding: 25px;
    }

    .map-container iframe {
        height: 250px;
    }

    .copyright-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .reviews-section h2,
    .services-section h2,
    .specialists-section h2,
    .subscription-section h2,
    .contact-section h2 {
        font-size: 1.7rem;
    }

    .review-item,
    .service-item,
    .specialist-item,
    .address {
        padding: 20px;
    }

    .info-article {
        padding: 25px 15px;
    }

    .subscription-form input[type="email"],
    .btn-subscribe {
        padding: 12px 20px;
    }
}
