﻿
body{
    padding-top:95px;
}
/* ===============================
   MOBILE-FIRST FARM GRID
   =============================== */


.farm-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Price */
.price-tag {
    font-weight: 600;
    color: #0077B6;
}

/* Rating */
.badge-rating {
    background: #0077B6;
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Desktop enhancement only */
@media (min-width: 992px) {
    .farm-card:hover {
        transform: translateY(-4px);
        transition: 0.2s ease;
    }
}

.guest-panel {
    position: absolute;
    top: calc(100% + 8px); /* input ke neeche */
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    display: none;
    z-index: 1000;
}

    .guest-panel.active {
        display: block;
    }

/* IMAGE CONTAINER */
.farm-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

    .farm-image .carousel,
    .farm-image .carousel-inner,
    .farm-image .carousel-item {
        width: 100%;
        height: 100%;
    }

    .farm-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.card-body {
    flex-grow: 1;
}
/* ===============================
   GLASS SEARCH BAR
================================ */

.search-glass-wrapper {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15), inset 0 0 0 1px rgba(255,255,255,.4);
    border: 1px solid rgba(255,255,255,.35);
    position: relative;
}

/* Inputs */
.search-input {
    height: 48px;
    border-radius: 12px;
    border: none;
    font-weight: 500;
    background: rgba(255,255,255,.75);
}

    .search-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(13,110,253,.2);
    }

/* Search button */
.search-btn {
    height: 40px;
    border-radius: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #0d6efd, #0077B6);
    color: #fff;
    border: none;
}

    .search-btn:hover {
        opacity: .95;
    }

@media (max-width: 767px) {
    .search-glass-wrapper {
        border-radius: 18px;
        padding: 12px;
    }

    .search-input {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .search-glass-wrapper {
        border-radius: 50px;
        padding: 12px 18px;
    }

    .search-input {
        border-radius: 999px;
    }

    .search-btn {
        border-radius: 999px;
    }
}

.flatpickr-calendar {
    z-index: 99999 !important;
}

.carousel,
.carousel-inner,
.carousel-item {
    touch-action: pan-y;
}
/* NAVBAR BASE */
.navbar-farmstay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    /* White glass look */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}


/* LOGO */
.navbar-logo {
    height: 95px;
}

/* LINKS */
.navbar-farmstay .nav-link {
    font-weight: 600;
    color: #808080;
    padding: 8px 0;
}

    .navbar-farmstay .nav-link:hover {
        color: #0077B6;
    }

/* MOBILE MENU SPACING */
@media (max-width: 991px) {
    .navbar-farmstay .navbar-collapse {
        padding-bottom: 12px;
    }

    .navbar-farmstay .nav-item {
        padding: 6px 0;
    }
}



.footer {
    background: #0077B6;
}
/* FOOTER BASE */
.footer-voyage {
    background: #0077B6;
    color: #fff;
    width: 100%;
    padding-top:30px;

}

    /* LINKS */
    .footer-voyage a {

        color: #fff;
        text-decoration: none;
    }

        .footer-voyage a:hover {
            color: #000;
        }

/* ICONS */
.footer-icons a {
    font-size: 18px;
    transition: transform 0.2s ease;
}

    .footer-icons a:hover {
        transform: translateY(-2px);
    }

/* FOOTER LINKS */
.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    font-weight: 500;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 575px) {
    .footer-voyage {
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-voyage .row > div {
        text-align: center;
    }
}

footer .quick-links ul,
footer .contact-us ul {
    padding-left: 0;
    margin-bottom: 0;
}

footer .quick-links li,
footer .contact-us li {
    margin-bottom: 6px;
}

@media (max-width: 576px) {

    footer h5 {
        margin-bottom: 12px;
    }

    footer .quick-links,
    footer .contact-us {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        footer .quick-links ul,
        footer .contact-us ul {
            text-align: center;
        }
}
/* ------------------------------
   HOW IT WORKS SECTION IMPROVED
--------------------------------*/

#how {
    background: #fff; /* Clean white */
    padding: 60px 0;
}

    #how .how-card {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 10px 18px rgba(0,0,0,0.08);
        border: 1px solid #e5e7eb;
    }

