/* ================================================
   Contact Page — Wilsol Tech
   ================================================ */

/* ---- Shared ---- */
.ct-eyebrow {
    font-family: var(--AvertaFont);
    font-size: 0.95vw;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
    color: #707380;
    display: block;
}

.ct-eyebrow-muted {
    color: #555;
}

/* ================================================
   Split Hero
   ================================================ */
.ct-split {
    display: flex;
    width: 100%;
    min-height: 89vh;
}

/* ---- Left Dark Panel ---- */
.ct-left {
    width: 42%;
    background-color: #0C0C0C;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ct-left-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 5vw 4vw 4.5vw 5vw;
    gap: 3vw;
    position: relative;
    z-index: 2;
    gap: 4vw;
}

.ct-left .ct-eyebrow {
    color: #555;
}

/* Contact details */
.ct-contacts {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
}

.ct-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
    padding: 1.2vw 0;
    border-top: 1px solid #1f1f1f;
    text-decoration: none;
    transition: padding-left 0.25s ease;
}

.ct-contact-item:last-child {
    border-bottom: 1px solid #1f1f1f;
}

a.ct-contact-item:hover {
    padding-left: 0.8vw;
}

.ct-contact-label {
    font-family: var(--AvertaFont);
    font-size: 0.8vw;
    font-weight: 400;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.15vw;
}

.ct-contact-value {
    font-family: var(--AvertaFont);
    font-size: 1.15vw;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Social links */
.ct-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6vw 1.5vw;
}

.ct-social-link {
    font-family: var(--AvertaFont);
    font-size: 0.95vw;
    font-weight: 400;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-social-link:hover {
    color: #fff;
}

/* Background decorative text */
.ct-left-bg-text {
    position: absolute;
    bottom: -4vw;
    left: -2vw;
    font-family: var(--ThunderFont);
    font-size: 20vw;
    font-weight: 700;
    color: #161616;
    line-height: 0.88;
    letter-spacing: -0.5vw;
    transform: scale(1, 0.8);
    transform-origin: left bottom;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ---- Right Form Panel ---- */
.ct-right {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.ct-right-inner {
    padding: 5vw 5vw 5vw 4.5vw;
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    height: 100%;
}

.ct-form-intro {
    font-family: var(--AvertaFont);
    font-size: 1.15vw;
    font-weight: 300;
    color: #707380;
    line-height: 1.6;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 2.5vw;
}

.ct-form-intro strong {
    color: #000;
    font-weight: 600;
}

/* ---- Form ---- */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.ct-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
}

.ct-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
}

.ct-label {
    font-family: var(--AvertaFont);
    font-size: 0.85vw;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
}

.ct-optional {
    font-weight: 300;
    color: #aaa;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8vw;
}

.ct-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #ddd;
    padding: 0.9vw 0;
    font-family: var(--AvertaFont);
    font-size: 1.1vw;
    font-weight: 400;
    color: #000;
    outline: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
}

.ct-input::placeholder {
    color: #bbb;
    font-weight: 300;
}

.ct-input:focus {
    border-bottom-color: #000;
}

.ct-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #ddd;
    padding: 0.9vw 0;
    font-family: var(--AvertaFont);
    font-size: 1.1vw;
    font-weight: 400;
    color: #000;
    outline: none;
    resize: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
    line-height: 1.7;
}

.ct-textarea::placeholder {
    color: #bbb;
    font-weight: 300;
}

.ct-textarea:focus {
    border-bottom-color: #000;
}

/* ---- Pill radio selectors ---- */
.ct-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6vw;
    margin-top: 0.3vw;
}

.ct-pill-group input[type="radio"] {
    display: none;
}

.ct-pill-label {
    font-family: var(--AvertaFont);
    font-size: 0.95vw;
    font-weight: 400;
    color: #444;
    border: 1px solid #ddd;
    padding: 0.5vw 1.3vw 0.6vw;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.ct-pill-label:hover {
    border-color: #000;
    color: #000;
}

.ct-pill-group input[type="radio"]:checked + .ct-pill-label {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ---- Form footer row ---- */
.ct-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5vw;
    border-top: 1px solid #e8e8e8;
    margin-top: 0.5vw;
}

.ct-form-note {
    font-family: var(--AvertaFont);
    font-size: 0.95vw;
    font-weight: 300;
    color: #aaa;
}

.ct-submit {
    font-family: var(--AvertaFont);
    font-size: 1vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12vw;
    color: #fff;
    background: #0C0C0C;
    border: none;
    padding: 1vw 2.8vw 1.15vw;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ct-submit:hover {
    background: #333;
    transform: scale(1.03);
}

/* ================================================
   Info Strip
   ================================================ */
.ct-strip {
    display: flex;
    align-items: stretch;
    padding: 4vw 6.5vw;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}

.ct-strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    padding: 0 3vw;
}

.ct-strip-item:first-child {
    padding-left: 0;
}

.ct-strip-item:last-child {
    padding-right: 0;
}

.ct-strip-label {
    font-family: var(--AvertaFont);
    font-size: 0.85vw;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15vw;
    color: #aaa;
}

.ct-strip-value {
    font-family: var(--AvertaFont);
    font-size: 1.25vw;
    font-weight: 600;
    color: #000;
}

.ct-strip-divider {
    width: 1px;
    background: #e0e0e0;
    align-self: stretch;
    flex-shrink: 0;
}

/* ================================================
   FAQ
   ================================================ */
.ct-faq {
    background-color: #0C0C0C;
    padding: 9vw 6.5vw;
}

.ct-faq-header {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    margin-bottom: 5vw;
}

.ct-faq-heading {
    font-family: var(--ThunderFont);
    font-size: 10vw;
    font-weight: 700;
    color: #fff;
    line-height: 0.88;
    transform: scale(1, 0.8);
    transform-origin: left center;
    letter-spacing: -0.2vw;
}

.ct-faq-list {
    display: flex;
    flex-direction: column;
}

.ct-faq-item {
    border-top: 1px solid #1f1f1f;
}

.ct-faq-item:last-child {
    border-bottom: 1px solid #1f1f1f;
}

.ct-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2vw 0;
    cursor: pointer;
    list-style: none;
    gap: 3vw;
}

