/* ============================================================
   contacto.css — Contact page styles
   Extends home.css (shared tokens, navbar, footer, utilities)
   ============================================================ */

/* ============================================================
   CTC SECTION — main contact section
   Figma: bg #141414, 1585×1095px
   ============================================================ */
.ctc {
    background: var(--dark);
    padding: 80px 120px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1095px;
}

/* Outer card — Figma: bg #23262d, w=1223, h=810, border-radius=50px */
.ctc__card {
    display: flex;
    width: 100%;
    max-width: 1223px;
    min-height: 810px;
    background: #23262d;
    border-radius: 50px;
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   LEFT INFO PANEL — Figma: bg #fa5a12, w≈502, rounded
   ============================================================ */
.ctc__info {
    position: relative;
    flex: 0 0 480px;
    background: var(--orange);
    border-radius: 50px;
    overflow: hidden;
    padding: 60px 52px 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 810px;
}

/* Texture background image */
.ctc__info-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.25;
    mix-blend-mode: overlay;
    z-index: 0;
}

/* Decorative ellipses */
.ctc__info-ellipse {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

.ctc__info-ellipse--lg {
    width: 340px;
    height: 340px;
    bottom: -80px;
    right: -100px;
}

.ctc__info-ellipse--sm {
    width: 180px;
    height: 180px;
    bottom: 100px;
    right: 80px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

/* Content layer above decorations */
.ctc__info-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ctc__info-title {
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.5px;
}

.ctc__info-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

/* Contact detail list */
.ctc__info-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.ctc__info-contact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.55;
}

.ctc__info-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

/* ============================================================
   RIGHT FORM PANEL
   ============================================================ */
.ctc__form-wrap {
    flex: 1;
    padding: 60px 52px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ctc__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

/* Two-column row */
.ctc__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

/* Individual field */
.ctc__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc__field--full {
    grid-column: 1 / -1;
}

/* Label */
.ctc__label {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

.ctc__required {
    color: rgba(250, 90, 18, 0.85);
    margin-left: 4px;
    font-weight: 400;
}

/* Text / email inputs — underline only style */
.ctc__input {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 10px 0 10px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    caret-color: var(--orange);
}

.ctc__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.ctc__input:focus {
    border-bottom-color: var(--orange-light);
}

/* Select — custom styled dropdown */
.ctc__select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ctc__select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 10px 28px 10px 0;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s;
}

.ctc__select:focus {
    border-bottom-color: var(--orange-light);
}

.ctc__select option {
    background: #2d3039;
    color: #fff;
}

.ctc__select-arrow {
    position: absolute;
    right: 4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: transform 0.2s;
}

.ctc__select-wrap:focus-within .ctc__select-arrow {
    transform: rotate(180deg);
    border-bottom-color: var(--orange-light);
}

/* Radio buttons — FOB / CIF */
.ctc__radio-group {
    display: flex;
    gap: 32px;
    padding-top: 8px;
}

.ctc__radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.ctc__radio-label:hover {
    color: #fff;
}

.ctc__radio-input {
    display: none;
}

.ctc__radio-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.ctc__radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: scale(0.5);
}

.ctc__radio-input:checked+.ctc__radio-custom {
    border-color: var(--orange);
}

.ctc__radio-input:checked+.ctc__radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.ctc__radio-input:checked~.ctc__radio-text {
    color: #fff;
}

/* Textarea */
.ctc__textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 10px 0 10px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    outline: none;
    width: 100%;
    resize: none;
    min-height: 96px;
    line-height: 1.6;
    transition: border-color 0.2s;
    caret-color: var(--orange);
}

.ctc__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ctc__textarea:focus {
    border-bottom-color: var(--orange-light);
}

/* Submit button */
.ctc__submit {
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(to bottom, #ff8d28, #fa5a12);
    color: #fff;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow:
        0 4px 20px rgba(250, 90, 18, 0.45),
        0 1px 4px rgba(0, 0, 0, 0.25);
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 4px;
}

.ctc__submit:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow:
        0 6px 26px rgba(250, 90, 18, 0.55),
        0 1px 4px rgba(0, 0, 0, 0.25);
}

.ctc__submit:active {
    transform: translateY(0);
    filter: brightness(0.97);
}

/* LOI Disclaimer */
.ctc__disclaimer {
    font-family: var(--font-inter);
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.32);
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}