/* MAIN */
.detail-section {
    padding: 30px 24px 50px;
}

.detail-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.detail-left {
    flex: 1;
}

.detail-right {
    width: 390px;
}

.detail-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.detail-title {
    font-size: 28px;
    margin: 18px 0 8px;
    font-weight: 700;
}

.rating {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.star {
    color: #facc15; /* kuning */
}

.rating-number {
    color: #111; /* hitam */
}

/* INFO BOX */
.info-box {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-icon.blue {
    background: #dce9ff;
}

.info-icon.green {
    background: #dff5e6;
}

.info-icon.purple {
    background: #eedcff;
}

.info-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.info-item h4 {
    font-size: 14px;
    font-weight: 700;
}

/* TAB */
.tab-switcher {
    background: #dedee3;
    border-radius: 18px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 22px;
}

.tab-btn {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
}

/* WRAPPER TAB */
.tab-wrapper {
    width: 100%;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

.content-card {
    width: 100%;
    min-height: 260px;

    background: #f8f8f8;
    border-radius: 20px;
    padding: 26px 28px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-left,
.content-card,
.tab-content {
    width: 100%;
    min-width: 0;
}

/* LIST */
/* RESET TAB CONTENT */
.content-card p,
.content-card ul,
.content-card li,
.content-card h3,
.content-card h4 {
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.check-list li,
.minus-list li {
    font-size: 15px;
    line-height: 1.9;
    color: #666;

    margin-bottom: 10px;
}

.content-card p,
.check-list li,
.minus-list li {
    word-break: break-word;
}

.content-card h3 {
    font-size: 18px;
    margin-bottom: 18px;
}

.content-card h4 {
    font-size: 16px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.content-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 12px;
    text-align: justify;
}

.check-list,
.minus-list {
    padding-left: 22px;
    margin-bottom: 28px;
}

.check-list li,
.minus-list li {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 4px;
}

/* RIGHT BOOKING CARD */
.booking-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.price-label {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 700;
}

.booking-card h2 {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 6px;
}

.per-person {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.btn-booking {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: #2563eb;
    color: white;
    padding: 14px 0;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 22px;
}

.benefit-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.booking-card hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.booking-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.help-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border: 1px solid #999;
    color: #222;
    padding: 12px 0;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    background: white;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .detail-container {
        flex-direction: column;
    }

    .detail-right {
        width: 100%;
    }

    .booking-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .info-box {
        flex-direction: column;
    }

    .detail-image {
        height: 250px;
    }
}

/* FOOTER */
.footer {
    background: #cfe8f8;
    padding: 10px 30px 10px;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2px;
}

.footer-brand img {
    width: 52px;
    display: block;
}

.footer-brand h3,
.footer-right h3 {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-description {
    font-size: 13px;
    line-height: 1.7;
    color: #222;
    max-width: 470px;
    text-align: justify;
}

.footer-divider {
    width: 2px;
    height: auto;
    align-self: stretch; /* ⬅️ ikut tinggi konten */
    background: #6d6d6d;
}

.footer-contact-list {
    display: flex;
    gap: 26px;
    margin-top: 20px;
}

.contact-col p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1180px;
    margin: 16px auto 0;
    padding-top: 10px;
    border-top: 1.5px solid #5d5d5d;
    text-align: center;
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-divider {
        width: 100%;
        min-height: 2px;
    }
}

@media (max-width: 768px) {
    .detail-section {
        padding: 20px 16px 40px;
    }

    .detail-container {
        gap: 20px;
    }

    .detail-image {
        height: 220px;
        border-radius: 18px;
    }

    .detail-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .info-box {
        flex-direction: column;
        gap: 18px;

        border-radius: 18px;
    }

    .tab-switcher {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        font-size: 15px;
    }

    .content-card {
        min-height: auto;
    }

    .booking-card {
        border-radius: 18px;
        padding: 20px;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer-contact-list {
        flex-direction: column;
        gap: 10px;
    }

    .footer-description {
        max-width: 100%;
    }
}
