@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: #2c3e50;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #f8fafc;
}

.container {
    padding: 0 20px;
}

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, #003d82 0%, #0066cc 35%, #0080ff 100%);
    color: white;
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%);
    z-index: 1;
}

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

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

.hero-section h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #003d82;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

.btn-secondary:hover {
    background: white;
    color: #003d82;
    transform: translateY(-2px);
}

/* Specialists Section - Block 4 */
.specialists-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.specialists-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.specialist-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
    border-left: 5px solid #0066cc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
}

.specialist-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #003d82;
    margin-bottom: 8px;
}

.specialist-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.specialist-description {
    line-height: 1.7;
    color: #475569;
}

/* Products Section - Block 3 */
.products-section {
    background: linear-gradient(135deg, #003d82 0%, #1e40af 100%);
    color: white;
    padding: 80px 0;
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.product-card.featured {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

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

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

/* Article Section */
.article-section {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto 0;
    max-width: 800px;
    border-left: 5px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #003d82;
}

.article-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* Reviews Section - Block 5 */
.reviews-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 80px 0;
}

.reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #003d82;
}

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

.review-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
    position: relative;
}

.review-card::before {
    content: '"';
    font-size: 4rem;
    color: #0066cc;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #475569;
}

.review-author {
    font-weight: 600;
    color: #003d82;
    text-align: right;
}

/* Subscribe Section - Block 2 */
.subscribe-section {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    padding: 80px 0;
    text-align: center;
}

.subscribe-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.subscribe-section p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: #0066cc;
}

/* Contact Section - Block 6 */
.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.address p {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

/* Footer - Block 7 */
.footer {
    background: #003d82;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section h2 {
        font-size: 1.2rem;
    }

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

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

    .btn {
        min-width: 200px;
    }

    .specialists-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        transform: none;
    }

    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

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

    .article-section {
        margin: 20px;
        padding: 25px;
    }

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

@media (max-width: 480px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-section .container {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .specialist-card,
    .product-card,
    .review-card {
        padding: 25px;
    }

    .article-section {
        padding: 20px;
        margin: 10px;
    }

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