.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-image: url("../img/photo.jpg"); /* 👈 yahi image */
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-search {
    margin-top: 32px;
}

    .hero-search .fs-search {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(12px);
        border-radius: 999px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-search .fs-search {
        border-radius: 16px;
    }
}
/* ===== TABLET FIX (iPad & similar) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        min-height: 45vh; /* 👈 reduce height */
        align-items: flex-start;
        padding-top: 80px; /* space below navbar */
        padding-bottom: 60px;
    }
}
/* -------------------------------------------------------
   FARMHOUSE CARDS
--------------------------------------------------------*/
.card-farm {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: 0.15s;
    width: 300px;
    height: 300px;
}

    .card-farm:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .card-farm img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.wishlist-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.price-tag {
    font-weight: 600;
    color: #0077B6;
}

/* -------------------------------------------------------
   RATING BADGE
--------------------------------------------------------*/
.badge-rating {
    border-radius: 6px !important;
    background: #0077B6;
    padding: 3px 8px !important;
    font-size: 0.85rem !important;
    display: inline-flex;
    gap: 4px;
}

/* -------------------------------------------------------
   AUTO-SCROLL SECTION
--------------------------------------------------------*/
.card-scroll-container {
    overflow-x: auto; /* ✅ allow horizontal scroll */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    width: 100%;
}

.card-scroll-track {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    padding: 20px;
}
.card-farm {
    width: 300px;
    height: 300px;
}


/* only for farmhouses.html */
/* HERO SECTION – same as hero-section */
.hero-sectn {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-image: url("../img/photo.jpg"); /* same image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

    /* Dark overlay for readability */
    .hero-sectn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        z-index: 1;
    }

    /* Content above overlay */
    .hero-sectn .hero-content {
        position: relative;
        z-index: 2;
    }


