:root {
    --theme-olive: #6b8e23;
    --theme-olive-dark: #556b2f;
    --theme-brown: #4a2c1a;
    --theme-brown-dark: #2f1b0f;
    --theme-orange: #ffffff;
    --theme-orange-dark: #ffffff;
    --theme-white: #ffffff;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background-color: var(--theme-white);
    color: var(--theme-brown);
}

a {
    color: var(--theme-brown);
}

a:hover {
    color: var(--theme-brown-dark);
}

.bg-primary {
    background-color: var(--theme-olive) !important;
}

.bg-dark {
    background-color: var(--theme-olive) !important;
}

.bg-light {
    background-color: var(--theme-white) !important;
}

.text-primary {
    color: var(--theme-brown) !important;
}

.btn-primary {
    background-color: var(--theme-brown);
    border-color: var(--theme-brown);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--theme-brown-dark);
    border-color: var(--theme-brown-dark);
}

.btn-outline-primary {
    color: var(--theme-brown);
    border-color: var(--theme-brown);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: var(--theme-white);
    background-color: var(--theme-brown);
    border-color: var(--theme-brown);
}

.btn-warning {
    background-color: var(--theme-olive);
    border-color: var(--theme-olive);
    color: var(--theme-orange);
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: var(--theme-olive-dark);
    border-color: var(--theme-olive-dark);
    color: var(--theme-white);
}

.navbar.bg-primary .navbar-brand,
.navbar.bg-primary .brand-name,
.navbar.bg-primary .nav-link,
.navbar.bg-primary .navbar-toggler {
    color: var(--theme-orange) !important;
}

.navbar.bg-primary .nav-link.active,
.navbar.bg-primary .nav-link:hover,
.navbar.bg-primary .nav-link:focus {
    color: var(--theme-orange-dark) !important;
}

.navbar.bg-primary .navbar-toggler {
    border-color: var(--theme-orange);
    position: relative;
    z-index: 1101;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.navbar.bg-primary .navbar-toggler-icon {
    filter: none;
}

.navbar-brand {
    min-width: 0;
}

.company-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}

.brand-name {
    font-size: 1.12rem;
    line-height: 1.15;
    white-space: normal;
}

.hero {
    background:
        linear-gradient(rgba(74, 44, 26, 0.9), rgba(47, 27, 15, 0.85)),
        url("https://images.unsplash.com/photo-1581092335397-9583eb92d232?auto=format&fit=crop&w=1600&q=80") center center / cover no-repeat;
    color: #fff;
    padding: 7rem 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.icon-box {
    border: 1px solid var(--theme-olive);
    border-radius: 0.75rem;
    padding: 1.25rem;
    height: 100%;
    background-color: var(--theme-white);
}

.icon-box i {
    color: var(--theme-brown);
}

.service-hero {
    background-color: var(--theme-white);
    padding: 3.5rem 0 2.5rem;
}

.equipment-card,
.industry-card,
.standard-card {
    border: 1px solid var(--theme-olive);
    border-radius: 0.75rem;
    padding: 1.25rem;
    background: var(--theme-white);
    height: 100%;
}

.footer-link {
    color: var(--theme-brown);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--theme-brown-dark);
}

footer.bg-dark.text-light,
footer.bg-dark.text-light h5,
footer.bg-dark.text-light h6,
footer.bg-dark.text-light p,
footer.bg-dark.text-light .small,
footer.bg-dark.text-light i {
    color: var(--theme-orange) !important;
}

footer.bg-dark.text-light .footer-link {
    color: var(--theme-orange) !important;
}

footer.bg-dark.text-light .footer-link:hover {
    color: var(--theme-orange-dark) !important;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--theme-brown);
    color: #fff;
    padding: 0.75rem 0;
    z-index: 1080;
}

.cookie-consent .btn-success {
    background-color: var(--theme-olive);
    border-color: var(--theme-olive);
    color: var(--theme-orange);
}

.cookie-consent .btn-success:hover,
.cookie-consent .btn-success:focus {
    background-color: var(--theme-olive-dark);
    border-color: var(--theme-olive-dark);
    color: var(--theme-white);
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1080;
    text-decoration: none;
}

.hero-badges .badge {
    font-size: 0.82rem;
}

@media (max-width: 991.98px) {
    .brand-name {
        font-size: 0.96rem;
    }

    .company-logo {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        position: relative;
        z-index: 1100;
    }

    .hero {
        padding: 4.25rem 0;
    }

    .hero .display-5 {
        font-size: 1.9rem;
    }

    .service-hero {
        padding: 2.5rem 0 2rem;
    }

    .service-hero .display-6 {
        font-size: 1.8rem;
    }

    .hero .btn-lg {
        width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 12px;
        bottom: 84px;
    }
}
