/* ================= CITY DETAIL PAGE COMMON STYLES ================= */

/* PAGE HEADER */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.149), rgba(0, 0, 0, 0.407)),
        url('../../images/slide/slide3.jpg') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(201, 163, 78, 0.3);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-title span {
    color: #c9a34e;
}

.breadcrumb-item a {
    color: #c9a34e;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

/*  CARAVAN SECTION */
/* ================= CARAVAN SECTION ================= */
.caravan-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;

    /* Background Image */
    background: url('../images/why-bg-img.png') no-repeat center center;
    background-size: cover;
}

/* White overlay for readability */
.caravan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.759);
    /* adjust 0.85–0.92 if needed */
    z-index: 1;
}

/* Make content above overlay */
.caravan-section .container {
    position: relative;
    z-index: 2;
}

.premium-tag {
    display: inline-block;
    color: #c9a34e;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid #c9a34e;
}

.title {
    color: #000000;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.title span {
    color: #c9a34e;
}

.desc {
    color: #444444;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.highlights li {
    color: #222222;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.highlights i {
    color: #c9a34e;
    font-size: 20px;
}

.cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #c9a34e;
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #000;
    color: #c9a34e;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #c9a34e;
    color: #c9a34e;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #c9a34e;
    color: #000;
}

/* PREMIUM DARK FORM ON WHITE BG */
.city-booking-form {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 163, 78, 0.2);
}

.city-booking-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.city-booking-form .input-group:focus-within {
    border-color: #c9a34e;
    background: rgba(201, 163, 78, 0.05);
}

.city-booking-form .input-group span {
    color: #c9a34e;
    margin-right: 15px;
    font-size: 18px;
}

.city-booking-form input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.city-booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.city-booking-form label {
    display: block;
    color: #c9a34e;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.city-booking-form button {
    width: 100%;
    padding: 15px;
    background: #c9a34e;
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.city-booking-form button:hover {
    background: #fff;
    transform: scale(1.02);
}

/*  IMAGES */
.images {
    position: relative;
    height: 500px;
}

.image-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.image-box:hover img {
    transform: scale(1.1);
}

.img-1 {
    width: 80%;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-2 {
    width: 70%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/*  DESTINATIONS */
.destinations-section {
    padding: 100px 0;
    background: #fff;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.destination-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.destination-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.destination-content p {
    color: #c9a34e;
    font-size: 14px;
    margin: 0;
}

/*  WHY CHOOSE */
.why-choose-section {
    padding: 100px 0;
    background: #fff;
}

.feature-card {
    background: #f9f6f0;
    border: 1px solid rgba(201, 163, 78, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    background: rgba(201, 163, 78, 0.08);
    border-color: #c9a34e;
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(201, 163, 78, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #c9a34e;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: #111;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {
    .images {
        height: 600px;
        margin-top: 50px;
    }

    .img-1 {
        width: 90%;
        height: 300px;
    }

    .img-2 {
        width: 90%;
        height: 250px;
    }

    .title {
        font-size: 32px;
    }

    .page-title {
        font-size: 32px;
    }
}

