/* Contact Page Specific Styles */

.contact-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Information Section */
.contact-info-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.contact-method i {
    color: #d4af37;
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.contact-btn {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #c19b2e;
    transform: translateX(5px);
}

/* Map Section */

/* Case Inquiry Section */
.case-inquiry {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.intake-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .tagline {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .intake-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Loading State */
.form-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(255,255,255,0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.form-spinner {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-spinner i {
    font-size: 3rem;
    color: #d4af37;
}

.spinner {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    border-top-color: #d4af37;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-fallback-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2c3e50;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-fallback-button:hover {
    background: #1a2635;
    transform: translateY(-2px);
}