@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #378036;
    --secondary: #6bb449;

    --header-height: 80px;
    --header-bg: #fff;
    --drawer-bg: #fff;
    --text-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}


.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    width: 100%;
    
    padding: 0 1rem;
    
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 3.5rem;
    }
}

@media (min-width: 992px) {
    .header-inner {
        padding: 0 6rem;
    }
}

@media (min-width: 1200px) {
    .header-inner {
        padding: 0 9rem;
    }
}


.header-col {
    display: flex;
    align-items: center;
}

.header-left {
    
    
    justify-content: flex-start;
    gap: 3rem;
    
}



.header-right {
    
    
    justify-content: flex-end;
}


.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    text-transform: none;
    
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--primary);
}


.main-navigation a.btn-cta {
    background-color: var(--secondary);
    color: #fff;
    padding: 0.8rem 2rem;
    
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.main-navigation a.btn-cta:hover {
    background-color: var(--primary);
    color: #fff;
}


.site-branding img {
    max-height: 60px;
    
    width: auto;
    display: block;
}


.header-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: block;
    line-height: 0;
}

.social-icon img {
    height: 30px;
    
    width: 30px;
    display: block;
    
    filter: brightness(0);
    transition: filter 0.2s ease;
}

.social-icon:hover img {
    
    filter: invert(44%) sepia(35%) saturate(996%) hue-rotate(76deg) brightness(95%) contrast(90%);
}


.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

.menu-toggle img {
    height: 36px;
    
    width: 36px;
}


.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--drawer-bg);
    z-index: 2000;
    transform: translateX(100%);
    
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.is-active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    
    padding: 0 1rem;
    
    height: var(--header-height);
    align-items: center;
}


@media (min-width: 768px) {
    .drawer-header {
        padding: 0 3.5rem;
    }
}

@media (min-width: 992px) {
    .drawer-header {
        padding: 0 6rem;
    }
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    
}

.drawer-close img {
    height: 36px;
    
    width: 36px;
}

.drawer-content {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
}


.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.mobile-navigation a {
    font-size: 1.8rem;
    
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    display: block;
}

.mobile-navigation a.btn-cta {
    display: inline-block;
    background-color: var(--secondary);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.mobile-navigation a.btn-cta:hover {
    background-color: var(--primary);
}


.mobile-socials {
    display: flex;
    flex-direction: row;
    
    gap: 1.5rem;
}

.mobile-socials .social-icon img {
    height: 40px;
    
    width: 40px;
    filter: brightness(0);
    
}


.mobile-socials .social-icon:hover img {
    filter: invert(44%) sepia(35%) saturate(996%) hue-rotate(76deg) brightness(95%) contrast(90%);
}


.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 1145px) {

    
    
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .header-center {
        display: none;
    }

    

    
    .header-left {
        justify-content: flex-start;
        flex: 0 0 auto;
    }

    .header-right {
        justify-content: flex-end;
        flex: 1;
    }

    .site-branding img {
        max-height: 50px;
        
    }
}


.site-footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5a1a 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 4rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-cta {
    flex: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 400px;
    color: rgba(255, 255, 255, 0.95);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-phone,
.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    opacity: 0.8;
}

.footer-phone img,
.footer-email img {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.btn-footer-contact {
    display: inline-block;
    padding: 0.75rem 0;
    width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff;
    color: var(--primary);
    border: 2px solid #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    margin-top: 0.5rem;
}

.btn-footer-contact:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.7;
}

.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding: 1rem 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom-left p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-left a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-left a:hover {
    color: #fff;
}

.footer-bottom-right p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-bottom-right a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer-top {
        padding: 5rem 2rem;
    }

    .footer-columns {
        flex-direction: row;
        gap: 4rem;
    }

    .footer-right {
        flex-direction: row;
        gap: 3rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom-left {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .footer-top {
        padding: 6rem 12rem;
    }

    .footer-bottom {
        padding: 1.25rem 12rem;
    }
}