/* ===== PREMIUM FOOTER ===== */
.gm-footer {
    background: #07091200;
    background: linear-gradient(180deg, #0B0E1A 0%, #07091299 100%);
    position: relative;
    overflow: hidden;
}
.gm-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #245fa0 30%, #FFD166 50%, #245fa0 70%, transparent 100%);
}
.gm-footer::after {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Top CTA Strip */
.gm-footer-cta {
    background: linear-gradient(135deg, #1e5fa5  0%, #1e5fa5  100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.gm-footer-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.gm-footer-cta-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 44px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
}
.gm-footer-cta-left { display: flex; align-items: center; gap: 20px; }
.gm-footer-cta-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; flex-shrink: 0;
    backdrop-filter: blur(6px);
}
.gm-footer-cta-title {
    font-size: 24px; font-weight: 800;
    color: #fff; line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}
.gm-footer-cta-sub {
    font-size: 14px; color: rgba(255,255,255,0.8);
    margin-top: 5px; font-family: 'Poppins', sans-serif;
}
.gm-footer-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: #245fa0;
    font-weight: 800; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 16px 36px; border-radius: 100px;
    text-decoration: none; flex-shrink: 0;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
}
.gm-footer-cta-btn:hover {
    background: #0B0E1A; color: #245fa0;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
@media (max-width: 680px) {
    .gm-footer-cta-inner { flex-direction: column; text-align: center; }
    .gm-footer-cta-left { flex-direction: column; }
}

/* Main Footer Body */
.gm-footer-body {
    max-width: 1260px;
    margin: 0 auto;
    padding: 80px 32px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 56px;
}
@media (max-width: 1100px) { .gm-footer-body { grid-template-columns: 1fr 1fr; gap: 48px 40px; } }
@media (max-width: 600px) { .gm-footer-body { grid-template-columns: 1fr; gap: 40px; } }

/* Footer Logo Column */
.gm-footer-logo img {
    height: 70px; width: auto;
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(255,107,53,0.3));
    margin-bottom: 24px; display: block;
}
.gm-footer-about {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 28px;
}

/* Contact Info */
.gm-footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.gm-footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.55);
    font-family: 'Poppins', sans-serif; line-height: 1.6;
}
.gm-footer-contact-item i {
    width: 32px; height: 32px;
    background: #245fa0;
    border: 1px solid #245fa0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #ffffff; flex-shrink: 0;
}

/* Social Icons */
.gm-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.gm-footer-social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 15px;
    text-decoration: none; transition: all 0.35s ease;
}
.gm-footer-social-link:hover {
    background: #245fa0; border-color: #245fa0;
    color: #fff; transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

/* Footer Column Headings */
.gm-footer-col-title {
    font-size: 13px; font-weight: 700;
    color: #fff; text-transform: uppercase;
    letter-spacing: 2.5px; margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    position: relative; padding-bottom: 14px;
}
.gm-footer-col-title::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 32px; height: 3px;
    background: linear-gradient(90deg, #245fa0, #FFD166);
    border-radius: 4px;
}

/* Footer Links */
.gm-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.gm-footer-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.gm-footer-links li:last-child { border-bottom: none; }
.gm-footer-links a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    font-size: 14px; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.gm-footer-links a::before {
    content: '';
    width: 5px; height: 5px;
    background: #245fa0; border-radius: 50%;
    flex-shrink: 0; opacity: 0.5;
    transition: all 0.3s ease;
}
.gm-footer-links a:hover { color: #245fa0; padding-left: 6px; }
.gm-footer-links a:hover::before { opacity: 1; transform: scale(1.4); }

/* Footer Services (no links, plain items) */
.gm-footer-service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.gm-footer-service-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0; font-size: 14px;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-family: 'Poppins', sans-serif; transition: color 0.3s ease;
}
.gm-footer-service-list li:last-child { border-bottom: none; }
.gm-footer-service-list li::before {
    content: '';
    width: 5px; height: 5px;
    background: #245fa0; border-radius: 50%;
    flex-shrink: 0; opacity: 0.5;
}
.gm-footer-service-list li:hover { color: rgba(255,255,255,0.75); }

/* Working Hours */
.gm-footer-hours { display: flex; flex-direction: column; gap: 0; }
.gm-footer-hour-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: 'Poppins', sans-serif; gap: 16px;
}
.gm-footer-hour-row:last-child { border-bottom: none; }
.gm-footer-hour-day { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; }
.gm-footer-hour-time {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
    background: #245fa0; border: 1px solid #245fa0;
    padding: 4px 12px; border-radius: 100px;
    white-space: nowrap;
}
.gm-footer-hour-time.closed { background: rgba(255,255,255,0.04); border-color: #245fa0; color: #245fa0; }

/* Map/Location CTA */
.gm-footer-map-btn {
    display: flex; align-items: center; gap: 10px;
    background: #245fa0; border: 1px solid #245fa0;
    color: #ffffff; font-size: 13px; font-weight: 600;
    padding: 12px 18px; border-radius: 10px;
    text-decoration: none; margin-top: 24px;
    transition: all 0.3s ease; font-family: 'Poppins', sans-serif;
    width: fit-content;
}
.gm-footer-map-btn:hover { background: #245fa0; color: #fff; border-color: #245fa0; transform: translateY(-2px); }

/* Divider */
.gm-footer-divider {
    max-width: 1260px; margin: 0 auto;
    border: none; border-top: 1px solid rgba(255,255,255,0.06);
}

/* Bottom Bar */
.gm-footer-bottom {
    max-width: 1260px;
    margin: 0 auto;
    padding: 28px 32px;
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.gm-footer-copyright {
    font-size: 13px; color: rgba(255,255,255,0.3);
    font-family: 'Poppins', sans-serif; line-height: 1.6;
}
.gm-footer-copyright strong { color: #245fa0; font-weight: 700; }
.gm-footer-bottom-links { display: flex; gap: 24px; }
.gm-footer-bottom-links a {
    font-size: 12px; color: rgba(255,255,255,0.25);
    text-decoration: none; font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px; transition: color 0.3s ease;
}
.gm-footer-bottom-links a:hover { color: #245fa0; }
.gm-footer-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.25);
    font-family: 'Poppins', sans-serif;
}
.gm-footer-badge i { color: #245fa0; font-size: 13px; }
@media (max-width: 680px) {
    .gm-footer-bottom { flex-direction: column; align-items: flex-start; }
    .gm-footer-bottom-links { flex-wrap: wrap; gap: 16px; }
}