:root {
    --primary: #2E7D32;   /* Earth Green */
    --light-green: #E8F5E9;
    --accent: #E65100;    /* Orange for Buttons */
    --text-dark: #1F2937;
    --footer-bg: #0B1120; /* Deep Navy/Black from your image */
    --whatsapp: #25D366;
    --call: #0d6efd;
}

body { font-family: 'Outfit', sans-serif; color: var(--text-dark); background-color: #f8f9fa; margin: 0; padding: 0; }

/* --- Top Bar & Nav --- */
.top-bar { background-color: var(--primary); color: white; padding: 8px 0; font-size: 0.9rem; }
.top-bar a { color: white; text-decoration: none; font-weight: 500; }

.navbar { box-shadow: 0 4px 12px rgba(0,0,0,0.05); background: white; padding: 12px 0; }
.navbar-brand { font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.nav-link { font-weight: 600; color: var(--text-dark); margin: 0 10px; }
.nav-link:hover { color: var(--primary); }

/* --- Buttons --- */
.btn-main { background-color: var(--accent); color: white; padding: 12px 35px; border-radius: 50px; font-weight: 600; border: none; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-main:hover { background-color: #bf360c; color: white; transform: translateY(-2px); }

/* --- Hero & Headers --- */
.hero-section { background-size: cover; background-position: center; height: 500px; display: flex; align-items: center; position: relative; }
.page-header { background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=1920&auto=format&fit=crop'); background-size: cover; background-position: center; padding: 80px 0; color: white; text-align: center; }

/* --- Content & Services --- */
.service-box { background: white; border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 3px solid transparent; height: 100%; }
.service-box:hover { transform: translateY(-5px); border-bottom-color: var(--primary); }
.icon-wrapper { width: 55px; height: 55px; background: var(--light-green); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.3rem; }
.service-box h5 { font-size: 1.1rem; font-weight: 700; }

.content-box { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 30px; }

/* --- Lists & Badges --- */
.check-list li { margin-bottom: 12px; display: flex; align-items: center; font-size: 1.05rem; }
.check-list i { color: var(--primary); margin-right: 12px; font-size: 1.2rem; }
.keyword-badge { background: #f1f8e9; color: var(--primary); padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; display: inline-block; margin: 0 5px 5px 0; }

/* --- Location Cards --- */
.location-card { display: flex; align-items: center; background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 15px 20px; text-decoration: none; color: var(--text-dark); transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02); height: 100%; }
.location-card i { color: var(--accent); font-size: 1.2rem; margin-right: 12px; transition: 0.3s; }
.location-card span { font-weight: 600; font-size: 1rem; }
.location-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15); border-color: var(--primary); color: var(--primary); }
.location-card:hover i { transform: scale(1.2); }

/* --- Sidebar Widgets --- */
.sidebar-widget { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 30px; border: 1px solid #eee; }
.area-list-link { display: block; padding: 10px 0; border-bottom: 1px solid #eee; color: var(--text-dark); text-decoration: none; font-weight: 500; transition: 0.3s; }
.area-list-link:hover { color: var(--primary); padding-left: 5px; }
.area-list-link i { margin-right: 10px; color: var(--accent); }

/* --- FOOTER DESIGN (Dark Navy Style) --- */
.footer { 
    background-color: var(--footer-bg); 
    color: #94a3b8; 
    padding-top: 70px; 
    font-size: 1rem; 
    border-top: 1px solid #1e293b;
}
.footer h5 { color: white; font-weight: 700; margin-bottom: 25px; font-size: 1.2rem; }
.footer a { color: #94a3b8; text-decoration: none; transition: 0.2s; }
.footer a:hover { color: white; padding-left: 3px; }

/* The Header for Areas (Green Text) */
.footer-areas-title { 
    color: var(--primary); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    border-bottom: 1px solid #1e293b; 
    padding-bottom: 15px; 
    display: block; 
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact li { margin-bottom: 15px; display: flex; align-items: start; }
.footer-contact i { margin-top: 5px; margin-right: 15px; color: var(--accent); }

/* --- Floating Widget --- */
.floating-widget { position: fixed; bottom: 25px; right: 25px; z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
.widget-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-decoration: none; transition: 0.3s;}
.widget-btn:hover { transform: scale(1.1); color: white; }
.btn-whatsapp { background-color: var(--whatsapp); animation: pulse-green 2s infinite; }
.btn-call-float { background-color: var(--call); }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

@media (max-width: 768px) {
    .top-bar {
        padding: 12px 0; /* More space for fingers */
        font-size: 1.2rem; /* Bigger icons */
    }
    /* Hide top bar logic is removed, so just ensure it looks good */
}

/*@media (max-width: 768px) { .top-bar { display: none; } }*/
.copyright-bar {
    margin-top: 21px;
    text-align: center;
}
img.logo-icon {
    width: 70px;
}