*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
    color:#222;
}

/* HEADER */

header{
    position: fixed;
    top: 0;
    width: 100%;
    background: #ff6600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    z-index: 999;
    box-sizing: border-box;
}

.logo{
    height: 55px;
    width: auto;
    display: block;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.menu-toggle{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* HERO */

.hero{
    height:100vh;
    background:url('hero.png') center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    top: 80px;
    z-index:2;
    color:white;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    background:#ff6600;
    color:white;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

/* SECTIONS */

.section{
    padding:80px 10%;
    background:white;
}

.alt-section{
    background:#fff3eb;
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    color:#ff6600;
    font-size:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    padding:20px;
    text-align:center;
}

.card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

.card h3{
    margin-bottom:10px;
}

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:20px;
    line-height:1.8;
}

/* CONTACT FORM */

.contact-form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.contact-form button{
    background:#ff6600;
    color:white;
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

/* FOOTER */

footer{
    background:#ff6600;
    color:white;
    padding:60px 10% 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

footer h3{
    margin-bottom:20px;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

.copyright{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.3);
    padding-top:20px;
}

/* FLOATING BUTTONS */

.floating-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.floating-buttons a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:28px;
    text-decoration:none;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#ff6600;
}

/* MOBILE */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:80px;
        right:0;
        background:#ff6600;
        flex-direction:column;
        width:220px;
        display:none;
    }

    nav.show{
        display:flex;
    }

    nav a{
        padding:15px;
        border-top:1px solid rgba(255,255,255,0.2);
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .logo-area h2{
        font-size:22px;
    }
}