﻿/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

/* =========================
   TOP HEADER
========================= */

.top-header {
    background: #0b8457;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

    .top-contact a,
    .top-contact span {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

        .top-contact a:hover {
            opacity: 0.8;
        }

.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .top-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

        .top-social a:hover {
            background: #fff;
            color: #0b8457;
        }

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a {
        color: #222;
        font-weight: 500;
        font-size: 15px;
        transition: 0.3s ease;
    }

        .nav-links a:hover {
            color: #0b8457;
        }

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #222;
    cursor: pointer;
}

/* =========================
   MOBILE SIDE MENU
========================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        color: #222;
        font-size: 18px;
        font-weight: 500;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
        transition: 0.3s;
    }

        .mobile-menu a:hover {
            color: #0b8457;
        }

.close-menu {
    text-align: right;
    font-size: 30px;
    margin-bottom: 20px;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* =========================
   HERO SLIDER
========================= */

.heroSwiper {
    height: calc(100vh - 114px);
}

.hero-slide {
    position: relative;
    height: calc(100vh - 114px);
    overflow: hidden;
}

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #fff;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 64px;
        line-height: 1.2;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 35px;
    }

.hero-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #0b8457;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: #0b8457;
    color: #fff;
}

    .btn-primary:hover {
        background: #086c47;
        transform: translateY(-3px);
    }

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: #222;
    }

/* =========================
   SEARCH BOX
========================= */

