@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    height: 12vh;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 7.1vw;
    overflow: hidden;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #007bff;
}

.whatsapp {
    text-decoration: none;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5vw;
    font-family: "poppins";
    font-weight: 600;
}

.whatsapp i {
    font-size: 2vw;
}





.hero {
    background: url('images/tungnath-temple-package.jpeg') center/cover;
    height: 90vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    color: #fff;
}

.hero-content span {
    color: white;
}

.hero-info {
    margin-top: 1vw;
}

.hero-info span {
    color: #ddd;
    margin: 0 10px;
    font-weight: 600;
}

.price {
    color: #ffcc00;
    margin: 20px 0;
}

.btn-primary,
.btn-whatsapp {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    font-weight: 600;
}

.btn-primary {
    background: #ff4d4d;
    color: #fff;
    padding: .9vw 4vw;
    font-size: 1.1vw;
    border: none;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}


.form-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.form-container {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.form-container h2 {
    margin-bottom: 20px;
    text-align: center;
}

.form-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.form-container button:hover {
    background: #1ebe5d;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}











.container {
    width: 90%;
    margin: auto;
}

.section {
    padding: 2vw 0;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2vw;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1vw;
    margin-top: 1vw;
}

.gallery img {
    height: 48vh;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.content-wrapper {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 3;
}


.tour-overview {
    padding: 60px 20px;
    background: #ffffff;
}

.tour-overview .container {
    max-width: 1000px;
    margin: auto;
}

.tour-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #111;
}

.tour-overview p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
.top-link{
    text-decoration: none;
}

.more-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.more-text.show {
    max-height: 500px;
}

.read-more-btn {
    margin-top: 20px;
    padding: 10px 18px;
    border: none;
    background: #ff4d4d;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #e63c3c;
}





.itinerary-section {
    padding: 2vw;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.itinerary {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.itinerary::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ff4d4d, #ff9900);
}

.itinerary-item {
    display: flex;
    margin-bottom: 40px;
}

.day-badge {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4d4d, #ff9900);
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.itinerary-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    overflow: hidden;
}

.itinerary-btn {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.itinerary-btn:hover {
    background: #f9f9f9;
}

.icon {
    font-size: 20px;
}





.itinerary-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1vw;
    background: #fafafa;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.itinerary-content ul {
    padding: 15px 0;
}

.itinerary-content li {
    margin-bottom: 10px;
    list-style: none;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.itinerary-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff4d4d;
    font-weight: bold;
}


.inclusion-section {
    padding: 1.2vw 1.6vw;
}

.section-title {
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
}

.inclusion-wrapper {
    display: flex;
    gap: 1vw;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 340px;
    max-width: 500px;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.info-card ul {
    padding: 0;
}

.info-card li {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
    color: #444;
}

/* Included Style */
.included h3 {
    color: #2ecc71;
}

.included li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    background: #2ecc71;
    color: #fff;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Excluded Style */
.excluded h3 {
    color: #e74c3c;
}

.excluded li::before {
    content: "✖";
    position: absolute;
    left: 0;
    top: 0;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.full {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.accordion-btn,
.faq-btn {
    width: 100%;
    padding: 15px;
    background: #eee;
    border: none;
    margin-bottom: 5px;
    cursor: pointer;
    font-weight: 600;
}

.accordion-content,
.faq-content {
    display: none;
    padding: 15px;
    background: #fafafa;
}

.two-column {
    display: flex;
    gap: 40px;
}

.reviews-section {
    padding: 7vw 3vw;
    background: #f9fbff;
}

.reviews-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;

}

/* Left Summary */

.reviews-summary h2 {
    margin-bottom: 30px;
}

.rating-box h3 {
    margin-bottom: 10px;
}

.stars {
    color: #fbbf24;
    font-size: 22px;
    margin: 10px 0;
}

.google-text {
    color: #4285F4;
    font-weight: bold;
}

/* Slider */

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

/* Card */

.review-card {
    min-width: 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: .4vw;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
}

.review-card h4 {
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    color: #555;
}

.small {
    font-size: 16px;
}

.faq-section {
    padding: 60px 20px;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #222;
    padding-right: 30px;
}

.faq-item h3::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.3rem;
    transition: 0.3s;
}

.faq-item.active h3::after {
    content: "-";
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
    margin-top: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active p {
    max-height: 300px;
    margin-top: 15px;
}

.sidebar-price {
    margin-top: 1vw;
    font-family: "poppins";
}

.full {
    width: 100%;
}

.cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}




/* responsive design  */


/* responsive design  */

/* ================= MOBILE 480px ================= */
@media (max-width: 480px) {

    .navbar {
        height: auto;
        padding: 10px 15px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo {
        width: 8.5vw;
        /* fixed size better for mobile */
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    /* Hide Home & About on Mobile */
    .hide-mobile {
        display: none;
    }

    .whatsapp {
        font-size: 13px;
        gap: 5px;
    }

    .whatsapp i {
        font-size: 18px;
    }
}







/* ============================= */
/* Mobile Responsive (480px) */
/* ============================= */

@media (max-width: 480px) {

    .hero {
        height: 55vh;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 24px;
        padding: 0 15px;
        line-height: 1.3;
    }

    .hero-info {
        margin-top: 10px;
    }

    .hero-info span {
        display: block;
        margin: 5px 0;
        font-size: 14px;
    }

    .price {
        font-size: 18px;
        margin: 15px 0;
    }

    .hero-buttons {
        display: flex;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 40%;
        font-size: 14px;
        padding: 12px;
        margin: 8px auto;
        display: block;
        text-align: center;
    }

    .hero-overlay {
        padding: 20px;
    }

    .form-container {
        width: 95%;
        padding: 20px;
    }

    .form-container h2 {
        font-size: 18px;
    }

    .form-container input {
        font-size: 13px;
        padding: 10px;
    }

    .form-container button {
        font-size: 14px;
        padding: 10px;
    }
}

/* ============================= */
/* Mobile Responsive (480px) */
/* ============================= */

@media (max-width: 480px) {

    .container {
        width: 95%;
    }

    .section {
        padding: 30px 0;
    }

    /* Highlights */
    .highlights {
        flex-direction: column;
        gap: 15px;
    }

    /* Gallery */
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery img {
        height: 250px;
        border-radius: 12px;
    }

    /* Content Wrapper */
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .main-content {
        flex: 1;
    }

    /* Tour Overview */
    .tour-overview {
        padding: 40px 15px;
    }

    .tour-overview h2 {
        font-size: 22px;
    }

    .tour-overview p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Itinerary Section */
    .itinerary-section {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Timeline Line Adjust */
    .itinerary::before {
        left: 20px;
    }

    .itinerary-item {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .day-badge {
        min-width: 45px;
        height: 45px;
        font-size: 12px;
        margin-right: 15px;
    }

    .itinerary-card {
        border-radius: 12px;
    }

    .itinerary-btn {
        padding: 15px;
        font-size: 14px;
    }

    .icon {
        font-size: 16px;
    }

    .itinerary-content {
        padding: 0 10px;
    }

    .itinerary-content li {
        font-size: 13px;
        padding-left: 20px;
    }

    .read-more-btn {
        width: 100%;
        font-size: 13px;
        padding: 10px;
    }
}



/* ============================= */
/* Mobile Responsive (480px) */
/* ============================= */

@media (max-width: 480px) {

    /* Section Spacing */
    .inclusion-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Inclusion Cards */
    .inclusion-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .info-card {
        min-width: 100%;
        padding: 20px;
        border-radius: 15px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    .info-card li {
        font-size: 14px;
        padding-left: 30px;
    }

    /* Two Column Layout */
    .two-column {
        flex-direction: column;
        gap: 25px;
    }

    /* Sidebar */
    .sidebar {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 40px 15px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-summary h2 {
        font-size: 20px;
        text-align: center;
    }

    .stars {
        font-size: 18px;
    }

    .review-card {
        min-width: 240px;
        padding: 18px;
        border-radius: 12px;
    }

    .review-card p {
        font-size: 13px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 40px 15px;
    }

    .faq-section h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 25px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-item h3 {
        font-size: 14px;
        padding-right: 25px;
    }

    .faq-item p {
        font-size: 13px;
    }

    /* CTA */
    .cta {
        padding: 40px 15px;
    }

    .cta h2 {
        font-size: 18px;
    }

    /* Buttons Full Width */
    .full {
        width: 100%;
        text-align: center;
    }
}