/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(145deg, #080c1a 0%, #0f1729 35%, #16203a 70%, #1a2645 100%);
    position: relative;
    overflow-x: hidden;
}

/* === TEKSTUR GARIS & BINTANG === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255,215,0,0.006) 60px, rgba(255,215,0,0.006) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,215,0,0.006) 60px, rgba(255,215,0,0.006) 61px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 5% 10%, rgba(255,215,0,0.2), transparent),
        radial-gradient(2px 2px at 20% 55%, rgba(255,215,0,0.15), transparent),
        radial-gradient(2px 2px at 40% 20%, rgba(255,215,0,0.12), transparent),
        radial-gradient(2px 2px at 60% 75%, rgba(255,215,0,0.10), transparent),
        radial-gradient(2px 2px at 80% 30%, rgba(255,215,0,0.15), transparent),
        radial-gradient(2px 2px at 95% 85%, rgba(255,215,0,0.08), transparent),
        radial-gradient(1px 1px at 12% 40%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 35% 80%, rgba(255,255,255,0.20), transparent),
        radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.15), transparent),
        radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.12), transparent),
        radial-gradient(1px 1px at 92% 45%, rgba(255,255,255,0.10), transparent);
    pointer-events: none;
    z-index: 0;
}

/* ---------- CARD UTAMA ---------- */
.card {
    max-width: 1150px;
    width: 100%;
    background: rgba(14, 22, 45, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 52px;
    padding: 45px 45px 35px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 215, 0, 0.05),
        0 0 0 1px rgba(255, 215, 0, 0.02) inset;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- BADGE ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.06);
    backdrop-filter: blur(4px);
    padding: 10px 26px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #f5e56b;
    border: 1px solid rgba(255, 215, 0, 0.10);
    margin-bottom: 20px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.02); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.08); }
}

.badge i {
    font-size: 16px;
    color: #f1c40f;
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---------- JUDUL ---------- */
h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: -0.8px;
}

h1 .highlight {
    background: linear-gradient(135deg, #f7dc6f, #f1c40f, #f39c12, #e67e22);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---------- SUBHEAD ---------- */
.subhead {
    font-size: 19px;
    color: #b8c4e8;
    font-weight: 400;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.subhead i {
    color: #f1c40f;
    font-size: 20px;
}

.subhead .tag {
    background: rgba(255, 215, 0, 0.05);
    padding: 5px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 215, 0, 0.06);
    font-size: 13px;
    color: #d4dbf5;
    font-weight: 600;
}

.subhead .tag i {
    margin-right: 6px;
    font-size: 12px;
}

/* ---------- SLIDER / CAROUSEL ---------- */
.slider-container {
    position: relative;
    margin: 20px 0 25px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.04);
    box-shadow: inset 0 2px 30px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide {
    min-width: 100%;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slide .slide-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide .slide-title i {
    color: #f1c40f;
    font-size: 28px;
}

.slide .slide-desc {
    color: #bcc8ec;
    font-size: 16px;
    line-height: 1.6;
    max-width: 80%;
}

.slide .slide-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(241, 196, 15, 0.08);
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid rgba(241, 196, 15, 0.10);
    font-weight: 700;
    color: #f1c40f;
    font-size: 18px;
    margin-top: 4px;
}

.slide .slide-price span {
    font-weight: 400;
    color: #8a95b8;
    font-size: 14px;
}

/* --- SLIDER BUTTONS --- */
.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 4px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    color: #d0d9f0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(241, 196, 15, 0.10);
    border-color: rgba(241, 196, 15, 0.2);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.05);
}

.slider-btn:active {
    transform: scale(0.92);
}

/* --- SLIDER INDICATOR DOTS --- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(52, 60, 90, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.04);
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider-dot.active {
    background: #f1c40f;
    border-color: #f7dc6f;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.25);
    width: 14px;
    height: 14px;
}

.slider-dot:hover {
    background: rgba(241, 196, 15, 0.3);
    transform: scale(1.2);
}

/* ---------- LAYANAN GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 14px;
    margin: 15px 0 25px;
}

.service-item {
    background: rgba(30, 40, 65, 0.4);
    backdrop-filter: blur(4px);
    padding: 16px 8px;
    border-radius: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #d5def5;
    border: 1px solid rgba(255, 215, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-item i {
    margin-right: 8px;
    color: #f1c40f;
    font-size: 13px;
    transition: 0.3s;
}

.service-item:hover {
    background: rgba(241, 196, 15, 0.08);
    border-color: rgba(241, 196, 15, 0.15);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(241, 196, 15, 0.05);
    color: #ffffff;
}

.service-item:hover i {
    transform: scale(1.3) rotate(8deg);
}

/* ---------- TENTANG KAMI ---------- */
.about {
    background: rgba(15, 22, 42, 0.5);
    backdrop-filter: blur(4px);
    padding: 24px 30px;
    border-radius: 28px;
    margin: 10px 0 28px;
    border-left: 6px solid #f1c40f;
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about:hover {
    border-left-color: #f7dc6f;
    box-shadow: inset 0 2px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(241, 196, 15, 0.02);
}

.about::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.03), transparent 70%);
    pointer-events: none;
}

