/* =========================================================
   TRAVEL SERVICE DETAIL PAGE
========================================================= */

.travel-service-page {
    min-height: calc(100vh - 150px);
    padding: 80px 20px;
    background:
        radial-gradient(
            circle at top right,
            rgba(183, 135, 39, 0.16),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.travel-service-container {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.travel-service-back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.travel-service-back:hover {
    color: #b78727;
    transform: translateX(-3px);
}

.travel-service-card {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid #e4e7ec;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(16, 24, 40, 0.11);
}

.travel-service-card::after {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(183, 135, 39, 0.09);
}

.travel-service-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: #f5ead3;
    font-size: 30px;
    box-shadow: 0 10px 24px rgba(183, 135, 39, 0.15);
}

.travel-service-label {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 12px;
    color: #b78727;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.travel-service-card h1 {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 0 18px;
    color: #172033;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.05;
}

.travel-service-introduction {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}

.travel-service-information {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    padding: 24px;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    background: #f8fafc;
}

.travel-service-information h2 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 21px;
}

.travel-service-information p {
    margin: 0;
    color: #475467;
    font-size: 14px;
    line-height: 1.8;
}

.travel-service-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.travel-service-primary-button,
.travel-service-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.travel-service-primary-button {
    background: #172033;
    color: #ffffff;
}

.travel-service-primary-button:hover {
    background: #b78727;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(183, 135, 39, 0.22);
}

.travel-service-secondary-button {
    border: 1px solid #d0d5dd;
    background: #ffffff;
    color: #344054;
}

.travel-service-secondary-button:hover {
    border-color: #b78727;
    color: #b78727;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .travel-service-page {
        padding: 52px 16px;
    }

    .travel-service-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .travel-service-icon {
        width: 56px;
        height: 56px;
        font-size: 25px;
    }

    .travel-service-card h1 {
        font-size: 38px;
    }

    .travel-service-introduction {
        font-size: 15px;
    }

    .travel-service-actions {
        flex-direction: column;
    }

    .travel-service-primary-button,
    .travel-service-secondary-button {
        width: 100%;
    }
}
