﻿#section-assurance img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    #section-assurance img:hover {
        filter: none;
        transform: scale(1.1);
    }

#section-assurance h5 {
    margin-top: 15px;
}

/* --- Bungalow Collection Styles --- */
.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #fff;
}

    .collection-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .collection-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

    /* === HEIGHT CALIBRATION === */
    .collection-card.small {
        height: 247px; /* fine-tuned by 2px for perfect match */
    }

    .collection-card.large {
        height: calc((247px * 2) + 24px - 1px); /* adjusted for browser rounding */
    }

/* Force grid consistency */
.row.g-4 {
    --bs-gutter-y: 24px;
    align-items: stretch;
}

/* Title placement */
.collection-card .title {
    position: absolute;
    top: 10px;
    left: 20px;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 6px;
}

.section2 {
    padding: 50px 0 50px 0;
}


/* Make placeholder text white for this input only */
#destination-input::placeholder {
    color: rgba(255,255,255,0.9);
}


.bunglow-title {
    color: #fff;
}
/* === CATEGORY BUTTONS === */
.custom-category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 10px 0;
}

.custom-category-btn {
    background: none;
    border: 2px solid #b48a60;
    color: #b48a60;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .custom-category-btn:hover,
    .custom-category-btn.active {
        background: #b48a60;
        color: #fff;
        transform: translateY(-2px);
    }

/* === CARD STYLE === */
.custom-card {
    border: none;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

.custom-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.custom-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

    .custom-card-overlay h5 {
        font-weight: 600;
        margin-bottom: 5px;
    }

.custom-view-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .custom-view-btn:hover {
        background: #fff;
        color: #000;
    }

/* === VIEW MORE BUTTON === */
.custom-view-more-btn {
    background: #b48a60;
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .custom-view-more-btn:hover {
        background: #8f6b45;
        transform: translateY(-2px);
    }

 
