/* Contact Page Styles - Locaso Support Central */
.contact-hero {
    background: linear-gradient(135deg, #ff385c 0%, #ff5c7b 100%);
    padding: 60px 20px;
    border-radius: 0 0 40px 40px;
    text-align: center;
    color: white;
    margin-bottom: -40px;
}

.contact-hero h1 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.channel-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    color: #ff385c;
}

.channel-icon {
    width: 60px;
    height: 60px;
    background: #fffafa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff385c;
}

.channel-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.channel-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Form & Info Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.form-section {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-section h3 {
    margin-bottom: 25px;
    font-weight: 600;
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.address-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    color: #3d4152;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.map-btn:hover {
    background: #e9ecef;
    color: #000;
}

.social-connect {
    background: #3d4152;
    padding: 30px;
    border-radius: 24px;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
    background: #ff385c;
    transform: scale(1.1);
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 40px 20px;
    }
    
    .contact-container {
        padding: 0 15px 40px;
    }
    
    .form-section {
        padding: 25px;
    }
}
