/* ==========================================================================
   Custom Footer Styles
   ========================================================================== */

.gh-footer-custom {
    background: #111827;
    color: #9ca3af;
    padding: 64px 0 32px;
}

.gh-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Grid */
.gh-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .gh-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gh-footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* Brand Section */
.gh-footer-brand {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .gh-footer-brand {
        grid-column: span 2;
    }
}

.gh-footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    display: block;
}

.gh-footer-logo img {
    max-height: 40px;
    width: auto;
}

.gh-footer-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 450px;
}

/* Social Links */
.gh-footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.gh-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gh-social-link:hover {
    background: rgb(37, 99, 235);
    color: white;
    transform: translateY(-2px);
}

.gh-social-link svg {
    width: 20px;
    height: 20px;
}

/* Features */
.gh-footer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gh-footer-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
}

.gh-footer-feature svg {
    width: 20px;
    height: 20px;
    color: rgb(96, 165, 250);
    stroke-width: 2;
}

/* Links Sections */
.gh-footer-links {
    display: flex;
    flex-direction: column;
}

.gh-footer-links-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gh-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gh-footer-links-list li {
    margin-bottom: 12px;
}

.gh-footer-links-list li:last-child {
    margin-bottom: 0;
}

.gh-footer-links-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

.gh-footer-links-list a:hover {
    color: white;
    transform: translateX(4px);
}

/* Footer Bottom */
.gh-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #1f2937;
    gap: 16px;
}

@media (min-width: 768px) {
    .gh-footer-bottom {
        flex-direction: row;
    }
}

.gh-footer-copyright {
    color: white;
    font-size: 14px;
    margin: 0;
}

/* Payment Icons */
.gh-footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gh-payment-icon {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.gh-payment-icon:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .gh-footer-custom {
        padding: 48px 0 24px;
    }
    
    .gh-footer-main {
        gap: 40px;
    }
    
    .gh-footer-links-title {
        font-size: 14px;
    }
    
    .gh-footer-description {
        font-size: 15px;
    }
}
