@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    max-width: 1180px;
    margin: 0 auto;
    background: #f7fafc;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #2b6cb0;
    text-align: center;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Hero Section - Block 1 */
#hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 430px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

#hero h2 {
    color: rgba(255,255,255,0.9);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

#hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #48bb78, #38a169);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.6);
    background: linear-gradient(45deg, #38a169, #2f855a);
}

/* Reviews Section */
#reviews {
    background: #f7fafc;
    padding: 5rem 0;
}

#reviews h2 {
    color: #2d3748;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #48bb78;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review h3 {
    color: #2b6cb0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.review p {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1rem;
}

.rating {
    color: #f6ad55;
    font-size: 1.2rem;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    padding: 5rem 0;
}

#services h2 {
    color: #2d3748;
}

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

.service {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #48bb78;
}

.service h3 {
    color: #2b6cb0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #48bb78;
    font-family: 'Playfair Display', serif;
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.article-section h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.article-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Specialists Section */
#specialists {
    background: #2d3748;
    color: #ffffff;
    padding: 5rem 0;
}

#specialists h2 {
    color: #ffffff;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialist {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.specialist:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.specialist h3 {
    color: #81e6d9;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.specialist p {
    color: rgba(255,255,255,0.9);
}

/* Subscribe Section */
#subscribe {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

#subscribe h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

#subscribe p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.subscribe-form input[type="email"]:focus {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subscribe-button {
    background: #2d3748;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-button:hover {
    background: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.4);
}

/* Contact Section */
#contact {
    background: #f7fafc;
    padding: 5rem 0;
}

#contact h2 {
    color: #2d3748;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.address {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    height: fit-content;
}

.address h3 {
    color: #2b6cb0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.address p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map iframe {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

/* Footer */
footer {
    background: #2d3748;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    #hero {
        min-height: 430px;
        padding: 3rem 0;
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    #hero h2 {
        font-size: 1.5rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

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

    .service,
    .specialist,
    .review {
        padding: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 1rem;
    }

    .subscribe-form input[type="email"] {
        margin-bottom: 0;
    }

    .article-section {
        padding: 2rem;
        margin-top: 2rem;
    }

    .article-section h3 {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    #hero h1 {
        font-size: 2.3rem;
    }

    #hero h2 {
        font-size: 1.3rem;
    }

    .service,
    .specialist,
    .review,
    .address {
        padding: 1.5rem;
    }

    .article-section {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
