* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #10263e;
    --navy-dark: #07192d;
    --gold: #d7ad67;
    --gold-light: #f4dfb7;
    --cream: #fffaf1;
    --white: #ffffff;
    --text: #536274;
    --muted: #8793a4;
    --border: rgba(215, 173, 103, 0.26);
    --shadow: 0 28px 75px rgba(7, 25, 45, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
            radial-gradient(circle at top left, rgba(215, 173, 103, 0.18), transparent 30%),
            radial-gradient(circle at bottom right, rgba(16, 38, 62, 0.10), transparent 34%),
            var(--cream);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.landing-page {
    min-height: 100vh;
    overflow: hidden;
}

.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    width: min(1180px, calc(100% - 38px));
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin: 18px auto 0;
    padding: 12px 14px;

    border: 1px solid rgba(215, 173, 103, 0.20);
    border-radius: 999px;

    background: rgba(255, 250, 241, 0.86);

    box-shadow:
            0 14px 35px rgba(7, 25, 45, 0.08);

    backdrop-filter: blur(12px);
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--navy);

    font-size: 15px;
    font-weight: 900;
}

.brand-mini img {
    width: 46px;
    height: 46px;

    border-radius: 50%;
    object-fit: cover;

    box-shadow:
            0 7px 17px rgba(7, 25, 45, 0.16);
}

.login-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 19px;

    border-radius: 999px;

    background: var(--navy);
    color: white;

    font-size: 13px;
    font-weight: 900;

    box-shadow:
            0 13px 28px rgba(16, 38, 62, 0.22);

    transition:
            transform 0.2s ease,
            background 0.2s ease,
            box-shadow 0.2s ease;
}

.login-button:hover {
    background: var(--navy-dark);

    box-shadow:
            0 17px 32px rgba(16, 38, 62, 0.30);

    transform: translateY(-2px);
}

.hero-section {
    display: grid;
    width: min(1180px, calc(100% - 38px));
    min-height: calc(100vh - 96px);
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: 42px;

    margin: 0 auto;
    padding: 54px 0 70px;
}

.hero-content {
    position: relative;
}

.logo-showcase {
    width: min(360px, 82vw);
    margin-bottom: 25px;
}

.logo-showcase img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 50%;

    box-shadow:
            0 30px 65px rgba(7, 25, 45, 0.20);
}

.eyebrow {
    margin-bottom: 12px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 650px;

    color: var(--navy);

    font-size: clamp(43px, 6vw, 76px);
    line-height: 0.96;
    letter-spacing: -2.8px;
}

.hero-content h1 span {
    display: block;

    color: var(--gold);
}

.hero-description {
    max-width: 590px;

    margin-top: 22px;

    color: var(--text);

    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 30px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 950;

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            background 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--navy), #18395c);
    color: white;

    box-shadow:
            0 18px 35px rgba(16, 38, 62, 0.24);
}

.secondary-button {
    border: 1px solid var(--border);

    background: white;
    color: var(--navy);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
}

.teacher-card {
    position: relative;

    padding: 24px;

    border: 1px solid rgba(215, 173, 103, 0.28);
    border-radius: 34px;

    background:
            linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,250,241,0.94));

    box-shadow: var(--shadow);
}

.teacher-card::before {
    position: absolute;
    inset: 18px;
    z-index: -1;

    border-radius: 34px;

    background: var(--gold);

    content: "";
    transform: rotate(4deg);
    opacity: 0.22;
}

