/* GENEL */

body{
    margin:0;
    font-family:'Montserrat',sans-serif;
    background:#0f0f0f;
    color:white;
}

h1,h2,h3{
    margin:0;
}

p{
    line-height:1.6;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#111;
}

.logo{
    font-weight:700;
    font-size:20px;
}

/* HERO */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:100px 8%;
    min-height:85vh;
}

.hero-left{
    max-width:600px;
}

.hero h1{
    font-size:44px;
    line-height:1.2;
}

.hero p{
    color:#ccc;
    margin:25px 0 40px;
    font-size:18px;
}

/* BUTON */

.btn{
    padding:16px 34px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
    transition:0.3s;
}

.gold{
    background:#d4af37;
    color:black;
}

.gold:hover{
    background:#f1c94a;
}

/* PROBLEM */

.problem{
    padding:80px 8%;
    text-align:center;
    background:#141414;
}

.problem h2{
    margin-bottom:20px;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:80px 8%;
}

.card{
    background:#1a1a1a;
    padding:30px;
    border-radius:10px;
}

/* CTA */

.cta{
    text-align:center;
    padding:100px 20px;
    background:#111;
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px;
    background:#0c0c0c;
    color:#666;
}

/* FLOATING WHATSAPP */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    padding:15px 20px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    text-decoration:none;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.05);
}

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}
.logo-text{
    font-weight:700;
    font-size:18px;
    letter-spacing:1px;
    color:#ffffff;
}

