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

html, body{
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* VARIABLE */
:root{
    --header-height: 85px;
}

/* HEADER */
.header{
    background: #f5fff6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* CONTAINER */
.container{
    width: clamp(320px, 90%, 1200px);
    margin: auto;
}

/* HEADER INNER */
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);

}
.logo{
    padding: 10px 0;
}

.logo img{
    width: clamp(160px, 25vw, 240px);
    display: block;
}
/* MENU BUTTON */
.menu-btn{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn i{
    font-size: 24px;
    color: #2e7d32;
}

/* MOBILE MENU */
.header-menu{
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    background: #c8e6c9;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.3s ease;
}

/* NAV */
.navbar{
    flex: 1;
    overflow-y: auto;
}

/* LIST */
.nav-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

/* ITEM */
.nav-item{
    width: 100%;
}

/* LINKS */
.nav-link{
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: #1b5e20;
    border-radius: 6px;
    font-weight: 500;
}

.nav-link:hover{
    background: #a5d6a7;
}
.nav-link.active{
    background: #e8f5e9;
    color: #1b5e20;
    font-weight: 600;
    border-radius: 6px;
    border-bottom: 3px solid #2e7d32;
    box-shadow: 0 3px 5px rgba(46,125,50,0.4);
}

/* CTA */
.header-cta{
    padding: 20px;
}

.header-cta .btn{
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

/* ACTIVE */
.header-menu.active{
    transform: translateX(0);
    opacity: 1;
}

/* DESKTOP */
@media (min-width: 1024px){

    .menu-btn{
        display: none;
    }

    .header-menu{
        position: static;
        height: auto;
        width: auto;
        background: transparent;

        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;

        transform: none;
        opacity: 1;
    }

    .navbar{
        flex: unset;
        overflow: visible;
    }

    .nav-list{
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 0;
    }

    .nav-item{
        width: auto;
    }

    .nav-link{
        font-size: 16px;
        padding: 10px 14px;
        background: none;
         transition: 0.2s ease;
    }

    .nav-link.active{
    color: #2e7d32;
    font-weight: 600;
}

    .header-cta{
        padding: 0;
    }

    .header-cta .btn{
        width: auto;
        padding: 8px 16px;
    }
    .header-cta .btn:hover{
    background: #1b5e20;
}
}

   /* ===== Overlay ===== */
.catalog-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.catalog-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.catalog-popup-wrapper {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.catalog-popup.active .catalog-popup-wrapper {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.catalog-popup {
    pointer-events: none;
}

.catalog-popup.active {
    pointer-events: auto;
}

/* ===== Popup Box ===== */
.catalog-popup-wrapper {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

/* ===== Header ===== */
.catalog-popup-header {
    text-align: center;
    margin-bottom: 16px;
}

.catalog-popup-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
     color: #1b5e20;
}

.catalog-popup-into {
    font-size: 14px;
    color: #666;
}

/* ===== Form ===== */
.form-box {
    margin-bottom: 12px;
}

.form-box label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.form-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* ===== Checkbox ===== */
.form-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin: 10px 0;
}

/* ===== Button ===== */
button {
    width: 100%;
    padding: 12px;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

/* ===== Note ===== */
.form-note {
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
    color: #777;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
    font-size: 18px;
    color: #2e7d32;
}

.catalog-popup-wrapper {
    position: relative;
}
/* ===== Tablet ===== */
@media (min-width: 768px) {
    .catalog-popup-wrapper {
        padding: 24px;
    }

    .catalog-popup-title {
        font-size: 22px;
    }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
    .catalog-popup-wrapper {
        max-width: 450px;
    }
}
/*FOOTER*/

/*.footer{*/
/*   background: #e8fdf0; */
/*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);*/
/*margin: 0 10px;*/
/*border-radius: 12px;*/
/*padding: 20px;*/
/*}*/
.footer  {
    font-size: 18px;
}
.footer .container{
    /*background: yellow;*/
    width: 100%;
    padding: 0;
}
.footer-top{
    padding: 10px;
    background: #e8fdf0;
    /*background: red;*/
}
.footer-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    
}
.cta-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cta-icon i{
    color: #0f3d2e;
}
.cta-content h2 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    color: #0f3d2e; /* deep green (fits your theme) */
    margin-bottom: 8px;
}
.cta-content p{
    font-size: 18px;
}

.form-group input {
    width: 100%;
    margin: 6px 0;
    padding: 10px 12px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;   /* softer than gray */

    outline: none;

    transition: all 0.2s ease;
}
.form-group input:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.15);
}
.form-group input::placeholder {
    color: #999;
    
}

/*TESTING*/
/* container */
.form-group {
    position: relative;
    margin-bottom: 16px;
}

/* input */
.form-group input {
    width: 100%;
    padding: 12px 12px 12px 38px;

    border-radius: 6px;
    border: 1px solid #dcdcdc;
    outline: none;

    font-size: 18px;
    background: #fff;
    transition: all 0.2s ease;
}

/* icon */
.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);

    color: #2e7d32;
    font-size: 14px;
}

