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

/* CSS 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: #f8f9fa;
}

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

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

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Block 1: Hero Section - Montreal Forest Green */
#hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #2d5016 100%);
    color: #ffffff;
    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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    z-index: 1;
}

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

#hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e8f5e8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

/* Block 2: Contact Form - Montreal Blue */
#contact-form {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: #ffffff;
    padding: 60px 0;
}

#contact-form h2 {
    color: #ffffff;
    text-align: center;
}

#contact-form p {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"] {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

button[type="submit"] {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #229954, #27ae60);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4);
}

/* Block 3: Services - Light Gray */
#services {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 60px 0;
}

#services h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.service {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #27ae60;
}

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

.service h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
    margin-top: 15px;
}

/* Article Styling */
.article {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: #ecf0f1;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-left: 5px solid #e74c3c;
}

.article h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.article p {
    color: #ecf0f1;
    line-height: 1.7;
}

/* Block 4: Specialists - Warm Orange */
#specialists {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #ffffff;
    padding: 60px 0;
}

#specialists h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.specialist {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.specialist:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.specialist h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.specialist p:first-of-type {
    font-weight: 500;
    color: #f39c12;
    margin-bottom: 15px;
}

/* Block 5: Reviews - Purple */
#reviews {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: #ffffff;
    padding: 60px 0;
}

#reviews h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.review {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.review h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.rating {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Block 6: Contact - Dark Gray */
#contact {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 60px 0;
}

#contact h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info address {
    font-style: normal;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.contact-info p {
    font-size: 1.1rem;
    color: #bdc3c7;
}

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

/* Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

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

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

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

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

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

    input[type="email"],
    button[type="submit"] {
        padding: 12px 20px;
        font-size: 1rem;
    }

    form {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    body {
        margin: 0 10px;
    }

    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #hero {
        min-height: 300px;
        padding: 30px 0;
    }

    .service,
    .specialist,
    .review,
    .article {
        padding: 15px;
    }

    .services-grid,
    .specialists-grid,
    .reviews-grid {
        gap: 15px;
    }
}
