/********************************************
 * FOOTER – DARK iOS GLASS STYLE
 * Single block, no white bar, full width
 ********************************************/
 :root {
    /* MAIN COLORS – +40% more cyan */
    --footer-bg-1: #07213a;      /* deeper cyan-navy */
    --footer-bg-2: #0f3c68;      /* stronger cyan gradient */

    --footer-text: #e9f7ff;      /* bright cyan-white */
    --footer-heading: #ffffff;

    /* Link boxes – +40% cyan tint */
    --footer-link-bg: rgba(25, 95, 155, 0.55);

    /* Hover – premium cyan glass glow */
    --footer-link-bg-hover: rgba(90, 205, 255, 0.40);

    /* Border – slightly brighter cyan tone */
    --footer-link-border: rgba(170, 220, 250, 0.40);
}



/* MAIN CONTAINER */
.ios-footer {
    width: 100%;
    box-sizing: border-box;

    margin: 0 auto;
    padding: 50px 60px 28px;

    border-radius: 40px 40px 0 0;

    background: radial-gradient(circle at top left,
                rgba(96, 165, 250, 0.26) 0,
                transparent 55%)
            ,
            linear-gradient(135deg, var(--footer-bg-1), var(--footer-bg-2));

    color: var(--footer-text);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

   box-shadow: none;
}

/* FLEX LAYOUT INSIDE FOOTER */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT SIDE */
.footer-left {
    flex: 1;
    min-width: 320px;
}

.footer-logo {
    max-width: 230px;
    height: auto;
    margin-bottom: 24px;
}

.footer-left-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 820px;

    color: var(--footer-text);

    /* make sure nothing gets cut */
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

/* RIGHT SIDE */
.footer-right {
    width: 360px;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-right h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: var(--footer-heading);
}

/* LINK BOXES */
.footer-link {
    display: block;
    padding: 11px 24px;
    border-radius: 16px;

    background: var(--footer-link-bg);
    border: 1px solid rgba(15, 23, 42, 0.9);

    color: var(--footer-text);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;

    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.85),
        0 0 0 1px rgba(15, 23, 42, 0.9);

    transition: background 0.22s ease, box-shadow 0.22s ease,
                transform 0.22s ease;
}

.footer-link:hover {
    background: var(--footer-link-bg-hover);
    box-shadow:
        0 20px 55px rgba(37, 99, 235, 0.8),
        0 0 0 1px rgba(96, 165, 250, 0.75);

    transform: translateY(-2px);
}

/* COPYRIGHT INSIDE SAME BLOCK */
.footer-copy {
    margin-top: 30px;
    padding-top: 10px;

    border-top: 1px solid rgba(148, 163, 184, 0.45);

    text-align: center;
    font-size: 15px;
    color: rgba(226, 232, 240, 0.95);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ios-footer {
        padding: 34px 22px 22px;
        border-radius: 30px 30px 0 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-logo {
        max-width: 190px;
    }

    .footer-left-text {
        font-size: 16px;
    }

    .footer-right h2 {
        font-size: 24px;
    }

    .footer-link {
        font-size: 16px;
    }
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.ios-footer {
    margin-top: auto !important;
    width: 100% !important;
    padding: 40px 60px;
    box-sizing: border-box;
}