@media (max-width: 768px) {
    .hero-sectn {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}

/* iPad / Tablet fix */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-sectn {
        min-height: 45vh;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

/* ===== TABLET FIX (iPad & similar) ===== */

/* ===============================
   FIX FARMHOUSES GRID
================================ */
@media (max-width: 768px) {
    body.farmhouses-page .farm-scroll-track,
    body.farmhouses-page .auto-scroll,
    body.farmhouses-page .scroll-container {
        overflow-x: auto !important; /* ✅ allow scroll */
        display: flex !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch;
    }

    body.farmhouses-page .farm-scroll-item {
        flex-shrink: 0 !important;
    }
}


body.farmhouses-page .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

body.farmhouses-page .col-12,
body.farmhouses-page .col-md-6,
body.farmhouses-page .col-lg-4 {
    flex: 0 0 auto !important;
}

.hero-title span {
    color: #0077B6;
}

.hero-title {
    font-weight: 650;
    color: #F1901D;
}
/*css for farm details*/
/* arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

    .gallery-nav.left {
        left: 12px;
    }

    .gallery-nav.right {
        right: 12px;
    }

    .gallery-nav:hover {
        background: rgba(0,0,0,0.7);
    }

/* ===== FARM DETAILS IMAGE SECTION ===== */
/* IMAGE */
.main-image-wrapper {
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
}

    .main-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.thumbnail-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

    .thumbnail-strip img {
        height: 80px;
        min-width: 120px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        opacity: 0.7;
        transition: 0.2s;
    }

        .thumbnail-strip img:hover,
        .thumbnail-strip img.active {
            opacity: 1;
            outline: 2px solid #0d6efd;
        }


.availability-header {
    background: #eaf4ff;
    padding: 10px 14px;
    border-radius: 6px;
}

    .availability-header i {
        color: #0d6efd;
        font-size: 18px;
    }

.availability-table thead th {
    background: #eaf4ff;
    font-weight: 600;
    border-top: 1px solid #cfe2ff;
    border-bottom: 1px solid #cfe2ff;
    border-right: 1px solid #d6e4f5;
}
/* Body cells */
.availability-table td {
    border-bottom: 1px solid #e3eaf2;
    border-right: 1px solid #edf1f6;
    padding: 14px 12px;
    font-weight: 500;
    vertical-align: middle;
}

    .availability-table td:first-child {
        border-left: 1px solid #edf1f6;
    }

    .availability-table td:last-child {
        text-align: center;
    }

.availability-table th {
    text-align: center;
    vertical-align: middle;
}


.availability-table thead th:first-child {
    border-left: 1px solid #cfe2ff;
    border-top-left-radius: 8px;
}


@media (max-width: 768px) {
    .availability-wrapper {
        padding-left: 12px;
    }
}

@media (max-width: 768px) {
    .availability-table td,
    .availability-table th {
        white-space: nowrap;
        font-size: 14px;
    }
}

.zoomable-img {
    cursor: default;
}


.modal-content {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    pointer-events: auto;
}
/* ===== ZOOM GALLERY ARROWS ===== */

.carousel-control-prev,
.carousel-control-next {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    height: 48px;
    width: 48px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .main-image-wrapper img {
        height: 320px; /* mobile pe zyada lambi nahi */
    }
}
/* MOBILE STACK */
@media (max-width: 991px) {
    .main-image-wrapper,
    .map-wrapper {
        height: 260px;
    }
}
/* Book Your Stay – compact bar */
.book-stay-bar {
    margin: 0 auto;
}

    .book-stay-bar .form-control {
        height: 42px;
        font-size: 14px;
    }

    .book-stay-bar .btn {
        height: 42px;
        font-size: 14px;
        padding: 0 16px;
    }

    .book-stay-bar h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }

@media (max-width: 768px) {
    .book-stay-bar {
        width: 100%;
        margin: 0 auto;
    }
}
/* ================================
   AVAILABILITY – MOBILE NO SCROLL
================================ */

@media (max-width: 768px) {

    .availability-table thead {
        display: none; /* hide headers */
    }

    .availability-table,
    .availability-table tbody,
    .availability-table tr,
    .availability-table td {
        display: block;
        width: 100%;
    }

        .availability-table tr {
            margin-bottom: 14px;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 10px;
            background: #fff;
        }

        .availability-table td {
            text-align: left;
            padding: 6px 0;
            border: none;
            font-size: 14px;
        }

            .availability-table td::before {
                content: attr(data-label);
                font-weight: 600;
                display: block;
                color: #6b7280;
                margin-bottom: 2px;
                font-size: 13px;
            }

            .availability-table td:last-child {
                text-align: right;
                margin-top: 8px;
            }
}
/* ===============================
   AMENITIES ICON GRID
================================ */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

    .amenity-item i {
        font-size: 18px;
        color: #0d6efd;
        min-width: 20px;
    }

/* Tablet */
@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* ===============================
   AIRBNB-STYLE SHOW MORE
================================ */

.description-wrapper {
    position: relative;
    max-width: 100%;
}

.description-text {
    max-height: 4.5em; /* ~3 lines */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .description-text.expanded {
        max-height: 1000px;
    }

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
    animation: subtlePulse 1.8s ease-in-out infinite;
}

    .show-more-btn i {
        font-size: 14px;
        transition: transform 0.25s ease;
    }

    .show-more-btn:hover {
        text-decoration: underline;
        animation: none;
    }

        .show-more-btn:hover i {
            transform: translateY(2px);
        }
    /* Click feedback */
    .show-more-btn:active {
        opacity: 0.7;
    }

@keyframes subtlePulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* ===============================
   AIRBNB STYLE DESCRIPTION MODAL
================================ */

.description-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    color: #374151;
}

.show-more-btn {
    font-weight: 600;
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
}

    .show-more-btn:hover {
        text-decoration: underline;
    }

.description-modal-body {
    background-color: #fff;
    max-height: 60vh;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}
/* Enable scrolling inside description modal */
#descriptionModal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.modal-header {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.modal-footer {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}
/* Blur background behind modal */
.modal {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modal content curve + clean */
.modal-content {
    border-radius: 18px;
    background: #fff;
}
/* Farm details wide layout (except navbar) */
.farm-content-wide .container {
    max-width: 1320px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Availability section same width */
.farm-content-wide .availability-section {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .farm-content-wide .container,
    .farm-content-wide .availability-section {
        max-width: 1440px;
    }
}

footer {
    margin-top: 40px;
}

.map-wrapper {
    height: 420px;
}

    .map-wrapper iframe,
    .location-map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.location-map-wrapper {
    height: 300px;
}

* code for success page */



.main-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.thumbnail {
    width: 80px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: .3s;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .thumbnail {
        width: 100px;
        height: 70px;
    }
}

.thumbnail:hover,
.active-thumb {
    opacity: 1;
    border: 2px solid #0077B6;
}

iframe {
    border: 0;
}

.carousel-item {
    transition: transform .6s ease-in-out;
}

.sb-modal-title {
    font-weight: 600;
}

.sb-card-header {
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px dashed #e5e7eb;
}

.sb-card-body {
    padding: 18px;
}


/* Utility */
.sb-divider {
    border-top: 1px dashed #e5e7eb;
    margin: 14px 0;
}

.sb-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .modal-body {
        padding: 14px;
    }
}

/* Modal dialog fix */
.share-booking-modal .modal-dialog {
    max-width: 420px;
    margin: auto;
}

/* Modal content restore */
.share-booking-modal .modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
}

