:root{
    --primary:#F06A00;
    --secondary:#F58A00;
    --accent:#FFC107;
    --accent-light:#FFD83D;

    --dark:#2C2C2C;
    --gray:#6B7280;
    --light:#F9F9F9;
    --white:#FFFFFF;

    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:14px;
}

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:var(--white);
    line-height:1.7;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


.logo img{
    height:70px;
    width:auto;
}

.btn-book{
    padding:12px 28px;
    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;
    font-weight:600;
    transition:.3s;
}

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

/* MAIN */

main{
    min-height:70vh;
}

.footer{
    background:#1f1f1f;
    color:#fff;
    margin-top:80px;
}

.footer-content{
    padding:70px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo img{
    height:90px;
    margin-bottom:20px;
}

.footer-about p{
    color:#cfcfcf;
    line-height:1.8;
    max-width:380px;
}

.footer h4{
    color:var(--accent);
    margin-bottom:20px;
    font-size:18px;
}

.footer-links ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#d8d8d8;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
    padding-left:5px;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
    color:#d8d8d8;
}

.footer-contact i{
    color:var(--accent);
    width:20px;
}

.social-links{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-links a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(255,255,255,.08);

    color:#fff;
    transition:.3s;
}

.social-links a:hover{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-content{
    min-height:70px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    color:#cfcfcf;
    font-size:14px;
}

.footer-bottom a{
    color:var(--accent);
    font-weight:600;
}

.footer-bottom a:hover{
    color:var(--primary);
}

@media(max-width:992px){

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-about p{
        max-width:100%;
    }

    .social-links{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;
    }

    .footer-bottom-content{
        flex-direction:column;
        padding:20px 0;
        text-align:center;
    }
}


.topbar{
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    font-size:14px;
}

.topbar-content{
    min-height:42px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar-left,
.topbar-right{
    display:flex;
    gap:25px;
    align-items:center;
}

.topbar span{
    display:flex;
    align-items:center;
    gap:8px;
}
.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.header-content{
    height:95px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:75px;
    width:auto;
}

.navbar ul{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    color:var(--dark);
    font-weight:700;
    position:relative;
    transition:.3s;
}

.navbar a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:3px;

    background:var(--primary);
    transition:.3s;
}

.navbar a:hover::after,
.navbar a.active::after{
    width:100%;
}

.navbar a:hover{
    color:var(--primary);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}
.btn-book{
    padding:14px 28px;
    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;
    font-weight:600;

    transition:.3s;
}

.btn-book:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(240,106,0,.25);
}
.menu-toggle{
    display:none;

    border:none;
    background:none;

    font-size:32px;
    color:var(--primary);
    cursor:pointer;
}
@media (max-width: 992px){

    .topbar{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .btn-book{
        display:none;
    }

    .navbar{
        position:fixed;

        top:95px;
        right:-100%;

        width:300px;
        height:calc(100vh - 95px);

        background:#fff;

        box-shadow:-5px 0 25px rgba(0,0,0,.08);

        transition:.4s ease;
    }

    .navbar.active{
        right:0;
    }

    .navbar ul{
        flex-direction:column;
        align-items:flex-start;

        gap:0;
        padding:30px;
    }

    .navbar li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .navbar a{
        display:block;
        padding:18px 0;
        width:100%;
    }

    .logo img{
        height:65px;
    }
}

@media (max-width:576px){

    .header-content{
        height:85px;
    }

    .logo img{
        height:55px;
    }

    .navbar{
        top:85px;
        height:calc(100vh - 85px);
        width:100%;
    }
}

.mobile-booking{
    display:none;
}
@media(max-width:992px){

    .btn-book{
        display:none;
    }

    .mobile-booking{
        display:block;
        margin-top:20px;
        border:none !important;
    }

    .btn-book-mobile{
        display:block;
        width:100%;
        text-align:center;

        padding:14px 20px;

        border-radius:50px;

        background:linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );

        color:#fff !important;
        font-weight:600;

        box-shadow:0 8px 20px rgba(240,106,0,.2);
    }
}


/* ==========================
   WHATSAPP
========================== */

.floating-whatsapp{

    position: fixed;

    left: 25px;
    bottom: 5px;

    z-index: 9999;

    display: flex;
    align-items: center;

    text-decoration: none;
}

.whatsapp-icon{

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 32px;

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

    transition: .3s;
}

.whatsapp-icon:hover{

    transform: scale(1.08);
}

.whatsapp-tooltip{

    position: absolute;

    left: 80px;

    background: #fff;

    padding: 12px 18px;

    border-radius: 12px;

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

    min-width: 220px;

    color: #333;

    font-size: 14px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(-10px);

    transition: .35s ease;
}

.whatsapp-tooltip span{

    display: block;

    color: #25D366;

    font-weight: 600;

    margin-top: 3px;
}

.floating-whatsapp:hover .whatsapp-tooltip{

    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}

/* ==========================
   BACK TO TOP
========================== */

#backToTop{

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    border: none;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ffb300,
        #f57c00
    );

    color: white;

    font-size: 18px;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: .3s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

#backToTop.show{

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

#backToTop:hover{

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}