/**
 * Contact Page Styles
 * 
 * @package Bombay_Beats_Studios
 */

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #2690FF 0%, #1a73e8 100%);
    border-radius: 50%;
    margin: 0 auto;
    color: #fff;
    font-size: 32px;
}

.contact-info-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-info-card p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

.contact-info-card a {
    color: #2690FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #1a73e8;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    height: 55px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form textarea.form-control {
    height: auto;
    padding: 15px 20px;
    resize: none;
}

.contact-form .form-control:focus {
    border-color: #2690FF;
    box-shadow: 0 0 0 0.2rem rgba(38, 144, 255, 0.15);
}

/* Map */
.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: black;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #2690FF;
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

/* Social Links */
.social-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link-item:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #2690FF 0%, #1a73e8 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
}

.social-link-item:hover .social-icon {
    background: linear-gradient(135deg, #1a73e8 0%, #2690FF 100%);
    box-shadow: 0 10px 25px rgba(38, 144, 255, 0.3);
}

.social-link-item span {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .social-links-wrapper {
        gap: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
}
