:root {
    --primary: #2a9d8f; /* Brand Teal */
    --dark: #264653;    /* Brand Dark Navy */
    --light: #f4f7f6;   /* Light Grey/Green background */
    --white: #ffffff;
}

/* --- Base Styles --- */
* { 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 (Contrast Boost) --- */
nav { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(8px); /* Modern frosted glass effect */
    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; transition: color 0.3s; }
nav a:hover { color: var(--primary); }

/* --- Hero Section (Teal Tint Overlay) --- */
header { 
    padding: 140px 0; 
    text-align: center; 
    background-size: cover; 
    background-position: center; 
    /* Subtle teal tint transition to clean white */
    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; }
.hero-info { margin-bottom: 35px; }
.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); color: white; }

/* --- Service 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: 350px; 
    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; }
.card h3 { margin-bottom: 10px; color: var(--dark); }
.card p { font-size: 0.95rem; color: #666; margin-bottom: 15px; }

/* --- Service Lists --- */
.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; 
}

/* --- Before & After Styling --- */
.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); /* Matches var(--dark) */
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.results-content { padding: 25px; text-align: left; }
.results-content h3 { color: var(--dark); margin-bottom: 8px; }

/* --- Booking Form --- */
.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; color: var(--dark); }
.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); }
.btn-submit:hover { background: var(--dark); }

/* --- Footer (Teal Accent Boost) --- */
footer { 
    padding: 60px 0; 
    background: var(--dark); 
    color: white; 
    font-size: 0.9rem; 
    border-top: 6px solid var(--primary); /* The Contrast Boost line */
}

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