/* css/daftar-harga.css */

.dh-hero {
    background: linear-gradient(135deg, #fdfaf6 0%, #f0e6d2 100%);
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #ebdcb5;
}

.dh-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='8' fill='none' stroke='rgba(212,175,55,0.1)' stroke-width='1'/%3E%3Cpath d='M0 20 Q10 10 20 20 Q30 30 40 20' fill='none' stroke='rgba(212,175,55,0.05)' stroke-width='0.8'/%3E%3C/svg%3E") repeat;
    opacity: 0.6;
    z-index: 1;
}

.dh-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dh-title-small {
    color: #8c6b3e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dh-title-small::before, .dh-title-small::after {
    content: " • ";
    color: #d4af37;
}

.dh-title-main {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #2a160c;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.dh-title-sub {
    font-size: 16px;
    color: #5c4033;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dh-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.dh-badge {
    background: #fff;
    border: 1px solid #ebdcb5;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #4a2c1f;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.dh-badge svg {
    color: #f38814;
}

.dh-section {
    padding: 60px 0 80px;
    background: #fdfaf6;
}

.dh-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.dh-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 800px) {
    .dh-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dh-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 35px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.dh-card-header {
    background: #2a333c;
    color: #fff;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 3px solid #f38814;
    position: relative;
}

.dh-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.dh-card-title::before, .dh-card-title::after {
    content: " ✦ ";
    color: #f38814;
    font-size: 14px;
    vertical-align: middle;
}

.dh-table-wrapper {
    overflow-x: auto;
}

.dh-table {
    width: 100%;
    border-collapse: collapse;
}

.dh-table th {
    background: #4a2c1f;
    color: #f5ecd8;
    padding: 14px 15px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.dh-table th:last-child {
    border-right: none;
}

.dh-table td {
    padding: 14px 15px;
    text-align: center;
    border-bottom: 1px solid #f0e6d2;
    border-right: 1px solid #f0e6d2;
    color: #444;
    font-weight: 500;
    font-size: 14px;
}

.dh-table td:last-child {
    border-right: none;
}

.dh-table tr:last-child td {
    border-bottom: none;
}

.dh-table tr:nth-child(even) {
    background: #faf7f2;
}

.dh-table tr:hover {
    background: #f5ecd8;
}

.dh-table td.text-left {
    text-align: left;
    font-weight: 600;
    color: #2a160c;
}

.dh-price {
    color: #d35400;
    font-weight: 700;
}

.dh-promo-box {
    background: linear-gradient(135deg, #f38814 0%, #d97706 100%);
    color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(243,136,20,0.25);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.dh-promo-box::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.dh-promo-box h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
}

.dh-promo-box p {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-chat-admin {
    display: inline-block;
    background: #fff;
    color: #d97706;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-chat-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
