/* contact.css */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://source.unsplash.com/random/1600x400/?photography-studio') no-repeat center center/cover;
    color: #fff;
    padding: 5rem 0;
    margin-bottom: 1rem;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form .form-control:focus {
    border-color: #f8c822;
    box-shadow: 0 0 0 0.2rem rgba(248, 200, 34, 0.25);
}

.contact-form .btn-primary {
    background: #f8c822;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: #333;
}

.contact-form .btn-primary:hover {
    background: #e6b800;
}

.contact-info {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #f8c822;
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 24px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #666;
    margin: 0;
}

.info-item a {
    color: #666;
    text-decoration: none;
}

.info-item a:hover {
    color: #f8c822;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #f8c822;
    color: #fff;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

.faq-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    margin: 0;
}

.contact-map {
    height: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-info {
        margin-top: 2rem;
    }
}