.teacher-photo-wrap {
    position: relative;

    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 28px;

    background:
            linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.teacher-photo-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.photo-placeholder {
    position: absolute;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;

    color: var(--gold-light);

    text-align: center;
}

.photo-placeholder i {
    font-size: 54px;
}

.photo-placeholder span {
    font-size: 15px;
    font-weight: 900;
}

.photo-placeholder-active .photo-placeholder {
    display: flex;
}

.teacher-info {
    padding: 22px 8px 4px;
}

.teacher-label {
    color: var(--gold);

    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.teacher-info h2 {
    margin-top: 7px;

    color: var(--navy);

    font-size: 31px;
    letter-spacing: -0.7px;
}

.teacher-info p:last-child {
    margin-top: 10px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.7;
}

.about-section,
.experience-section,
.contact-hiring-section {
    width: min(1180px, calc(100% - 38px));

    margin: 0 auto;
    padding: 70px 0;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 28px;
}

.section-heading p {
    color: var(--gold);

    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 10px;

    color: var(--navy);

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.info-card {
    padding: 28px;

    border: 1px solid rgba(215, 173, 103, 0.24);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.86);

    box-shadow:
            0 18px 45px rgba(7, 25, 45, 0.07);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.info-card:hover {
    box-shadow:
            0 25px 55px rgba(7, 25, 45, 0.11);

    transform: translateY(-6px);
}

.info-card span {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 18px;

    background: var(--navy);
    color: var(--gold);

    font-size: 26px;
}

.info-card h3 {
    color: var(--navy);

    font-size: 21px;
}

.info-card p {
    margin-top: 11px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.75;
}

.experience-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;

    padding: 38px;

    border-radius: 34px;

    background:
            radial-gradient(circle at top right, rgba(215, 173, 103, 0.28), transparent 34%),
            linear-gradient(135deg, var(--navy), var(--navy-dark));

    color: white;

    box-shadow: var(--shadow);
}

.experience-card h2 {
    max-width: 640px;

    color: white;

    font-size: clamp(31px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.experience-card p:not(.eyebrow) {
    max-width: 650px;

    margin-top: 16px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.8;
}

.experience-stats {
    display: grid;
    gap: 14px;
}

.experience-stats div {
    padding: 22px;

    border: 1px solid rgba(215, 173, 103, 0.26);
    border-radius: 22px;

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

.experience-stats strong {
    display: block;

    color: var(--gold);

    font-size: 34px;
    line-height: 1;
}

.experience-stats .small-stat-text {
    max-width: 220px;

    font-size: 24px;
    line-height: 1.14;
    letter-spacing: -0.6px;
}

.experience-stats span {
    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 850;
}

/* ==================================================
   Contact + Hiring
================================================== */

.contact-hiring-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;

    padding-top: 30px;
}

.contact-card,
.hiring-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(215, 173, 103, 0.26);
    border-radius: 34px;

    box-shadow: var(--shadow);
}

.contact-card {
    padding: 32px;

    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.94));
}

.contact-card-heading {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 24px;
}

.contact-card-icon,
.hiring-icon {
    display: flex;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: var(--navy);
    color: var(--gold);

    font-size: 28px;
}

.contact-card h2,
.hiring-card h2 {
    color: var(--navy);

    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px;

    border: 1px solid rgba(215, 173, 103, 0.23);
    border-radius: 22px;

    background: white;

    box-shadow:
            0 14px 32px rgba(7, 25, 45, 0.06);
}

.clickable-contact {
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease;
}

.clickable-contact:hover {
    border-color: rgba(215, 173, 103, 0.46);

    box-shadow:
            0 20px 42px rgba(7, 25, 45, 0.10);

    transform: translateY(-3px);
}

.contact-item-icon {
    display: flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: rgba(215, 173, 103, 0.16);
    color: var(--navy);

    font-size: 21px;
}

.contact-item-content {
    min-width: 0;
    flex: 1;
}

.contact-item-content strong {
    display: block;

    color: var(--navy);

    font-size: 15px;
    font-weight: 950;
}

.contact-item-content span {
    display: block;

    margin-top: 4px;

    color: var(--text);

    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 9px;
}

.mini-contact-button {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 0 12px;

    border-radius: 999px;

    background: var(--navy);
    color: white;

    font-size: 12px;
    font-weight: 900;

    transition:
            transform 0.2s ease,
            background 0.2s ease;
}

.mini-contact-button:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.whatsapp-button {
    background: #128c7e;
}

.whatsapp-button:hover {
    background: #0c6f64;
}

.contact-arrow {
    color: var(--gold);

    font-size: 18px;
}

.hiring-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;

    padding: 34px;

    background:
            radial-gradient(circle at top right, rgba(244, 223, 183, 0.33), transparent 34%),
            linear-gradient(135deg, var(--navy), var(--navy-dark));

    color: white;
}

.hiring-shine {
    position: absolute;
    top: -70px;
    right: -70px;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    background: rgba(215, 173, 103, 0.18);
}

.hiring-card .hiring-icon {
    position: relative;
    z-index: 2;

    margin-bottom: 22px;

    background: white;
    color: var(--navy);
}

.hiring-card h2 {
    position: relative;
    z-index: 2;

    color: white;
}

