
/* Global Footer CSS - Scoped to avoid conflicts with Bootstrap */
.global-footer-section {
    padding: 6rem 0;
    background-color: #0d1b2a; /* ibanez-navy */
    position: relative;
    border-top: 1px solid rgba(255, 152, 0, 0.2); /* ibanez-gold */
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: white;
}
.global-footer-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
}
.global-footer-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,152,0,0.5), transparent);
}
.global-footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.global-footer-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}
@media (min-width: 1024px) {
    .global-footer-flex {
        flex-direction: row;
        gap: 5rem;
    }
}
.global-footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.global-footer-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), transparent);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
}
.global-footer-card:hover {
    border-color: rgba(255, 152, 0, 0.4);
    text-decoration: none;
    color: white;
}
.global-footer-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    filter: blur(24px);
    transition: all 0.5s;
}
.global-footer-card:hover .global-footer-glow {
    background-color: rgba(255, 152, 0, 0.2);
}
.global-footer-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    margin-top: 0;
}
.global-footer-card:hover .global-footer-card-title {
    color: #ff9800;
}
.global-footer-card-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.625;
}
.global-footer-card-btn {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff9800;
    font-weight: 500;
    font-size: 0.875rem;
    transition: transform 0.3s;
}
.global-footer-card:hover .global-footer-card-btn {
    transform: translateX(0.5rem);
}
.global-footer-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.global-footer-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    margin-top: 0;
}
@media (min-width: 768px) {
    .global-footer-title { font-size: 2.5rem; }
}
.global-footer-gold {
    color: #ff9800;
}
.global-footer-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 2.5rem;
    max-width: 42rem;
}
.global-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .global-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
.global-footer-div {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}
.global-footer-div:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255, 152, 0, 0.3);
    text-decoration: none;
    color: white;
}
.global-footer-div-title {
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    margin: 0;
    color: white;
}
.global-footer-div-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    line-height: 1.375;
    margin: 0;
}
.copyright-footer {
    padding: 2rem 0;
    background-color: #0a1520;
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}
