/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100..800&display=swap');
body{
    font-family: "JetBrains Mono", monospace;
}
.blue-text{

    color:#1E40AF;

}
.green-text{

    color:#5DBB7B;

}
button,
.btn,
.hero-buttons a,
.cta-button,
.primary-btn,
.secondary-btn{

    font-family: "Poppins", sans-serif;
    font-weight: 600;

}

/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Plus Jakarta Sans',sans-serif;

    background:#F9FCFB;

    color:#163047;

}

.highlight{
    color:#5FBF88;
    font-weight:800;
}
/* ==========================================
   CONTAINER
========================================== */

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}


/* ==========================================
   HEADER
========================================== */

.header{

    position:sticky;

    top:0;

    width:100%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(14px);

    border-bottom:1px solid #E6ECEA;

    z-index:999;

}
nav{

    flex:1;

    display:flex;

    justify-content:flex-end;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:72px;

}


/* ==========================================
   LOGO
========================================== */

.logo{
    text-decoration: none;
    color: #163047;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}


/* ==========================================
   NAVIGATION
========================================== */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;


}

.nav-links a{

    text-decoration:none;

    color:#163047;

    font-size:15px;      /* was default (about 16px) */

    font-weight:500;     /* lighter */

    transition:.3s;

    letter-spacing:.2px;

}

.nav-links a:hover{

    color:#5FBF88;

}

/* ==========================================
   HERO SECTION
========================================== */

.hero{
    position:relative;
    background:#F8FCFB;
    overflow:hidden;
    padding:40px 0 0;
    padding-top:70px;
}

/* Background Glow */

.hero-background{
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at 20% 0%, rgba(234,247,255,.9) 0%, transparent 55%),
        radial-gradient(circle at 80% 5%, rgba(238,249,241,.8) 0%, transparent 60%);

    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
}

.hero-badge{

    display:inline-block;

    background:#EDF8F1;

    color:#4C9F6E;

    padding:12px 24px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:15px;

    font-size:15px;

}

