/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins: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: #333;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

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

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-cta {
    margin-top: 2.5rem;
}

.hero-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ff5252, #ff7979);
}

/* Reviews Section */
.reviews-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-bottom: 4px solid #e9ecef;
}

.reviews-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.reviews-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

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

.review-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease;
}

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

.review-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.review-position {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-text {
    color: #34495e;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Specialists Section */
.specialists-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    border-bottom: 4px solid #5a67d8;
}

.specialists-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

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

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

.specialist-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.specialist-position {
    color: #e8f4f8;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.specialist-description {
    line-height: 1.7;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    background-color: #ecf0f1;
    padding: 80px 0;
    border-bottom: 4px solid #bdc3c7;
}

.services-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #e74c3c;
    transition: transform 0.3s ease;
}

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

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    font-family: 'Poppins', sans-serif;
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(116, 185, 255, 0.3);
}

.article-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.article-section p:last-child {
    margin-bottom: 0;
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #d1ecf1;
}

.subscribe-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.subscribe-section p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s ease;
    background: white;
}

.subscribe-form input[type="email"]:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.subscribe-button {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
    background: linear-gradient(45deg, #27ae60, #229954);
}

/* Contact Section */
.contact-section {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0;
    border-bottom: 4px solid #34495e;
}

.contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.address h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.address p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

.footer p {
    margin: 0;
}

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

    .hero-section {
        min-height: 450px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

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

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

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

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

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

    .subscribe-form input[type="email"],
    .subscribe-button {
        width: 100%;
    }

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

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

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

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

    .article-section {
        padding: 1.5rem;
    }

    .subscribe-form input[type="email"],
    .subscribe-button {
        padding: 14px 18px;
        font-size: 1rem;
    }
}
