:root {
    --deep-forest-green: #0F3D2E;
    --charcoal-grey: #2B2B2B;
    --mist-white: #F5F7F6;
    --steel-grey: #6B7280;
    --muted-gold: #C2A14D;
    --pure-white: #FFFFFF;
    --corporate-shadow: 0 4px 20px rgba(15, 61, 46, 0.08);
    --whatsapp-green: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--charcoal-grey);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--pure-white);
}

.top-bar {
    background: var(--charcoal-grey);
    color: var(--pure-white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    width: 100%;
    position: relative;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-bar-info a:hover {
    color: var(--muted-gold);
}

.top-bar-info span.mx-3 {
    color: rgba(255, 255, 255, 0.5);
}

.top-bar-info i {
    color: var(--muted-gold);
    font-size: 0.9rem;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background: var(--muted-gold);
    color: var(--charcoal-grey);
}


.navbar {
    background: var(--deep-forest-green) !important;
    padding: 0 !important;
    position: sticky;
    top: 0;
    z-index: 1040;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.6rem;
    background: transparent;
    border-radius: 4px;
    color: var(--muted-gold);
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 28px 18px !important;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pure-white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--muted-gold);
    color: var(--charcoal-grey) !important;
    border: 2px solid var(--muted-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--muted-gold) !important;
    transform: translateY(-2px);
    box-shadow: var(--corporate-shadow);
}

.btn-outline-primary {
    color: var(--muted-gold);
    border: 2px solid var(--muted-gold);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--muted-gold);
    color: var(--charcoal-grey);
}

.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin-top: 0 !important;
    padding: 30px 0 25px !important;
    border: none !important;
    border-top: 3px solid var(--muted-gold) !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    background: var(--pure-white) !important;
    z-index: 1050 !important;
}

.mega-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-content .row {
    margin: 0 -10px;
}

.mega-menu-content .col-lg-2 {
    padding: 0 10px;
}

.mega-menu-section-title {
    color: var(--deep-forest-green);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(194, 161, 77, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-menu-section-title i {
    color: var(--muted-gold);
    font-size: 0.9rem;
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.mega-menu-links li {
    margin-bottom: 6px;
}

.mega-menu-links li a {
    color: var(--steel-grey);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    padding: 5px 0;
    transition: all 0.2s ease;
    font-weight: 500;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.mega-menu-links li a:hover {
    color: var(--deep-forest-green);
    border-left-color: var(--muted-gold);
    padding-left: 12px;
}

.mega-menu-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--muted-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 8px;
    padding: 6px 14px;
    border: 1.5px solid var(--muted-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
    background: transparent;
}

.mega-menu-view-all:hover {
    background: var(--muted-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
}


.hero-section {
    background: linear-gradient(rgba(15, 61, 46, 0.9), rgba(15, 61, 46, 0.8));
    color: var(--pure-white);
    padding: 120px 0 80px;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer {
    background: var(--charcoal-grey);
    color: var(--pure-white);
    padding: 70px 0 25px;
    margin-top: 80px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-company {
    margin-bottom: 30px;
}

.footer-company h3 {
    color: var(--pure-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-company p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--muted-gold);
    width: 18px;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--muted-gold);
}

.footer-links-section {
    margin-bottom: 30px;
}

.footer-links-section h4 {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--muted-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--muted-gold);
    transform: translateX(5px);
}

.footer-brochure {
    margin-bottom: 30px;
}

.footer-brochure h4 {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-brochure h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--muted-gold);
}

.footer-brochure p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    color: var(--muted-gold);
    border: 2px solid var(--muted-gold);
    background: transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-download-btn:hover {
    background: var(--muted-gold);
    color: var(--charcoal-grey);
    transform: translateY(-3px);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--whatsapp-green);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: var(--deep-forest-green);
    color: var(--muted-gold);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1.5px solid var(--muted-gold);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--muted-gold);
    color: var(--deep-forest-green);
}

section {
    padding: 80px 0;
    width: 100%;
}

.section-title {
    color: var(--charcoal-grey);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--muted-gold);
}

.section-title.center {
    text-align: center;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--steel-grey);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--corporate-shadow);
    transition: all 0.3s ease;
    height: 100%;
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--charcoal-grey);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-text {
    color: var(--steel-grey);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}


@media (max-width: 767px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 15px;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .top-bar-info span.mx-3 {
        display: none;
    }
    
    .top-bar-social {
        justify-content: center;
    }
    
    .navbar-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .nav-link {
        padding: 12px 15px !important;
    }
    
    .mega-menu .dropdown-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        left: 0 !important;
        margin: 10px 0 !important;
        padding: 20px !important;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-links-section h4,
    .footer-brochure h4 {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-company {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: span 1;
        margin-bottom: 0;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 70%;
        height: 2px;
        background: var(--muted-gold);
        transition: transform 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        transform: translateX(-50%) scaleX(1);
    }
    
    .mega-menu .dropdown-menu {
        display: none !important;
    }
    
    .mega-menu:hover .dropdown-menu,
    .mega-menu.show .dropdown-menu {
        display: block !important;
        animation: slideDown 0.3s ease-out !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
}

@media (min-width: 1200px) {
    .section-container,
    .hero-content,
    .footer-container,
    .navbar-container,
    .top-bar-content {
        max-width: 1200px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}