.hero h1{

    font-size:58px;

    font-weight:600;

    line-height:1.08;

    color:#183153;

    margin-bottom:18px;

    letter-spacing:-2px;
    min-height: 126px;

}
.cursor {
    display: inline-block;
    /* This color and weight will automatically inherit your green <span> styling! */
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero h1 span{

    color:#5DBB7B;
    font-weight:800;


}

.hero p {
    font-size: 14px; /* Reduced from 16px */
    line-height: 1.6; /* Slightly increased so the lines aren't crowded */
    color: #64748B;
    max-width: 520px;
    margin: 0 auto;
}

.hero-buttons{

    margin-top:25px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    padding:15px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary{

    background:#5DBB7B;

    color:white;

}

.btn-primary:hover{

    background:#4BA96B;

}

.btn-secondary{

    background:white;

    color:#183153;

    border:1px solid #DCE5EB;

}

.btn-secondary:hover{

    background:#F5F8FA;

}

.hero-rating{

    margin-top:18px;

    margin-bottom:15px;

    font-size:16px;

}

.hero-rating span{

    margin-left:10px;

    color:#64748B;

}

.hero-image {
    /* Keep all your existing properties */
    width: min(1400px, 92%);
    height: 650px;
    margin: -150px auto 0;
    border-radius: 30px;
    overflow: hidden;
    background-image: url("../images/mobile-home.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -240px;
    box-shadow: 0 25px 60px rgba(0,0,0,.10);

    /* ADD THESE TWO LINES FOR THE FADE EFFECT */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
}
/* Floating Stats */

.stats-card{

    width:min(1100px,92%);

    margin:-70px auto 80px;

    background:white;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    display:grid;

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

    padding:40px;

    position:relative;

    z-index:5;

}

.stat{

    text-align:center;

}

.stat h2{

    font-size:36px;

    color:#183153;

    margin-bottom:10px;

}

.stat p{

    color:#64748B;

    font-size:16px;

}

/* Responsive */

@media(max-width:900px){

.hero h1{

font-size:48px;

}

.stats-card{

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

gap:30px;

}


}

@media(max-width:600px){

.hero{

padding-top:40px;

}



.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

.stats-card{

grid-template-columns:1fr;

}


}
/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works{

    padding:120px 0;

    background:#ffffff;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    background:#EDF8F1;

    color:#4C9F6E;

    border-radius:100px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:46px;

    font-weight:700;

    line-height:1.15;

    color:#183153;

    margin-bottom:18px;

}

.section-heading p{

    font-size:17px;

    color:#64748B;

    line-height:1.7;

}

.steps{

    display:grid;

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

    gap:30px;

}

.step-card{

    position:relative;

    background:linear-gradient(180deg,#ffffff 0%,#F9FCFB 100%);

    border:1px solid rgba(93,185,123,.15);

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    overflow:hidden;

    transition:.45s ease;

    opacity:0;

    transform:translateY(60px);

}
.step-card::before{

    content:"";

    position:absolute;

    top:-80px;

    left:-80px;

    width:180px;

    height:180px;

    background:radial-gradient(circle,
    rgba(93,185,123,.18),
    transparent 70%);

    transition:.5s;

}

.step-card:hover{

    transform:translateY(-12px);

    border-color:#5DBB7B;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08),
        0 0 35px rgba(93,185,123,.18);

}

.step-card:hover::before{

    transform:scale(1.4);

}
#home{
    scroll-margin-top:72px;
}

#how-it-works,
#buyer-form,
#seller-form,
#articles,
#contact{
    scroll-margin-top:72px;
}
.step-number{

    width:74px;

    height:74px;

    margin:0 auto 28px;

    border-radius:50%;

    background:linear-gradient(135deg,#5DBB7B,#7BD89A);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    box-shadow:0 10px 30px rgba(93,185,123,.35);

}
.step-card.show{

    opacity:1;

    transform:translateY(0);

}

.step-card h3{

    font-size:24px;

    color:#183153;

    margin-bottom:15px;

}

.step-card p{

    color:#64748B;

    line-height:1.7;

    font-size:16px;

}

@media(max-width:900px){

    .steps{

        grid-template-columns:1fr;

    }

    .section-heading h2{

    font-size:50px;

    font-weight:700;

    line-height:1.1;

    color:#183153;

    margin-bottom:18px;

    letter-spacing:-1px;

    }

}


/* ==========================================
   WHY US
========================================== */

.why-us{

    padding:120px 0 30px;

    background:#F8FCFB;

}

.why-grid{

    display:grid;

    grid-template-columns:1.05fr 1fr;

    gap:70px;

    align-items:center;

    margin-top:70px;

}

.why-image img{

    width:100%;

    border-radius:28px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.why-features{

    display:grid;

    gap:20px;

}

.feature-card{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    border-radius:22px;

    background:linear-gradient(180deg,#ffffff 0%,#F9FCFB 100%);

    border:1px solid rgba(93,187,123,.15);

    overflow:hidden;

    transition:all .45s cubic-bezier(.2,.8,.2,1);

    opacity:0;

    transform:translateX(70px);

}
.feature-card::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-120px;

    width:240px;

    height:240px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(93,187,123,.22),
    transparent 70%);

    opacity:0;

    transition:.6s;

}

.feature-card.show{

    opacity:1;

    transform:translateX(0);

}
.feature-card:hover{

    transform:translateY(-10px);

    border-color:#5DBB7B;

    box-shadow:
        0 20px 55px rgba(0,0,0,.08),
        0 0 35px rgba(93,187,123,.18);

}

.feature-card:hover::before{

    opacity:1;

    transform:scale(1.35);

}

.feature-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    background:linear-gradient(135deg,#5DBB7B,#82D9A4);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

    flex-shrink:0;

    transition:.45s;

    box-shadow:0 12px 25px rgba(93,187,123,.35);

}
.feature-card:hover .feature-icon{

    transform:
        rotate(-8deg)
        scale(1.12);

}

.feature-card h3{

    font-size:22px;

    font-weight:700;

    color:#183153;

    margin-bottom:8px;

    transition:.35s;

}

.feature-card:hover h3{

    color:#5DBB7B;

}

.feature-card p{

    color:#64748B;

    line-height:1.7;

    font-size:15px;

}


/* Image Animation */


.why-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 30px 70px rgba(0,0,0,.10);

    opacity:0;

    transform:translateX(-70px);

    transition:1s cubic-bezier(.2,.8,.2,1);

}

.why-image img.show{

    opacity:1;

    transform:translateX(0);

}


/* Responsive */

@media(max-width:900px){

    .why-grid{

        grid-template-columns:1fr;

    }

}



/* ==========================================
   SELLER SECTION
========================================== */

.seller-section{

    padding:180px 0 120px;

}

.seller-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:start;

    margin-top:70px;

}

/* Left Side */

.seller-info{

    opacity:0;

    transform:translateX(-70px);

    transition:1s cubic-bezier(.2,.8,.2,1);

}

.seller-info.show{

    opacity:1;

    transform:translateX(0);

}

.seller-info h3{

    font-size:32px;

    color:#183153;

    margin-bottom:30px;

}

.benefit{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 22px;

    margin-bottom:16px;

    border-radius:18px;

    background:#F8FCFB;

    border:1px solid rgba(93,187,123,.15);

    font-weight:600;

    transition:.35s;

}

.benefit:hover{

    transform:translateX(8px);

    background:#ffffff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

/* Form */

.seller-form{

    background:white;

    padding:45px;

    border-radius:28px;

    border:1px solid rgba(93,187,123,.15);

    box-shadow:0 25px 70px rgba(0,0,0,.08);

    display:grid;

    gap:20px;

    opacity:0;

    transform:translateX(70px);

    transition:1s cubic-bezier(.2,.8,.2,1);

}

.seller-form.show{

    opacity:1;

    transform:translateX(0);

}

/* Inputs */

.seller-form input,
.seller-form textarea{

    width:100%;

    padding:18px 20px;

    border-radius:14px;

    border:1px solid #DCE5EB;

    background:#FAFCFD;

    font-size:15px;

    font-family:inherit;

    transition:.35s;

    outline:none;

}

.seller-form textarea{

    resize:none;

}

.seller-form input:focus,
.seller-form textarea:focus{

    border-color:#5DBB7B;

    background:white;

    box-shadow:0 0 0 5px rgba(93,187,123,.15);

}

/* Button */

.submit-btn{

    width:100%;

    padding:18px 24px;

    border:none;

    border-radius:16px;

    background:#4CAF6F;

    color:#fff;

    font-family:"Poppins",sans-serif;

    font-size:17px;

    font-weight:500;

    cursor:pointer;

    transition:.3s ease;

}
.submit-btn:hover{

    transform:translateY(-4px);

    background:#49A96C;

    box-shadow:0 20px 40px rgba(93,187,123,.35);

}

.submit-btn:active{

    transform:scale(.98);

}
/* Logo under benefits */

.seller-logo{

    display:flex;

    justify-content:center;

    margin-top:40px;

    opacity:.95;

}

.seller-logo img{

    width:500px;

    max-width:300%;

    height:auto;

    transition:.4s ease;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.10));

}

