/* =========================================
PROJECT FIELDS
========================================= */

.project-fields-section{
    padding:80px 0;
    background:#f8fafc;
}

.project-fields-section .container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#0b3d26;
    margin-bottom:15px;
}

.section-desc{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
    line-height:1.8;
    color:#64748b;
    font-size:17px;
}

/* =========================================
GRID
========================================= */

.field-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* =========================================
CARD
========================================= */

.field-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    transition:.35s ease;
}

.field-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.15);

}

.field-card img{

    width:100%;
    height:260px;

    object-fit:cover;

}

/* =========================================
CONTENT
========================================= */

.field-content{
    padding:25px;
    text-align:center;
}

.field-icon{

    width:75px;
    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #22c55e,
    #0b7a43
    );

    color:#fff;

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

    font-size:30px;
}

.field-content h3{

    color:#0b3d26;

    font-size:26px;

    font-weight:800;

    margin-bottom:15px;
}

.field-content p{

    color:#64748b;

    line-height:1.8;

    min-height:95px;

    margin-bottom:20px;
}

/* =========================================
BUTTON 3D
========================================= */

.btn-view{

    display:inline-block;

    padding:13px 30px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    color:#fff;

    font-size:15px;

    font-weight:700;

    background:
    linear-gradient(
    180deg,
    #22c55e,
    #15803d
    );

    box-shadow:
    0 6px 0 #0f5d2d,
    0 10px 20px rgba(0,0,0,.18);

    transition:.2s;
}

.btn-view:hover{

    transform:
    translateY(-3px);

}

.btn-view:active{

    transform:
    translateY(3px);

    box-shadow:
    0 2px 0 #0f5d2d;

}

/* =========================================
DETAIL
========================================= */

.field-detail{

    display:none;

    margin-top:25px;

    padding-top:20px;

    border-top:
    1px solid #e5e7eb;

    text-align:left;
}

.field-detail.active{
    display:block;
    animation:fadeIn .4s ease;
}

.field-detail ul{
    margin:0;
    padding-left:20px;
}

.field-detail li{

    margin-bottom:12px;

    line-height:1.8;

    color:#475569;
}

.field-detail a{

    color:#16a34a;

    font-weight:700;

    text-decoration:none;

    margin-left:8px;
}

.field-detail a:hover{
    text-decoration:underline;
}

/* =========================================
PAGINATION
========================================= */

.field-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:50px;
}

.field-pagination button{

    width:48px;
    height:48px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;

    color:#fff;

    background:#0b3d26;

    transition:.3s;
}

.field-pagination button:hover{

    background:#15803d;

}

.field-pagination button.active{

    background:#ff6600;

}

/* =========================================
ANIMATION
========================================= */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .field-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .project-fields-section{
        padding:50px 0;
    }

    .section-title{
        font-size:30px;
    }

    .section-desc{
        font-size:16px;
    }

    .field-grid{

        grid-template-columns:1fr;

    }

    .field-card img{

        height:220px;

    }

    .field-content h3{

        font-size:22px;

    }

    .field-content p{

        min-height:auto;

    }

}