/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #ff6600;
}

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

/* Orange Brand Colors */
:root {
    --orange-primary: #ff6600;
    --orange-secondary: #ff8533;
    --orange-dark: #cc5200;
    --orange-light: #ffe6d9;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --gray-dark: #333333;
}

/* Block 1: Hero/Offer Section */
#hero {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 50%, #990000 100%);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    color: var(--white);
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
}

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

#hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--orange-light);
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--orange-primary);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Block Alternating Colors */
#products {
    background: var(--white);
    padding: 80px 0;
}

#reviews {
    background: var(--gray-light);
    padding: 80px 0;
}

#specialists {
    background: var(--white);
    padding: 80px 0;
}

#newsletter {
    background: var(--orange-primary);
    color: var(--white);
    padding: 80px 0;
}

#contact {
    background: var(--gray-light);
    padding: 80px 0;
}

/* Section Headers */
h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

#newsletter h2 {
    color: var(--white);
}

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

.product {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,102,0,0.2);
}

.product h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.product .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.product p:not(.price) {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Article Styling */
.article {
    background: linear-gradient(135deg, var(--orange-light) 0%, #fff5f0 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--orange-primary);
    box-shadow: 0 5px 15px rgba(255,102,0,0.1);
    margin-top: 40px;
}

.article h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--orange-dark);
    margin-bottom: 20px;
}

.article p {
    color: var(--gray-dark);
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

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

.review {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--orange-primary);
}

.review h4 {
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.rating {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

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

.specialist {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.specialist:hover {
    border-color: var(--orange-primary);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(255,102,0,0.1);
}

.specialist h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.specialist p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Newsletter Form */
#newsletter p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.newsletter-form button {
    background: var(--white);
    color: var(--orange-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.newsletter-form button:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

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

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

/* Footer */
footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

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

    #hero {
        min-height: 350px;
        padding: 40px 0;
    }

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

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

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

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .product,
    .review,
    .specialist {
        padding: 20px;
    }

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

    .article h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

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

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Reduce section padding on mobile */
    #products,
    #reviews,
    #specialists,
    #newsletter,
    #contact {
        padding: 50px 0;
    }
}

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

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

    h2 {
        font-size: 1.8rem;
    }

    .article h3 {
        font-size: 1.3rem;
    }

    .product .price {
        font-size: 1.6rem;
    }
}
