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

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #222;
    overflow-x: hidden;
}

/* ================= NAVBAR (NO JS) ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 60px;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);
    z-index:1000;
    box-shadow:0 2px 18px rgba(0,0,0,0.06);
}

/* logo */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:52px;
}

.logo span{
    font-size:24px;
    font-weight:700;
    color:#f26522;
    white-space:nowrap;
}

/* hidden checkbox (hack) */
#menuToggle{
    display:none;
}

/* hamburger icon */
.menu-icon{
    display:none;
    font-size:28px;
    cursor:pointer;
    user-select:none;
}

/* nav links */
.nav-links{
    display:flex;
    align-items:center;
    gap:18px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#f26522;
}

.contact-btn{
    background:#f26522;
    color:white !important;
    padding:10px 20px;
    border-radius:30px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .menu-icon{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        flex-direction:column;
        background:white;
        padding:0;
        gap:0;
        overflow:hidden;
        max-height:0;
        transition:0.4s ease-in-out;
        box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .nav-links a{
        padding:14px;
        width:100%;
        text-align:center;
        border-bottom:1px solid #eee;
    }

    /* open menu when checked */
    #menuToggle:checked ~ .nav-links{
        max-height:400px;
        padding:10px 0;
    }
}

/* HERO */
.hero {
    margin-top: 88px;
    background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65));
    padding: 120px 80px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
}

.price-tag {
    margin-top: 35px;
    display: inline-block;
    background: linear-gradient(135deg,#f26522,#ff9a57);
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(242,101,34,.4);
}

/* SECTION */
.container {
    max-width: 1300px;
    margin: auto;
    padding: 80px 30px;
}

.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* LEFT CARD */
.card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 30px;
}

.card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #f26522;
}

.card p {
    line-height: 2;
    color: #555;
}

/* TEMPLES */
.temples {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.temple {
    background: #fff7f1;
    padding: 22px;
    border-radius: 18px;
    font-weight: 600;
    transition: .3s;
}

.temple:hover {
    transform: translateY(-5px);
}

/* INCLUDE EXCLUDE */
.list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.include {
    background: #ecfdf5;
    padding: 30px;
    border-radius: 20px;
}

.exclude {
    background: #fef2f2;
    padding: 30px;
    border-radius: 20px;
}

.list ul {
    padding-left: 20px;
    line-height: 2.3;
}

/* CUSTOM BOX */
.custom-box {
    background: linear-gradient(135deg,#f26522,#ff914d);
    padding: 35px;
    border-radius: 25px;
    color: white;
    text-align: center;
}

.custom-box h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

/* BOOKING CARD */
.booking-card {
    position: sticky;
    top: 110px;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.booking-card h3 {
    font-size: 32px;
    color: #f26522;
    margin-bottom: 15px;
}

.booking-card ul {
    padding-left: 20px;
    line-height: 2.4;
    margin: 20px 0;
}

.book-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg,#f26522,#ff914d);
    color: white;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: .3s;
}

.book-btn:hover {
    opacity: .9;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.feature h4 {
    margin: 15px 0;
    color: #f26522;
}

/* FOOTER */
.footer {
    background: #121212;
    color: white;
    padding: 60px 30px;
    text-align: center;
    margin-top: 80px;
}

.footer p {
    color: #aaa;
    margin-top: 15px;
}

/* =======================
   MOBILE RESPONSIVE
======================= */

@media (max-width: 900px) {

    .navbar {
        flex-direction: row;
        padding: 12px 15px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 10px;
    }

    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .list {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .logo span {
        font-size: 20px;
    }

    .price-tag {
        font-size: 22px;
        padding: 12px 25px;
    }
}