/* Base & Typography */
body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Colors */
.text-success { color: #28a745 !important; }
.text-warning { color: #ff9800 !important; }
.bg-success { background-color: #28a745 !important; }
.bg-warning { background-color: #ff9800 !important; }
.btn-warning {
    background-color: #ff9800;
    border-color: #ff9800;
    color: #fff;
}
.btn-warning:hover {
    background-color: #e68900;
    border-color: #e68900;
    color: #fff;
}

/* Topbar */
.topbar {
    background-color: #1b5e20; /* Dark green */
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}
.nav-link {
    color: #333 !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #28a745 !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #ff9800;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section / Slider Placeholder */
.hero {
    background: linear-gradient(rgba(27, 94, 32, 0.8), rgba(27, 94, 32, 0.8)), url('https://images.unsplash.com/photo-1558611997-7501ea9171e6?q=80&w=1920&auto=format&fit=crop') center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Services */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #28a745;
}
.service-icon {
    font-size: 40px;
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Footer */
.footer {
    background-color: #1b5e20;
    color: white;
}

/* Floating WhatsApp */
.float-wp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: 0.3s;
}
.float-wp:hover {
    background-color: #1ebd5a;
    color: white;
    transform: scale(1.1);
}
.wp-icon {
    margin-top: 15px;
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1528190336454-13cd56b45b5a?q=80&w=1920&auto=format&fit=crop') center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.mobile-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-bottom-bar .btn-wp {
    background-color: #28a745; /* Site green */
}
.mobile-bottom-bar .btn-call {
    background-color: #ff9800; /* Site orange */
}
.mobile-bottom-bar i {
    font-size: 20px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .float-wp {
        display: none !important;
    }
    body {
        padding-bottom: 54px;
    }
}
@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none !important;
    }
}
