:root {
    --dark-grey: #2c3e50;
    --green: #27ae60;
    --light-grey: #ecf0f1;
    --white: #ffffff;
    --text-color: #333;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.main-header { padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: rgba(255,255,255,0.95); z-index: 1000; }
.flex-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 500; letter-spacing: 2px; color: var(--dark-grey); }
.green { color: var(--green); }

.desktop-nav a { margin-left: 20px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: var(--dark-grey); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--green); }

.btn-outline { border: 2px solid var(--dark-grey); padding: 8px 20px; border-radius: 0; transition: 0.3s; }
.btn-outline:hover { background-color: var(--dark-grey); color: var(--white) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--dark-grey); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); font-size: 1.5rem; background: none; border: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { color: var(--white); font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; text-transform: uppercase; }

/* Hero */
.hero-section {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.pexels.com/photos/1409999/pexels-photo-1409999.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; margin-bottom: 20px; letter-spacing: 2px; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }
.cta-btn { background-color: var(--green); color: var(--white); padding: 15px 30px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.cta-btn:hover { background-color: #219150; }

/* Sections */
.content-padding { padding: 80px 0; }
.section-title { text-align: center; margin: 60px 0 40px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--dark-grey); }
.line { width: 60px; height: 3px; background-color: var(--green); margin: 10px auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.service-card { background: var(--light-grey); padding: 40px; text-align: center; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 10px; color: var(--dark-grey); }

/* About */
.page-header { background-color: var(--dark-grey); color: var(--white); text-align: center; padding: 60px 0; }
.page-header h1 { font-family: var(--font-head); letter-spacing: 2px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-grid h2 { font-family: var(--font-head); color: var(--green); margin-bottom: 20px; }
.check-list { list-style: none; margin-top: 20px; font-weight: bold; }
.check-list li::before { content: "✓"; color: var(--green); margin-right: 10px; }
.image-block img { width: 100%; box-shadow: 10px 10px 0 var(--green); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { border: 1px solid #ddd; padding: 30px; border-top: 4px solid var(--green); }
.stars { color: #f1c40f; margin-bottom: 10px; }
.review-card p { font-style: italic; color: #666; margin-bottom: 15px; }
.author { font-weight: bold; font-family: var(--font-head); text-transform: uppercase; font-size: 0.9rem; }

/* Contact Form */
.contact-wrapper { display: flex; gap: 50px; background-color: var(--light-grey); padding: 50px; }
.contact-info { flex: 1; }
.contact-info h2 { font-family: var(--font-head); margin-bottom: 20px; color: var(--dark-grey); }
.info-item { margin-top: 20px; }
.info-item strong { display: block; color: var(--green); }

.modern-form { flex: 1.5; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: var(--font-body); }
.submit-btn { background-color: var(--dark-grey); color: var(--white); padding: 12px 30px; border: none; cursor: pointer; font-weight: bold; text-transform: uppercase; transition: 0.3s; }
.submit-btn:hover { background-color: var(--green); }

/* Legal */
.legal-text h1 { font-family: var(--font-head); }
.legal-text h3 { margin-top: 30px; margin-bottom: 10px; color: var(--dark-grey); }

/* Footer */
.main-footer { background-color: #222; color: #888; padding: 40px 0; margin-top: auto; }
.footer-cols { display: flex; justify-content: space-between; align-items: center; }
.footer-cols h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 5px; }
.footer-cols.right { text-align: right; }
.footer-cols a { color: #aaa; text-decoration: underline; font-size: 0.8rem; }

@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .grid-3, .about-grid, .testimonials-grid, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
    .footer-cols { flex-direction: column; text-align: center; gap: 20px; }
}