.gd-footer {
    width: 100%;
    background-color: #0A1025; /* Dark navy */
    padding: 0px 0;
    text-align: center;
    color: #ffffff;
    font-family: 'BPG Arial', sans-serif;
    position: relative;
}

/* Top gold line */
.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background-color: #C8A046;
}

/* Footer layout */
.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    color: #ffffff;
    font-size: 26px;
    margin-top: 20px;
}
/* Left branding */
.footer-brand h2 {
    color: #ffffff;
    font-size: 26px;
    margin: 0;
}

.footer-brand p {
    color: #C8A046;
    font-size: 16px;
    margin-top: 6px;
}


/* Middle links */
.footer-links a {
    color: #ffffff;
    margin: 0 12px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #C8A046;
}

/* Right icon section */
.footer-icons .icon {
    font-size: 22px;
    color: #C8A046;
    margin-left: 12px;
    transition: 0.3s;
}



.footer-icons a svg {
    margin-left: 15px;
    transition: 0.3s ease;
    width: 32px;
height: 32px;

}

.footer-icons a svg:hover {
    transform: scale(1.2);
}
/* Disable visited purple behavior in footer icons */
.footer-icons a:visited {
    color: #C8A046 !important;
}

.footer-icons a {
    text-decoration: none !important;
    outline: none !important;
}

.footer-icons a svg {
    stroke: #C8A046 !important;
}
.footer-icons a svg {
    transition: 0.3s ease;
}

.footer-icons a:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px #C8A046aa);
}
.footer-icons a:hover svg {
    opacity: 0.8;
    transform: scale(1.05);
}

.footer-credit {
    color: #C8A046;        /* gold premium */
    font-size: 14px;
    text-align: center;
    margin-top: -20px;
    padding-bottom: 10px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}


/* =============================
   FOOTER RESPONSIVE UNDER 1200px
   ============================= */
@media (max-width: 1200px) {

    .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 25px; /* clean spacing */
        padding: 30px 20px;
    }

    /* Brand block centered */
    .footer-brand {
        margin-top: 10px;
    }

    .footer-brand h2 {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    /* Center menu links */
    .footer-links {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-links a {
        font-size: 17px;
        margin: 0 6px;
    }

    /* Center the social icons */
    .footer-icons {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .footer-icons a svg {
        margin-left: 10px;
        width: 30px;
        height: 30px;
    }

    /* Footer credit spacing */
    .footer-credit {
        margin-top: 10px;
        font-size: 14px;
    }
}
