/* Global Styles */
:root {
    --primary-green: #11742C;
    --dark-green: #0d5c21;
    --primary-orange: #FF6600;
    --text-dark: #2c3e50;
    --light-bg: #f5f6fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    /* Balanced padding for vertical centering */
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    z-index: 1000;
}

.logo-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}


/* Hero Section Redesign */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    transition-duration: 2s;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.5);
    /* Darker filter for better contrast */
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    /* Left aligned */
    transform: translateY(-50%);
    text-align: left;
    /* Left aligned */
    color: white;
    z-index: 10;
    width: 80%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    /* Backdrop for readability */
    padding: 40px;
    border-left: 5px solid var(--primary-orange);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    /* Bolder */
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease-out;
    font-weight: 300;
}

/* Button Redesign - Rectangular & Sharp */
.btn-whatsapp {
    background-color: var(--primary-green);
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    /* Sharp corners */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1.4s ease-out;
    border: 2px solid var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateX(10px);
    /* Different hover effect */
    box-shadow: none;
}

/* Services / Departments Section Redesign */
.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 4px;
    /* Sharp corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    border-bottom: 5px solid var(--primary-orange);
    /* Distinct bottom border */
    text-align: left;
    /* Explicit left align */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #eee;
    border-bottom-color: var(--primary-green);
    /* Color shift on hover */
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: transparent;
    color: var(--primary-green);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align icon */
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    /* Left align margin */
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover .icon-box {
    background-color: transparent;
    color: var(--primary-orange);
    transform: none;
    /* No rotation */
}

.service-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Location and Info Section */
.info-section {
    padding: 100px 0;
    background-color: white;
}

.info-card {
    background: var(--light-bg);
    border-radius: 4px;
    padding: 50px;
    box-shadow: none;
    border-left: 5px solid var(--primary-green);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: none;
}

.map-container {
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-table tr td {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #dee2e6;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table tr td:first-child {
    font-weight: 700;
    color: var(--primary-green);
    padding-right: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.delivery-badge {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 30px;
    font-weight: 700;
    text-transform: uppercase;
    animation: none;
    /* Remove pulse */
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 50px 0;
    text-align: center;
    border-top: 5px solid var(--primary-green);
}

footer a {
    color: white;
    text-decoration: underline;
}

/* Animations - Clean up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bootstrap Overrides for Brand Consistency */
.text-success {
    color: var(--primary-green) !important;
}

.btn-outline-success {
    color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 4px;
    /* Consistent shape */
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-overlay {
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Centered horizontally and vertically on mobile */
        padding: 25px;
        text-align: center;
        /* Center text on mobile for better balance */
        border-left: none;
        /* Remove left border */
        border-bottom: 5px solid var(--primary-orange);
        /* Add bottom border instead */
    }

    .logo-container {
        width: 80px;
        height: 80px;
    }

    .navbar-brand {
        top: 5px;
    }

    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        /* Full width button on mobile */
        justify-content: center;
    }
}