.site-footer {
    background: #0f3f2a;
    color: #ffffff;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 55px;
    align-items: start;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
    max-width: 360px;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #d1a347;
    padding-left: 4px;
}

.footer-contact p {
    margin: 0 0 13px;
}

.footer-contact strong {
    display: block;
    color: #d1a347;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
}

.footer-contact span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 40px;
    padding: 18px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

/* Sağ altta sabit WhatsApp butonu */
.floating-whatsapp {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 999999 !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    background: #25D366 !important;
    color: #ffffff !important;
    padding: 14px 22px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    transition: all 0.25s ease;
}

.floating-whatsapp:hover {
    background: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer {
        padding-top: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 15px !important;
        bottom: 15px !important;
        padding: 12px 18px;
        font-size: 14px;
    }
}