/* ============================= */
/* Contact Form Styles           */
/* ============================= */

.section-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent);
    margin: 80px 0 60px 0;
}

#contact-section {
    width: 100%;
    padding: 60px 20px 80px 20px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    text-align: center;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subheading {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: #fafafa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #800000;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
    background-color: white;
}

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

.char-count {
    position: absolute;
    bottom: -22px;
    right: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Honeypot fields - hidden from users */
.ohnohoney {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 36px;
}

.form-buttons button {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-cancel {
    background-color: #f3f4f6;
    color: #374151;
}

.btn-cancel:hover {
    background-color: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cancel:active {
    transform: translateY(0);
}

.btn-send {
    background: linear-gradient(135deg, #800000 0%, #a00000 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}

.btn-send:hover {
    background: linear-gradient(135deg, #a00000 0%, #c00000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

.btn-send:active {
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 2rem;
    }

    .contact-subheading {
        font-size: 1rem;
        margin-bottom: 32px;
    }

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

    .form-buttons {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .form-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #contact-section {
        padding: 40px 16px 60px 16px;
    }

    .contact-heading {
        font-size: 1.75rem;
    }

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

    .form-group {
        margin-bottom: 24px;
    }
}