.seller-logo img:hover{

    transform:translateY(-6px) scale(1.03);

}

/* Mobile */

@media(max-width:900px){

    .seller-grid{

        grid-template-columns:1fr;

    }

}
/* ==========================================
   BUYER SECTION
========================================== */

.buyer-section{

    padding:120px 0;

    background:#F5FAFF;

}

.blue-tag{

    background:#E8F3FF;

    color:#3B82F6;

}

.buyer-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-top:70px;

}

/* ===========================
   BUYER FORM
=========================== */

.buyer-form{

    background:#ffffff;

    padding:45px;

    border-radius:28px;

    border:1px solid #DCEEFF;

    box-shadow:0 25px 70px rgba(59,130,246,.10);

    display:grid;

    gap:18px;

    opacity:0;

    transform:translateX(-70px);

    transition:1s cubic-bezier(.2,.8,.2,1);

}

.buyer-form.show{

    opacity:1;

    transform:translateX(0);

}

.buyer-form h3{

    font-size:32px;

    color:#183153;

    margin-bottom:10px;

}

.buyer-form input,
.buyer-form textarea{
    margin-bottom: 18px;

    width:100%;

    padding:18px 20px;

    border-radius:14px;

    border:1px solid #DCEEFF;

    background:#ffffff;

    font-size:15px;

    font-family:inherit;

    outline:none;

    transition:.35s;

}