.about h2 {
    font-size: 18px;
    font-weight: 700;
    color: #f1c40f;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about h2 .badge-sm {
    font-size: 11px;
    font-weight: 600;
    color: #bcc6e6;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 14px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.about p {
    color: #c8d4f0;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ---------- TOMBOL WHATSAPP ---------- */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    padding: 18px 44px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: 0.6s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn i {
    font-size: 28px;
}

.whatsapp-btn .arrow {
    transition: 0.4s ease;
}

.whatsapp-btn:hover .arrow {
    transform: translateX(8px);
}

/* ---------- FOOTER SECTION ---------- */
.footer-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 215, 0, 0.04);
    gap: 20px;
}

/* ---------- DOTS ---------- */
.dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(52, 60, 90, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.04);
    transition: all 0.3s ease;
    cursor: default;
    animation: dotPulse 4s ease-in-out infinite;
}

.dot.active {
    background: #f1c40f;
    border-color: #f7dc6f;
    box-shadow: 0 0 25px rgba(241, 196, 15, 0.2);
    width: 16px;
    height: 16px;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
.dot:nth-child(4) { animation-delay: 0.6s; }
.dot:nth-child(5) { animation-delay: 0.8s; }
.dot:nth-child(6) { animation-delay: 1.0s; }
.dot:nth-child(7) { animation-delay: 1.2s; }
.dot:nth-child(8) { animation-delay: 1.4s; }
.dot:nth-child(9) { animation-delay: 1.6s; }
.dot:nth-child(10) { animation-delay: 1.8s; }
.dot:nth-child(11) { animation-delay: 2.0s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.dot:hover {
    background: rgba(241, 196, 15, 0.3);
    transform: scale(1.2);
}

/* ---------- PENJELASAN TEMA ---------- */
.theme-info {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #8a95b8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    flex-wrap: wrap;
}

.theme-info i {
    color: #f1c40f;
    font-size: 16px;
}

.theme-info .label {
    color: #bcc6e6;
}

.theme-info .theme-badge {
    background: rgba(241, 196, 15, 0.06);
    padding: 3px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.06);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    h1 { font-size: 42px; }
    .slide .slide-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    .card {
        padding: 28px 20px 24px;
        border-radius: 36px;
    }
    h1 { font-size: 34px; }
    .subhead { font-size: 16px; }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .service-item { font-size: 13px; padding: 14px 6px; }
    .slide { padding: 22px 20px; }
    .slide .slide-title { font-size: 19px; }
    .slide .slide-desc { font-size: 15px; }
    .about { padding: 18px 20px; }
    .about p { font-size: 15px; }
    .footer-section { flex-direction: column; align-items: stretch; gap: 16px; }
    .whatsapp-btn { justify-content: center; padding: 15px 28px; font-size: 16px; }
    .dots { justify-content: center; }
    .theme-info { justify-content: center; font-size: 12px; padding: 6px 16px; }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 420px) {
    .card { padding: 20px 14px 18px; border-radius: 28px; }
    h1 { font-size: 26px; }
    .badge { font-size: 11px; padding: 6px 14px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .service-item { font-size: 11px; padding: 10px 4px; border-radius: 40px; }
    .slide { padding: 16px 14px; }
    .slide .slide-title { font-size: 16px; }
    .slide .slide-desc { font-size: 13px; }
    .slide .slide-price { font-size: 15px; padding: 5px 16px; }
    .about { padding: 14px; border-left-width: 4px; }
    .whatsapp-btn { font-size: 14px; padding: 12px 20px; }
    .whatsapp-btn i { font-size: 20px; }
    .slider-btn { width: 34px; height: 34px; font-size: 14px; }
}