/* =========================================
   CHANDAN TOUR & TRAVEL
   TOUR PACKAGES PAGE – PREMIUM STYLE
========================================= */


/* ===== HERO SECTION ===== */

.page-hero {
    height: 380px;
    background: url('../images/hero-tour.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.page-hero p {
    color: #ddd;
    font-size: 16px;
}


/* ===== SECTION TITLES ===== */

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 60px;
}


/* ===== TOUR PACKAGES GRID ===== */

.tour-packages {
    padding: 90px 0;
    background: #f9fbfd;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}


/* ===== PACKAGE CARD ===== */

.package-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.package-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: 0.4s ease;
}

.package-card:hover img {
    transform: scale(1.08);
}

.package-content {
    padding: 28px;
}

.package-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.package-content p {
    color: #444;
    margin-bottom: 18px;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.package-content ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}


/* ===== PREMIUM QUICK ENQUIRY FORM ===== */

.quick-enquiry {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f3f6f9);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #eef2f6;
    transition: 0.3s ease;
}

.package-card:hover .quick-enquiry {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.quick-enquiry input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dcdfe4;
    font-size: 14px;
    background: #fff;
    transition: 0.3s ease;
}

.quick-enquiry input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.quick-enquiry input::placeholder {
    font-size: 13px;
    color: #999;
}

.quick-enquiry button {
    margin-top: 6px;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #ff6600, #ff8533);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.quick-enquiry button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 102, 0, 0.4);
}


/* ===== WHY BOOK SECTION ===== */

.why-book {
    background: #ffffff;
    padding: 90px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 45px;
}

.why-box {
    background: #f9fbfd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.why-box h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.why-box p {
    color: #666;
    font-size: 14px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .package-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .page-hero {
        height: 280px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .package-card img {
        height: 200px;
    }

    .quick-enquiry {
        padding: 15px;
    }

    .quick-enquiry input {
        padding: 10px;
        font-size: 13px;
    }

    .quick-enquiry button {
        padding: 10px;
        font-size: 13px;
    }
}
