/* Tuition & Fees Premium Styles */

.tuition-content-section {
    padding: 60px 0 100px;
    background-color: #fdfdfd;
    font-family: 'Inter', sans-serif;
}

/* Titles with gold underline */
.tuition-card-title.underlined {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 12px;
}

.tuition-card-title.underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #a67c52;
}

/* Highlight Banner */
.tuition-highlight-banner {
    background: #01233c;
    color: #fff;
    border-radius: 12px;
    padding: 30px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.15);
}

.thb-col.thb-main {
    display: flex;
    align-items: center;
    gap: 25px;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 40px;
}

.thb-icon {
    width: 65px;
    height: 65px;
    background: rgba(166, 124, 82, 0.2);
    color: #a67c52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(166, 124, 82, 0.3);
}

.thb-icon svg {
    width: 32px;
    height: 32px;
}

.thb-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 5px;
}

.thb-value {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0;
    color: #a67c52;
}

.thb-col.thb-info {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.thb-col.thb-note {
    max-width: 250px;
}

.thb-note-inner {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
}

.thb-note-inner svg {
    width: 22px;
    height: 22px;
    color: #a67c52;
    flex-shrink: 0;
}

/* Rows & Cards */
.tuition-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.tuition-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.tuition-card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 25px;
    margin-top: -15px;
}

/* Table */
.tuition-table-wrap {
    overflow-x: auto;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.tuition-table {
    width: 100%;
    border-collapse: collapse;
}

.tuition-table th {
    background: #01233c;
    color: #fff;
    text-align: left;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tuition-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #333;
}

.tuition-table td strong {
    color: #1a1a1a;
    font-size: 1rem;
}

.tuition-table td small {
    color: #a67c52;
    font-size: 0.85rem;
    font-weight: 500;
}

.tuition-table tr:last-child td { border-bottom: none; }

/* Components */
.payment-frequency {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fdfaf5;
    border-radius: 10px;
}

.pf-icon svg { width: 26px; height: 26px; color: #a67c52; }
.pf-text h4 { margin: 0 0 4px; font-size: 1rem; font-weight: 700; }
.pf-text p { margin: 0; font-size: 0.85rem; color: #666; line-height: 1.5; }

.included-list { list-style: none; padding: 0; margin: 0 0 25px; }
.included-list li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.95rem; }
.included-list li svg { width: 18px; height: 18px; color: #a67c52; flex-shrink: 0; border: 1.5px solid #a67c52; border-radius: 50%; padding: 2px; }

.included-note {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #f1f5f9;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.included-note svg { width: 22px; height: 22px; color: #1a1a1a; flex-shrink: 0; }

.fees-list { list-style: none; padding: 0; margin: 0; }
.fees-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.fee-name { display: flex; align-items: center; gap: 12px; }
.fee-name svg { width: 18px; height: 18px; color: #a67c52; }
.fee-name span { font-size: 0.95rem; color: #333; }
.fee-name small { color: #888; font-size: 0.8rem; margin-left: 5px; }
.fee-value { font-weight: 700; color: #1a1a1a; font-size: 0.95rem; }

.total-additional {
    margin-top: 20px;
    padding: 15px 20px;
    background: #fdfaf5;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-additional span { font-weight: 700; color: #333; font-size: 0.95rem; }
.total-additional strong { font-size: 1.1rem; color: #1a1a1a; font-weight: 800; }

.cost-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; color: #555; }
.total-row.dark-total {
    background: #01233c;
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.total-row.dark-total strong { color: #a67c52; font-size: 1.2rem; }

.financial-assistance {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    margin-top: 10px;
}

.fa-icon svg { width: 30px; height: 30px; color: #a67c52; }
.fa-text h4 { margin: 0 0 5px; font-size: 1.05rem; }
.fa-text p { font-size: 0.85rem; color: #666; line-height: 1.5; margin-bottom: 8px; }
.fa-link { color: #1a1a1a; font-weight: 700; text-decoration: none; font-size: 0.9rem; }

/* FAQ Accordion */
.tuition-faqs {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.faq-header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
}

.faq-q { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 600; color: #1a1a1a; flex: 1; }
.faq-q svg { width: 20px; height: 20px; color: #a67c52; }
.faq-answer-inline { flex: 2; font-size: 0.9rem; color: #666; padding: 0 20px; }
.faq-arrow { width: 18px; height: 18px; color: #666; transition: transform 0.3s; }
.faq-body { display: none; padding: 15px 0; font-size: 0.9rem; color: #666; }

/* Tuition Help Bar */
.tuition-help-bar {
    background: #01233c;
    color: #fff;
    border-radius: 12px;
    padding: 30px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.thb-left { display: flex; align-items: center; gap: 20px; }
.thb-help-icon { width: 55px; height: 55px; background: rgba(166, 124, 82, 0.2); color: #a67c52; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.thb-help-icon svg { width: 28px; height: 28px; }
.thb-help-text h3 { margin: 0 0 4px; font-size: 1.2rem; font-family: 'Playfair Display', serif; }
.thb-help-text p { margin: 0; font-size: 0.85rem; opacity: 0.7; }

.thb-contacts { display: flex; gap: 20px; flex-shrink: 1; }
.thb-contact { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; opacity: 0.9; white-space: nowrap; min-width: max-content; }
.thb-contact svg { width: 18px; height: 18px; color: #a67c52; }

.btn-tuition-contact {
    flex-shrink: 0;
    background: #a67c52;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-tuition-contact:hover { background: #8e6a45; }

/* Responsive */
@@media (max-width: 1100px) {
    .tuition-row { grid-template-columns: 1fr; }
    .thb-contacts { flex-direction: column; gap: 10px; }
    .tuition-help-bar { flex-direction: column; text-align: center; }
    .thb-left { flex-direction: column; }
}

@@media (max-width: 900px) {
    .tuition-highlight-banner { flex-direction: column; text-align: center; }
    .thb-col.thb-main { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 20px; flex-direction: column; width: 100%; }
    .faq-answer-inline { display: none; }
}
