/* ===========================
   CONTACT PAGE - contact.css
   =========================== */

/* ---------- Contact Main ---------- */
.contactMain {
    padding-top: 64px;
    padding-bottom: 64px;
}

.contactContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

/* ---------- Left Column ---------- */
.contactInfo {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contactInfo__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contactInfo__title span {
    color: #2e9b4e;
}

.contactInfo__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Contact Items */
.contactInfo__items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.contactInfo__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.contactInfo__item:last-child {
    border-bottom: none;
}

.contactInfo__item:hover {
    background: #f9fdf9;
}

.contactInfo__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0faf3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2e9b4e;
    font-size: 0.9rem;
}

.contactInfo__itemText {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contactInfo__itemLabel {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contactInfo__itemValue {
    font-size: 0.95rem;
    color: #222;
    font-weight: 600;
}

/* Hours Card */
.contactInfo__hours {
    background: #060C14;
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 24px;
}

.contactInfo__hoursTitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.contactInfo__hoursTitle i {
    color: #2e9b4e;
    font-size: 0.95rem;
}

.contactInfo__hoursTable {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contactInfo__hoursRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactInfo__hoursDay {
    font-size: 0.88rem;
    color: #aaa;
}

.contactInfo__hoursTime {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 500;
}

.contactInfo__hoursTime--highlight {
    color: #f5a623;
    font-weight: 700;
}

/* Map */
.contactInfo__map {
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
    position: relative;
    background: #dde8e0;
}

.contactInfo__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.contactInfo__mapPin {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.contactInfo__mapPin i {
    color: #2e9b4e;
    font-size: 0.85rem;
}

/* ---------- Right Column - Form ---------- */
.contactForm {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.contactForm__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.contactForm__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contactForm__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contactForm__group:last-of-type {
    margin-bottom: 0;
}

.contactForm__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
}

.contactForm__label span {
    color: #e74c3c;
}

.contactForm__input,
.contactForm__select,
.contactForm__textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}

.contactForm__input::placeholder,
.contactForm__textarea::placeholder {
    color: #bbb;
}

.contactForm__input:focus,
.contactForm__select:focus,
.contactForm__textarea:focus {
    outline: none;
    border-color: #2e9b4e;
    box-shadow: 0 0 0 3px rgba(46,155,78,0.1);
    background: #fff;
}

.contactForm__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.contactForm__textarea {
    resize: vertical;
    min-height: 110px;
}

.contactForm__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.btn--primary {
    background: #2e9b4e;
    color: #fff;
}

.btn--primary:hover {
    background: #25843f;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(46,155,78,0.3);
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
    white-space: nowrap;
}

.btn--whatsapp:hover {
    background: #1eb858;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefitsSection {
    background: #060C14;
    padding: 60px 0;
}

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefitsCard {
    background: #060C14;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.benefitsCard:hover {
    border-color: #2e9b4e;
    transform: translateY(-3px);
}

.benefitsCard__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #2e9b4e;
    color: #2e9b4e;
    font-size: 1.2rem;
}

.benefitsCard__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.benefitsCard__description {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.55;
}

/* ===========================
   CURRICULUM SECTION
   =========================== */
.curriculumSection {
    padding: 64px 0;
    background: #fff;
}

.curriculumContent {
    display: flex;
    flex-direction: column;
}

.curriculumInfo__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.curriculumInfo__title span {
    color: #2e9b4e;
}

.curriculumInfo__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 60px;
}

.curriculumInfo__vacancies {
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px 24px;
}

.curriculumInfo__vacanciesTitle {
    font-size: 0.92rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.curriculumInfo__vacancyList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.curriculumInfo__vacancyItem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}

.curriculumInfo__vacancyItem i {
    color: #2e9b4e;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Curriculum Form */
.curriculumForm {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
}

.curriculumForm .contactForm__group {
    margin-bottom: 16px;
}

/* File Upload */
.fileUpload {
    border: 1.5px dashed #ccc;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fafafa;
    position: relative;
}

.fileUpload:hover {
    border-color: #2e9b4e;
    background: #f0faf3;
}

.fileUpload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.fileUpload__icon {
    font-size: 1.4rem;
    color: #aaa;
    margin-bottom: 8px;
}

.fileUpload__text {
    font-size: 0.88rem;
    color: #555;
    font-weight: 500;
}

.fileUpload__hint {
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 4px;
}

.curriculumForm__submit {
    margin-top: 8px;
}

.btn--full {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.98rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .contactContent,
    .curriculumContent {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .benefitsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 520px) {
    .benefitsGrid {
        grid-template-columns: 1fr;
    }

    .contactForm {
        padding: 20px;
    }
}




.formSuccess,
.formError{
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.formSuccess{
    background: #d4edda;
    color: #155724;
}

.formError{
    background: #f8d7da;
    color: #721c24;
}