*{
    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;
}

/* SLIDER ARROWS */

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:35px;
    color:white;
    font-weight:bold;
    z-index:5;
    cursor:pointer;
    user-select:none;
    padding:10px;
    transition:0.3s;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.prev:hover,
.next:hover{
    color:#ff6600;
}

/* HERO SLIDER */

.hero{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider{
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */

.hero::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1{
    font-size: 70px;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 28px;
    margin-bottom: 25px;
}

.btn{
    background: #ff6600;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    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 SECTION */

.contact-section{
    background:#fff7f0;
    padding:100px 8%;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-map{
    height:450px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-area h2{
    font-size:48px;
    color:#ff6600;
    margin-bottom:30px;
}

.contact-form-area form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-area input,
.contact-form-area textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    background:white;
}

.contact-form-area textarea{
    height:150px;
    resize:none;
}

.contact-form-area button{
    background:#ff6600;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.contact-form-area button:hover{
    background:#e65c00;
}


/* MOBILE */

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-map{
        height:300px;
    }

    .contact-form-area h3{
        font-size:36px;
    }

}

/* 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;
    }
}