/* =============================== */
/* GRAPHY STYLE FOOTER */
/* =============================== */

.graphy-footer-wrapper {
    position: relative;
    background: #f5f6f8;
    padding: 80px 0;
    overflow: hidden;
}

.graphy-footer {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Brand */
.gf-logo {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gf-brand p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Icons */
.gf-social {
    display: flex;
    gap: 14px;
}

.gf-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: 0.3s ease;
}

.gf-social a:hover {
    background: #111;
    color: #fff;
}

/* Links */
.gf-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gf-links a {
    display: block;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.gf-links a:hover {
    color: #111;
}

/* Bottom */
.gf-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.gf-copy {
    font-size: 13px;
    color: #6b7280;
}

.gf-legal {
    display: flex;
    gap: 20px;
}

.gf-legal a {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
}

.gf-legal a:hover {
    color: #111;
}

/* WATERMARK TEXT */
.footer-watermark {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
    z-index: 0;
}

/* App Buttons Section */
.gf-app-section {
    display: flex;
    flex-direction: column;
}

.gf-app-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-btn img {
    width: 140px;
    height: auto;
    transition: 0.3s ease;
}

.store-btn img:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Certificates Section */
.gf-certificates {
    display: flex;
    flex-direction: column;
}

.gf-cert-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.gf-cert-grid img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.gf-cert-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gf-dmca {
    margin-top: 15px;
}

.gf-dmca img {
    width: 160px;
    height: auto;
}

/* =============================== */
/* MOBILE RESPONSIVE */
/* =============================== */

@media (max-width: 992px) {

    .graphy-footer {
        grid-template-columns: 1fr 1fr;
        padding: 40px 30px;
        gap: 40px;
    }
}

@media (max-width: 600px) {

    .graphy-footer {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        text-align: center;
    }

    .gf-social {
        justify-content: center;
    }

    .gf-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .gf-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {

    .graphy-footer-wrapper {
        padding: 40px 15px;
    }

    .graphy-footer {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        border-radius: 16px;
        text-align: center;
        gap: 35px;
    }

    .gf-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .gf-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .gf-links {
        text-align: center;
    }

    .gf-links h4 {
        margin-bottom: 15px;
    }

    .gf-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 15px;
    }

    .gf-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

        .footer-watermark {
        font-size: 120px;
        bottom: 20px;
    }

      .gf-app-buttons {
        align-items: center;
    }

    .store-btn img {
        width: 150px;
    }

      .gf-cert-grid {
        justify-content: center;
    }

    .gf-dmca {
        text-align: center;
    }

}