.buyer-form textarea{

    resize:none;

}

.buyer-form input:focus,
.buyer-form textarea:focus{

    border-color:#5EA8F8;

    box-shadow:0 0 0 5px rgba(94,168,248,.18);

}

/* ===========================
   BUTTON
=========================== */

.buyer-submit{

    width: 100%;

    padding: 18px 24px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(135deg,#5FA8FF,#4F7DFF);

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 500;

    cursor: pointer;

    transition: .3s ease;

}

.buyer-submit:hover{

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(79,125,255,.25);

}

.buyer-submit:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(59,130,246,.30);

}

/* ===========================
   IMAGE
=========================== */

.buyer-image{

    position:relative;

    text-align:center;

    opacity:0;

    transform:translateX(70px);

    transition:1s cubic-bezier(.2,.8,.2,1);

}

.buyer-image.show{

    opacity:1;

    transform:translateX(0);

}

.buyer-image img{

    width:100%;

    max-width:560px;

    border-radius:24px;

    filter:drop-shadow(0 25px 50px rgba(0,0,0,.15));

}

.buyer-badge{

    position:absolute;

    top:25px;

    left:25px;

    background:white;

    color:#3B82F6;

    font-weight:700;

    padding:12px 20px;

    border-radius:999px;

    box-shadow:0 12px 30px rgba(59,130,246,.18);

}

.buyer-caption{

    margin-top:25px;

    font-size:18px;

    color:#4A5568;

    line-height:1.7;

}
.blue-text{

    color:#295fa4;

}
.green-text{

    color:#5DBB7B;

}


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

@media(max-width:900px){

    .buyer-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

}
/* ==========================================
   TRUST SECTION
========================================== */

.trust-section{

    padding:120px 0;

    background:#ffffff;

}

.trust-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

/* Cards */

.trust-card{

    background:#ffffff;

    border:1px solid #E8EEF3;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    opacity:0;

    transform:translateY(60px);

}

.trust-card.show{

    opacity:1;

    transform:translateY(0);

}

.trust-card:hover{

    transform:translateY(-10px);

    border-color:#5DBB7B;

    box-shadow:0 25px 55px rgba(93,187,123,.18);

}

/* Icon */

.trust-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:linear-gradient(135deg,#E8F8EE,#EAF4FF);

    transition:.4s;

}

.trust-card:hover .trust-icon{

    transform:rotate(8deg) scale(1.08);

}

/* Heading */

.trust-card h3{

    font-size:24px;

    color:#183153;

    margin-bottom:15px;

}

/* Text */

.trust-card p{

    color:#677281;

    line-height:1.8;

    font-size:15px;

}

/* Mobile */

@media(max-width:1000px){

    .trust-grid{

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

    }

}

@media(max-width:650px){

    .trust-grid{

        grid-template-columns:1fr;

    }

}
/* ==========================================
   RESOURCES SECTION
========================================== */

.resources-section{

    padding:120px 0;

    background:#F8FAFC;

}

.resources-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

/* Card */

.resource-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #E8EEF3;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.4s ease;

    opacity:0;

    transform:translateY(60px);

}

.resource-card.show{

    opacity:1;

    transform:translateY(0);

}

.resource-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}

/* Image */

.resource-image{

    position:relative;

    overflow:hidden;

    height:250px;

}

.resource-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.resource-card:hover .resource-image img{

    transform:scale(1.08);

}

/* Category Badge */

.resource-category{

    position:absolute;

    top:18px;

    left:18px;

    background:#5DBB7B;

    color:#ffffff;

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}


/* Content */

.resource-content{

    padding:30px;

}

.resource-content h3{

    font-size:24px;

    color:#183153;

    margin-bottom:15px;

    line-height:1.4;

}

.resource-content p{

    color:#677281;

    line-height:1.8;

    margin-bottom:25px;

}

