/*==============================================================
 B FOR BOOKING
 Main Stylesheet
 Version : 2.0 (2026)
 Author  : GrowideIndia
==============================================================*/


/*==============================================================
 GOOGLE FONT
==============================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==============================================================
 ROOT VARIABLES
==============================================================*/

:root{

    --primary:#063B28;
    --secondary:#D4AF37;

    --white:#ffffff;
    --black:#222222;

    --light:#f8f9fa;
    --gray:#6c757d;

    --border:#e9ecef;

    --radius:16px;

    --shadow-sm:0 4px 12px rgba(0,0,0,.08);
    --shadow-md:0 10px 25px rgba(0,0,0,.12);
    --shadow-lg:0 20px 40px rgba(0,0,0,.18);

    --transition:.35s ease;

}


/*==============================================================
 RESET
==============================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--black);

    background:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

section{

    padding:90px 0;

}


/*==============================================================
 TYPOGRAPHY
==============================================================*/

h1,h2,h3,h4,h5,h6{

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

h1{

    font-size:clamp(42px,5vw,68px);

}

h2{

    font-size:clamp(32px,4vw,46px);

}

h3{

    font-size:28px;

}

p{

    color:#555;

    font-size:17px;

}

.section-title{

    text-align:center;

    margin-bottom:15px;

}

.section-subtitle{

    text-align:center;

    max-width:760px;

    margin:auto auto 60px;

    color:#666;

}


/*==============================================================
 UTILITIES
==============================================================*/

.bg-primary{

    background:var(--primary)!important;

}

.bg-secondary{

    background:var(--secondary)!important;

}

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.rounded-xl{

    border-radius:20px;

}

.shadow-hover{

    transition:var(--transition);

}

.shadow-hover:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}


/*==============================================================
 BUTTONS
==============================================================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:var(--transition);

}

.btn-success{

    background:var(--primary)!important;

    border:none;

}

.btn-success:hover{

    background:#0c6244!important;

    transform:translateY(-3px);

}

.btn-warning{

    background:var(--secondary)!important;

    color:var(--primary)!important;

    border:none;

}

.btn-warning:hover{

    transform:translateY(-3px);

}


/*==============================================================
 NAVBAR
==============================================================*/

.navbar{

    background:#fff;

    padding:18px 0;

    transition:.4s;

}

.navbar-brand img{

    height:65px;

}

.nav-link{

    color:var(--primary)!important;

    font-weight:500;

    margin-left:18px;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link:hover{

    color:var(--secondary)!important;

}


/*==============================================================
 HERO SECTION
==============================================================*/

.hero-section{

    background:

    linear-gradient(rgba(6,59,40,.88),
    rgba(6,59,40,.88)),

    url("../images/hero-bg.jpg") center center/cover no-repeat;

    min-height:780px;

    display:flex;

    align-items:center;

    color:#fff;

    position:relative;

}

.hero-section h1{

    color:#fff;

}

.hero-section p{

    color:#f1f1f1;

    font-size:20px;

    max-width:620px;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}


/*==============================================================
 HERO IMAGE
==============================================================*/

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:700px;

    height:auto;

    object-fit:contain;

    animation:float 5s ease-in-out infinite;

}


/*==============================================================
 FLOAT ANIMATION
==============================================================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}


/*==============================================================
 BOOKING SEARCH
==============================================================*/

.booking-search{

    position:relative;

    z-index:10;

    margin-top:-70px;

}

.booking-search .card{

    border:none;

    border-radius:22px;

    box-shadow:var(--shadow-lg);

}


/*==============================================================
 COMMON CARD
==============================================================*/

.card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}
/*==============================================================
 BOOKING CATEGORY
==============================================================*/

