/* Prabha Site Footer - pixel-perfect from Figma */
.prabha-site-footer {
    --footer-primary: #2d6ee6;
    --footer-cyan: #2ab5e6;
    --footer-heading: #1f2938;
    --footer-body: #64748a;
    --footer-border: #e2e8f0;
    --footer-social-bg: #2a3441;

    background: #fff;
    border-top: 1px solid var(--footer-border);
    font-family: "Inter", sans-serif;
    color: var(--footer-body);
}

.prabha-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 20px 30px;
}

/* Top grid */
.prabha-footer-top {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.95fr 0.9fr 1fr;
    gap: 32px;
    padding-bottom: 50px;
}

.prabha-footer-col {
    display: flex;
    flex-direction: column;
}

.prabha-footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
    text-decoration: none;
}

.prabha-footer-logo img {
    display: block;
    max-height: 48px;
    width: auto;
}

.prabha-footer-desc {
    margin: 0 0 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--footer-body);
    max-width: 260px;
}

.prabha-footer-newsletter-label {
    display: block;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: var(--footer-heading);
}

.prabha-footer-newsletter-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 280px;
    height: 48px;
    border: 1px solid var(--footer-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.prabha-footer-newsletter-form input[type="email"] {
    flex: 1 1 auto;
    height: 100%;
    border: 0;
    padding: 0 14px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--footer-heading);
    background: transparent;
    outline: none;
}

.prabha-footer-newsletter-form input[type="email"]::placeholder {
    color: #94a3b8;
}

.prabha-footer-newsletter-form button {
    width: 48px;
    height: 100%;
    border: 0;
    background: var(--footer-primary);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.prabha-footer-newsletter-form button:hover {
    background: #1e5ed1;
}

/* Column titles */
.prabha-site-footer .prabha-footer-title {
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--footer-primary);
}

/* Links */
.prabha-footer-links,
.prabha-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prabha-footer-links a,
.prabha-footer-contact a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--footer-body);
    text-decoration: none;
    transition: color 0.2s ease;
}

.prabha-footer-links a:hover,
.prabha-footer-links a:focus,
.prabha-footer-contact a:hover,
.prabha-footer-contact a:focus {
    color: var(--footer-primary);
}

/* Contact column */
.prabha-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.prabha-footer-contact li span {
    line-height: 20px;
}

.prabha-footer-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.prabha-footer-icon svg {
    width: 100%;
    height: 100%;
}

/* Social icons */
.prabha-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.prabha-footer-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--footer-social-bg);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.prabha-footer-social a:hover {
    transform: translateY(-2px);
    background: var(--footer-primary);
}

/* Bottom bar */
.prabha-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--footer-border);
}

.prabha-footer-copyright {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: var(--footer-body);
}

.prabha-footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prabha-footer-legal a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: var(--footer-body);
    text-decoration: none;
    transition: color 0.2s ease;
}

.prabha-footer-legal a:hover,
.prabha-footer-legal a:focus {
    color: var(--footer-primary);
}

/* Responsive */
@media (max-width: 1199px) {
    .prabha-footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .prabha-footer-col--brand {
        grid-column: 1 / -1;
    }

    .prabha-footer-desc {
        max-width: 460px;
    }
}

@media (max-width: 767px) {
    .prabha-footer-inner {
        padding: 60px 16px 24px;
    }

    .prabha-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .prabha-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .prabha-footer-top {
        grid-template-columns: 1fr;
    }
}
