/* Tactics Network Section */
#tactics-network-section {
    background-color: #040d21 !important;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    padding: 60px 20px;
    min-height: 80vh;
}

#tactics-network-section .custom-container { max-width: 1140px; margin: 0 auto; }
#tactics-network-section .title-area { text-align: center; margin-bottom: 40px; }
#tactics-network-section .title-area h1 { font-weight: 900; font-size: 36px; color: #ffffff !important; }
#tactics-network-section .gold-line { width: 60px; height: 4px; background: #ffd700; margin: 10px auto 20px; }

/* Filter & Search Wrap */
.filter-wrap { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin: 30px 0 50px; }

.search-box, .city-box {
    height: 52px; padding: 0 18px; border-radius: 12px;
    background: #112240; border: 1px solid #233554; color: #fff; min-width: 280px;
}

/* Hospital Grid */
.hosp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.hosp-card {
    background: #ffffff; height: 160px; border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 15px; cursor: pointer; transition: 0.3s;
}

.hosp-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hosp-card img { max-width: 80%; max-height: 80px; object-fit: contain; }
.hosp-card p { margin-top: 10px; font-size: 14px; font-weight: 600; color: #002147; text-align: center; }

/* Custom Modal */
.t-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(5px); }
.t-modal-content { background: #0a192f; margin: 10% auto; width: 90%; max-width: 450px; border-radius: 15px; border: 1px solid #233554; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.t-modal-header { background: #112240; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.t-modal-body { padding: 20px; }

.benefit-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #1d2d50; font-size: 14px; }
.b-label { color: #8892b0; }
.b-value { color: #64ffda; font-weight: 700; }
/* FAQ Section Styles */
.faq-corporate-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #002147;
    box-shadow: 0 4px 12px rgba(0, 33, 71, 0.08);
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    color: #002147;
    outline: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #28a745;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content length */
}
@media(max-width:768px){ .search-box, .city-box { width: 100%; min-width: 100%; } }