/* =========================================
   MAINTENANCE PAGE STYLESHEET
   Palette: Gold #D4AF37 | Dark #4A4A4A
========================================= */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9; /* Latar bersih */
    color: #4A4A4A;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.maintenance-container {
    max-width: 600px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Bayangan halus */
    border: 1px solid #eee;
    margin: 20px;
}

/* Logo */
.logo-wrap img {
    height: 60px;
    margin-bottom: 40px;
}

/* Icon Animation Area */
.icon-wrap {
    position: relative;
    height: 80px;
    margin-bottom: 30px;
    color: #D4AF37; /* Warna Emas */
}

.icon-wrap i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.fa-spin-slow {
    font-size: 80px;
    opacity: 0.1; /* Transparan sebagai background */
    top: 0;
    animation: spin 10s linear infinite;
}

.tools-icon {
    font-size: 40px;
    top: 20px; /* Posisi di tengah gear */
    z-index: 2;
}

@keyframes spin {
    100% { transform: translateX(-50%) rotate(360deg); }
}

/* Typography */
.maint-title {
    font-size: 28px;
    font-weight: 700;
    color: #4A4A4A;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maint-desc {
    font-size: 15px;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Area */
.contact-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #D4AF37;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-contact:hover {
    background-color: #8B4513; /* Warna Brown saat hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
}

/* Footer */
.maint-footer {
    margin-top: 50px;
    font-size: 12px;
    color: #ccc;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 576px) {
    .logo-wrap img { height: 45px; }
    .maint-title { font-size: 22px; }
    .maint-desc { font-size: 14px; }
}