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

body{
    font-family:'Poppins',sans-serif;
    color:#1f2937;
    background:#fefcf8;
  line-height:1.75;
    font-size:16px;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

.hero{
    padding:80px 0;
    background:
    linear-gradient(135deg,#fff8eb,#fff);
}

.hero-content{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffb84d;
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-weight:600;
    font-size:0.9rem;
    letter-spacing:0.02em;
}

h1, h2, h3{
    letter-spacing:-0.02em;
    color:#111827;
    line-height:1.2;
}

.hero h1{
    font-size:3.2rem;
    font-weight:700;
    margin-bottom:18px;
}

.hero h1 span{
    color:#f59e0b;
    font-weight:700;
}

p{
    font-size:1.05rem;
    color:#4b5563;
}

.hero p{
    font-size:1.1rem;
    margin-bottom:30px;
}

.hero-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    white-space:nowrap;
    transition:all 0.2s ease;
}


.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:#f59e0b;
    color:white;
}

.btn-secondary{
    background:white;
    color:#f59e0b;
    border:2px solid #f59e0b;
}

.about{
    padding:80px 0;
    text-align:center;
}

section h2{
    font-size:2rem;
    font-weight:600;
    margin-bottom:15px;
}

.about h2,
.gallery h2,
.contact h2{
    font-size:2.1rem;
    font-weight:600;
}

.about h2{
    margin-bottom:20px;
}

.requirements{
    padding:60px 0;
}

.requirements .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h3{
    font-size:1.3rem;
    font-weight:600;
    color:#f59e0b;
    margin-bottom:16px;
}

.card ul{
    list-style:none;
}



.card li{
    font-size:1rem;
    color:#374151;
    line-height:1.6;
}

.gallery{
    padding:80px 0;
    text-align:center;
}

.gallery-grid{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
}

.contact{
    padding:100px 0;
    background:#fff7e8;
    text-align:center;
}

.contact-box{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-box a{
    font-size:1.1rem;
    font-weight:500;
    color:#1f2937;
}

@media(max-width:900px){

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.5rem;
    }
    .actions{
        flex-direction:column;
        align-items:stretch;
    }

    .btn{
        width:100%;
    }

    .whatsapp-float{
        width:35px;
        height:35px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float i{
        font-size:20px;
    }
}

.whatsapp i {
    color: #25D366;
    font-size: 64px;
    position:fixed;
    right:30px;
    bottom:30px;
    text-decoration:none
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:45px;
    height:45px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);

     /* start hidden */
    opacity:0;
    transform:translateY(20px) scale(0.9);
    pointer-events:none;

    /* fade-in animation */
    animation:fadeInUp 0.8s ease forwards;
    animation-delay:3s;
}

/* icon */
.whatsapp-float i{
    color:white;
    font-size:27px;
}

/* pulse ring */
.whatsapp-float::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#25D366;
    z-index:-1;
    animation:pulse 1.8s infinite;
    opacity:0.6;
}

@keyframes fadeInUp{
    to{
        opacity:1;
        transform:translateY(0) scale(1);
        pointer-events:auto;
    }
}

/* pulse animation */
@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.6);
        opacity:0;
    }
    100%{
        transform:scale(1.6);
        opacity:0;
    }
}

/* hover effect */
.whatsapp-float:hover{
    transform:scale(1.08);
    transition:0.2s ease;
}
