@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --brand: #e05c2a;
    --brand-light: #f07848;
    --dark: #0f0f0f;
    --card-bg: #181818;
    --card-border: rgba(255, 255, 255, 0.07);
    --muted: rgba(255, 255, 255, 0.45);
    --text: rgba(255, 255, 255, 0.9);
    --divider: rgba(255, 255, 255, 0.08);
}

.footer-wrap {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    padding: 0;
    overflow: hidden;
}

/* ── Top Contact Strip ── */
.contact-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--divider);
    border-bottom: 1px solid var(--divider);
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    background: #1e1e1e;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.icon-purple {
    background: rgba(123, 97, 255, 0.15);
}

.icon-teal {
    background: rgba(29, 158, 117, 0.15);
}

.icon-red {
    background: rgba(224, 92, 42, 0.15);
}

.icon-amber {
    background: rgba(250, 175, 0, 0.15);
}

.contact-label {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.contact-value {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
}

/* ── Main Footer Body ── */
.footer-body {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding: 3.5rem 3rem;
    border-bottom: 1px solid var(--divider);
}

.brand-col {}

.brand-logo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b61ff 0%, #e05c2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(224, 92, 42, 0.2);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.brand-tagline {
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.brand-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}

.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    color: #fff;
    gap: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--muted);
    padding: 5px 0;
    transition: color 0.2s;
    cursor: pointer;
}

.service-pill:hover {
    color: #fff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.connect-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.connect-icon {
    font-size: 15px;
    margin-top: 1px;
    flex-shrink: 0;
    color: var(--brand);
}

.connect-text a {
    color: var(--muted);
    text-decoration: none;
}

.connect-text a:hover {
    color: #fff;
}

/* ── Bottom Bar ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-left {
    font-size: 15px;
    color: var(--muted);
}

.footer-bottom-left span {
    color: var(--brand);
    font-weight: 500;
}

.bottom-links {
    display: flex;
    gap: 1.5rem;
}

.bottom-links a {
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.bottom-links a:hover {
    color: #fff;
}

/* ── Newsletter band ── */
.newsletter-band {
    background: #161616;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    padding: 1.75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.newsletter-text p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.newsletter-input {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: #fff;
    width: 220px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: var(--brand);
}

.newsletter-input::placeholder {
    color: var(--muted);
}

.donate-btn {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.donate-btn:hover {
    background: var(--brand-light);
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .contact-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .brand-col {
        grid-column: 1 / -1;
    }

    .newsletter-band {
        padding: 1.5rem;
    }

    .footer-bottom {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .contact-strip {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-body {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem;
    }

    .newsletter-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1.25rem;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input {
        flex: 1;
        width: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
    }

    .bottom-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    /* important */
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}