/* Header & body alignment */
.share-booking-modal .modal-header,
.share-booking-modal .modal-body {
    width: 100%;
}

/* Center card */
.share-booking-modal .sb-card {
    margin: 0 auto;
}
/* ===== Share Booking Modal (SAFE) ===== */

.sb-modal-title {
    font-weight: 600;
}

.sb-card-header {
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px dashed #e5e7eb;
}

.sb-card-body {
    padding: 18px;
}

.sb-divider {
    border-top: 1px dashed #e5e7eb;
    margin: 14px 0;
}

.sb-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}


/* Share Booking modal sizing */
.sb-modal-dialog {
    max-width: 420px;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .sb-modal-dialog {
        max-width: 90%;
        margin: auto;
    }

    .sb-card {
        max-width: 100%;
    }
}
/* ================================
   SHARE BOOKING MODAL – FINAL THEME
   Namespace: sb-
================================ */

/* ---------- Modal Container ---------- */
.sb-modal-content {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Modal dialog sizing */
.sb-modal-dialog {
    max-width: 420px;
}

@media (max-width: 576px) {
    .sb-modal-dialog {
        max-width: 90%;
        margin: auto;
    }
}

/* ---------- Header / Action Bar ---------- */
.sb-modal-header {
    background: #ffffff;
    padding: 14px 18px;
    border-bottom: none;
    position: relative;
}

    .sb-modal-header::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #0077B6);
    }

.sb-modal-title {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Header action buttons */
.sb-modal-header .btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .sb-modal-header .btn:hover {
        background: #0077B6;
    }

/* ---------- Booking Card (Ticket) ---------- */
.sb-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    border: 1px dashed #d1d5db;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    max-width: 340px;
    margin: 0 auto;
    font-size: 14px;
}

    /* Ticket punch effect */
    .sb-card::before,
    .sb-card::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 12px;
        height: 12px;
        background: #f8fafc;
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .sb-card::before {
        left: -6px;
    }

    .sb-card::after {
        right: -6px;
    }

/* ---------- Card Header ---------- */
.sb-card-header {
    padding: 16px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px dashed #e5e7eb;
}

/* ---------- Card Body ---------- */
.sb-card-body {
    padding: 18px;
}

/* Labels */
.sb-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Divider */
.sb-divider {
    border-top: 1px dashed #e5e7eb;
    margin: 14px 0;
}

/* ---------- Status Strip ---------- */
.sb-card-status {
    background: linear-gradient(90deg, #dcfce7, #bbf7d0);
    color: #0077B6;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    letter-spacing: 0.6px;
}

/* login css start from here */
/* ===== LOGIN MODAL ===== */
.login-modal {
    border-radius: 18px;
    border: none;
    overflow: hidden;
}

.login-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
}

/* CARD */
.login-card {
    display: flex;
    min-height: 520px;
}

/* LEFT */
.login-left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-logo {
    max-width: 200px;
}

.login-left h3 {
    font-weight: 600;
    margin-bottom: 6px;
}

.login-left p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.btn-login {
    background: #0178b6;
    color: #fff;
    border-radius: 12px;
    height: 48px;
    font-weight: 600;
    border: none;
}

    .btn-login:hover {
        background: #026aa1;
    }

/* OTP */
.otp-box {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

    .otp-box input {
        width: 42px;
        height: 46px;
        text-align: center;
        font-size: 18px;
        border-radius: 10px;
        border: 1px solid #d1d5db;
    }

/* OTP FOOTER */
.otp-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 13px;
}

    .otp-footer button {
        border: none;
        background: none;
        color: #0178b6;
        font-weight: 600;
    }

