



/* ================= PRICING SECTION ================= */
.pricing-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* HEADING */
.section-heading h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
    font-size: 15px;
}

/* ================= TABLE WRAPPER ================= */

/* IMPORTANT: enable horizontal scroll */
.custom-table {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* SCROLL CONTAINER */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* SCROLLBAR STYLE (Premium Look) */
.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #eee;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00bcd4, #ff7a00);
    border-radius: 10px;
}

/* ================= TABLE ================= */

.pricing-table {
    width: 100%;
    min-width: 900px; /* 🔥 IMPORTANT: forces horizontal scroll */
    border-collapse: collapse;
}

/* HEADER */
.pricing-table thead {
    background: linear-gradient(90deg, #00bcd4, #ff7a00);
    color: #fff;
}

.pricing-table th {
    padding: 16px;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* BODY */
.pricing-table td {
    padding: 16px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* PREVENT TEXT BREAK */
.pricing-table td,
.pricing-table th {
    white-space: nowrap;
}

/* DETAILS COLUMN WRAP ONLY */
.pricing-table .details {
    white-space: normal;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ROW HOVER */
.pricing-table tbody tr {
    transition: 0.3s;
}

.pricing-table tbody tr:hover {
    background: #f4faff;
}

/* BUTTON */
.btn-book {
    display: inline-block;
    padding: 7px 14px;
    background: #ff7a00;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-book:hover {
    background: #e66a00;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .section-heading h2 {
        font-size: 26px;
    }

    .pricing-section {
        padding: 50px 0;
    }

    /* KEEP TABLE — JUST SCROLL */
    .pricing-table {
        min-width: 800px;
    }
}

/* ================= AREAS SECTION ================= */
.areas-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* WRAPPER */
.areas-wrapper {
    margin-top: 40px;
}

/* BOX */
.area-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #f1f1f1;
}

/* HOVER */
.area-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* LIST */
.area-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.area-box ul li {
    margin-bottom: 10px;
}

/* LINK */
.area-box ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

/* ICON BEFORE */
.area-box ul li a::before {
    content: "📍";
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.area-box ul li a:hover {
    color: #ff7a00;
    transform: translateX(5px);
}

/* HOVER ICON */
.area-box ul li a:hover::before {
    transform: scale(1.2);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .area-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .areas-section {
        padding: 50px 0;
    }

    .area-box {
        padding: 15px;
    }

    .area-box ul li a {
        font-size: 13px;
    }
}