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

body{

    font-family:'Inter',sans-serif;

    color:#1E1E1E;

    background-image:url("modern-white-background-free-vector.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

}
nav{

    position: fixed;

    top: 25px;
    left: 0;

    width: 100%;

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 8%;

    background: rgba(248, 250, 246, 0.92);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 8px 30px rgba(0,0,0,0.04);

    z-index: 1000;

}

.logo{

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

    font-size:34px;

    font-weight:700;

    letter-spacing:1px;

    color:#222;

}

nav ul{

    display:flex;

    gap:45px;

    list-style:none;

}

nav ul a{

    text-decoration:none;

    color:#222;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

nav ul a:hover{

    color:#6A994E;

}
.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:120px 8% 0;

}

.hero-text{

    max-width:860px;

}

.hero h1{

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

    font-size:72px;

    line-height:82px;

    margin-bottom:20px;

}

.hero p{

    font-size:20px;

    color:#555;

    line-height:35px;

    margin-bottom:40px;

}
/* BUTTON */

.search-btn{

    display:inline-block;

    text-decoration:none;

    margin-top:-10px;

    padding:18px 42px;

    border-radius:40px;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

    font-weight:600;

    transition:1s;

}

.search-btn:hover{

    transform:translateY(-5px);

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

}
.search-box{

    display:flex;

    width:650px;

    background:white;

    border-radius:50px;

    overflow:hidden;

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

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:20px 28px;

    font-size:17px;

    font-family:'Inter',sans-serif;

}

.search-box button{

    border:none;

    cursor:pointer;

    padding:0 35px;

    background:#1E1E1E;

    color:white;

    font-size:16px;

    transition:.3s;

}

.search-box button:hover{

    background:#66BB6A;

}
.floating-wishlist{

    position:fixed;

    bottom:35px;

    right:35px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px 22px;

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:60px;

    text-decoration:none;

    color:#222;

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

    transition:.35s;

    z-index:9999;

}

.floating-wishlist:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 50px rgba(0,0,0,.18);

}

.floating-wishlist i{

    font-size:24px;

    color:#E63946;

}

.wishlist-text{

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

    font-size:16px;

    font-weight:600;

}

.wishlist-count{

    width:30px;

    height:30px;

    border-radius:50%;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    font-weight:700;

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

    nav{

        padding:0 5%;

    }

    .hero{

        padding:120px 5% 0;

    }

    .hero h1{

        font-size:60px;

        line-height:70px;

    }

    .hero p{

        font-size:18px;

        line-height:32px;

    }

    .search-box{

        width:580px;

    }

}

/* Tablet */

@media (max-width:992px){

    nav{

        padding:0 30px;

    }

    nav ul{

        gap:22px;

    }

    .hero{

        padding:140px 30px 60px;

        text-align:center;

        justify-content:center;

    }

    .hero-text{

        max-width:100%;

    }

    .hero h1{

        font-size:50px;

        line-height:60px;

    }

    .hero p{

        font-size:18px;

        line-height:30px;

    }

    .search-box{

        width:100%;

        max-width:650px;

        margin:auto;

    }

}

/* Mobile */

@media (max-width:768px){

    nav{

        height:auto;

        padding:18px 20px;

        flex-direction:column;

        gap:16px;

    }

    nav ul{

        gap:18px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .logo{

        font-size:30px;

    }

    .hero{

        min-height:100vh;

        padding:170px 20px 50px;

        justify-content:center;

        text-align:center;

    }

    .hero h1{

        font-size:36px;

        line-height:46px;

    }

    .hero p{

        font-size:16px;

        line-height:28px;

        margin-bottom:28px;

    }

    .search-box{

        width:100%;

        flex-direction:column;

        border-radius:18px;

    }

    .search-box input{

        width:100%;

        padding:18px;

    }

    .search-box button{

        width:100%;

        padding:18px;

    }

    .search-btn{

        padding:16px 32px;

    }

    .floating-wishlist{

    bottom:18px;

    right:18px;

    padding:12px 18px;

    gap:10px;

    border-radius:50px;

}

.floating-wishlist i{

    font-size:20px;

}

.wishlist-text{

    display:block;

    font-size:14px;

}

.wishlist-count{

    width:24px;

    height:24px;

    font-size:12px;

}

}
.announcement-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

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

    font-size:14px;

    font-weight:600;

    letter-spacing:.3px;

    z-index:2000;

}
/* HOW IT WORKS */

.how-it-works{

    padding:110px 8%;

    background:transparent;

}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading h2{

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

    font-size:52px;

    font-weight:700;

    line-height:1.15;

    letter-spacing:-1px;

    color:#222;

    margin-bottom:18px;

}

.section-heading p{

    font-family:'Inter',sans-serif;

    font-size:20px;

    line-height:34px;

    color:#666;

    max-width:650px;

    margin:0 auto;

}

.section-divider{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:30px auto 90px;

}

.section-divider::before,

.section-divider::after{

    content:"";

    flex:1;

    max-width:320px;

    height:2px;

    background:linear-gradient(
        90deg,
        rgba(212,160,23,.9),
        rgba(106,153,78,.9)
    );

    opacity:.9;

}

.section-divider span{

    width:54px;

    height:54px;

    margin:0 28px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    color:white;

    background:linear-gradient(135deg,#D4A017,#6A994E);

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

}

.steps{

    display:grid;

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

    gap:30px;

}

.step-card{

    background:white;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

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

    transition:.35s;

}

.step-card:hover{

    transform:translateY(-10px);

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

}

.step-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

    font-size:30px;

}

.step-card h3{

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

    font-size:24px;

    font-weight:600;

    margin-bottom:14px;

}

.step-card p{

    font-size:16px;

    line-height:30px;

    color:#666;

}

@media(max-width:1000px){

    .steps{

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

    }

}

@media(max-width:600px){

    .section-heading{

        margin-bottom:50px;

    }

    .section-heading h2{

        font-size:38px;

    }

    .section-heading p{

        font-size:17px;

        line-height:30px;

    }

    .steps{

        grid-template-columns:1fr;

    }

}
.section-divider{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:30px auto 90px;

}

.section-divider::before,

.section-divider::after{

    content:"";

    flex:1;

    max-width:320px;

    height:2px;

    background:linear-gradient(
        90deg,
        rgba(212,160,23,.9),
        rgba(106,153,78,.9)
    );

    opacity:.9;

}

.section-divider span{

    width:54px;

    height:54px;

    margin:0 28px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    color:white;

    background:linear-gradient(135deg,#D4A017,#6A994E);

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

}
.footer{

    margin-top:120px;

    background:#f7f8f5;

    border-top:1px solid rgba(0,0,0,.06);

}

.footer-content{

    max-width:1300px;

    margin:auto;

    padding:65px 8%;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

}

.footer-brand h2{

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

    font-size:38px;

    margin-bottom:18px;

}

.footer-brand p{

    max-width:420px;

    color:#666;

    line-height:32px;

    font-size:17px;

}

.footer-column h3{

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

    font-size:22px;

    margin-bottom:24px;

}

.footer-column a{

    display:block;

    margin-bottom:16px;

    color:#555;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#6A994E;

}

.footer-column p{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:#555;

}

.footer-column i{

    color:#6A994E;

    width:18px;

}

.footer-bottom{

    border-top:1px solid rgba(0,0,0,.06);

    text-align:center;

    padding:24px;

    color:#777;

    font-size:15px;

}

@media(max-width:900px){

    .footer-content{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

    .footer-brand p{

        margin:auto;

    }

    .footer-column p{

        justify-content:center;

    }

}