/* =========================================================
   PCS Contact — equal-height form column + details aside
   ========================================================= */

.pcs-contact-section {
    background: #fff;
}

.pcs-contact-head {
    max-width: 36rem;
    margin-bottom: 1.75rem;
    flex: 0 0 auto;
}

.pcs-contact-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5f6b7a;
    background: #eef1f4;
}

.pcs-contact-title {
    margin: 0;
    font-size: clamp(2.1rem, 3.4vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: #12161c;
}

.pcs-contact-lead {
    max-width: 34rem;
    margin: 0;
    color: #667085;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Equal-height two columns */
.pcs-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.9fr);
    gap: 2rem;
    align-items: stretch;
}

.pcs-contact-main {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pcs-contact-aside {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #161b22 0%, #1c2430 55%, #151a21 100%);
    color: #f3f4f6;
}

.pcs-contact-form {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.pcs-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto minmax(12rem, 1fr);
    gap: 0.9rem;
    flex: 1 1 auto;
    min-height: 0;
}

.pcs-contact-form__actions {
    margin-top: auto;
    padding-top: 1.25rem;
    flex: 0 0 auto;
}

.pcs-box-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0.95rem 1.05rem 0.9rem;
    border: 1px solid rgba(18, 22, 28, 0.14);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pcs-box-field:focus-within {
    border-color: rgba(18, 22, 28, 0.45);
    box-shadow: 0 0 0 3px rgba(18, 22, 28, 0.04);
}

.pcs-box-field > span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #98a2b3;
}

.pcs-box-field input,
.pcs-box-field select,
.pcs-box-field textarea {
    width: 100%;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #12161c;
    line-height: 1.45;
}

.pcs-box-field select {
    cursor: pointer;
}

.pcs-box-field--full {
    grid-column: 1 / -1;
}

.pcs-box-field--message {
    min-height: 12rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pcs-box-field--message textarea {
    flex: 1 1 auto;
    min-height: 9rem;
    height: 100%;
    resize: vertical;
}

.pcs-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12.5rem;
    padding: 1rem 1.85rem;
    border: 0;
    background: var(--color-primary, #c9a227);
    color: #12161c;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.25s ease;
}

.pcs-contact-btn:hover,
.pcs-contact-btn:focus {
    filter: brightness(0.96);
    color: #12161c;
}

/* Aside */
.pcs-contact-aside__inner {
    height: 100%;
    min-height: 100%;
    padding: 2rem 1.75rem 1.85rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.pcs-contact-aside__title {
    margin: 0 0 0.55rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.pcs-contact-aside__intro {
    margin: 0 0 1.6rem;
    color: rgba(243, 244, 246, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pcs-contact-aside__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pcs-contact-aside__item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    padding: 1.05rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pcs-contact-aside__item:first-child {
    border-top: 0;
    padding-top: 0;
}

.pcs-contact-aside__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-primary, #c9a227);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.pcs-contact-aside__content {
    min-width: 0;
    padding-top: 0.15rem;
}

.pcs-contact-aside__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243, 244, 246, 0.5);
}

.pcs-contact-aside__content a,
.pcs-contact-aside__content p {
    margin: 0;
    color: #f8fafc;
    font-size: 0.95rem;
    line-height: 1.55;
    text-decoration: none;
    word-break: break-word;
}

.pcs-contact-aside__content a:hover {
    color: var(--color-primary, #c9a227);
}

.pcs-contact-aside__phones {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pcs-contact-aside__phones li + li {
    margin-top: 0.35rem;
}

.pcs-contact-aside__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: auto;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.pcs-contact-aside__whatsapp i {
    font-size: 1.1rem;
    color: #25d366;
}

.pcs-contact-aside__whatsapp:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    text-decoration: none;
}

.pcs-contact-map {
    overflow: hidden;
    border: 1px solid rgba(18, 22, 28, 0.1);
}

.pcs-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 18rem;
    border: 0;
}

@media (max-width: 991px) {
    .pcs-contact-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pcs-contact-form__grid {
        grid-template-rows: auto auto auto auto minmax(11rem, auto);
    }

    .pcs-contact-aside__inner {
        padding: 1.65rem 1.4rem 1.5rem;
    }

    .pcs-contact-aside__whatsapp {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pcs-contact-form__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .pcs-contact-title {
        font-size: 2rem;
    }

    .pcs-contact-btn {
        width: 100%;
    }
}
