.d-flex-footer {
    display: flex;
    flex-direction: column;
}
.footer-icon img{
    width: 100%;
}
:root {
    --bg: #080a0b;
    --bg-dark: #141414;
    --yellow: #c8f000;
    --purple: #5c2be2;
    --purple-hover: #4a22c0;
    --white: #ffffff;
    --muted: #888888;
    --border: #2e2e2e;
    --text-light: #cccccc;
}

/* ── Footer Main ─────────────────────────────────── */
.site-footer {
    background: var(--bg);
    color: var(--white);
    padding: 72px 0 0;
    overflow: hidden;
    background: #080a0b;

}

/* ── Subscribe Column ────────────────────────────── */
.footer-subscribe h2 {

    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1.2;
    margin-bottom: 12px;
}

.footer-subscribe p {
    font-size: 1.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-subscribe .email-input {
    width: 100%;
    background: transparent;
    border: 1.5px solid #444;
    border-radius: 6px;
    padding: 12px 14px;
    color: var(--white);
    font-size: 1.875rem;

    outline: none;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.footer-subscribe .email-input::placeholder {
    color: #555;
}

.footer-subscribe .email-input:focus {
    border-color: blue;
}

.footer-subscribe .btn-subscribe {
    width: 100%;
    background: #002AC4;
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.9rem;
    font-weight: 600;

    cursor: pointer;
    transition: background 0.2s;
}

.footer-subscribe .btn-subscribe:hover {
    background: #002AC4;
}

.footer-subscribe .return-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.footer-subscribe .return-note .check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.footer-subscribe .return-note .check-icon i {
    font-size: 0.7rem;
    color: #111;
    font-weight: 900;
}

/* ── Footer Columns ──────────────────────────────── */
.footer-col h6 {
    font-size: 1.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col ul li a {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.18s;
}

.footer-col ul li a:hover {
    color: var(--yellow);
}

/* ── Contact Column ──────────────────────────────── */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1.875rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.18s;
}

.contact-item:hover {
    color: var(--yellow);
}

.contact-item i {
    font-size: 1.9rem;
    color: var(--muted);
    flex-shrink: 0;
}

.studio-label {
    font-size: 1.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    text-transform: uppercase;
    margin: 24px 0 10px;
}

.studio-address {
    font-size: 1.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── Copyright Bar ───────────────────────────────── */
.footer-copy {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 20px 0;
    font-size: 1.82rem;
    color: var(--muted);
    margin-top: 64px;
}

/* ── Giant Brand Wordmark ────────────────────────── */
.footer-wordmark {
    overflow: hidden;
    line-height: 0.85;
    padding: 0;
    margin: 0;
}

.footer-wordmark span {
    font-size: clamp(120px, 20vw, 260px);
    color: #2e2e2e;
    letter-spacing: -0.01em;
    display: block;
    text-align: center;
    user-select: none;
    line-height: 0.9;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 767px) {
    .site-footer {
        padding: 48px 0 0;
    }

    .footer-subscribe h2 {
        font-size: 1.6rem;
    }

    .footer-col {
        margin-top: 36px;
    }

    .footer-copy {
        margin-top: 40px;
    }
}
