/* Pricing Page Specific Styles */

/* Uniform Pricing Cards */
.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-section .row > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.pricing-items {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pricing-items .pricing-list {
    flex-grow: 1;
}

.policy-card, .reminder-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.policy-card:hover, .reminder-card:hover {
    transform: translateY(-5px);
}

.policy-header, .reminder-header {
    background: #305CDE;
    color: white;
    padding: 20px 25px;
    text-align: center;
}

.policy-header h4, .reminder-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.policy-header i, .reminder-header i {
    margin-right: 10px;
    font-size: 20px;
}

.policy-body, .reminder-body {
    padding: 25px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.policy-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #305CDE;
    font-weight: bold;
    font-size: 14px;
}

.payment-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #305CDE;
}

.payment-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.reminder-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.reminder-step:hover {
    background: #e9ecef;
}

.step-number {
    background: #305CDE;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h6 {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .policy-card, .reminder-card {
        margin-bottom: 30px;
    }
}

/* Uniform Table Styles */
.uniform-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-top: 20px;
}

.uniform-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.uniform-info h4 {
    color: #305CDE;
    margin-bottom: 10px;
    font-weight: 600;
}

.uniform-info h4 i {
    margin-right: 10px;
}

.uniform-info p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.uniform-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.uniform-table th {
    background: #305CDE;
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    border: none;
}

.uniform-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.uniform-table tbody tr:hover {
    background-color: #f8f9fa;
}

.section-header {
    background: #f8f9fa !important;
    color: #305CDE !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-align: center !important;
    padding: 15px !important;
}

.kindergarten-section .section-header {
    border-top: 3px solid #305CDE;
}

.primary-section .section-header {
    border-top: 3px solid #305CDE;
}

.uniform-notes {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #305CDE;
}

.uniform-notes h5 {
    color: #305CDE;
    margin-bottom: 15px;
    font-weight: 600;
}

.uniform-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uniform-notes li {
    position: relative;
    padding: 5px 0 5px 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.uniform-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #305CDE;
    font-weight: bold;
}

/* Download Section Styles */
.download-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 2px dashed #305CDE;
    margin-top: 20px;
}

.download-section h5 {
    color: #305CDE;
    margin-bottom: 10px;
    font-weight: 600;
}

.download-section h5 i {
    margin-right: 10px;
}

.download-section p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background: #305CDE;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(48, 92, 222, 0.3);
}

.download-btn:hover {
    background: #2548b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(48, 92, 222, 0.4);
}

.download-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Shadow Teacher Styles */
.shadow-teacher-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-top: 20px;
}

.shadow-teacher-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.shadow-teacher-info h4 {
    color: #305CDE;
    margin-bottom: 15px;
    font-weight: 600;
}

.shadow-teacher-info h4 i {
    margin-right: 10px;
}

.shadow-teacher-info p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

.shadow-teacher-info .sena-notice {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin-bottom: 20px;
}

.shadow-teacher-types {
    margin: 30px 0;
}

.shadow-teacher-types h5 {
    color: #305CDE;
    margin-bottom: 20px;
    font-weight: 600;
}

.shadow-teacher-types h5 i {
    margin-right: 10px;
}

.type-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #305CDE;
    height: 100%;
    margin-bottom: 20px;
}

.type-card h6 {
    color: #305CDE;
    margin-bottom: 10px;
    font-weight: 600;
}

.type-card h6 i {
    margin-right: 8px;
}

.type-card p {
    color: #555;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.assessment-section {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    margin: 30px 0;
}

.assessment-section h5 {
    color: #1565c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.assessment-section h5 i {
    margin-right: 10px;
}

.assessment-section p {
    color: #1565c0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.important-notes {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 30px 0;
}

.important-notes h5 {
    color: #856404;
    margin-bottom: 15px;
    font-weight: 600;
}

.important-notes h5 i {
    margin-right: 10px;
}

.important-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-notes li {
    position: relative;
    padding: 5px 0 5px 20px;
    margin-bottom: 8px;
    color: #856404;
    font-size: 14px;
}

.important-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.shadow-teacher-options {
    margin: 30px 0;
}

.shadow-teacher-options h5 {
    color: #305CDE;
    margin-bottom: 20px;
    font-weight: 600;
}

.shadow-teacher-options h5 i {
    margin-right: 10px;
}

.option-card {
    background: white;
    border: 2px solid #e9ecef;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.option-card:hover {
    border-color: #305CDE;
}

.option-card h6 {
    color: #305CDE;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-card li {
    position: relative;
    padding: 5px 0 5px 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.option-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #305CDE;
    font-weight: bold;
}

.contact-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #305CDE;
    margin-top: 30px;
}

.contact-section h5 {
    color: #305CDE;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-section h5 i {
    margin-right: 10px;
}

.contact-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .uniform-table-wrapper {
        padding: 20px;
    }

    .uniform-table th,
    .uniform-table td {
        padding: 8px 5px;
        font-size: 18px;
    }

    .section-header {
        font-size: 14px !important;
        padding: 10px !important;
    }
}

#policy-section {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    justify-content: center;
}

#policy-section > .col-lg-6 {
    max-width: 500px;
}

#policy-section.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
}
