:root {
    --green: #2ecc71;
    --dark-green: #27ae60;
    --white: #ffffff;
    --light-bg: #f1f2f6;
    --text: #2f3542;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Header */
.fix-header { background-color: var(--white); padding: 15px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text); display: flex; align-items: center; }
.logo .green { color: var(--green); }
.logo .icon { margin-right: 5px; font-size: 1.5rem; }

.clean-nav ul { display: flex; gap: 20px; align-items: center; }
.clean-nav a { font-weight: 600; color: var(--text); font-size: 1rem; }
.clean-nav a:hover, .clean-nav a.active { color: var(--green); }

.btn-green { background-color: var(--green); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 3px 10px rgba(46, 204, 113, 0.3); }
.btn-green:hover { background-color: var(--dark-green); transform: translateY(-2px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--green); border-radius: 2px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease; border-left: 5px solid var(--green);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--green); }
.mobile-menu a { font-weight: 700; font-size: 1.1rem; color: var(--text); border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* Hero */
.hero-fix {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hero-card { background-color: rgba(255,255,255,0.95); padding: 40px; border-radius: var(--radius); text-align: center; max-width: 600px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.hero-card h1 { font-family: var(--font-heading); color: var(--text); font-size: 2.2rem; margin-bottom: 10px; line-height: 1.2; }
.hero-card p { font-size: 1.1rem; color: #666; margin-bottom: 30px; }

.service-search { display: flex; gap: 10px; margin-bottom: 20px; }
.service-search input { flex: 1; padding: 12px; border: 2px solid #eee; border-radius: 50px; font-family: var(--font-body); padding-left: 20px; }
.service-search input:focus { border-color: var(--green); outline: none; }
.service-search button { background-color: var(--green); color: var(--white); border: none; padding: 0 25px; border-radius: 50px; font-weight: bold; cursor: pointer; }
.tags span { display: inline-block; background: #eafff0; color: var(--green); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin: 0 5px; }

/* Categories */
.section-padding { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-family: var(--font-heading); color: var(--text); font-size: 2rem; margin-bottom: 10px; }

.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.cat-card { background-color: var(--white); padding: 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: 0.3s; border: 1px solid transparent; }
.cat-card:hover { border-color: var(--green); transform: translateY(-5px); }
.icon-circle { width: 70px; height: 70px; background-color: #eafff0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.cat-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; }
.cat-card p { font-size: 0.9rem; color: #777; }

/* Guarantee Banner */
.guarantee-banner { background-color: var(--green); color: var(--white); padding: 40px 0; margin-top: 40px; }
.g-flex { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.g-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.g-item h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 5px; }
.g-item p { font-size: 0.9rem; opacity: 0.9; }

/* Steps */
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: var(--white); padding: 20px; border-radius: var(--radius); position: relative; text-align: center; box-shadow: var(--shadow); }
.step-num { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background-color: var(--green); color: var(--white); font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; border: 4px solid var(--light-bg); }
.step-card img { height: 180px; width: 100%; object-fit: cover; margin-top: 15px; margin-bottom: 15px; }
.step-card h3 { font-family: var(--font-heading); color: var(--green); margin-bottom: 10px; }

/* Testimonials */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.review-box.highlight { border: 2px solid var(--green); }
.user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.avatar { width: 45px; height: 45px; background-color: #ccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #fff; }
.stars { color: #f1c40f; font-size: 1.1rem; margin-bottom: 10px; }
.review-box p { font-style: italic; color: #555; font-size: 0.95rem; }

/* Contact Form */
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background-color: var(--white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.booking-left h2 { font-family: var(--font-heading); color: var(--green); font-size: 2rem; margin-bottom: 20px; }
.urgent-call { margin-top: 30px; background-color: #fff0f0; padding: 20px; border-radius: 10px; color: #e74c3c; border: 1px solid #ffcccc; }
.urgent-call strong { display: block; font-size: 1.5rem; margin-top: 5px; }

.clean-form .form-group { margin-bottom: 20px; }
.clean-form label { display: block; font-weight: bold; margin-bottom: 8px; font-size: 0.9rem; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); transition: 0.3s; background-color: #fcfcfc; }
.clean-form input:focus, .clean-form select:focus, .clean-form textarea:focus { border-color: var(--green); outline: none; background-color: #fff; }
.submit-btn { width: 100%; padding: 15px; background-color: var(--green); color: var(--white); border: none; font-weight: bold; border-radius: 8px; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: var(--dark-green); }

/* Legal */
.policy-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius); }
.policy-content h1 { font-family: var(--font-heading); color: var(--text); }
.divider-green { height: 4px; width: 60px; background: var(--green); margin: 20px 0; border-radius: 2px; }
.policy-content h3 { color: var(--green); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.fix-footer { background-color: #2f3542; color: #fff; padding: 40px 0; margin-top: auto; text-align: center; }
.f-logo { font-family: var(--font-heading); font-weight: bold; font-size: 1.5rem; margin-bottom: 15px; }
.f-menu a { color: #ccc; margin: 0 10px; }
.f-menu a:hover { color: var(--green); }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
    .clean-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content { padding: 20px; }
    .category-grid, .steps-container, .review-grid, .booking-wrapper { grid-template-columns: 1fr; }
    .hero-card { padding: 20px; }
    .g-flex { flex-direction: column; gap: 20px; }
}