.category-card{

    background:#fff;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    height:100%;

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.category-card i{

    font-size:52px;

    color:var(--primary);

    margin-bottom:20px;

}

.category-card h5{

    margin-bottom:10px;

}

.category-card p{

    font-size:15px;

    color:#666;

}


/*==============================================================
 FEATURED OFFERS
==============================================================*/

.offer-box{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.offer-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.offer-box img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.offer-content{

    padding:25px;

}

.offer-price{

    color:var(--secondary);

    font-size:30px;

    font-weight:700;

}


/*==============================================================
 DESTINATIONS
==============================================================*/

.destination-card{

    text-align:center;

    transition:var(--transition);

}

.destination-card:hover{

    transform:translateY(-8px);

}

.destination-card img{

    width:240px;

    height:240px;

    margin:auto;

    object-fit:cover;

    border-radius:50%;

    border:6px solid var(--primary);

    transition:.5s;

}

.destination-card:hover img{

    transform:scale(1.05);

}

.destination-card h5{

    margin-top:20px;

}

.destination-card p{

    font-size:15px;

}


/*==============================================================
 HEALTHY PRODUCTS
==============================================================*/

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.product-content{

    padding:25px;

}

.product-content h5{

    margin-bottom:15px;

}

.product-content p{

    margin-bottom:20px;

}


/*==============================================================
 SERVICES
==============================================================*/

.service-box{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:20px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    height:100%;

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-box i{

    font-size:58px;

    color:var(--secondary);

    margin-bottom:20px;

}


/*==============================================================
 STATISTICS
==============================================================*/

.stats-section{

    background:linear-gradient(rgba(6,59,40,.94),rgba(6,59,40,.94)),
    url("../images/stats-bg.jpg") center/cover;

    color:#fff;

}

.counter{

    text-align:center;

}

.counter h2{

    color:#fff;

    font-size:52px;

    margin-bottom:10px;

}

.counter p{

    color:#eee;

    margin:0;

}


/*==============================================================
 PARTNER SECTION
==============================================================*/

.partner-section{

    background:var(--light);

}

.partner-box{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:var(--shadow-md);

}

.partner-box ul{

    padding-left:0;

}

.partner-box li{

    margin-bottom:15px;

    color:#555;

}

.partner-box li i{

    color:var(--secondary);

    margin-right:10px;

}


/*==============================================================
 TESTIMONIALS
==============================================================*/

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin:auto auto 20px;

}

.testimonial-card p{

    font-style:italic;

}

.rating{

    color:#FFD700;

    margin-top:15px;

}


/*==============================================================
 BLOG
==============================================================*/

.blog-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.blog-content{

    padding:25px;

}

.blog-date{

    color:var(--secondary);

    font-size:14px;

    font-weight:600;

}


/*==============================================================
 NEWSLETTER
==============================================================*/

.newsletter{

    background:var(--primary);

    color:#fff;

}

.newsletter h2{

    color:#fff;

}

.newsletter p{

    color:#ddd;

}

.newsletter input{

    height:58px;

    border-radius:50px;

    border:none;

    padding-left:25px;

}

.newsletter .btn{

    height:58px;

}


/*==============================================================
 BACK TO TOP
==============================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border-radius:50%;

    border:none;

    background:var(--secondary);

    color:var(--primary);

    font-size:22px;

    display:none;

    z-index:999;

    transition:var(--transition);

}

#backToTop:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-md);

}
/*==============================================================
 FAQ SECTION
==============================================================*/

.accordion-item{

    border:none;

    border-radius:16px!important;

    margin-bottom:15px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

}

.accordion-button{

    font-weight:600;

    color:var(--primary);

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    color:#555;

    line-height:1.8;

}


/*==============================================================
 LOGIN / REGISTER
==============================================================*/

.auth-card{

    background:#fff;

    border-radius:22px;

    padding:45px;

    box-shadow:var(--shadow-md);

}

.auth-card h2{

    margin-bottom:30px;

}

.auth-card .form-control{

    height:54px;

}

.auth-card .btn{

    width:100%;

}


/*==============================================================
 BOOKING FORM
==============================================================*/

.booking-form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow-md);

}

.booking-form .form-control,

.booking-form .form-select{

    height:55px;

    border-radius:12px;

}

.booking-form textarea{

    border-radius:12px;

}


/*==============================================================
 CONTACT
==============================================================*/

.contact-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    height:100%;

}

.contact-box i{

    font-size:40px;

    color:var(--secondary);

    margin-bottom:20px;

}


/*==============================================================
 FORMS
==============================================================*/

.form-control,

.form-select{

    border-radius:12px;

    border:1px solid var(--border);

}

.form-control:focus,

.form-select:focus{

    border-color:var(--secondary);

    box-shadow:none;

}


/*==============================================================
 TABLES
==============================================================*/

.table{

    border-radius:16px;

    overflow:hidden;

}

.table thead{

    background:var(--primary);

    color:#fff;

}


/*==============================================================
 BADGES
==============================================================*/

.badge-primary{

    background:var(--primary);

    color:#fff;

}

.badge-secondary{

    background:var(--secondary);

    color:var(--primary);

}


/*==============================================================
 ALERTS
==============================================================*/

.alert{

    border:none;

    border-radius:14px;

}


/*==============================================================
 SOCIAL ICONS
==============================================================*/

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:var(--transition);

}

.social-icons a:hover{

    background:var(--secondary);

    color:var(--primary);

}


/*==============================================================
 FOOTER
==============================================================*/

footer{

    background:#021d14;

    color:#ddd;

}

footer h5{

    color:#fff;

    margin-bottom:25px;

}

footer ul{

    padding:0;

}

footer li{

    margin-bottom:12px;

}

footer a{

    color:#ddd;

}

footer a:hover{

    color:var(--secondary);

}

footer hr{

    border-color:rgba(255,255,255,.12);

}

.footer-bottom{

    text-align:center;

    padding-top:20px;

    font-size:14px;

}


/*==============================================================
 LOADER
==============================================================*/

.loader{

    width:60px;

    height:60px;

    border:6px solid #eee;

    border-top:6px solid var(--secondary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}


/*==============================================================
 ANIMATION HELPERS
==============================================================*/

.fade-up{

    animation:fadeUp .8s ease;

}

.fade-in{

    animation:fadeIn .8s ease;

}

.zoom-in{

    animation:zoomIn .6s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}


/*==============================================================
 SPACING HELPERS
==============================================================*/

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

.py-100{

    padding:100px 0;

}

.radius-20{

    border-radius:20px;

}


/*==============================================================
 IMAGE HELPERS
==============================================================*/

.img-cover{

    width:100%;

    height:100%;

    object-fit:cover;

}

.img-contain{

    width:100%;

    height:auto;

    object-fit:contain;

}


/*==============================================================
 SCROLLBAR
==============================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}


/*==============================================================
 SELECTION
==============================================================*/

::selection{

    background:var(--secondary);

    color:var(--primary);

}


/*==============================================================
 PRINT
==============================================================*/

@media print{

    .navbar,

    .newsletter,

    footer,

    #backToTop{

        display:none!important;

    }

    body{

        background:#fff;

    }

}
/* =========================================
   MOBILE HERO SPACING
========================================= */

@media (max-width:768px){

    .hero-image{
        margin-top:25px;
    }

}