:root {
    --primary: #2a9d8f;
    --dark: #264653;
    --light: #f4f7f6;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
    color: var(--dark); 
    scroll-behavior: smooth; 
    background-color: var(--white);
}
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Navigation - Modern Contrast */
nav { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(8px);
    padding: 10px 0; 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { display: flex; align-items: center; gap: 15px; }
.nav-logo { height: 50px; width: auto; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav a { text-decoration: none; color: var(--dark); font-weight: bold; font-size: 0.95rem; }
nav a:hover { color: var(--primary); }

/* Hero Section */
header { 
    padding: 140px 0; 
    text-align: center; 
    background-size: cover; 
    background-position: center; 
    background-image: linear-gradient(rgba(42, 157, 143, 0.1), rgba(244, 247, 246, 0.95)), url('images/LivingRoom.jpg');
}
header h1 { font-size: 3.5rem; margin-bottom: 15px; line-height: 1.1; color: var(--dark); }
.hero-subtext { font-size: 1.3rem; margin-bottom: 25px; color: #444; }
.pricing-badge { 
    display: inline-block; 
    background: var(--primary); 
    color: white; 
    padding: 10px 25px; 
    border-radius: 50px; 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}
.service-area { font-weight: 700; font-size: 1.1rem; color: var(--dark); }

/* Buttons */
.btn { 
    background: var(--dark); 
    color: var(--white); 
    padding: 15px 40px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    display: inline-block; 
    transition: background 0.3s ease; 
    border: none;
}
.btn:hover { background: var(--primary); }

/* Cards Grid */
section { padding: 90px 0; text-align: center; }
.grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    margin-top: 50px; 
}
.card { 
    background: var(--white); 
    flex: 1 1 300px; 
    max-width: 340px; 
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    border: 1px solid #eaeaea; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { 
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); 
    border-color: var(--primary); 
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.service-list { 
    text-align: left; 
    list-style: none; 
    padding: 0; 
    font-size: 0.9rem; 
    margin-bottom: 25px;
    flex-grow: 1; 
}
.service-list li { margin-bottom: 8px; position: relative; padding-left: 20px; }
.service-list li::before { 
    content: "✓"; 
    position: absolute; 
    left: 0; 
    color: var(--primary); 
    font-weight: bold; 
}
.card .btn { width: 100%; text-align: center; padding: 12px; font-size: 0.9rem; margin-top: auto; }

/* Before & After Section */
.results-section { background: var(--white); }
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.results-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.results-img-split { display: flex; height: 300px; }
.img-box { flex: 1; position: relative; overflow: hidden; border-right: 2px solid white; }
.img-box:last-child { border-right: none; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.img-box .label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(38, 70, 83, 0.85);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}
.results-content { padding: 25px; text-align: left; }

/* Form & Footer */
.booking-section { background: var(--light); }
.contact-form { 
    max-width: 600px; margin: 40px auto; text-align: left; background: var(--white); 
    padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; font-size: 1rem; }
.btn-submit { width: 100%; border: none; cursor: pointer; background: var(--primary); }

footer { 
    padding: 60px 0; background: var(--dark); color: white; font-size: 0.9rem; 
    border-top: 6px solid var(--primary); 
}

@media (max-width: 768px) {
    header h1 { font-size: 2.5rem; }
    nav .container { flex-direction: column; gap: 15px; }
    .results-grid { grid-template-columns: 1fr; }
    .results-img-split { height: 200px; }
}