.contact-page {
    background: var(--nike-white);
}

.contact-container {
    padding: var(--section-spacing) 0;
}

.contact-info h1 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 500;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 16px;
    color: var(--nike-black);
    line-height: 24px;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-input {
    position: relative;
    color: var(--nike-black);
}

.text-input__field {
    width: 100%;
    min-height: 56px;
    padding: 16px 44px 16px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--nike-black);
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--nike-border);
    box-sizing: border-box;
    background: var(--nike-white);
    transition: box-shadow 0.2s ease;
    -webkit-appearance: none;
}

.text-input__field::placeholder {
    color: var(--nike-grey-dark);
}

.text-input__field:focus::placeholder {
    color: transparent;
}

.text-input:hover .text-input__field,
.text-input:focus-within .text-input__field {
    box-shadow: 0 0 0 1px var(--nike-black);
}

.text-input__field:focus {
    outline: none;
}

.text-input.is-valid::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nike-success);
    transform: translateY(-50%);
}

.text-input.is-invalid .text-input__field,
.text-input.is-invalid:hover .text-input__field,
.text-input.is-invalid:focus-within .text-input__field {
    box-shadow: 0 0 0 1px var(--nike-error);
}

.text-input.is-invalid .text-input__label {
    color: var(--nike-error);
}

.text-input.is-invalid .text-input__field::placeholder {
    color: var(--nike-error);
}

.text-input__label {
    position: absolute;
    left: 12px;
    top: -0.75rem;
    padding: 0 4px;
    background: var(--nike-white);
    color: var(--nike-grey-dark);
    font-size: 12px;
    line-height: 1;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.text-input__field:focus + .text-input__label,
.text-input__field:not(:placeholder-shown) + .text-input__label {
    opacity: 1;
    transform: translateY(0);
    color: var(--nike-black);
}

.text-input textarea.text-input__field {
    min-height: 104px;
    resize: none;
}

.contact-methods {
    padding-top: calc(var(--section-spacing) * 2);
}

.contact-methods h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-methods p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    color: var(--nike-black);
}

.method-chips {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.chip {
    padding: 12px 24px;
    border: 1px solid var(--nike-border);
    border-radius: 30px;
    background: var(--nike-white);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.031rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
    border-color: var(--nike-black);
}

.chip.active,
.chip:focus {
    background: var(--nike-black);
    color: var(--nike-white);
    border-color: var(--nike-black);
}

.submit-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.call-now {
    font-size: 14px;
    line-height: 24px;
    color: var(--nike-black);
    font-weight: 500;
    text-align: left;
    margin-bottom: var(--section-spacing);
}


