/* ============================================================
   contact-form.css — shared styles for the modern contact form
   Used by: contact.html, index.html
============================================================ */

.new-contact-section {
    padding: 100px 0;
}

.new-contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.new-contact-left {
    padding: 56px 48px;
    background: linear-gradient(145deg, rgba(62,116,214,0.18) 0%, rgba(62,116,214,0.04) 100%);
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.new-contact-right {
    padding: 56px 48px;
}

.new-contact-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3E74D6;
    margin-bottom: 20px;
}

.new-contact-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.new-contact-title span {
    background: linear-gradient(90deg, #3E74D6, #7eb3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.new-contact-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

.new-contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.new-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(62,116,214,0.15);
    border: 1px solid rgba(62,116,214,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.new-contact-info-icon svg {
    width: 16px;
    height: 16px;
    stroke: #3E74D6;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.new-contact-info-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* Field groups */
.ncf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ncf-field {
    position: relative;
    margin-bottom: 16px;
}

.ncf-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}

.ncf-field input,
.ncf-field select,
.ncf-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 13px 18px;
    color: #fff;
    font-size: 0.93rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.ncf-field textarea {
    resize: vertical;
    min-height: 110px;
}

.ncf-field input::placeholder,
.ncf-field textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.ncf-field input:focus,
.ncf-field select:focus,
.ncf-field textarea:focus {
    border-color: rgba(62,116,214,0.7);
    background: rgba(62,116,214,0.07);
    box-shadow: 0 0 0 3px rgba(62,116,214,0.12);
}

.ncf-select-wrapper {
    position: relative;
}

.ncf-select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.4);
    pointer-events: none;
}

.ncf-field select option {
    background: #0d1b2e;
    color: #fff;
}

.ncf-section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
    margin-top: 4px;
    display: block;
}

/* Checkboxes */
.ncf-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.ncf-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    margin-top: 2px;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
}

.ncf-check input[type="checkbox"]:checked {
    background: #3E74D6;
    border-color: #3E74D6;
}

.ncf-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.ncf-check-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.ncf-check-label a {
    color: #3E74D6;
    text-decoration: none;
}

.ncf-check-label a:hover {
    text-decoration: underline;
}

/* Submit button */
.ncf-submit {
    width: 100%;
    padding: 15px 32px;
    background: linear-gradient(135deg, #3E74D6 0%, #2a5aa3 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    margin-top: 8px;
}

.ncf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(62,116,214,0.4);
}

.ncf-submit:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .new-contact-left {
        padding: 40px 32px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .new-contact-right {
        padding: 40px 32px;
    }
    .new-contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .ncf-row {
        grid-template-columns: 1fr;
    }
    .new-contact-left,
    .new-contact-right {
        padding: 32px 24px;
    }
}
