/* ==========================
   Leisure Travels India
   Global Styles
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',Arial,sans-serif;
    background:#0b0b0b;
    color:#fff;
    line-height:1.8;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

/* ==========================
   Header
========================== */

header{
    padding:20px;
    text-align:center;
    border-bottom:1px solid #222;
    background:#0b0b0b;
    position:sticky;
    top:0;
    z-index:1000;
}

header h1{
    color:#d4af37;
    font-size:28px;
    letter-spacing:1px;
    font-weight:700;
}

/* ==========================
   Hero
========================== */

.hero{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
    text-align:center;
}

.hero h2{
    font-size:40px;
    color:#fff;
    margin-bottom:20px;
}

.hero p{
    color:#cfcfcf;
    font-size:17px;
    margin-bottom:18px;
}

/* ==========================
   Sections
========================== */

section{
    max-width:1100px;
    margin:auto;
    padding:60px 20px;
}

section h3{
    color:#d4af37;
    font-size:32px;
    margin-bottom:35px;
    text-align:center;
}

/* ==========================
   Service Cards
========================== */

.service-box{
    background:#111;
    border:1px solid #252525;
    border-radius:15px;
    padding:28px;
    margin-bottom:25px;
    transition:.35s;
}

.service-box:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
    box-shadow:0 12px 35px rgba(212,175,55,.18);
}

.service-box h4{
    color:#ffd54f;
    font-size:24px;
    margin-bottom:15px;
}

.service-box p{
    color:#cfcfcf;
    font-size:16px;
}

/* ==========================
   Lists
========================== */

.service-box ul{
    margin-top:15px;
    padding-left:22px;
}

.service-box li{
    color:#ccc;
    margin-bottom:10px;
}

/* ==========================
   Buttons
========================== */

.cta{
    text-align:center;
    margin-top:35px;
}

.btn{
    display:inline-block;
    margin:8px;
    padding:15px 28px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
}

.call{
    background:linear-gradient(90deg,#d4af37,#ffcc33);
    color:#000;
}

.call:hover{
    transform:scale(1.05);
}

.whatsapp{
    background:#25D366;
    color:#000;
}

.whatsapp:hover{
    transform:scale(1.05);
}

/* ==========================
   Tables
========================== */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
}

th,td{
    border:1px solid #333;
    padding:14px;
    text-align:left;
}

th{
    background:#d4af37;
    color:#000;
}

td{
    color:#ddd;
}

/* ==========================
   FAQ
========================== */

details{
    background:#111;
    border:1px solid #252525;
    border-radius:12px;
    margin-bottom:15px;
    padding:18px;
}

summary{
    cursor:pointer;
    color:#ffd54f;
    font-weight:600;
}

details p{
    margin-top:15px;
    color:#ccc;
}

/* ==========================
   Footer
========================== */

footer{
    border-top:1px solid #222;
    text-align:center;
    padding:35px 20px;
    color:#888;
    font-size:15px;
}

/* ==========================
   Sticky Buttons
========================== */

.sticky{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:9999;
}

.sticky a{
    flex:1;
    text-align:center;
    padding:16px;
    font-weight:700;
}

.sticky-call{
    background:#d4af37;
    color:#000;
}

.sticky-wa{
    background:#25D366;
    color:#000;
}

/* ==========================
   Scrollbar
========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

/* ==========================
   Responsive
========================== */

@media(max-width:768px){

.hero{
    padding:45px 18px;
}

.hero h2{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

section{
    padding:45px 18px;
}

section h3{
    font-size:26px;
}

.service-box{
    padding:22px;
}

.service-box h4{
    font-size:21px;
}

.btn{
    display:block;
    width:100%;
    margin:12px 0;
}

table{
    display:block;
    overflow-x:auto;
}

}