.hiring-card p:not(.eyebrow) {
    position: relative;
    z-index: 2;

    margin-top: 14px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.75;
}

.apply-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    width: fit-content;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 24px;
    padding: 0 22px;

    border: 0;
    border-radius: 999px;

    background: var(--gold);
    color: var(--navy);

    font-size: 14px;
    font-weight: 950;

    box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.18);

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.apply-button:hover {
    box-shadow:
            0 20px 42px rgba(0, 0, 0, 0.26);

    transform: translateY(-3px);
}

/* ==================================================
   Hiring Modal
================================================== */

.hiring-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 22px;

    background: rgba(7, 25, 45, 0.62);

    backdrop-filter: blur(10px);
}

.hiring-modal-overlay.show {
    display: flex;
}

.hiring-modal {
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;

    padding: 30px;

    border: 1px solid rgba(215, 173, 103, 0.35);
    border-radius: 30px;

    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.98));

    box-shadow:
            0 35px 90px rgba(0, 0, 0, 0.30);

    animation: modalIn 0.22s ease;
}

.hiring-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 24px;
}

.hiring-modal-header h2 {
    color: var(--navy);

    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -1.1px;
}

.hiring-modal-header span {
    display: block;

    margin-top: 8px;

    color: var(--text);

    font-size: 14px;
    font-weight: 750;
}

.close-modal-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 14px;

    background: rgba(16, 38, 62, 0.08);
    color: var(--navy);

    font-size: 18px;

    transition:
            transform 0.2s ease,
            background 0.2s ease;
}

.close-modal-button:hover {
    background: rgba(16, 38, 62, 0.13);
    transform: rotate(4deg);
}

.hiring-form {
    display: grid;
    gap: 18px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 950;
}

.form-group label span {
    color: var(--muted);

    font-size: 11px;
    font-weight: 850;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 54px;

    padding: 0 15px;

    border: 1px solid rgba(16, 38, 62, 0.14);
    border-radius: 16px;

    outline: none;

    background: white;
    color: var(--navy);

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

    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.form-group input[type="file"] {
    display: flex;
    align-items: center;

    padding: 14px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);

    box-shadow:
            0 0 0 4px rgba(215, 173, 103, 0.16);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;

    margin-top: 8px;
}

.cancel-apply-button,
.submit-apply-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 20px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 950;

    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.cancel-apply-button {
    border: 1px solid rgba(16, 38, 62, 0.12);

    background: white;
    color: var(--navy);
}

.submit-apply-button {
    border: 0;

    background: var(--navy);
    color: white;

    box-shadow:
            0 15px 32px rgba(16, 38, 62, 0.22);
}

.cancel-apply-button:hover,
.submit-apply-button:hover {
    transform: translateY(-2px);
}

.landing-footer {
    display: flex;
    width: min(1180px, calc(100% - 38px));
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin: 0 auto;
    padding: 28px 0 38px;

    border-top: 1px solid rgba(215, 173, 103, 0.25);
}

.landing-footer strong,
.landing-footer span {
    display: block;
}

.landing-footer strong {
    color: var(--navy);

    font-size: 16px;
}

.landing-footer span {
    margin-top: 4px;

    color: var(--muted);

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

.landing-footer a {
    color: var(--navy);

    font-size: 13px;
    font-weight: 950;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform:
                translateY(18px)
                scale(0.98);
    }

    to {
        opacity: 1;
        transform:
                translateY(0)
                scale(1);
    }
}

