/* Contact Header */
.contact-header {
    background-image: url('../images/contact-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Contact Info Boxes */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 1.2rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.linkedin {
    background: #0077b5;
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
    border-color: var(--orange-ci);
    box-shadow: 0 0 0 0.2rem rgba(247, 127, 0, 0.25);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(247, 127, 0, 0.1);
    color: var(--orange-ci);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(247, 127, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 30px;
    }
    
    .info-box {
        padding: 15px;
    }
}