/* =========================================================
   GLOBAL / BRAND
   ========================================================= */

:root {
    --whites-green: #1f5f38;
    --whites-blue: #5b9ccc;
    --whites-dark: #1f2933;
    --whites-muted: #52616f;
    --whites-light: #f7f9fb;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--whites-light);
    color: var(--whites-dark);
}

.page-content {
    padding-top: 76px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .feature-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1rem;
        color: var(--whites-muted);
        font-size: 1.05rem;
    }

        .feature-list li::before {
            content: "?";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--whites-green);
            font-weight: 800;
        }
/* =========================================================
   NAVIGATION
   ========================================================= */

.whites-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.navbar-logo {
    max-height: 82px;
    width: auto;
}

.navbar .nav-link {
    font-weight: 500;
}

    .navbar .nav-link:hover {
        color: var(--whites-green);
    }

.customer-login-btn {
    border-radius: 999px;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}


/* =========================================================
   BUTTONS / FORMS
   ========================================================= */

.btn-primary {
    background-color: var(--whites-green);
    border-color: var(--whites-green);
}

    .btn-primary:hover {
        background-color: #17482a;
        border-color: #17482a;
    }

.btn-outline-primary {
    color: var(--whites-green);
    border-color: var(--whites-green);
}

    .btn-outline-primary:hover {
        background-color: var(--whites-green);
        border-color: var(--whites-green);
    }

.form-control,
.form-select {
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid #d0d7de;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--whites-green);
        box-shadow: 0 0 0 0.2rem rgba(31, 95, 56, 0.15);
    }


/* =========================================================
   HOME HERO
   ========================================================= */

.hero-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient( 90deg, rgba(24, 33, 43, 0.72), rgba(24, 33, 43, 0.28) ), url('/img/home-hero.jpg') center / cover no-repeat;
    color: white;
    animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 106%;
    }
}

.hero-content {
    max-width: 760px;
    padding: 5rem 0;
}

.hero-kicker {
    color: #d7f0df;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    font-weight: 800;
    line-height: 1;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   SHARED SECTIONS
   ========================================================= */

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-weight: 800;
    color: var(--whites-dark);
}

.section-lead {
    color: var(--whites-muted);
    font-size: 1.15rem;
}

.image-panel {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

    .image-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.portal-strip {
    background: linear-gradient(135deg, var(--whites-green), #123921);
    color: white;
}

.portal-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .feature-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1rem;
        color: var(--whites-muted);
        font-size: 1.05rem;
    }

        .feature-list li::before {
            content: "?";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--whites-green);
            font-weight: 800;
        }
/* =========================================================
   SERVICE CARDS / SERVICES PAGE
   ========================================================= */

.service-card {
    border: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
    height: 100%;
}

    .service-card img {
        height: 260px;
        object-fit: cover;
    }

    .service-card .card-body {
        padding: 1.5rem;
    }

.services-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(24, 33, 43, 0.82), rgba(24, 33, 43, 0.35) ), url('/img/Feeder-two.JPEG') center / cover no-repeat;
    color: white;
}

.services-hero-content {
    max-width: 820px;
    padding: 5rem 0;
}
.managed-service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .managed-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    }

.managed-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(31, 95, 56, 0.1);
    color: var(--whites-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.managed-service-card a {
    color: var(--whites-green);
    font-weight: 700;
    text-decoration: none;
}

    .managed-service-card a:hover {
        text-decoration: underline;
    }

.tech-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f2f7f4 100%);
    border-radius: 1.75rem;
    padding: 2.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.tech-stat {
    border-left: 4px solid var(--whites-green);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

    .tech-stat strong {
        display: block;
        font-size: 1.4rem;
        color: var(--whites-dark);
    }

    .tech-stat span {
        color: var(--whites-muted);
    }

@media (max-width: 768px) {
    .managed-service-card {
        padding: 1.5rem;
    }

    .managed-service-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .managed-service-card {
        text-align: center;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(24, 33, 43, 0.88), rgba(24, 33, 43, 0.45) ), url('/img/Feeder-Main.jpeg') center / cover no-repeat;
    color: white;
}

    .contact-hero .hero-title,
    .contact-hero .hero-text {
        color: white;
    }

.contact-hero-content {
    max-width: 760px;
    padding: 4rem 0;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--whites-green), #123921);
    color: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

    .contact-info-card a {
        color: white;
    }

.contact-form-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}


/* =========================================================
   PRIVACY PAGE
   ========================================================= */

.privacy-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg, rgba(24, 33, 43, 0.82), rgba(24, 33, 43, 0.35) ), url('/img/Feeder-two.JPEG') center / cover no-repeat;
    color: white;
}

.privacy-hero-content {
    max-width: 760px;
    padding: 4rem 0;
}

.privacy-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    max-width: 980px;
    margin: 0 auto;
}

    .privacy-card h2,
    .privacy-card h3 {
        font-weight: 800;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

        .privacy-card h2:first-child {
            margin-top: 0;
        }

    .privacy-card p,
    .privacy-card li {
        color: #52616f;
        line-height: 1.8;
    }

    .privacy-card a {
        color: var(--whites-green);
        font-weight: 600;
    }

.privacy-contact-box {
    background: #f7f9fb;
    border-left: 5px solid var(--whites-green);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1rem;
}


/* =========================================================
   THANK YOU / HOLDING PAGES
   ========================================================= */

.thanks-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5fa 100%);
}

.thanks-card {
    background: white;
    border-radius: 2rem;
    padding: 4rem 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 760px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--whites-green);
}


/* =========================================================
   FOOTER / COOKIES
   ========================================================= */

.footer-section a {
    color: var(--whites-green);
    text-decoration: none;
}

    .footer-section a:hover {
        text-decoration: underline;
    }

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(24, 33, 43, 0.96);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    z-index: 5000;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

    .cookie-banner.hidden {
        display: none;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
    .page-content {
        padding-top: 82px;
    }

    .navbar-logo {
        max-height: 56px;
    }

    .hero-section {
        min-height: 680px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
    .hero-section {
        min-height: 720px;
        align-items: flex-end;
        background: linear-gradient( 180deg, rgba(24, 33, 43, 0.25), rgba(24, 33, 43, 0.92) ), url('/img/home-hero.jpg') center / cover no-repeat;
        animation: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 3rem 0 4rem;
        margin: 0 auto;
        text-align: center;
    }

    .hero-kicker {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 12vw, 4rem);
        line-height: 0.9;
        text-align: center;
    }

    .hero-text {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-section .btn {
        width: 100%;
    }

    .hero-section .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .services-hero,
    .contact-hero,
    .privacy-hero {
        min-height: 420px;
        text-align: center;
    }

    .services-hero-content,
    .contact-hero-content,
    .privacy-hero-content {
        padding: 3rem 0;
        margin: 0 auto;
    }

    .contact-info-card,
    .contact-form-card,
    .privacy-card,
    .thanks-card {
        padding: 2rem;
        border-radius: 1.25rem;
    }

    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 1rem;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .navbar-logo {
        max-height: 48px;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 13vw, 3.4rem);
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .contact-info-card,
    .contact-form-card,
    .privacy-card,
    .thanks-card {
        padding: 1.5rem;
    }
}