@media (max-width: 980px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .logo-showcase {
        width: min(300px, 75vw);
    }

    .teacher-card {
        max-width: 620px;
    }

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

    .experience-card,
    .contact-hiring-section {
        grid-template-columns: 1fr;
    }

    .hiring-card {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .landing-navbar {
        width: calc(100% - 24px);
    }

    .brand-mini span {
        display: none;
    }

    .hero-section,
    .about-section,
    .experience-section,
    .contact-hiring-section,
    .landing-footer {
        width: calc(100% - 24px);
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .teacher-photo-wrap {
        min-height: 330px;
    }

    .experience-card,
    .contact-card,
    .hiring-card {
        padding: 26px;
    }

    .contact-card-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-actions {
        flex-direction: column;
    }

    .mini-contact-button {
        width: 100%;
    }

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

    .hiring-modal {
        padding: 23px;
        border-radius: 24px;
    }

    .hiring-modal-header {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }

    .cancel-apply-button,
    .submit-apply-button {
        width: 100%;
    }

    .landing-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ==================================================
   Compact Bottom Contact + Hiring Override
================================================== */

.contact-hiring-section {
    display: grid;
    width: min(1180px, calc(100% - 38px));
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;

    margin: 0 auto;
    padding: 32px 0 18px;

    border-top: 1px solid rgba(215, 173, 103, 0.24);
}

.contact-card,
.hiring-card {
    border-radius: 24px;

    box-shadow:
            0 14px 34px rgba(7, 25, 45, 0.08);
}

.contact-card {
    padding: 20px 22px;

    background:
            rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(10px);
}

.contact-card-heading {
    margin-bottom: 16px;
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;

    border-radius: 15px;

    font-size: 21px;
}

.contact-card .eyebrow {
    margin-bottom: 5px;

    font-size: 10px;
    letter-spacing: 1.5px;
}

.contact-card h2 {
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-item {
    min-height: 74px;

    padding: 11px 12px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.9);

    box-shadow:
            0 8px 20px rgba(7, 25, 45, 0.045);
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;

    border-radius: 13px;

    font-size: 17px;
}

.contact-item-content strong {
    font-size: 13px;
}

.contact-item-content span {
    font-size: 12px;
}

.contact-actions {
    gap: 6px;

    margin-top: 7px;
}

.mini-contact-button {
    min-height: 28px;

    padding: 0 10px;

    font-size: 11px;
}

.contact-arrow {
    font-size: 15px;
}

/* Small hiring area beside contact */

.hiring-card {
    width: 300px;
    min-height: 100%;

    padding: 22px;

    border: 1px solid rgba(215, 173, 103, 0.28);

    background:
            linear-gradient(
                    135deg,
                    rgba(16, 38, 62, 0.96),
                    rgba(7, 25, 45, 0.96)
            );
}

.hiring-card .hiring-icon {
    width: 46px;
    height: 46px;

    margin-bottom: 14px;

    border-radius: 15px;

    font-size: 20px;
}

.hiring-card .eyebrow {
    margin-bottom: 7px;

    font-size: 10px;
    letter-spacing: 1.5px;
}

.hiring-card h2 {
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.6px;
}

.hiring-card p:not(.eyebrow) {
    margin-top: 9px;

    font-size: 13px;
    line-height: 1.55;
}

.apply-button {
    min-height: 40px;

    margin-top: 16px;
    padding: 0 16px;

    font-size: 12px;
}

.hiring-shine {
    width: 150px;
    height: 150px;

    top: -60px;
    right: -60px;
}

/* Footer tighter after compact contact area */

.landing-footer {
    padding-top: 18px;
}

/* Responsive compact bottom */

@media (max-width: 980px) {
    .contact-hiring-section {
        grid-template-columns: 1fr;
    }

    .hiring-card {
        width: 100%;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .contact-hiring-section {
        width: calc(100% - 24px);

        padding-top: 26px;
    }

    .contact-card,
    .hiring-card {
        padding: 18px;

        border-radius: 22px;
    }

    .contact-card-heading {
        flex-direction: row;
        align-items: center;
    }

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

    .contact-actions {
        flex-direction: row;
    }

    .mini-contact-button {
        width: auto;
    }

    .hiring-card h2 {
        font-size: 23px;
    }
}
.hiring-form textarea {
    width: 100%;

    min-height: 135px;

    padding: 14px 15px;

    border: 1px solid #dfe6ef;
    border-radius: 13px;

    outline: none;

    background: #ffffff;

    color: #172243;

    font-family:
            Arial,
            Helvetica,
            sans-serif;

    font-size: 14px;

    line-height: 1.6;

    resize: vertical;

    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.hiring-form textarea:focus {
    border-color: #20a8a4;

    box-shadow:
            0 0 0 3px
            rgba(32, 168, 164, 0.10);
}
.application-error-message {
    display: none;

    margin-bottom: 18px;
    padding: 12px 15px;

    border: 1px solid #ffd5d9;
    border-radius: 12px;

    background: #fff2f3;

    color: #c94d59;

    font-size: 13px;
    font-weight: 700;
}

.application-error-message.show {
    display: block;
}

.application-success {
    display: none;

    min-height: 330px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    padding: 45px 30px;

    text-align: center;
}

.application-success.show {
    display: flex;
}