/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(187, 31, 35, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(187, 31, 35, 0.5) 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.contact-info-card:hover::before {
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(187, 31, 35, 0.4);
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #d42428 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--light);
    box-shadow: 0 15px 40px rgba(187, 31, 35, 0.5);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(187, 31, 35, 0.7);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-link {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--light);
    transform: scale(1.05);
}

.availability {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Form Section */
.contact-main-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(187, 31, 35, 0.1) 0%, transparent 70%);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.05rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(187, 31, 35, 0.3);
    color: var(--light);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--light);
    border: 3px solid var(--primary);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit i {
    margin-right: 10px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-submit:hover::before {
    width: 500px;
    height: 500px;
}

.btn-submit:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(187, 31, 35, 0.5);
}

.form-note {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* Office Info */
.office-info-wrapper {
    position: sticky;
    top: 120px;
}

.office-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.office-header {
    text-align: center;
    margin-bottom: 40px;
}

.office-header i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.office-header h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.office-details {
    margin-bottom: 40px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(187, 31, 35, 0.05);
    border-left: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.office-item:hover {
    background: rgba(187, 31, 35, 0.1);
    transform: translateX(10px);
}

.office-item i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 5px;
}

.office-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.badge-24-7 {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-24-7 i {
    margin-right: 5px;
    font-size: 0.9rem;
    color: var(--light);
}

.social-connect {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 30px rgba(187, 31, 35, 0.5);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(187, 31, 35, 0.3);
    border: 3px solid rgba(187, 31, 35, 0.4);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(30%) brightness(0.9);
    transition: all 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banners/banner.webp') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(187, 31, 35, 0.5);
    box-shadow: 0 10px 40px rgba(187, 31, 35, 0.2);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: transparent;
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 25px 30px;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-button i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.3rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(187, 31, 35, 0.1);
    color: var(--light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23bb1f23'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(1.2);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-collapse {
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .office-info-wrapper {
        position: static;
    }

    .office-info-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
        margin-top: -30px;
    }

    .contact-info-card {
        padding: 40px 25px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .contact-info-card h3 {
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .office-header i {
        font-size: 3rem;
    }

    .office-header h3 {
        font-size: 1.8rem;
    }

    .office-item {
        padding: 20px;
    }

    .office-item i {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }

    .faq-header p {
        font-size: 1.1rem;
    }

    .accordion-button {
        font-size: 1.05rem;
        padding: 20px;
    }

    .accordion-body {
        font-size: 1rem;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .office-header h3 {
        font-size: 1.5rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 15px;
    }

    .accordion-button i {
        font-size: 1.1rem;
    }
}