/* ===== CONTACT PAGE STYLES ===== */

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wine-red-900, #450a0a);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--secondary-600, #4b5563);
    margin: 0 auto;
    text-align: center;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--wine-red-900, #450a0a);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--secondary-700, #374151);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--wine-red-600, #dc2626);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.contact-item i {
    font-size: 1.75rem;
    color: var(--wine-red-600, #dc2626);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wine-red-900, #450a0a);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-700, #374151);
    line-height: 1.6;
    margin: 0.25rem 0;
}

.contact-item a {
    color: var(--wine-red-600, #dc2626);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--wine-red-700, #b91c1c);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--wine-red-900, #450a0a);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--secondary-900, #111827);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-red-600, #dc2626);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Map Section (when enabled) */
.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--wine-red-900, #450a0a);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: #f3f4f6;
    padding: 4rem 2rem;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--wine-red-600, #dc2626);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--secondary-700, #374151);
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        width: 100%;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
    }
}

