.contact-page {
    font-family: 'At Aero TRIAL', sans-serif;
    background-color: #000;
    color: #fff;
    position: relative;
    padding-bottom: 100px;
}

/* ── Hero ── */
.contact-hero {
    position: relative;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.contact-title {
    margin-left: 10%;
    font-family: 'At Aero TRIAL Retina';
    font-size: 48px;
    color: #e6421d;
    display: flex;
    gap: 8px;
    z-index: 1;
}

.contact-title .span {
    color: #fff;
}

.contact-divider {
    height: 2px;
    background: linear-gradient(90deg, #e6421d, rgba(0, 0, 0, 0));
    margin-bottom: 60px;
}

/* ── Two-column layout ── */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── Left panel ── */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 8px;
}

.contact-heading {
    font-family: 'At Aero TRIAL Retina';
    font-size: 56px;
    line-height: 1.05;
    color: #fff;
    font-weight: 900;
}

.contact-heading-accent {
    color: #e6421d;
}

.contact-tagline {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    max-width: 340px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(230, 66, 29, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(230, 66, 29, 0.05);
}

.email-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: #e6421d;
}

.contact-info {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 16px 20px;
    border-left: 2px solid rgba(230, 66, 29, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.contact-info-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e6421d;
    margin-bottom: 8px;
}

/* ── Form ── */
form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 16px 10px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-bottom: 2px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-family: 'At Aero TRIAL', sans-serif;
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    padding-top: 22px;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 14px;
    color: #555;
    font-family: 'At Aero TRIAL', sans-serif;
    transition: all 0.2s ease;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating label — lifted when input has content or is focused */
.form-group input:not(:placeholder-shown) ~ label,
.form-group input:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label {
    top: 6px;
    font-size: 10px;
    color: #e6421d;
    letter-spacing: 1px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a1a1a;
    border-bottom-color: #e6421d;
    background: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

/* ── Submit button ── */
button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: #e6421d;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'At Aero TRIAL';
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 4px;
}

button[type="submit"]:hover {
    background: #ff5233;
    transform: translateY(-2px);
}

button[type="submit"]:active {
    transform: translateY(0);
}

button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

button[type="submit"]:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── Status message ── */
.form-status {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: 500;
    min-height: 0;
    transition: all 0.3s ease;
}

.form-status:empty {
    padding: 0;
}

.form-status.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-left: 2px solid #4caf50;
}

.form-status.error {
    background: rgba(230, 66, 29, 0.1);
    color: #ff6b4a;
    border-left: 2px solid #e6421d;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-heading {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .contact-title {
        font-size: 32px;
    }

    .contact-content {
        padding: 0 6%;
    }

    .contact-heading {
        font-size: 36px;
    }
}
