@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham-Book.TTF') format('truetype');
    font-weight: 400;

    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./fonts/Gotham-Medium.OTF') format('opentype');
    font-weight: 500;

    font-style: normal;
}

:root {

    --color-blue: #27316C;
    --color-yellow: #FCB817;
    --color-mid-grey: #6C6D6D;
    --color-light-grey: #939598;
    --color-black: #000000;
    --color-white: #ffffff;

    --font-main: 'Gotham', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: var(--font-main);
    color: var(--color-black);
    margin: 0;
    padding: 0;
}

.heading-section {
    font-family: var(--font-main);
    font-weight: bold;
    font-size: clamp(24px, 3.2vw, 72px);
    line-height: 1.2;
}

.text-button {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 22px);
}

.body-copy-book {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(14px, 1vw, 22px);
    line-height: 1.6;
}

.body-copy-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 22px);
}

.text-numbers {
    font-family: var(--font-main);
    font-weight: bold;
    font-size: clamp(24px, 2.4vw, 52px);
}

.text-links {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(14px, 0.9vw, 22px);
    text-decoration: none;
    color: inherit;
}

.text-chips {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(14px, 1vw, 22px);
}

.text-medium-16 {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 22px);
}

.site-footer {
    background: linear-gradient(273deg, #0A1035 0%, #27316D 100%);
    padding: clamp(40px, 5vw, 80px) clamp(40px, 8vw, 120px) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 2fr 1.2fr;
    gap: clamp(28px, 3vw, 80px);
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: clamp(32px, 4vw, 56px);
}

.footer-nav-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2vw, 40px);
}

.footer-logo {
    width: clamp(100px, 12vw, 160px);
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(14px, 0.9vw, 20px);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
    max-width: 300px;
}

.footer-nav-title {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(11px, 0.7vw, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav ul li a {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(13px, 1vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav ul li a:hover {
    color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer-helpline {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.footer-helpline svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-helpline div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.helpline-label {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(13px, 1vw, 18px);
    color: rgba(255, 255, 255, 0.9);
}

.helpline-number {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(12px, 0.9vw, 17px);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.helpline-number:hover {
    color: #fff;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: border-color 0.2s, color 0.2s;
}

.footer-social-icons a:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.footer-social-icons svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px clamp(20px, 5vw, 80px);
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.footer-bottom span {
    font-family: var(--font-main);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-nav-group {
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .footer-nav-group .footer-nav {
        flex: 1;
    }

    .footer-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .footer-nav-group {
        gap: 24px;
    }

    .footer-right {
        flex-direction: column;
    }
}