.dark-footer {
    background-color: #1c1c1e;
    color: #f1f1f1;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-email {
    margin-bottom: 15px;
    color: #ddd;
}

.social-icons a {
    color: #f1f1f1;
    background: #333;
    padding: 10px;
    margin-right: 8px;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #3498db;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.newsletter {
    display: flex;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px 0 0 20px;
    outline: none;
}

.newsletter button {
    background: #3498db;
    border: none;
    padding: 10px 15px;
    border-radius: 0 20px 20px 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-col {
        margin: 20px 0;
    }
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background-color: #111;
    /* same as footer background or slightly darker */
    color: #ccc;
    /* soft text color */
    font-size: 14px;
    border-top: 1px solid #333;
    /* optional: thin line above */
}