/* Link */

.resource-link{

    color:#183153;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.resource-link:hover{

    color:#5DBB7B;

    padding-left:8px;

}

/* Bottom Button */

.resources-button{

    text-align:center;

    margin-top:60px;

}

.outline-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 36px;

    border-radius:14px;

    border:2px solid #5DBB7B;

    color:#183153;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

    background:#ffffff;

}

.outline-btn:hover{

    background:#5DBB7B;

    color:#ffffff;

    transform:translateY(-4px);

}

/* Mobile */

@media(max-width:1000px){

    .resources-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:700px){

    .resources-grid{

        grid-template-columns:1fr;

    }

}
/*=========================================
            CONTACT US
=========================================*/

.contact-section{

    padding:120px 0;

    background:#F8FBFD;

}

.contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:stretch;

}

.contact-info{

    display:flex;

}

.contact-card{

    width:100%;

    background:#fff;

    padding:50px;

    border-radius:30px;

    border:1px solid #E5ECEF;

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

    display:flex;

    flex-direction:column;

}

.contact-card h3{

    font-size:28px;

    color:#183153;

    margin-bottom:30px;

}

.contact-logo{

    display:flex;

    justify-content:center;

    margin-bottom:40px;

}

.contact-logo img{

    width:220px;

    height:auto;

}

.contact-card p{

    margin-bottom:22px;

    color:#5E6A78;

    font-size:17px;

    line-height:1.8;

}

.contact-form{

    display:flex;

}

