/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
    padding: 120px 24px 60px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-label {
    display: inline-block;
    background: rgba(16, 106, 243, 0.15);
    color: #106af3;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #9ca3af;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Two Column Section */
.contact-columns {
    background: #0a0f1a;
    padding: 60px 24px 0;
}

.contact-columns-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-card {
    background: #0f1419;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 32px;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-card-text {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #106af3;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email-link:hover {
    color: #4a96f7;
}

.contact-email-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Email hint text */
.contact-card-email-hint {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Email reveal button */
.email-reveal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 106, 243, 0.12);
    color: #106af3;
    border: 1px solid rgba(16, 106, 243, 0.3);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.email-reveal-btn:hover {
    background: rgba(16, 106, 243, 0.2);
    border-color: rgba(16, 106, 243, 0.5);
}

.email-reveal-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Email honeypot trap for scrapers */
.email-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-card-hint {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    line-height: 1.5;
}

/* Form Section */
.contact-form-section {
    background: #0a0f1a;
    padding: 60px 24px 80px;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #0f1419;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 40px;
}

.contact-form-heading {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-form-subheading {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4b5563;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #106af3;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #111827;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Honeypot - hidden from real users */
.ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #106af3;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background: #0c52c2;
}

.contact-submit-btn svg {
    width: 18px;
    height: 18px;
}

/* Thank You Message */
.contact-thank-you {
    display: none;
    text-align: center;
    padding: 40px 24px;
}

.contact-thank-you.visible {
    display: block;
}

.contact-thank-you-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 106, 243, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-thank-you-icon svg {
    width: 28px;
    height: 28px;
    color: #106af3;
}

.contact-thank-you h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-thank-you p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 16px 40px;
    }

    .contact-columns {
        padding: 40px 16px 0;
    }

    .contact-columns-container {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 40px 16px 60px;
    }

    .contact-form-container {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
