/* Kutyavarazslo.hu - lábrész */
:root {
    --footer-purple-1: #24102f;
    --footer-purple-2: #371542;
    --footer-purple-3: #492759;
    --footer-gold: #e6b84f;
    --footer-gold-light: #f5d36f;
    --footer-text: #f8f3fb;
    --footer-muted: #d8cfe0;
    --footer-line: rgba(230, 184, 79, 0.22);
}

.site-footer {
    margin-top: 0;
    background: linear-gradient(135deg, var(--footer-purple-1) 0%, var(--footer-purple-2) 52%, #1d0c26 100%);
    color: var(--footer-text);
    font-family: Arial, sans-serif;
}

.footer-cta {
    max-width: 1320px;
    min-height: 220px;
    margin: 0 auto;
    padding: 34px 48px;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid var(--footer-line);
}

.footer-cta-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cta-logo img {
    width: 190px;
    height: 150px;
    object-fit: contain;
}

.footer-cta-content {
    text-align: center;
}

.footer-cta-content h2 {
    margin: 0 0 12px;
    color: var(--footer-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.05;
}

.footer-cta-content p {
    margin: 0 0 24px;
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 300px;
    padding: 17px 30px;
    border-radius: 12px;
    background: linear-gradient(90deg, #f0c658, #e3ac35);
    color: #24102f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .02em;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.25);
    filter: brightness(1.06);
}

.footer-cta-icon {
    position: relative;
    width: 160px;
    height: 160px;
    justify-self: end;
    color: rgba(230, 184, 79, .52);
}

.footer-cta-icon .fa-clipboard {
    position: absolute;
    inset: 12px 24px 12px 14px;
    font-size: 130px;
}

.footer-cta-icon .fa-pen {
    position: absolute;
    right: 0;
    bottom: 22px;
    font-size: 72px;
    transform: rotate(-8deg);
}

.footer-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 48px 44px;
    display: grid;
    grid-template-columns: 1.25fr .9fr .95fr 1.2fr;
    gap: 46px;
}

.footer-brand,
.footer-column {
    min-width: 0;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--footer-gold-light);
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.05;
}

.footer-logo-link img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.footer-brand > p {
    margin: 24px 0 20px;
    color: var(--footer-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.45;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 184, 79, .65);
    border-radius: 50%;
    color: var(--footer-gold-light);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social a:hover {
    background: var(--footer-gold-light);
    color: #2c1038;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin: 5px 0 20px;
    color: var(--footer-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.footer-column > a {
    margin: 0 0 10px;
    color: var(--footer-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.35;
    transition: color .2s ease, transform .2s ease;
}

.footer-column > a:hover {
    color: var(--footer-gold-light);
    transform: translateX(3px);
}

.footer-contact > a,
.footer-contact > p {
    width: 100%;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    margin: 0 0 16px;
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.45;
}

.footer-contact i {
    margin-top: 2px;
    color: var(--footer-gold-light);
}

.footer-contact > a:hover {
    color: var(--footer-gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--footer-line);
    text-align: center;
    padding: 18px 24px;
}

.footer-bottom p {
    margin: 0;
    color: #c8bdcf;
    font-size: 13px;
}

@media (max-width: 1050px) {
    .footer-cta {
        grid-template-columns: 160px 1fr 150px;
        padding-inline: 32px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding-inline: 32px;
    }
}

@media (max-width: 760px) {
    .footer-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 38px 22px;
    }

    .footer-cta-logo img {
        width: 150px;
        height: 120px;
    }

    .footer-cta-icon {
        display: none;
    }

    .footer-cta-button {
        min-width: 0;
        width: 100%;
        max-width: 360px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 40px 24px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-link {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-contact > a,
    .footer-contact > p {
        max-width: 330px;
        grid-template-columns: 24px 1fr;
        text-align: left;
    }
}