/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}

/* ================= SERVICES SECTION ================= */
.services {
    padding: 60px 8%;
    text-align: center;
}

.services h2 {
    color: #c00000;
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ================= SERVICES GRID ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* ================= SERVICE CARD ================= */
.service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 25px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 12px;
}

.service-card .package {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.service-card h3 {
    color: #d40000;
    margin: 10px 0;
    font-size: 22px;
}

.service-card h5 {
    color: #d40000;
    font-size: 16px;
    margin: 15px 0 8px;
}

.price {
    font-size: 26px;
    color: #d40000;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #c1c1c1;
    padding-bottom: 12px;
    text-align: center;
}

.price .old {
    color: #aaa;
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 18px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 10px;
    padding-left: 0;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
}

.service-card ul li::before {
    content: "✔";
    color: #d40000;
    font-weight: bold;
    flex-shrink: 0;
}

.service-card ul.uncheck li::before {
    content: "";
}

/* ================= BUTTON ================= */
.book-btn {
    margin-top: 18px;
    text-align: center;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(234, 190, 190);
    color: black;
    border: 2px solid #d40000;
    text-decoration: none;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(212, 0, 0, 0.35);
}

.btn-book:hover {
    background: #b00000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(212, 0, 0, 0.45);
}

.btn-logo {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* ================= READ MORE ================= */
.readmore-content {
    max-height: 260px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

.readmore-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.service-card.expanded .readmore-content {
    max-height: 2000px;
}

.service-card.expanded .readmore-content::after {
    display: none;
}

.read-more-btn {
    display: inline-block;
    margin: 12px auto 0;
    color: #d40000;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* ----- TABLET (≤992px) ----- */
@media (max-width: 992px) {
    .services {
        padding: 40px 5%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .price {
        font-size: 22px;
        text-align: center;
    }

    .btn-book {
        padding: 12px 24px;
        font-size: 15px;
    }

    .read-more-btn {
        font-size: 13px;
    }
}

/* ----- MOBILE (≤600px) ----- */
@media (max-width: 600px) {
    .services {
        padding: 30px 4%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .service-card {
        padding: 18px;
    }

    .service-card .package {
        font-size: 11px;
        text-align: center;
    }

    .service-card h3 {
        font-size: 18px;
        text-align: center;
    }

    .price {
        font-size: 20px;
    }

    .service-card ul li {
        font-size: 13px;
    }

    .btn-book {
        width: 100%;
        font-size: 16px;
        border-radius: 8px;
        justify-content: center;
    }

    .btn-logo {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    .read-more-btn {
        font-size: 13px;
    }
}

/* ----- VERY SMALL PHONES (≤400px) ----- */
@media (max-width: 400px) {
    .service-card img {
        height: 140px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .price {
        font-size: 18px;
    }

    .btn-book {
        font-size: 14px;
        padding: 10px 20px;
    }

    .btn-logo {
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }
}
/* Booking button icon */
.btn-icon {
    margin-right: 8px;
    font-size: 16px;
    vertical-align: middle;
    color: black;
    transition: color 0.3s ease;
}

/* Change icon color on hover */
.btn-book:hover .btn-icon {
    color: #fff;
}
@media (max-width: 600px) {
    .btn-icon {
        font-size: 14px;
        margin-right: 6px;
    }
}

@media (max-width: 400px) {
    .btn-icon {
        font-size: 12px;
        margin-right: 4px;
    }
}