/* label */
.form-group label {
    position: absolute;
    left: 38px;              /* keep SAME always */
    top: 50%;
    transform: translateY(-50%);

    color: #999;
    font-size: 16px;

    pointer-events: none;
    transition: all 0.2s ease;
}

/* focus border */
.form-group input:focus {
    border-color: #2e7d32;
}

/* floating label (ONLY ONE RULE) */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 6px;                 /* move up */
    transform: translateY(0); /* stop vertical center */

    font-size: 11px;
    background: #fff;
    padding: 0 4px;
    color: #2e7d32;
}
/*TESTING*/
.footer-about{
/*background: #e0fbea;*/
/*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);*/
border-radius: 12px;
padding: 10px ;
margin: 5px;
background: #f7f7f7;
}

.footer-logo{
    padding: 10px;
}
.footer-logo img {
    width: 210px;
    display: block;
    margin: 0 auto;
}
.footer-desc {
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
    color: #333333;
}
.feature-item {
    background: #e0fbea;
    list-style: none;
    padding: 10px 12px;
    margin: 6px 0;

    border: 1px solid #d2f5df;
    border-radius: 10px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Icon */
.feature-item i {
    color: #2e7d32;          /* primary green */
    background: #d6f5e3;     /* soft green bg */
    padding: 8px;
    border-radius: 6px;
}

/* Text */
.feature-item span {
    color: #0f3d2e;          /* deep green (matches headings) */
}
.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}
.footer-contact{
    display: ;
}
/* Center blocks */
.footer-list,
.quick-links-list,
.social-icons {
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
}

/* List reset */
.footer-list li,
.quick-links-list li {
    list-style: none;
    margin-bottom: 10px;
}

/* Link + address layout */
.footer-list a,
.footer-list .address {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

/* Icon */
.footer-list i {
    width: 30px;
    height: 30px;
    border-radius: 6px;

    background: #e0fbea;
    color: #2e7d32;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    flex-shrink: 0;
}

/* Title */
.footer-title {
    text-align: center;
    color: #2e7d32;
    position: relative;
    padding-bottom: 6px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: #2e7d32;
    border-radius: 2px;
}

/* Hover */
.footer-list a:hover {
    color: #2e7d32;
    transform: translateX(4px);
}
/* Center block */
.quick-links-list {
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
}

/* List items */
.quick-links-list li {
    list-style: none;
    margin-bottom: 10px;
}

/* Link layout */
.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #333333;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* Icon */
.quick-links-list i {
    width: 30px;
    height: 30px;
    border-radius: 6px;

    background: #e0fbea;
    color: #2e7d32;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    flex-shrink: 0;
}

/* Hover */
.quick-links-list a:hover {
    color: #2e7d32;
    transform: translateX(4px);
}
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px 0;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    color: #fff;               /* all icons white */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Brand colors */
.social.facebook { background: #1877f2; }
.social.instagram { 
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.social.youtube { background: #ff0000; }
.social.whatsapp { background: #25d366; }

/* Hover (small effect only) */
.social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.catalog-container {
    background: #d6f5e3;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 0 40px;
}
.catalog-container a{
    text-decoration: none;
}

.catalog-box {
    display: flex;
    align-items: center;
    justify-content: space-around;  
    gap: 12px;
}
.catalog-box .fa-file{
    font-size: 40px;
    /*color: #2e7d32;*/
    color: #2e7d32;
}
.catalog-content a, .catalog-content h4 ,.catalog-content p{
    /*color: green;*/
}
.catalog-box .fa-circle-chevron-right{
   font-size: 24px;
   color: white;
   /*background: green;*/
   border-radius: 50%;
   border: 1px solid green;
}
.catalog-container {
    background: #d6f5e3;
}

/* File icon */
.catalog-box .fa-file {
    color: #2e7d32;   /* keep (good primary green) */
}
.catalog-content{
    text-align: center;
}
/* Text */
.catalog-content h4 {
    color: #0f3d2e;   /* deep green (heading) */
}

.catalog-content p {
    color: #4f4f4f;   /* softer text */
}

/* Remove link color override */
.catalog-content a {
    color: inherit;
}

/* Arrow */
.catalog-box .fa-circle-chevron-right {
    font-size: 24px;

    color: #ffffff;
    background: #2e7d32;   /* primary green */

    border-radius: 50%;
    border: 2px solid #2e7d32;
}
.footer-bottom a,.footer-bottom p{
    color: #2e7d32; 
    text-decoration: none;
}
.footer-bottom{
        background: #d6f5e3;
    padding: 10px;
    margin: 10px 0 0 0;
}
.footer-bottom-left,.footer-bottom-links,.footer-bottom-right{
    text-align: center;
    color: #2e7d32; 
    font-size: 18px;
    padding: 5px;
}
.footer-bottom-left i{
    padding: 5px;
    color: #2e7d32; 
    font-size: 24px;
}
.footer-bottom-dev{
    text-align: center;
}
.footer-bottom-dev a{
    color: #2e7d32; 
    font-weight: 600;
}
/*FOOTER*/
