/* Contact Page Specific Styles */

.contact-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form label i {
    color: #d4af37;
    margin-right: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

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

.contact-form .error {
    border-color: #dc3545;
}

/* Contact Info Cards */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info-card h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-card h3 i {
    color: #d4af37;
    margin-right: 0.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-item p {
    color: #6c757d;
    margin: 0;
}

.info-item a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #d4af37;
}

/* Business Hours */
.hours-list {
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #2c3e50;
    font-weight: 600;
}

.hours-item span:last-child {
    color: #6c757d;
}

.hours-note {
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 6px;
    color: #004085;
    font-size: 0.9rem;
    margin: 0;
}

.hours-note i {
    color: #1e3a8a;
    margin-right: 0.5rem;
}

/* Social Links Large */
.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
    color: #d4af37;
}

.social-link:hover i {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .contact-form-container,
    .contact-info-card {
        padding: 1.5rem;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }
}