body {
    background: #f3f5f7;
    color: #1f2937;
}

.service-detail-page {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.card-box,
.booking-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.service-topbar {
    padding: 24px;
}

.service-heading-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.service-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #003b95;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-city {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}

.service-heading h1 {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #101828;
}

.service-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    color: #667085;
    font-size: 14px;
}

.service-meta-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-top-score {
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: right;
}

.service-top-score-label {
    font-size: 13px;
    font-weight: 700;
    color: #667085;
    margin-bottom: 4px;
}

.service-top-score strong {
    font-size: 24px;
    color: #0f172a;
}

.service-top-score small {
    font-size: 13px;
    color: #64748b;
}

.gallery-card {
    padding: 16px;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 14px;
}

.gallery-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #344054;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.gallery-tabs a:hover,
.gallery-tabs a.active {
    background: #003b95;
    color: #fff;
}

.gallery-stage {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #e5e7eb;
}

.gallery-stage img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    font-size: 24px;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

.gallery-prev {
    left: 18px;
}

.gallery-next {
    right: 18px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.gallery-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    opacity: 0.85;
    transition: .25s ease;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #003b95;
    opacity: 1;
    transform: translateY(-2px);
}

.gallery-thumb img {
    width: 100%;
    height: 74px;
    object-fit: cover;
    display: block;
}

.detail-section {
    padding: 26px;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #101828;
}

.section-head span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #111827 0, rgba(17, 24, 39, 0.08) 100%);
}

.description-content p {
    margin-bottom: 16px;
    color: #344054;
    line-height: 1.8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    background: #f9fafb;
}

.highlight-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 59, 149, 0.08);
    color: #003b95;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-item strong,
.practical-item strong {
    display: block;
    color: #101828;
}

.highlight-item p,
.practical-item span {
    margin: 4px 0 0;
    color: #667085;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 600;
}

.equipment-item i {
    color: #16a34a;
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.practical-item {
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.booking-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.booking-sidebar {
    top: 110px;
}

.booking-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.booking-from {
    display: block;
    font-size: 15px;
    color: #64748b;
    margin-bottom: 4px;
}

.booking-price {
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
}

.booking-price small {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #64748b;
}

.booking-score {
    text-align: right;
    flex-shrink: 0;
}

.booking-score span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.booking-score strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #003b95;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.booking-form {
    display: block;
    width: 100%;
}

.booking-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.booking-field {
    margin-bottom: 14px;
}

.booking-form .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.booking-input,
.booking-textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
    color: #0f172a;
}

.booking-input {
    height: 56px;
    padding: 12px 16px;
    font-size: 16px;
}

.booking-textarea {
    min-height: 126px;
    padding: 14px 16px;
    font-size: 15px;
    resize: vertical;
}

.booking-input:focus,
.booking-textarea:focus {
    border-color: #003b95;
    box-shadow: 0 0 0 0.2rem rgba(0, 59, 149, 0.12);
    outline: 0;
}

.booking-submit {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff5a5f 0%, #ff7a00 100%);
}

.booking-submit:hover {
    opacity: 0.95;
}

.booking-side-infos {
    border-top: 1px solid #e2e8f0;
    margin-top: 22px;
    padding-top: 18px;
    display: grid;
    gap: 12px;
    color: #475569;
    font-size: 15px;
}

.booking-side-infos i {
    width: 20px;
    margin-right: 8px;
    color: #003b95;
}

@media (max-width: 1199.98px) {
    .gallery-stage img {
        height: 420px;
    }

    .booking-price {
        font-size: 38px;
    }
}

@media (max-width: 991.98px) {
    .service-heading h1 {
        font-size: 28px;
    }

    .service-top-score {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .service-topbar,
    .detail-section,
    .gallery-card,
    .booking-card {
        padding: 18px;
        border-radius: 16px;
    }

    .gallery-stage img {
        height: 270px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .highlights-grid,
    .equipment-grid,
    .practical-grid,
    .booking-grid-2 {
        grid-template-columns: 1fr;
    }

    .booking-price {
        font-size: 32px;
    }

    .booking-price small {
        font-size: 16px;
    }

    .booking-score strong {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 20px;
    }

    .service-meta-line {
        flex-direction: column;
        gap: 10px;
    }
}