.ct-faq-q::-webkit-details-marker {
    display: none;
}

.ct-faq-q span:first-child {
    font-family: var(--AvertaFont);
    font-size: 1.5vw;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.3;
}

.ct-faq-icon {
    font-family: var(--AvertaFont);
    font-size: 1.8vw;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s ease;
    line-height: 1;
}

.ct-faq-item[open] .ct-faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.ct-faq-item[open] .ct-faq-q span:first-child {
    color: #fff;
}

.ct-faq-a {
    font-family: var(--AvertaFont);
    font-size: 1.1vw;
    font-weight: 300;
    color: #777;
    line-height: 1.8;
    padding: 0 8vw 2.5vw 0;
    max-width: 75%;
}

/* ================================================
   Bottom Footer Override (from frontpage.css)
   ================================================ */
.ButtomMostFooter {
    max-height: 75vh;
    width: 100vw;
    background-color: #000;
    padding-top: 3vw;
    overflow-y: hidden;
}

/* ================================================
   Mobile — ≤ 768px
   ================================================ */
@media (max-width: 768px) {

    .ct-eyebrow {
        font-size: 3.2vw;
    }

    /* Split — stack vertically */
    .ct-split {
        flex-direction: column;
        min-height: auto;
    }

    .ct-left {
        width: 100%;
        min-height: auto;
    }

    .ct-left-inner {
        padding: 12vw 5.5vw 10vw;
        gap: 8vw;
    }

    .ct-contact-label {
        font-size: 3vw;
    }

    .ct-contact-value {
        font-size: 4.3vw;
    }

    .ct-contact-item {
        padding: 4vw 0;
    }

    a.ct-contact-item:hover {
        padding-left: 0;
    }

    .ct-social-link {
        font-size: 3.5vw;
    }

    .ct-socials {
        gap: 2vw 5vw;
    }

    .ct-left-bg-text {
        font-size: 38vw;
        bottom: -3vw;
        left: -3vw;
    }

    .ct-right {
        width: 100%;
    }

    .ct-right-inner {
        padding: 10vw 5.5vw 12vw;
        gap: 6vw;
    }

    .ct-form-intro {
        font-size: 4.3vw;
        padding-bottom: 6vw;
    }

    .ct-form {
        gap: 6vw;
    }

    .ct-label {
        font-size: 3vw;
    }

    .ct-optional {
        font-size: 2.8vw;
    }

    .ct-input,
    .ct-textarea {
        font-size: 4.3vw;
        padding: 3vw 0;
    }

    .ct-field-row {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    .ct-pill-label {
        font-size: 3.5vw;
        padding: 2vw 4vw;
    }

    .ct-pill-group {
        gap: 2vw;
    }

    .ct-form-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 4vw;
        padding-top: 3vw;
    }

    .ct-form-note {
        font-size: 3.5vw;
    }

    .ct-submit {
        font-size: 4vw;
        padding: 3.5vw 8vw;
        width: 100%;
        text-align: center;
    }

    /* Strip */
    .ct-strip {
        flex-wrap: wrap;
        padding: 10vw 5.5vw;
        gap: 8vw 0;
    }

    .ct-strip-item {
        flex: 0 0 50%;
        padding: 0 4vw 0 0;
        gap: 1.5vw;
    }

    .ct-strip-item:nth-child(3),
    .ct-strip-item:nth-child(5) {
        padding-left: 0;
    }

    .ct-strip-divider {
        display: none;
    }

    .ct-strip-label {
        font-size: 3vw;
    }

    .ct-strip-value {
        font-size: 4.5vw;
    }

    /* FAQ */
    .ct-faq {
        padding: 14vw 5.5vw;
    }

    .ct-faq-heading {
        font-size: 18vw;
        letter-spacing: -0.5vw;
    }

    .ct-faq-q span:first-child {
        font-size: 4.5vw;
    }

    .ct-faq-icon {
        font-size: 6vw;
    }

    .ct-faq-q {
        padding: 5vw 0;
    }

    .ct-faq-a {
        font-size: 4vw;
        padding-bottom: 5vw;
        max-width: 100%;
        padding-right: 0;
        line-height: 1.7;
    }
}
