.footer {
    background-color: rgb(31, 38, 65);
    color: var(--white);
    padding: 60px 0 20px 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr  1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--pandora-primary);
    transform: translateY(-3px);
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Company Info Section */
.company-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.company-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.company-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.company-details address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pandora-primary-light);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--pandora-primary-light);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .company-info {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .company-details h3 {
        font-size: 1rem;
    }
    
    .company-details address {
        font-size: 0.85rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-links a,
    .contact-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}


.registration-container {
    padding: 4rem 0;
}

.registration-form-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* To contain the header's border-radius */
    border: 2px solid #e6b800;
}

.registration-header {
    background: #e6b800;
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.registration-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 30px;
}

.registration-guide {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #856900;
}

.registration-guide h3 {
    color: #374151;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.registration-guide ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-guide li {
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 14px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.form-group input:focus, .form-group input:focus {
    outline: none;
    border-color: #FCD34D;
    box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

.form-group input::placeholder, .form-group input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.form-footer p {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.register-btn {
    background-color: #e6b800;
    color: #1f2937;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    min-width: 200px;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 184, 0, 0.3);
    background-color: #cc9900;
}

.register-btn:active {
    transform: translateY(0);
}

.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: white;
    min-width: 300px;
    animation: slideIn 0.5s forwards;
    overflow: hidden;
}

/* Gaya untuk status SUKSES (hijau) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Kotak konten modal */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
    transform: scale(0.9);
    animation: scaleIn 0.3s forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

/* Ikon (centang atau silang) */
.modal-icon .fas {
    font-size: 60px;
    margin-bottom: 15px;
}
.modal-content.success .modal-icon {
    color: #2ecc71;
}
.modal-content.error .modal-icon {
    color: #e74c3c;
}

/* Teks di dalam modal */
.modal-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}
.modal-body p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Tombol OK */
.modal-ok-btn {
    padding: 10px 40px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.modal-content.success .modal-ok-btn {
    background-color: #27ae60;
}
.modal-content.error .modal-ok-btn {
    background-color: #c0392b;
}

.modal-ok-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .registration-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .registration-header {
        padding: 15px 20px;
    }
    
    .registration-header h2 {
        font-size: 20px;
    }
    
    .registration-guide {
        padding: 20px;
    }
    
    .form-group input {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .registration-content {
        padding: 15px;
    }
    
    .registration-header {
        padding: 12px 15px;
    }
    
    .registration-header h2 {
        font-size: 18px;
    }
}