/* Hub footer — educeet-react FooterTwo; bülten telif şeridinde kompakt hap. */
.hf {
    --hf-green: #034E32;
    --hf-green-hover: #046B45;
    --hf-ink: #1F2432;
    --hf-muted: #6B7280;
    --hf-gold: #E4F07A;
    --hf-bg: #F5F8F9;
    --hf-line: rgba(108, 117, 125, 0.16);
    --hf-yellow: #F5C518;
    --hf-purple: #7B5EA7;
    position: relative;
    background: #fff;
}

/* ---------- Ana gövde (4 kolon) ---------- */
.hf-main {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    background-color: var(--hf-bg);
    background-image:
        radial-gradient(ellipse 42% 70% at 0% 55%, rgba(3, 78, 50, 0.07) 0%, transparent 70%);
}

.hf-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.95fr 0.95fr;
}

.hf-col {
    padding: 8px 36px 8px 0;
}

.hf-col + .hf-col {
    padding-left: 36px;
    border-left: 1px solid var(--hf-line);
}

.hf-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    text-decoration: none;
}

.hf-logo img {
    height: 4.625rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.hf-mini-nl {
    max-width: 17.5rem;
}

.hf-newsletter-desc {
    margin: 0 0 18px;
    color: var(--hf-muted);
    font-size: 14px;
    line-height: 1.5;
}

.hf-mini-nl__field {
    position: relative;
}

.hf-mini-nl input[type="email"] {
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 46px 0 14px;
    border: 1px solid var(--hf-line);
    border-radius: 9999px;
    background: #fff;
    color: var(--hf-ink);
    font-size: 13px;
    line-height: 42px;
    outline: none;
    box-shadow: none;
}

.hf-mini-nl input[type="email"]::placeholder {
    color: #9CA3AF;
}

.hf-mini-nl input[type="email"]:focus {
    border-color: var(--hf-green);
}

.hf-mini-nl button[type="submit"] {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--hf-green);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s, transform .2s;
}

.hf-mini-nl button[type="submit"]:hover {
    background: var(--hf-green-hover);
}

.hf-mini-nl button[type="submit"]:focus-visible {
    outline: 2px solid var(--hf-green);
    outline-offset: 2px;
}

.hf-mini-nl button[type="submit"]:active {
    transform: translateY(-50%) scale(0.96);
}

.hf-mini-nl__msg {
    margin: 8px 4px 0;
    min-height: 1.2em;
    font-size: 12px;
    color: var(--hf-green);
}

.hf-mini-nl__msg.is-error {
    color: #B42318;
}

.hf-title {
    margin: 6px 0 18px;
    color: var(--hf-ink);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.28;
}

.hf-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hf-menu li + li {
    margin-top: 12px;
}

.hf-menu a {
    color: var(--hf-muted);
    font-size: 15px;
    text-decoration: none;
    transition: color .2s;
}

.hf-menu a:hover,
.hf-menu a:focus-visible {
    color: var(--hf-green);
}

.hf-contact {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.hf-contact li + li {
    margin-top: 16px;
}

.hf-contact span {
    font-weight: 600;
    color: var(--hf-ink);
    margin-right: 4px;
}

.hf-contact a {
    color: var(--hf-muted);
    text-decoration: none;
}

.hf-contact a:hover,
.hf-contact a:focus-visible {
    color: var(--hf-green);
}

.hf-contact .hf-contact-text {
    font-weight: 400;
    color: var(--hf-muted);
}

.hf-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hf-social a {
    display: inline-flex;
    color: var(--hf-ink);
    transition: color .2s;
}

.hf-social a:hover,
.hf-social a:focus-visible {
    color: var(--hf-green);
}

.hf-social svg {
    width: 18px;
    height: 18px;
}

/* Dekor: sol alt nokta ızgarası + sağ sarı/mor daireler */
.hf-dots {
    position: absolute;
    left: 24px;
    bottom: 28px;
    width: 72px;
    height: 88px;
    background-image: radial-gradient(var(--hf-green) 1.4px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.45;
    pointer-events: none;
}

.hf-orb {
    position: absolute;
    right: 48px;
    bottom: 72px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--hf-yellow);
    pointer-events: none;
    z-index: 0;
}

.hf-orb::before {
    content: "";
    position: absolute;
    left: -28px;
    top: -22px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-image: radial-gradient(var(--hf-purple) 1.6px, transparent 1.7px);
    background-size: 10px 10px;
}

/* ---------- 2b) Guvenli odeme seridi ---------- */
.hf-payments {
    background: #fff;
    border-top: 1px solid var(--hf-line);
    padding: 16px 0;
}

.hf-payments__caption {
    font-size: 12px;
    color: var(--hf-muted);
    margin: 0;
    white-space: nowrap;
}

.hf-payments__icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hf-payments__icons img {
    height: 26px;
    width: auto;
    max-width: 42px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.hf-payments__icons img:hover {
    opacity: 1;
}

/* ---------- 3) Telif şeridi ---------- */
.hf-copy {
    background: var(--hf-green);
    padding: 18px 0;
}

.hf-copy__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hf-copy__text {
    text-align: left;
}

.hf-copy p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.hf-copy__company {
    margin-top: 4px !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 12px !important;
}

.hf-copy a {
    color: var(--hf-gold);
    font-weight: 700;
    text-decoration: none;
}

.hf-copy a:hover,
.hf-copy a:focus-visible {
    text-decoration: underline;
}

.hf-copy__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hf-copy__legal a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

.hf-copy__legal a:hover,
.hf-copy__legal a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .hf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }

    .hf-col {
        padding: 0;
        border-left: 0 !important;
    }

    .hf-dots,
    .hf-orb {
        display: none;
    }
}

@media (max-width: 767px) {
    .hf-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hf-main {
        padding: 40px 16px;
    }

    .hf-mini-nl {
        max-width: none;
    }

    .hf-copy__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .hf-copy__text {
        text-align: center;
    }

    .hf-copy__legal {
        justify-content: center;
    }

    .hf-payments__caption {
        white-space: normal;
        text-align: center;
    }

    .hf-partners__item {
        height: 68px;
        padding: 12px 22px;
    }

    .hf-partners__item img {
        max-width: 128px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hf-mini-nl button[type="submit"] {
        transition: none;
    }
}
