
@font-face {
    font-family: 'helvetica';
    src: url('../font/helvetica-255/Helvetica.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #121F3A;
    --bg-light: #F9FAFB;
    --brand-orange: #f25522;
    --text-white: #ffffff;
    --text-gray-dark: #cbd5e1;
    --text-gray-light: #64748b;
    --card-number-color: #fcae91;
    --card-title-color: #0f172a;
    --border-color: #e2e8f0;
}
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #5A657F;
    padding-bottom: 40px;
}

/* .footer-grid {
    display: grid;
    grid-template-columns: 1fr 20px 1fr 60px 2fr;
    margin-bottom: 60px;
    border-bottom: 1px solid #5A657F;
    padding-bottom: 40px;
} */






.footer-brand h3 {

    font-size: 20px;
    margin: 0 0 15px;
    font-family: "DM Serif Text";
    font-size: 20px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    color: white;
}

.footer-brand h3 span {
    /* color: var(--brand-orange); */
    /* font-style: italic; */
    color: #F34A16;
    font-family: "DM Serif Text";
    font-size: 20px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.footer-desc {
    color: #717C86;
    font-family: "helvetica";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
    /* 20.72px */
    letter-spacing: 0.14px;
}

.footer-title {
    color: #5A677C;
    font-family: "helvetica";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "helvetica";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
    /* 20.72px */
    letter-spacing: 0.14px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-orange);
}

.subscribe-form {
    display: flex;
    /* background: rgba(255, 255, 255, 0.05); */
    /* border-radius: 30px; */
    /* padding: 5px; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.subscribe-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    font-family: inherit;
}

.subscribe-input:focus {
    outline: none;
}

.subscribe-btn {
    background: var(--brand-orange);
    border: none;
    color: white;
    border-radius: 30px;
    /* padding: 10px 20px; */
    cursor: pointer;
    font-weight: 600;
    width: 95px;
    height: 41px;
    padding: 10px;
    font-family: "helvetica";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.footer-bottom {
    color: white;
    font-family: "DM Serif Text";
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-brand {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-bottom-brand span {
    color: var(--brand-orange);
    font-style: italic;
}



/* responsive */

/* Responsive Design */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        gap: 50px;
    }

    .split-text {
        max-width: 100%;
        text-align: center;
    }

    .split-layout.reverse-on-mobile {
        flex-direction: column-reverse;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .cards-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 2.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}