:root {
    --bordo: #92B775;
    --koyu-bordo: #133215;
    --beyaz: #F3E8D3;
    --krem: #F3E8D3;
    --soft-blur: rgba(146, 183, 117, 0.15);
}


html {
    margin: 0;
    padding: 0;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #050a06;
    color: var(--beyaz);
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-navigation {
    background:
        radial-gradient(circle at 50% 0%, rgba(146, 183, 117, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(5, 10, 6, 0.98), #020503);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 90px 50px 64px;
}

.footer-nav-container {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.1fr) minmax(220px, 0.8fr);
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.footer-brand-block p {
    max-width: 360px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.48);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.75;
    text-transform: uppercase;
}

.footer-social-block,
.footer-link-block {
    justify-self: center;
    width: 100%;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: white;
    text-decoration: none;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px;
}

.footer-brand span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0;
}

.footer-brand strong {
    color: var(--bordo);
}

.footer-eyebrow {
    display: block;
    color: var(--bordo);
    filter: brightness(1.35);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 34px;
    text-align: center;
    text-transform: uppercase;
}

.footer-social-block .footer-eyebrow,
.footer-link-block .footer-eyebrow {
    padding-left: 5px;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 68px;
    padding: 0 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: rgba(146, 183, 117, 0.12);
    border-color: rgba(146, 183, 117, 0.32);
    color: white;
    transform: translateY(-3px);
}

.footer-social-links i {
    font-size: 1.45rem;
}

.footer-social-links span {
    font-size: 0.88rem;
    font-weight: 700;
}

.footer-link-block .footer-eyebrow {
    color: rgba(255, 255, 255, 0.38);
    filter: none;
}

.footer-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(96px, 1fr));
    gap: 22px 34px;
    justify-content: center;
    margin: 0 auto;
    max-width: 280px;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.footer-nav-links a:hover {
    color: var(--bordo);
    filter: brightness(1.25);
}

.site-footer {
    background-color: #020503;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.developer-link {
    color: var(--beyaz);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--bordo);
    filter: brightness(1.3);
}

.is-hidden {
    display: none;
}

.inline-block {
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-navigation {
        padding: 64px 20px 44px;
    }
    .footer-nav-container {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-brand-block p {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.78rem;
    }
    .footer-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }
    .footer-social-links {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-social-links a {
        width: 100%;
        min-height: 58px;
    }
    .footer-nav-links {
        grid-template-columns: 1fr 1fr;
        gap: 18px 12px;
        max-width: 320px;
        margin: 0 auto;
    }
    .site-footer {
        padding: 20px;
    }
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
    color: #e74c3c;
    transform: scale(1.1) rotate(90deg); 
}

.close-btn:active {
    transform: scale(0.95);
}

