.igs-pro-footer {
    --igs-navy: #0b1833;
    --igs-navy-2: #102a57;
    --igs-blue: #294f9f;
    --igs-red: #d71920;
    --igs-yellow: #ffdd00;
    --igs-green: #8cc63f;
    --igs-text: #d8deea;
    --igs-muted: #aeb8c8;
    --igs-white: #ffffff;

    background:
        radial-gradient(circle at 18% 18%, rgba(41,79,159,0.24), transparent 32%),
        linear-gradient(135deg, var(--igs-navy) 0%, var(--igs-navy-2) 100%);
    color: var(--igs-text);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.igs-pro-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--igs-green) 0 23%,
        var(--igs-yellow) 23% 45%,
        var(--igs-red) 45% 57%,
        #1d9bd7 57% 69%,
        var(--igs-blue) 69% 100%
    );
}

.igs-footer-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.igs-footer-main {
    padding: 74px 0 44px;
}

.igs-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.85fr 1fr;
    gap: 44px;
    align-items: start;
}

.igs-footer-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.igs-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.igs-footer-logo img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.igs-footer-subtitle {
    color: #eef3ff;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.igs-footer-text {
    margin: 0 0 24px;
    color: var(--igs-text);
    line-height: 1.75;
    font-size: 15px;
    max-width: 410px;
}

.igs-footer-contact {
    display: grid;
    gap: 10px;
}

.igs-footer-contact a,
.igs-footer-contact span {
    color: var(--igs-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.55;
}

.igs-footer-contact a:hover,
.igs-footer-contact a:focus-visible {
    color: var(--igs-white);
}

.igs-footer-contact a {
    display: flex;
    align-items: center;
    width: fit-content;
}

.igs-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    color: var(--igs-white);
    background: var(--igs-red);
}

.igs-footer-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.igs-footer-title {
    color: var(--igs-white);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    margin: 4px 0 24px;
    position: relative;
    padding-bottom: 12px;
}

.igs-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--igs-red), #1d9bd7);
}

.igs-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px;
}

.igs-footer-list a {
    color: var(--igs-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.igs-footer-list a::before {
    content: "›";
    color: var(--igs-red);
    font-size: 18px;
    line-height: 1;
}

.igs-footer-list a:hover,
.igs-footer-list a:focus-visible {
    color: var(--igs-white);
    transform: translateX(3px);
}

.igs-footer-hours {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 22px;
    box-shadow: inset 4px 0 0 rgba(215,25,32,0.95);
}

.igs-footer-hours p {
    margin: 0;
    color: var(--igs-text);
    font-size: 15px;
    line-height: 1.65;
}

.igs-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    background: var(--igs-red);
    color: var(--igs-white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 24px rgba(215,25,32,0.25);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.igs-footer-cta:hover,
.igs-footer-cta:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.igs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.13);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    color: var(--igs-muted);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.igs-footer-bottom a {
    color: var(--igs-muted);
    text-decoration: none;
}

.igs-footer-bottom a:hover,
.igs-footer-bottom a:focus-visible {
    color: var(--igs-white);
}

.igs-footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .igs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }
}

@media (max-width: 767px) {
    .igs-footer-main {
        padding: 58px 0 34px;
    }

    .igs-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .igs-footer-logo img {
        width: 210px;
    }

    .igs-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .igs-footer-wrap {
        width: min(100% - 28px, 1180px);
    }
}
