/* Footer Styles - Orbit Media Inspired */
.site-footer {
    background-color: #1a1e2b; /* Darker, richer background for contrast */
    color: #e0e4f0; /* Softer white for text */
    padding: 70px 0 40px; /* Increased vertical padding */
    font-size: 15px;
    line-height: 1.7;
    border-top: 5px solid #4a6cf7; /* Accent colored top border for separation */
}

.footer-container {
    max-width: 1300px; /* Slightly wider max-width */
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr; /* Adjusted column ratio for balance */
    gap: 60px; /* More gap between columns */
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-column a {
    color: #cbd0e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #4a6cf7; /* Bright, modern hover color */
}

/* --- Column 1 Styling --- */
/* Footer Logo - Make it prominent */
.footer-logo img,
.custom-logo {
    max-width: 220px; /* Slightly larger logo */
    height: auto;
    margin-bottom: 20px;
    display: block; /* Ensures it doesn't sit inline */
}

.footer-title {
    font-size: 26px;
    margin: 0 0 8px;
    font-weight: 700; /* Bolder title */
    letter-spacing: -0.02em; /* Slight tightening for modern look */
    color: #ffffff;
}

.footer-subtitle {
    font-size: 17px;
    opacity: 0.7;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Social Icons - More visible and stylish */
.footer-social {
    margin: 30px 0 25px;
}

.social-icon {
    display: inline-flex; /* Use flex for perfect centering */
    align-items: center;
    justify-content: center;
    width: 42px; /* Slightly larger */
    height: 42px;
    background-color: rgba(255,255,255,0.08); /* Subtle background */
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.social-icon:hover {
    background-color: #4a6cf7; /* Brand color on hover */
    transform: translateY(-3px); /* Gentle lift effect */
}

/* Font Awesome icons – make sure Font Awesome is enqueued */
.social-icon::before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    color: #fff;
    font-size: 20px; /* Larger icons */
}

/* ... (keep your existing social icon character codes) ... */
.social-icon.facebook::before { content: "\f09a"; }
.social-icon.twitter::before { content: "\f099"; }
.social-icon.instagram::before { content: "\f16d"; }
.social-icon.linkedin::before { content: "\f0e1"; }
.social-icon.youtube::before { content: "\f167"; }

.social-icon span {
    display: none; /* Hide text, but accessible */
}

/* Contact details - Clean and readable */
.footer-email, .footer-phone, .footer-address {
    margin: 12px 0; /* More vertical space between items */
    font-size: 16px;
    display: flex;
    align-items: center;
}

/* Optional: Add a subtle icon before contact info using pseudo-elements if you want */
.footer-email::before {
    content: "✉️";
    margin-right: 8px;
    opacity: 0.7;
    font-size: 14px;
}
.footer-phone::before {
    content: "📞";
    margin-right: 8px;
    opacity: 0.7;
    font-size: 14px;
}
.footer-address::before {
    content: "📍";
    margin-right: 8px;
    opacity: 0.7;
    font-size: 14px;
}


/* --- Column 2 Styling --- */
.footer-about {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #cbd0e0;
}

/* Category and Custom Links - Well-spaced and modern */
.footer-categories, .footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.footer-categories li, .footer-links li {
    margin-bottom: 15px; /* More spacing */
    display: flex;
    align-items: center;
    font-size: 16px;
}

.footer-link-icon {
    width: 24px; /* Slightly larger icons */
    height: 24px;
    object-fit: contain;
    margin-right: 12px;
    opacity: 0.9;
    filter: brightness(0) invert(1); /* Makes dark icons white - adjust if your icons are already light */
}

/* If your uploaded icons are already white/light, remove the filter line above */

.footer-categories a, .footer-links a {
    border-bottom: none; /* Remove dotted border for cleaner look */
    padding-bottom: 0;
    font-weight: 500;
}

.footer-categories a:hover, .footer-links a:hover {
    color: #4a6cf7;
    border-bottom: none;
}

/* Optional: Add a small arrow on hover for links */
.footer-links a:hover::after,
.footer-categories a:hover::after {
    content: " →";
    opacity: 0.7;
    font-weight 400;
}