/* RIGHT */
.login-right {
    flex: 1;
    background: linear-gradient(135deg, #0178b6, #015b8a);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-right h2 {
        font-size: 26px;
        font-weight: 700;
    }

    .login-right p {
        font-size: 14px;
        opacity: 0.9;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

    .feature-list li {
        margin-bottom: 8px;
    }

.promo-image {
    margin-top: 24px;
    border-radius: 14px;
    max-width: 100%;
}

/* PROFILE FORM CENTER */
#loginStepForm {
    max-width: 380px;
    margin: auto;
}

/* MOBILE */
@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }

    .login-right {
        display: none;
    }

    .login-left {
        padding: 32px 24px;
    }
}

.is-invalid {
    border-color: #dc3545;
}

.text-danger {
    font-size: 12px;
}
/* Success step */
.success-circle {
    width: 64px;
    height: 64px;
    margin: auto;
    border-radius: 50%;
    background: #0178b6;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* booking history code starts from here */
    .booking-item {
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      padding: 12px;
      margin-bottom: 14px;
      background: #fff;
      transition: background 0.2s;
    }

    .booking-item:hover {
      background: #f9fafb;
    }

    .booking-thumb {
  width: 250px;          /* pehle ~90px tha */
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

    .booking-title {
      font-weight: 600;
      margin-bottom: 2px;
      font-size: 27px;
      line-height: 1.3;
    }

    .booking-info {
      font-size: 17px;
      margin-top: 6px;
    }

 .status-pill {
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;   /* icon + text vertically aligned */
  gap: 4px;              /* extra smooth spacing */
}


/* Extra gap when multiple pills are used */
.status-pill + .status-pill {
  margin-left: 8px;         /* horizontal gap */
}

   .status-pill.success {
  background: #dcfce7;
  color: #166534;
}

.status-pill.failed {
  background: #fee2e2;
  color: #991b1b;
}


    @media (max-width: 768px) {
  .booking-thumb {
    width: 100%;
    height: 180px;       /* image ko thoda hero feel */
  }
}
/* Image hover zoom – desktop only */
.booking-thumb {
  transition: transform 0.35s ease;
}

/* wrapper safety (important) */
.booking-item .col-md-auto {
  overflow: hidden;
  border-radius: 12px;
}

@media (min-width: 769px) {
  .booking-thumb:hover {
    transform: scale(1.05);
  }
}

.view-btn {
  transition: all 0.2s ease;
  font-size: 15px;
  padding: 4px 8px;
  min-width: 70px;
  border-radius: 6px;
  text-align: center;
}
.view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
#moreBookings {
  display: none;              /* ⛔ no space when hidden */
  overflow: hidden;
}

#moreBookings.show {
  display: block;             /* space only when open */
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Booking history page side spacing */
.booking-history-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .booking-history-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.booking-details {
  display: none;
  padding-top: 10px;
}

.booking-item.active .booking-details {
  display: block;
  animation: fadeSlide 0.25s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.booking-details .badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
/* Amenities pills */
.amenities-wrap {
  margin-top: 6px;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;

  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.amenity-pill i {
  font-size: 14px;
  color: #0178b6; /* theme color */
}
@media (max-width: 768px) {
  .amenity-pill {
    font-size: 12px;
    padding: 7px 12px;
  }
}
/* Payment reference copy */
.payment-ref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  color: #6b7280;
}

.copy-btn:hover {
  color: #0178b6;
}

.copy-btn i {
  font-size: 16px;
}
@media (max-width: 768px) {

  .booking-item .status-pill {
    float: right;
    margin-top: 20px;     /* 👈 pill neeche aayega */
    margin-bottom: 6px;
  }

  .booking-item .view-btn {
    clear: both;         /* button apni jagah rahe */
  }

}


@media (max-width: 576px) {
    .availability-table td {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
}

.login-terms {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

.login-terms a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

    .login-terms a:hover {
        text-decoration: underline;
    }

/* ===== FEATURED FARMHOUSE AUTO SCROLL ===== */

.farmhouse-scroll-section {
    background: #f9fafb;
    padding-bottom: 20px;
}

.card-scroll-container {
    overflow: hidden;
    position: relative;
}

.card-scroll-track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.listing-item {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.card-farm {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-farm:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

    .card-farm img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        display: block;
    }

@media (max-width: 768px) {
    .listing-item {
        min-width: 260px;
    }
}
.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

