/* Footer Styles */
footer {
    background-color: #44555f;
    color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Copyright Text */
footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: #CCCCCC;
}

/* Newsletter Section */
.newsletter {
    text-align: center;
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 50px;
    overflow: hidden;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.email-icon {
    margin-left: 15px;
    color: #FF7043;
    font-size: 20px;
}

.newsletter input[type="email"] {
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    width: 100%;
    outline: none;
}

.submit-button {
    background-color: #fec107;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 50px 50px 0;
    transition: background-color 0.2s ease-in-out;
}

.submit-button i {
    color: #000;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #e0a106;
}

/* Back to Top */
.back-to-top {
    margin-top: 20px;
    text-align: center;
}

.back-to-top a {
    display: inline-block;
    background-color: transparent;
    border: none;
    text-decoration: none;
}

.back-to-top i {
    color: #FFFFFF;
    font-size: 24px;
}

/* Garis Horizontal Pembatas */
.footer-divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #CCCCCC;
}

/* Social Media Icons */
.social-media {
    margin-bottom: 15px;
}

.social-media p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
    font-size: 24px;
    color: #fec107;
    transition: transform 0.2s ease-in-out;
}

.social-media a:hover {
    transform: scale(1.1);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: #fec107;
}

/* Copyright */
.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #CCCCCC;
}