.search-box {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.search-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

    .search-grid select,
    .search-grid input {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 15px;
        outline: none;
    }

.search-btn {
    background: #0b8457;
    color: #fff;
    border: none;
    font-weight: 600;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .section-title p {
        max-width: 700px;
        margin: auto;
        color: #666;
    }

/* =========================
   FEATURES
========================= */

.destination {
    background: #f7f9f8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .feature-box:hover {
        transform: translateY(-10px);
    }

    .feature-box img {
        width: 80px;
        margin: auto;
        margin-bottom: 20px;
    }

/* =========================
   PROPERTY SLIDER
========================= */

.featured-properties {
    overflow: hidden;
    position: relative;
}

.propertySwiper {
    width: 100%;
    padding: 20px 5px 60px;
}

.property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .property-card:hover {
        transform: translateY(-10px);
    }

    .property-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.property-content {
    padding: 25px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 12px;
}

    .property-location i {
        color: #0b8457;
    }

.property-price {
    font-size: 18px;
    font-weight: 600;
    color: #0b8457;
    margin-bottom: 15px;
}

.property-view-btn {
    margin-top: 10px;
    color: #fff;
    background: #0b8457;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    cursor: pointer;

}

/* =========================
   EXPERIENCE
========================= */

.experience {
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('../images/experience-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

    .experience h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .experience p {
        max-width: 800px;
        margin: auto;
        margin-bottom: 35px;
    }

/* =========================
   FAQ
========================= */

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 22px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #111;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px;
}

.footer-links a {
    display: block;
    color: #ccc;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #aaa;
}
/* =========================
   FOOTER WEATHER
========================= */

.footer-weather {
    margin-top: 50px;
    padding: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    text-align: center;
}

    .footer-weather h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .footer-weather p {
        color: #ccc;
        margin-bottom: 25px;
    }




/* =========================
   INTRO SECTION
========================= */

.intro-section {
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    background: #e8f5ef;
    color: #0b8457;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.intro-content p {
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-image img {
    width: 100%;
    border-radius: 25px;
    height: 550px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================
   WHY BIJANBARI
========================= */

.why-bijanbari {
    background: #f7f9f8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .why-card:hover {
        transform: translateY(-10px);
    }

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e8f5ef;
    color: #0b8457;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.why-card p {
    color: #666;
}

/* =========================
   ATTRACTIONS SECTION
========================= */

.attractions-section {
    background: #fff;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.attraction-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .attraction-card:hover {
        transform: translateY(-10px);
    }

    .attraction-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.attraction-content {
    padding: 25px;
}

    .attraction-content h3 {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .attraction-content p {
        color: #666;
    }


/* =========================
   EXPERIENCES SECTION
========================= */

.experiences-section {
    background: #f7f9f8;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.experience-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .experience-card:hover {
        transform: translateY(-10px);
    }

    .experience-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.experience-content {
    padding: 25px;
}

    .experience-content span {
        display: inline-block;
        background: #e8f5ef;
        color: #0b8457;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .experience-content h3 {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .experience-content p {
        color: #666;
    }

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f7f9f8;
    padding: 35px 30px;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .testimonial-card:hover {
        transform: translateY(-10px);
    }

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

    .testimonial-top img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-top h3 {
        margin-bottom: 5px;
        font-size: 20px;
    }

    .testimonial-top span {
        color: #777;
        font-size: 14px;
    }

/* RATING */

.testimonial-rating {
    margin-bottom: 20px;
}

    .testimonial-rating i {
        color: #f5b301;
        margin-right: 3px;
    }

.testimonial-card p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
}


/* =========================
   WEATHER WIDGET
========================= */

.footer-weather {
    margin-top: 50px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

    .footer-weather h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .footer-weather p {
        color: #ccc;
        margin-bottom: 30px;
    }



/* =========================
   MINI WEATHER WIDGET
========================= */

.mini-weather-widget {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
}

.weather-mini-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .weather-mini-top img {
        width: 60px;
    }

.weather-mini-temp {
    font-size: 36px;
    font-weight: 700;
    color: #0b8457;
}

.weather-mini-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.weather-mini-info span {
    color: #ccc;
    font-size: 14px;
}

.weather-extra {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .weather-extra span {
        display: block;
        color: #ccc;
        font-size: 14px;
        margin-bottom: 6px;
    }




/*Property Page*/


/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

    .page-hero h1 {
        font-size: 56px;
        margin-bottom: 20px;
    }

    .page-hero p {
        max-width: 800px;
        margin: auto;
        font-size: 18px;
    }

/* =========================
   PROPERTY LISTING
========================= */

.property-listing {
    background: #f7f9f8;
}

.listing-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

/* SIDEBAR */

.listing-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .sidebar-box h3 {
        margin-bottom: 20px;
    }

    .sidebar-box input[type="text"] {
        width: 100%;
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: 10px;
    }

    .sidebar-box label {
        display: block;
        margin-bottom: 14px;
        color: #555;
    }

/* PROPERTY GRID */

.listing-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.listing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .listing-card:hover {
        transform: translateY(-10px);
    }

    .listing-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.listing-card-content {
    padding: 25px;
}

.property-badge {
    display: inline-block;
    background: #e8f5ef;
    color: #0b8457;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.listing-card-content h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.listing-card-content p {
    color: #666;
    margin-bottom: 20px;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    color: #555;
}

    .listing-meta i {
        color: #f5b301;
    }





/*Properties Details*/

/* =========================
   PROPERTY HERO
========================= */

.property-hero {
    padding: 150px 0 60px;
    background: #f7f9f8;
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

    .property-gallery img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
    }

.gallery-main img {
    height: 520px;
}

.gallery-side {
    display: grid;
    gap: 20px;
}

    .gallery-side img {
        height: 250px;
    }

/* =========================
   PROPERTY DETAILS
========================= */

.property-details-wrapper {
    display: grid;
    grid-template-columns: 2fr 380px;
    gap: 50px;
}

.property-type {
    display: inline-block;
    background: #e8f5ef;
    color: #0b8457;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.property-details-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.property-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 25px 0;
}

    .property-meta span i {
        color: #0b8457;
    }

/* DESCRIPTION */

.property-description {
    margin: 40px 0;
}

    .property-description h2,
    .property-amenities h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .property-description p {
        color: #666;
        margin-bottom: 20px;
    }

/* =========================
   HOST SECTION
========================= */

.host-section {
    background: #f7f9f8;
}

.host-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

/* HOST IMAGE */

.host-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HOST CONTENT */

.host-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.host-contact {
    margin-bottom: 25px;
}

    .host-contact a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #0b8457;
        font-weight: 600;
        font-size: 18px;
    }

    .host-contact i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #e8f5ef;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.host-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

/* AMENITIES */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

    .amenities-grid span {
        background: #f7f9f8;
        padding: 15px 20px;
        border-radius: 12px;
    }

    .amenities-grid i {
        color: #0b8457;
        margin-right: 10px;
    }

/* BOOKING CARD */

.booking-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.booking-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/*.booking-price {
    font-size: 42px;
    font-weight: 700;
    color: #0b8457;
    margin-bottom: 25px;
}

    .booking-price span {
        font-size: 16px;
        color: #777;
        font-weight: 400;
    }*/

/* BOOKING TITLE */

.booking-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.booking-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}
/* BOOKING TITLE */

.booking-card ul {
    margin-bottom: 30px;
}

.booking-card li {
    margin-bottom: 15px;
}

    .booking-card li i {
        color: #0b8457;
        margin-right: 10px;
    }

.btn-outline-dark {
    border: 2px solid #222;
    color: #222;
    margin-top: 15px;
}

    .btn-outline-dark:hover {
        background: #222;
        color: #fff;
    }

/* =========================
   ROOM TYPES
========================= */

.room-types {
    background: #f7f9f8;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .room-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

.room-content {
    padding: 25px;
}

.room-price {
    font-size: 28px;
    color: #0b8457;
    font-weight: 700;
    margin-top: 20px;
}

/*.room-price span {
        font-size: 18px;
        color: #6c6c6c;
        font-weight: 600;
        margin-top: 20px;
    }*/

/* =========================
   PROPERTY EXTRA SECTIONS
========================= */

.property-attractions,
.property-reviews,
.property-faq,
.related-properties {
    background: #f7f9f8;
}

/* ATTRACTIONS */

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.attraction-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* MAP */

.map-wrapper iframe {
    border-radius: 20px;
}

/* REVIEWS */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .review-top img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }

.review-rating {
    color: #f5b301;
    margin-bottom: 15px;
    font-size: 20px;
}