.contact-form form{

    width:100%;

    background:#fff;

    padding:50px;

    border-radius:30px;

    border:1px solid #E5ECEF;

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

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.contact-form input{

    width:100%;

    height:64px;

    padding:0 22px;

    border:1px solid #DCE5EB;

    border-radius:16px;

    background:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form textarea{

    grid-column:1 / -1;

    width:100%;

    min-height:220px;

    padding:22px;

    border:1px solid #DCE5EB;

    border-radius:16px;

    background:#fff;

    font-size:16px;

    resize:vertical;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#5DBB7B;

    box-shadow:0 0 0 4px rgba(93,187,123,.15);

}

.contact-form button{

    grid-column:1 / -1;

    height:64px;

    border:none;

    border-radius:16px;

    background:#5DBB7B;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#49A768;

}

@media(max-width:950px){

    .contact-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:650px){

    .contact-form form{

        grid-template-columns:1fr;

        padding:30px;

    }

    .contact-card{

        padding:30px;

    }

}

/*=========================================
              FOOTER
=========================================*/

.footer{

    background:#183153;

    padding:70px 0 25px;

    margin-top:120px;

}

.footer-content{

    display:grid;

    grid-template-columns:1.6fr 1fr 1fr 1fr;

    gap:60px;

    align-items:start;

}
.footer-logo{

    display:inline-block;

    font-size:30px;

    font-weight:700;

    text-decoration:none;

    margin-bottom:18px;

}

.footer-links ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a,

.footer-contact a,

.footer-social a{

    display:block;

    color:#d8e4f1;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover,

.footer-contact a:hover,

.footer-social a:hover{

    color:#7fd29d;

}

.footer-contact p{

    color:#d8e4f1;

    margin-bottom:14px;

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#c9d7e8;

}

.footer-policy{

    display:flex;

    gap:25px;

}

.footer-policy a{

    color:#c9d7e8;

    text-decoration:none;

}

.footer-policy a:hover{

    color:#7fd29d;

}

/*=====================
Section Headings
=====================*/

.footer h3{

    color:#ffffff;

    font-size:22px;

    font-weight:700;

    margin-bottom:24px;

}

/*=====================
About
=====================*/

.footer-brand p{

    color:rgba(255,255,255,.80);

    line-height:1.9;

    font-size:15px;

    max-width:320px;

}

/*=====================
Navigation
=====================*/

.footer-nav,

.footer-contact,

.footer-social{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-nav a,

.footer-contact a,

.footer-social a,

.footer-contact span{

    color:rgba(255,255,255,.85);

    text-decoration:none;

    transition:.3s ease;

    font-size:15px;

}

.footer-nav a:hover,

.footer-contact a:hover,

.footer-social a:hover{

    color:#5DBB7B;

    transform:translateX(4px);

}

/*=====================
Bottom
=====================*/

.footer-bottom{

    margin-top:55px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-legal{

    display:flex;

    gap:35px;

    flex-wrap:wrap;

}

.footer-legal a{

    color:rgba(255,255,255,.85);

    text-decoration:none;

    transition:.3s ease;

}

.footer-legal a:hover{

    color:#5DBB7B;

}

.footer-bottom p{

    color:rgba(255,255,255,.70);

    margin:0;

    font-size:14px;

}

/*=====================
Responsive
=====================*/

@media(max-width:992px){

    .footer-content{

        grid-template-columns:1fr 1fr;

        gap:45px;

    }

}

@media(max-width:768px){

    .footer{

        padding:55px 0 20px;

    }

    .footer-content{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-legal{

        justify-content:center;

    }

}
/* ==========================================
   RESOURCES HERO
========================================== */

.resources-hero{

    background:linear-gradient(180deg,#F8FCFB 0%,#FFFFFF 100%);

    padding:120px 0 80px;

    text-align:center;

}

.breadcrumb{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-bottom:25px;

    font-size:14px;

}

.breadcrumb a{

    color:#4BAA73;

    text-decoration:none;

}

.breadcrumb span{

    color:#7A869A;

}

.resources-hero h1{

    font-size:52px;

    margin-bottom:20px;

}

.resources-hero p{

    max-width:720px;

    margin:auto;

    color:#5E6B7A;

    line-height:1.8;

    font-size:18px;

}
/*=========================================
        RESOURCE FILTER
=========================================*/

.resources-filter{

    padding:40px 0 60px;

}

.search-box{

    max-width:650px;

    margin:0 auto 35px;

}

.search-box input{

    width:100%;

    padding:18px 24px;

    border:1px solid #DCE5EB;

    border-radius:16px;

    background:#ffffff;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.search-box input:focus{

    border-color:#5DBB7B;

    box-shadow:0 0 0 4px rgba(93,187,123,.12);

}

.category-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.category-btn{

    border:1px solid #E6EDF4;

    background:#ffffff;

    color:#183153;

    padding:14px 24px;

    border-radius:999px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.category-btn:hover,

.category-btn.active{

    background:#5DBB7B;

    color:#ffffff;

    border-color:#5DBB7B;

}
/*=========================================
        RESOURCE LIBRARY
=========================================*/

.resource-library{

    padding:40px 0 100px;

}

.library-grid{

    display:grid;

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

    gap:30px;

}

.library-card{

    background:#ffffff;

    border:1px solid #E6EDF4;

    border-radius:22px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.library-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.library-image{

    position:relative;

    height:200px;

    overflow:hidden;

}

.library-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.library-card:hover .library-image img{

    transform:scale(1.08);

}

.library-category{

    position:absolute;

    top:16px;

    left:16px;

    color:#ffffff;

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

}

.library-category.blue{

    background:#3B82F6;

}

.library-category.orange{

    background:#F59E0B;

}

.library-content{

    padding:22px;

}

.library-content h3{

    font-size:22px;

    line-height:1.4;

    color:#183153;

    margin-bottom:12px;

}

.library-content p{

    color:#677281;

    font-size:15px;

    line-height:1.7;

    margin-bottom:20px;

}

.library-link{

    color:#183153;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.library-link:hover{

    color:#5DBB7B;

    padding-left:6px;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .library-grid{

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

    }

}

@media(max-width:900px){

    .library-grid{

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

    }

}

@media(max-width:650px){

    .library-grid{

        grid-template-columns:1fr;

    }

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

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:70px;

}

.pagination a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#183153;

    background:#ffffff;

    border:1px solid #E6EDF4;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.pagination a:hover{

    background:#5DBB7B;

    color:#ffffff;

    border-color:#5DBB7B;

}

.pagination a.active{

    background:#5DBB7B;

    color:#ffffff;

    border-color:#5DBB7B;

}
/*=========================================
            ARTICLE PAGE
=========================================*/

.article-page{

    padding:80px 0 120px;

}

.article-header{

    max-width:900px;

    margin:0 auto 50px;

}

.article-category{

    display:inline-block;

    margin-top:25px;
    margin-bottom:20px;

    color:#ffffff;

    padding:10px 22px;

    border-radius:999px;

    font-size:14px;
    font-weight:700;

}

.article-header h1{

    font-size:54px;

    line-height:1.2;

    color:#183153;

    margin-bottom:18px;

}

.article-meta{

    color:#677281;

    margin-bottom:30px;

}

.article-header img{

    width:100%;

    border-radius:24px;

}

.article-content{

    max-width:900px;

    margin:60px auto 0;

}

.article-content h2{

    margin:40px 0 18px;

    color:#183153;

    font-size:34px;

}

.article-content p{

    font-size:18px;

    line-height:1.9;

    color:#55606F;

    margin-bottom:25px;

}
/*=========================================
        ARTICLE HERO
=========================================*/

.article-hero{

    background:linear-gradient(180deg,#F8FCFB 0%,#FFFFFF 100%);
    padding:110px 0 70px;

}

.article-hero-content{

    max-width:850px;
    margin:0 auto;
    text-align:center;

}


.article-hero h1{

    font-size:50px;
    line-height:1.2;
    color:#183153;

    margin-bottom:25px;

}

.article-description{

    max-width:700px;
    margin:0 auto 35px;

    font-size:18px;
    line-height:1.8;

    color:#64748B;

}

.article-meta{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    color:#667281;

    font-size:15px;

}

.article-featured{

    margin-top:40px;

}

/*=========================================
        ARTICLE FEATURED IMAGE
=========================================*/

.article-featured{

    padding:50px 0;

}

.article-featured{

    padding:50px 0;

}

.article-featured img{

    width:100%;

    height:auto;

    aspect-ratio:16 / 9;

    object-fit:cover;

    display:block;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}
/*=========================================
        ARTICLE CONTENT
=========================================*/

.article-content{

    max-width:800px;
    margin:70px auto;
    line-height:1.9;
    font-size:18px;
    color:#374151;

}

.article-content h2{

    font-size:36px;
    margin:60px 0 20px;
    color:#111827;

}

.article-content h3{

    font-size:28px;
    margin:45px 0 18px;
    color:#111827;

}

.article-content p{

    margin-bottom:24px;

}

.article-content ul,
.article-content ol{

    margin:25px 0 30px 28px;

}

.article-content li{

    margin-bottom:12px;

}

.article-content a{

    color:#2563eb;
    text-decoration:none;
    font-weight:600;

}

.article-content a:hover{

    text-decoration:underline;

}
/*=========================================
        RELATED ARTICLES
=========================================*/

.related-articles{

    padding:90px 0;
    background:#f8fafc;

}

.related-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}

.related-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.related-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.related-card img{

    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;

}

.related-content{

    padding:25px;

}

.related-content > span:not(.category-badge){

    color:#16a34a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;

}


.related-content h3{

    margin-top:12px;
    color:#111827;
    font-size:22px;
    line-height:1.4;

}
@media(max-width:768px){

    .related-grid{

        grid-template-columns:1fr;

    }

}
/*=========================================
        ARTICLE FAQ
=========================================*/

.article-faq{

    padding:90px 0;

}

.faq-container{

    max-width:850px;
    margin:50px auto 0;

}

.faq-item{

    border:1px solid #e5e7eb;
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
    background:#fff;
    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;
    padding:24px 28px;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#111827;
    text-align:left;

}

.faq-question span{

    font-size:28px;
    color:#16a34a;
    transition:.3s;

}

.faq-answer{

    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 28px 24px;
    margin:0;
    line-height:1.8;
    color:#4b5563;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

@media(max-width:768px){

    .faq-question{

        font-size:18px;
        padding:20px;

    }

}
.btn {
    display: inline-block;
    background: #2d7d46;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #25673a;
}
.admin-btn {
    display: inline-block;
    background: #2d7d46;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

.admin-btn:hover {
    background: #25673a;
    color: #ffffff !important;
}
/* ==========================================
   CATEGORY COLORS
========================================== */

.category-selling{
    background:#2E7D32;
}

.category-buying{
    background:#1565C0;
}

.category-guides{
    background:#8E24AA;
}

.category-financing{
    background:#EF6C00;
}

.category-maintenance{
    background:#C62828;
}

.category-other{
    background:#616161;
}
/* ==========================================
   CATEGORY BADGES
========================================== */

.category-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    color:#ffffff !important;
    text-transform:uppercase;
    line-height:1;
}

.related-content .article-category{
    margin:0 0 15px 0;
    color:#ffffff !important;
}
.pagination span{

    display:flex;

    align-items:center;

    justify-content:center;

    width:46px;

    height:46px;

    color:#64748B;

    font-weight:600;

}
.success-modal{

    position:fixed;
    inset:0;

    display:none;

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

    background:rgba(15,23,42,.45);
    backdrop-filter:blur(10px);

    z-index:99999;

}

.success-box{

    position:relative;

    width:90%;
    max-width:430px;

    background:#fff;

    padding:42px 38px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 30px 80px rgba(15,23,42,.15);

}

.success-box h3{

    margin:0 0 14px;

    font-family:"Poppins",sans-serif;

    font-size:28px;

    font-weight:600;

    color:#1E293B;

    line-height:1.25;

}

.success-box p{

    margin:0;

    font-family:"Poppins",sans-serif;

    font-size:16px;

    font-weight:400;

    line-height:1.8;

    color:#64748B;

}

.modal-close{

    position:absolute;

    top:18px;
    right:18px;

    width:36px;
    height:36px;

    border:none;

    background:transparent;

    color:#94A3B8;

    font-size:30px;

    font-weight:300;

    cursor:pointer;

    transition:.25s;

}

.modal-close:hover{

    color:#0F172A;
    transform:rotate(90deg);

}
.card-link{

    text-decoration:none;
    color:inherit;
    display:block;

}

.card-link:hover .card{

    transform:translateY(-5px);

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

    transition:.25s ease;

}
.clickable-card{

    cursor:pointer;

    transition:.25s ease;

}

.clickable-card:hover{

    transform:translateY(-5px);

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

}
/* ==========================================
   MOBILE NAVIGATION
========================================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    font-size:30px;
    color:#183153;
    width:45px;
    height:45px;
}

@media (max-width:768px){

    .header .container{
        height:72px;
    }

    .nav{
        position:relative;
        display:flex;
        align-items:center;
        justify-content:flex-end;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

  .nav-links{
    display:none;
    position:absolute;
    top:72px;
    right:0;
    left:auto;
    z-index:9999;
    width:280px;
        background:#fff;
        flex-direction:column;
        gap:18px;
        padding:25px;
        border-radius:0 0 0 16px;
        box-shadow:0 15px 35px rgba(0,0,0,.12);
    }

    .nav-links.active{
        display:flex;
    }
}

@media (min-width:769px){

    .menu-toggle{
        display:none !important;
    }

    .nav-links{
        display:flex !important;
        position:static;
        width:auto;
        padding:0;
        background:none;
        box-shadow:none;
        flex-direction:row;
        gap:35px;
    }

}
/* =====================================================
   LEGAL PAGES
===================================================== */

.page-hero{

    padding:90px 0 60px;
    background:linear-gradient(135deg,#F8FCFF,#F2FAF6);
    text-align:center;

}

.page-hero h1{

    font-size:48px;
    color:#17375E;
    margin-bottom:20px;

}

.page-hero p{

    max-width:720px;
    margin:auto;
    font-size:18px;
    color:#5E6E8C;
    line-height:1.8;

}

.page-content{

    padding:80px 0;

}

.legal-content{

    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.legal-content h2{

    margin-top:40px;
    margin-bottom:15px;
    color:#17375E;
    font-size:28px;

}

.legal-content p{

    color:#55657E;
    line-height:1.9;
    margin-bottom:18px;

}

.legal-content ul{

    margin:20px 0 30px 25px;

}

.legal-content li{

    margin-bottom:12px;
    color:#55657E;
    line-height:1.8;

}