/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #ffffff;
    padding: 4rem 0 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-logo .logo-primary {
    color: #fbbf24;
}

.footer-logo .logo-secondary {
    color: #ffffff;
}

.footer-logo .logo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #fbbf24;
    border-radius: 50%;
    margin-left: 4px;
    margin-bottom: 4px;
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a i {
    font-size: 0.625rem;
    color: #fbbf24;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: #fbbf24;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #fbbf24;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

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

.social-icon:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    border-color: #fbbf24;
}

.social-icon i {
    font-size: 1rem;
}

/* Custom X Icon Styling */
.x-icon {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.x-icon:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.x-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

.footer-developed {
    font-size: 0.875rem;
}

.footer-developed a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-developed a:hover {
    color: #fbbf24;
}

.footer-developed i {
    color: #fbbf24;
}

.developer-name {
    color: #fbbf24;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}
