/* =========================
   OUR HOTELS SECTION
========================= */

.hotels-section {
    background: #faf6ee;
}

.section-title h5 {
    color: #c47a2c;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    max-width: 600px;
    color: #666;
}

/* Filter Buttons */
.hotel-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hotel-filter button {
    border: 1px solid #c47a2c;
    background: transparent;
    color: #c47a2c;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hotel-filter button.active,
.hotel-filter button:hover {
    background: #c47a2c;
    color: #fff;
}

/* Hotel Cards */
.hotel-card {
    background: #fff;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hotel-thumb {
    position: relative;
}

.hotel-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.hotel-thumb .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c47a2c;
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
}

.hotel-content {
    padding: 20px;
}

.hotel-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hotel-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Buttons */
.hotel-actions {
    display: flex;
    gap: 10px;
}

.hotel-actions .btn {
    background: #c47a2c;
    color: #fff;
    padding: 8px 18px;
    text-decoration: none;
    font-size: 14px;
}

.hotel-actions .btn.outline {
    background: transparent;
    color: #c47a2c;
    border: 1px solid #c47a2c;
}

.search-area {
    position: relative;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 40, 55, 0.92) 0%,
        rgba(7, 40, 55, 0.85) 45%,
        rgba(7, 40, 55, 0.65) 100%
    );

    z-index: 1;
    pointer-events: none; /* IMPORTANT */
}

.search-area .container {
    position: relative;
    z-index: 2;
}

.single-slider {
    position: relative;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

/* Content above overlay */
.single-slider .container {
    position: relative;
    z-index: 2;
}

.search-area {
    position: relative;
}

.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 40, 55, 0.92) 0%,
        rgba(7, 40, 55, 0.85) 45%,
        rgba(7, 40, 55, 0.65) 100%
    );

    z-index: 1;
    pointer-events: none; /* IMPORTANT */
}

.search-area .container {
    position: relative;
    z-index: 2;
}

.single-slider {
    position: relative;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

/* Content above overlay */
.single-slider .container {
    position: relative;
    z-index: 2;
}
.service-details-two {
  margin-top: -258px;
}

.service-details-two p{height: 127px;}

/* FORCE same image height for all destination cards */
.courses-item .thumb {
    height: 260px;              /* fixed height */
    overflow: hidden;
    position: relative;
}

.courses-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* KEY */
    object-position: center;
    display: block;
}
.courses-content p {
    min-height: 72px; /* keeps description equal */
}
.modal-body h1{font-size: 25px;}
.modal-body h2{font-size: 20px;}
.modal-body h3{font-size: 15px;}
.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.modal-body ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
}
