/* Contact page specific styles */
body {
    background-color:#891B1A ;
}

.contact-page {
    min-height: calc(100vh - 80px);
    padding: 2rem 2rem;
    color: #000000;
    margin-top: 80px;
    background-color: #891B1A;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.contact-intro {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #333333;
    max-width: 600px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .full-width {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #000000;
    border-radius: 12px;
    background-color: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: #000000;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 1rem center;
    background-size: 1em;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.submit-button {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 150px;
}

.submit-button:hover {
    background-color: #891B1A;
    border-color: #891B1A;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 1rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

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

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