/* WAANEIZA PREMIUM DESIGN SYSTEM
   Palette: White, Sage Green (#8BA88E), Clinical Blue (#E3E9F2), Slate (#2C3E50)
*/

:root {
    --primary: #8BA88E;
    --primary-dark: #6b826d;
    --secondary: #2C3E50;
    --bg-light: #FFFFFF;
    --bg-alt: #F9F7F2; /* Warm Beige */
    --clinical-blue: #E3E9F2;
    --text-main: #333333;
    --text-muted: #555555;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* Navigation - Modern Minimalist */
nav {
    padding: 20px 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 1000;
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { 
    font-size: 1.4rem; font-weight: 800; letter-spacing: 2px; color: var(--secondary); 
    text-transform: uppercase; text-decoration: none;
}

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 500; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

.hero {
    padding: 100px 0 10px; /* Slightly adjusted padding */
    background-color: var(--beige); /* Clean background color instead of an image */
    overflow: hidden; /* Prevents scrollbars if image animation is added later */
}

.hero-content { max-width: 700px; }
.badge { 
    background: var(--clinical-blue); color: var(--secondary); 
    padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; 
    text-transform: uppercase; display: inline-block; margin-bottom: 20px;
}

h1 { font-size: 3.8rem; line-height: 1.1; color: var(--secondary); margin-bottom: 30px; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px;}

/* Buttons */
.btn {
    display: inline-block; padding: 18px 36px; border-radius: 4px; 
    font-weight: 700; text-decoration: none; transition: var(--transition);
    cursor: pointer; border: none; font-size: 1rem;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px rgba(139, 168, 142, 0.4); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Services Grid */
.section-padding { padding: 10px 0; }
.bg-beige { background-color: var(--bg-alt); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card {
    background: white; padding: 50px; border-radius: 8px;
    border: 1px solid #f0f0f0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.service-card h3 { margin-bottom: 15px; color: var(--secondary); }

/* Footer */
footer { background: var(--secondary); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-item { margin-bottom: 20px; }
.contact-item small { display: block; color: var(--primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .nav-links { display: none; }
}
/* --- ADD TO THE BOTTOM OF STYLE.CSS --- */

/* New Hero Image Styling */
.align-center { align-items: center; } /* Ensures text is centered vertically with image */

.hero-img-style {
    height: auto; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Premium soft shadow */
    border-radius: 8px; /* Modern rounded corners */
    object-fit: cover;
    max-height: 400px;
    width: 100%;
}

/* Responsive Hero adjustment for mobile */
@media (max-width: 900px) {
    .hero .grid-2 {
        grid-template-columns: 1fr; /* Stack vertically on phones */
        text-align: center;
        gap: 40px;
    }
    
    .hero-content { margin: auto; }
}