@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Peyda";
    src: url("/assets/fonts/peyda/Peyda-ExtraBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --fh-contact-bg: #fbf8f4;
    --fh-contact-card: rgba(255, 255, 255, 0.94);
    --fh-contact-ink: #294940;
    --fh-contact-muted: #74827d;
    --fh-contact-green: #2eb483;
    --fh-contact-green-dark: #238966;
    --fh-contact-pink: #ed7890;
    --fh-contact-pink-dark: #d95772;
    --fh-contact-line: rgba(41, 73, 64, 0.09);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(circle at 10% 8%, rgba(237, 120, 144, 0.09), transparent 25%),
        radial-gradient(circle at 92% 35%, rgba(46, 180, 131, 0.08), transparent 24%),
        var(--fh-contact-bg);

    color: var(--fh-contact-ink);
    font-family: "Peyda", sans-serif;
}

.fh-contact-page {
    min-height: 100vh;
    padding: 18px 0 64px;
}

.fh-contact-container {
    width: min(100% - 40px, 980px);
    margin-inline: auto;
}

.fh-contact-hero {
    margin-top: 10px;
    padding: 34px 36px;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
    align-items: center;
    gap: 28px;

    border: 1px solid rgba(41, 73, 64, 0.07);
    border-radius: 30px;

    background:
        radial-gradient(circle at 96% 0%, rgba(237, 120, 144, 0.11), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 248, 0.90));

    box-shadow:
        0 16px 42px rgba(61, 75, 69, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.fh-contact-hero__eyebrow {
    width: fit-content;
    padding: 6px 10px;

    display: inline-flex;

    border-radius: 999px;
    background: rgba(237, 120, 144, 0.10);
    color: var(--fh-contact-pink-dark);

    font-size: 10px;
    font-weight: 800;
}

.fh-contact-hero__title {
    margin: 10px 0 0;

    color: var(--fh-contact-ink);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.55;
}

.fh-contact-hero__title span {
    color: var(--fh-contact-pink-dark);
}

.fh-contact-hero__text {
    max-width: 560px;
    margin: 8px 0 0;

    color: var(--fh-contact-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
}

.fh-contact-hero__note {
    padding: 18px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    border: 1px solid rgba(46, 180, 131, 0.12);
    border-radius: 22px;

    background: rgba(241, 251, 247, 0.84);
}

.fh-contact-hero__note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 14px;
    background: rgba(46, 180, 131, 0.12);
    color: var(--fh-contact-green-dark);
}

.fh-contact-hero__note-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fh-contact-hero__note p {
    margin: 1px 0 0;
    color: #587068;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.95;
}

.fh-contact-channels,
.fh-contact-topics {
    padding-top: 42px;
}

.fh-contact-section-head > span {
    display: block;
    margin-bottom: 5px;

    color: var(--fh-contact-pink-dark);
    font-size: 9.5px;
    font-weight: 800;
}

.fh-contact-section-head h2 {
    margin: 0;
    color: var(--fh-contact-ink);
    font-size: 22px;
    font-weight: 800;
}

.fh-contact-section-head--center {
    text-align: center;
}

.fh-contact-grid {
    margin-top: 18px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fh-contact-card {
    min-width: 0;
    padding: 20px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 13px 15px;

    border: 1px solid var(--fh-contact-line);
    border-radius: 24px;

    background: var(--fh-contact-card);
    color: inherit;
    text-decoration: none;

    box-shadow:
        0 12px 32px rgba(61, 75, 69, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.fh-contact-card:hover {
    transform: translateY(-2px);
}

.fh-contact-card--bale:hover {
    border-color: rgba(24, 166, 120, 0.28);
    box-shadow: 0 16px 38px rgba(24, 166, 120, 0.10);
}

.fh-contact-card--telegram:hover {
    border-color: rgba(34, 158, 217, 0.27);
    box-shadow: 0 16px 38px rgba(34, 158, 217, 0.10);
}

.fh-contact-card__icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 18px;
}

.fh-contact-card--bale .fh-contact-card__icon {
    background: rgba(24, 166, 120, 0.11);
    color: #168d67;
}

.fh-contact-card--telegram .fh-contact-card__icon {
    background: rgba(34, 158, 217, 0.11);
    color: #229ed9;
}

.fh-contact-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fh-contact-card__content {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.fh-contact-card__content small {
    color: #8b9692;
    font-size: 8.8px;
    font-weight: 700;
}

.fh-contact-card__content strong {
    color: var(--fh-contact-ink);
    font-size: 16px;
    font-weight: 800;
}

.fh-contact-card__content > span {
    color: var(--fh-contact-muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.8;
}

.fh-contact-card__action {
    grid-column: 1 / -1;

    min-height: 38px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border-radius: 13px;

    font-size: 10px;
    font-weight: 800;
}

.fh-contact-card--bale .fh-contact-card__action {
    background: rgba(24, 166, 120, 0.10);
    color: #168d67;
}

.fh-contact-card--telegram .fh-contact-card__action {
    background: rgba(34, 158, 217, 0.10);
    color: #1688bd;
}

.fh-contact-card__action b {
    font-size: 15px;
    line-height: 1;
}

.fh-contact-topics__grid {
    margin-top: 18px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.fh-contact-topic {
    min-width: 0;
    padding: 16px 14px;

    border: 1px solid var(--fh-contact-line);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.78);
}

.fh-contact-topic > span {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 10px;
    background: rgba(237, 120, 144, 0.10);
    color: var(--fh-contact-pink-dark);

    font-size: 10px;
    font-weight: 800;
}

.fh-contact-topic strong {
    display: block;
    margin-top: 10px;

    color: var(--fh-contact-ink);
    font-size: 12px;
    font-weight: 800;
}

.fh-contact-topic p {
    margin: 5px 0 0;

    color: var(--fh-contact-muted);
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.9;
}

.fh-contact-cta {
    margin-top: 32px;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 1px solid rgba(46, 180, 131, 0.11);
    border-radius: 24px;

    background:
        linear-gradient(135deg, rgba(241, 251, 247, 0.95), rgba(255, 250, 246, 0.95));
}

.fh-contact-cta > div > span {
    color: var(--fh-contact-pink-dark);
    font-size: 9px;
    font-weight: 800;
}

.fh-contact-cta h2 {
    margin: 3px 0 0;
    color: var(--fh-contact-ink);
    font-size: 17px;
    font-weight: 800;
}

.fh-contact-cta p {
    margin: 4px 0 0;
    color: var(--fh-contact-muted);
    font-size: 10px;
    line-height: 1.85;
}

.fh-contact-cta > a {
    min-height: 42px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    flex: 0 0 auto;

    border-radius: 14px;
    background: linear-gradient(135deg, #35bd8c, #269d73);
    color: #ffffff;
    text-decoration: none;

    font-size: 10.5px;
    font-weight: 800;

    box-shadow: 0 10px 22px rgba(46, 180, 131, 0.17);
}

.fh-contact-cta > a span {
    font-size: 16px;
}

@media (max-width: 900px) {
    .fh-contact-page {
        padding: 10px 0 46px;
    }

    .fh-contact-container {
        width: min(100% - 24px, 620px);
    }

    .fh-contact-hero {
        margin-top: 8px;
        padding: 24px 18px;

        grid-template-columns: 1fr;
        gap: 16px;

        border-radius: 24px;
        text-align: center;
    }

    .fh-contact-hero__eyebrow {
        margin-inline: auto;
    }

    .fh-contact-hero__title {
        font-size: 24px;
    }

    .fh-contact-hero__text {
        max-width: 360px;
        margin-inline: auto;
        font-size: 10.8px;
    }

    .fh-contact-hero__note {
        max-width: 390px;
        margin-inline: auto;
        padding: 13px 14px;
        text-align: right;
    }

    .fh-contact-channels,
    .fh-contact-topics {
        padding-top: 30px;
    }

    .fh-contact-section-head {
        text-align: center;
    }

    .fh-contact-section-head h2 {
        font-size: 18px;
    }

    .fh-contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fh-contact-card {
        padding: 15px;
        border-radius: 20px;
    }

    .fh-contact-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .fh-contact-card__icon svg {
        width: 22px;
        height: 22px;
    }

    .fh-contact-card__content strong {
        font-size: 14px;
    }

    .fh-contact-card__content > span {
        font-size: 9.5px;
    }

    .fh-contact-card__action {
        min-height: 36px;
    }

    .fh-contact-topics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .fh-contact-topic {
        padding: 13px 12px;
        border-radius: 17px;
    }

    .fh-contact-topic strong {
        font-size: 11px;
    }

    .fh-contact-topic p {
        font-size: 8.8px;
    }

    .fh-contact-cta {
        margin-top: 22px;
        padding: 18px;
        display: grid;
        gap: 13px;
        text-align: center;
    }

    .fh-contact-cta h2 {
        font-size: 14px;
    }

    .fh-contact-cta > a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .fh-contact-hero__title {
        font-size: 22px;
    }

    .fh-contact-topics__grid {
        grid-template-columns: 1fr;
    }
}

/* Bale brand icon: filled inline SVG supplied for Fit Hasti. */
.fh-contact-card--bale .fh-contact-card__icon svg {
    width: 29px;
    height: 27px;

    fill: currentColor;
    stroke: none;
}

.fh-contact-card--bale .fh-contact-card__icon svg path {
    fill: currentColor;
    stroke: none;
}
