/* ===== CONTACT INFO OUTER WRAPPER CARD ===== */
.contact-info-wrapper-card {
    background: #fff;
    border-radius: 6px;
    padding: 3rem 2.5rem 2.5rem;
}

/* ===== SECTION TITLE ===== */
.content-title-section .title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
    padding-bottom: 0.9rem;
    letter-spacing: -0.02em;
}

.content-title-section .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0D1B2B, #0B1725);
    border-radius: 2px;
}

.content-title-section p {
    font-size: 1.3rem;
    color: #555;
    max-width: 675px;
    margin: 1.2rem auto 0;
    line-height: 1.75;
}

/* ===== INNER INFO CARDS ===== */
.contact-information-section {
    padding: 2rem 0 0;
    margin-top: 0;
}

.contact-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.contact-card-item {
    flex: 1 1 280px;
    max-width: 360px;
    min-width: 0;
}

.contact-info-card {
    background: #eee;
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(13, 27, 43, 0.45);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .contact-card-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D1B2B, #B18228);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(13, 27, 43, 0.4);
    background: #fff;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.4rem;
    background: linear-gradient(135deg, #0D1B2B 0%, #B18228 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(13, 27, 43, 0.45);
}

.contact-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgb(13, 27, 43);
    transform: scale(1.20);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 1;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 2px 8px rgba(13, 27, 43, 0.3);
}

.contact-info-card:hover .contact-icon-wrapper::after {
    transform: scale(1.25);
    opacity: 0.5;
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: #fff;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper i {
    transform: scale(1.15);
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.contact-info-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.contact-info-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-info-text a:hover {
    color: #0D1B2B;
    text-decoration: none;
}

/* ===== DIVIDER ===== */
.divider-modern {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(13, 27, 43, 0.5) 20%, rgba(13, 27, 43, 0.5) 80%, transparent);
    margin: 3.5rem 0;
}

/* ===== FAQ + FORM CARDS ===== */
.faq-card, .contact-form-card {
    background: #fff;
    border-radius: 6px;
    padding: 2.5rem;
    height: 100%;
}

.faq-card .title, .contact-form-card .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.3rem;
}

/* ===== FAQ ACCORDION ===== */
.accordion.accordion-modern { border: none; }

.accordion.accordion-modern .card {
    background: #ffffff;
    border: 1.5px solid rgba(13, 27, 43, 0.3);
    border-radius: 10px;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.accordion.accordion-modern .card-header {
    background: #eee;
    border: none;
    padding: 0;
}

.accordion.accordion-modern .card-header a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 5rem 1.4rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion.accordion-modern .card-header a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.3rem;
    color: #222;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.accordion.accordion-modern .card-header a.collapse::after {
    color: #B18228;
}

.accordion.accordion-modern .card-header a:hover { color: #B18228; }

.accordion.accordion-modern .card-body p{
    color: #555;
    line-height: 1.75 !important;
    font-size: 1.3rem !important;
}

/* ===== CONTACT FORM ===== */
.contact-us-form .form-group { margin-bottom: 1.4rem; }

.contact-us-form label {
    font-weight: 600;
    color: #222;
    margin-bottom: 0.45rem;
    font-size: 1.3rem;
    display: block;
}

.contact-us-form .form-control {
    border: 1px solid #eee;
    border-radius: 9px;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
    color: #333;
}

.contact-us-form .form-control::placeholder { color: #ccc; }

.contact-us-form .form-control:focus {
    border: 1px solid #0D1B2B;
    /* box-shadow: 0 0 0 0.2rem rgba(0, 86, 141, 0.25); */
    background: #fff;
    outline: none;
}

.contact-us-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .contact-info-wrapper-card { padding: 2rem 1.5rem; }
    .faq-card, .contact-form-card { padding: 2rem; margin-bottom: 1.5rem; }
}

@media (max-width: 767px) {
    .content-title-section .title { font-size: 1.8rem; }
    .contact-icon-wrapper { width: 68px; height: 68px; }
    .contact-icon-wrapper i { font-size: 1.7rem; }
    .contact-info-wrapper-card { padding: 1.5rem 1rem; }
}
