/* ==================================================
   HIM BUS FOOTER
================================================== */

.site-footers {
    --footer-primary: #ff6b00;
    --footer-primary-dark: #e85f00;
    --footer-bg: #071629;
    --footer-bg-light: #0d213b;
    --footer-text: #c7d1de;
    --footer-white: #ffffff;
    --footer-border: rgba(255, 255, 255, 0.12);

    position: relative;
    margin-top: 70px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 107, 0, 0.18),
            transparent 32%
        ),
        linear-gradient(135deg, var(--footer-bg), var(--footer-bg-light));
    color: var(--footer-text);
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

/* Orange Top Border */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--footer-primary),
        #ff9d42,
        var(--footer-primary)
    );
}

/* Decorative Shape */
.site-footer::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 45px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

/* Main Container */
.footer-container {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 75px 0 55px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.9fr 1.2fr;
    gap: 50px;
}

/* Footer Columns */
.footer-column {
    min-width: 0;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 13px;
    color: var(--footer-white);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    border-radius: 20px;
    background: var(--footer-primary);
}

.footer-column p {
    margin: 0 0 17px;
    color: var(--footer-text);
    font-size: 15px;
    line-height: 1.8;
}

.footer-column strong {
    color: var(--footer-white);
    font-weight: 600;
}

/* Logo */
.footer-logo {
    display: block;
    width: auto;
    max-height: 100px;
    margin-bottom: 22px;
    justify-self: center;
}

.footer-logo:hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
}

/* General Links */
.footer-column a,
.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column p a {
    color: var(--footer-text);
}

.footer-column p a:hover {
    color: var(--footer-primary);
}

/* Footer Lists */
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text);
    font-size: 15px;
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: var(--footer-white);
    transform: translateX(6px);
}

.footer-column ul li a::first-letter {
    color: var(--footer-primary);
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-top: 22px;
    padding: 5px;
    border: 1px solid var(--footer-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.newsletter-form input {
    width: 100%;
    min-width: 0;
    padding: 14px 15px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--footer-white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aab6c5;
}

.newsletter-form button {
    flex-shrink: 0;
    padding: 13px 22px;
    border: none;
    border-radius: 9px;
    background: linear-gradient(
        135deg,
        var(--footer-primary),
        #ff8b35
    );
    color: var(--footer-white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        135deg,
        var(--footer-primary-dark),
        var(--footer-primary)
    );
    box-shadow: 0 11px 25px rgba(255, 107, 0, 0.38);
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 24px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--footer-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--footer-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    border-color: var(--footer-primary);
    background: var(--footer-primary);
    color: var(--footer-white);
    box-shadow: 0 9px 22px rgba(255, 107, 0, 0.32);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 22px 20px;
    border-top: 1px solid var(--footer-border);
    background: rgba(0, 0, 0, 0.18);
    color: #aeb9c7;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom a {
    color: var(--footer-white);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--footer-primary);
}

/* Input Autofill Fix */
.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--footer-white);
    box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Focus Accessibility */
.footer-column a:focus-visible,
.newsletter-form input:focus-visible,
.newsletter-form button:focus-visible {
    outline: 2px solid var(--footer-primary);
    outline-offset: 3px;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 55px;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {
    .site-footer {
        margin-top: 45px;
    }

    .footer-container {
        width: min(100% - 30px, 1200px);
        padding: 58px 0 38px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h3 {
        margin-bottom: 22px;
        font-size: 20px;
    }

    .footer-logo {
        max-width: 155px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 7px;
        padding: 7px;
    }

    .newsletter-form input {
        padding: 13px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 13px 18px;
    }

    .footer-bottom {
        padding: 20px 15px;
        font-size: 13px;
    }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 380px) {
    .footer-container {
        width: calc(100% - 24px);
    }

    .social-links a {
        width: 39px;
        height: 39px;
    }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .site-footer *,
    .site-footer *::before,
    .site-footer *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}



/* =========================================
   SOCIAL MEDIA ICONS – FIXED BRAND COLORS
========================================= */

.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    padding: 0;

    border: none;
    border-radius: 50%;
    text-decoration: none;

    color: #ffffff !important;
    font-size: 18px;
    line-height: 1;

    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

/* Icon हमेशा White रहेगा */
.social-links a i,
.social-links a svg {
    position: relative;
    z-index: 3;

    display: block;
    color: #ffffff !important;
    fill: #ffffff !important;

    font-size: 18px;
    line-height: 1;

    transition: transform 0.35s ease;
}

/* Facebook */
.social-links .facebook {
    background: #1877f2 !important;
}

/* X / Twitter */
.social-links .twitter {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Instagram */
.social-links .instagram {
    background: linear-gradient(
        135deg,
        #833ab4 0%,
        #c13584 35%,
        #e1306c 55%,
        #fd1d1d 72%,
        #fcb045 100%
    ) !important;
}

/* YouTube */
.social-links .youtube {
    background: #ff0000 !important;
}

/* Shine Effect */
.social-links a::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;
    z-index: 1;

    width: 38%;
    height: 220%;

    background: rgba(255, 255, 255, 0.28);
    transform: rotate(25deg);

    transition: left 0.6s ease;
}

.social-links a:hover::before {
    left: 140%;
}

/* Hover */
.social-links a:hover {
    transform: translateY(-5px) scale(1.08);
    filter: brightness(1.08);
}

.social-links a:hover i {
    transform: rotate(360deg);
}

.social-links .facebook:hover {
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

.social-links .twitter:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.18);
}

.social-links .instagram:hover {
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.5);
}

.social-links .youtube:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.social-links a:active {
    transform: translateY(-1px) scale(0.94);
}

/* Mobile */
@media (max-width: 480px) {
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .social-links a i {
        font-size: 16px;
    }
}


/*last footer css*/
.footer-bottom {
    padding: 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #aeb9c7;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom a {
    position: relative;
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff6b00;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #ff6b00;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-credit {
    display: inline;
}

@media (max-width: 576px) {
    .footer-credit {
        display: block;
        margin-top: 3px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}






