/* ===== FOOTER STYLES ===== */
.starcom-footer {
    background-color: #000;
    color: #fff;
    padding: 15px 0 5px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    font-size: 14px;
}
.footer-link {
    text-decoration: none;
    cursor: pointer;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-section {
    margin-bottom: 15px;
}

.footer-heading {
    color: #FF4500;
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #FF4500;
    font-weight: 600;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact-item i {
    color: #FF4500;
    margin-right: 10px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF4500;
}

.footer-links i {
    margin-right: 8px;
    color: #FF4500;
    width: 16px;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #222;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background-color: #FF4500;
    transform: translateY(-2px);
}

/* Copyright Section */
.copyright {
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #FF0000;
    color: #FF4500;
    font-size: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}