/**
 * Real Estate Product Page Styles
 * Extracted from real-estate-product-example.html
 */

/* Real Estate Industry Color Scheme */
:root {
    --real-estate-primary: #1e3a8a;
    --real-estate-secondary: #3b82f6;
    --real-estate-accent: #d4af37;
}

/* Custom course detail styles */
.course-meta-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.course-meta-box h5 {
    color: var(--real-estate-primary);
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.trust-badge-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.trust-badge-item i {
    font-size: 2rem;
    color: var(--real-estate-accent);
    margin-bottom: 8px;
    display: block;
}

.trust-badge-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--real-estate-primary);
    margin-bottom: 3px;
}

.trust-badge-item span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Delivery Method Tabs */
.tab-container .nav-tabs {
    border-bottom: 3px solid var(--real-estate-primary);
}

.tab-container .nav-tabs .nav-item {
    margin-bottom: -3px;
}

.tab-container .nav-tabs .nav-link {
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 600;
    padding: 15px 30px;
    margin-right: 5px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s;
}

.tab-container .nav-tabs .nav-link:hover {
    background: #e5e7eb;
    color: var(--real-estate-primary);
}

.tab-container .nav-tabs .nav-link.active {
    background: var(--real-estate-primary);
    color: white;
    border-bottom: 3px solid var(--real-estate-primary);
}

.tab-container .nav-link i {
    margin-right: 8px;
}

/* Schedule Selection Interface */
.schedule-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.schedule-filters .form-group {
    flex: 1;
    min-width: 200px;
}

.schedule-filters label {
    font-weight: 600;
    color: var(--real-estate-primary);
    margin-bottom: 8px;
    display: block;
}

.schedule-filters select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.95rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.schedule-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.schedule-card:hover {
    border-color: var(--real-estate-secondary);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    transform: translateY(-3px);
}

.schedule-card.available {
    border-left: 4px solid #16a34a;
}

.schedule-card.limited {
    border-left: 4px solid #f59e0b;
}

.schedule-card.full {
    opacity: 0.6;
    cursor: not-allowed;
}

.schedule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.schedule-date {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--real-estate-primary);
}

.schedule-status {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.schedule-status.available {
    background: #dcfce7;
    color: #166534;
}

.schedule-status.limited {
    background: #fef3c7;
    color: #92400e;
}

.schedule-status.full {
    background: #f1f5f9;
    color: #64748b;
}

.schedule-details {
    margin-bottom: 15px;
}

.schedule-details div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #6b7280;
}

.schedule-details i {
    width: 20px;
    margin-right: 8px;
    color: var(--real-estate-secondary);
}

.schedule-card .btn {
    width: 100%;
    padding: 10px;
    background: var(--real-estate-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.schedule-card .btn:hover {
    background: var(--real-estate-secondary);
}

.schedule-card.full .btn {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pricing-grid:has(.pricing-card:only-child),
.pricing-grid:has(.pricing-card:nth-child(2):last-child) {
    justify-content: center;
}
.pricing-grid:has(.pricing-card:only-child) {
    grid-template-columns: minmax(300px, 380px);
}
.pricing-grid:has(.pricing-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(300px, 380px));
}

.pricing-card {
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--real-estate-secondary);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    transform: translateY(-5px);
}

.pricing-card.recommended {
    border-color: var(--real-estate-accent);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--real-estate-accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--real-estate-primary);
    font-weight: 700;
}

.pricing-card .package-sub-name {
    display: inline-block;
    margin-bottom: 15px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--real-estate-primary, #1a3a6e);
    background-color: rgba(26, 58, 110, 0.08);
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.pricing-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--real-estate-primary);
    line-height: 1;
}

.price-extras {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
}
.price-extras:empty {
    display: none;
}

.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.15rem;
    font-weight: 600;
}

.price-save {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

/* Payment Plan Badge - Interactive */
.payment-plan-badge {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.payment-plan-badge:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.payment-plan-badge i {
    margin-right: 6px;
}

.payment-plan-badge .payment-plan-amount {
    font-size: 1.1em;
    font-weight: 700;
}

.payment-plan-badge .view-schedule-text {
    font-size: 0.85em;
    opacity: 0.9;
    text-decoration: underline;
}

/* Payment Schedule Modal */
.payment-modal-header {
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    color: white;
    padding: 20px 24px;
    border-bottom: none;
}

.payment-modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.payment-modal-header .modal-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.payment-modal-header .close {
    color: white;
    opacity: 1;
    text-shadow: none;
}

.payment-modal-header .close:hover {
    color: var(--real-estate-accent);
}

/* Payment Schedule Table */
.payment-schedule-section {
    margin-bottom: 24px;
}

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

.payment-schedule-table th {
    background: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
}

.payment-schedule-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.payment-schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.payment-schedule-table .payment-number {
    font-weight: 600;
    color: var(--real-estate-primary);
}

.payment-schedule-table .payment-date {
    color: #6c757d;
}

.payment-schedule-table .payment-amount {
    font-weight: 600;
    color: #212529;
}

.payment-schedule-table .running-total {
    color: #6c757d;
}

.payment-schedule-table tbody tr:first-child {
    background: #f0fdf4;
}

.payment-schedule-table tbody tr:first-child .payment-date::after {
    content: ' (Today)';
    font-size: 0.8em;
    color: #16a34a;
    font-weight: 600;
}

/* Payment Summary Section */
.payment-summary-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.payment-summary-section .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}

.payment-summary-section .summary-row.compare {
    border-top: 1px dashed #dee2e6;
    margin-top: 8px;
    padding-top: 12px;
}

.payment-summary-section .summary-row.savings {
    background: #dcfce7;
    margin: 12px -20px -20px;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
}

.payment-summary-section .summary-value {
    font-weight: 600;
}

.payment-summary-section .savings-amount {
    color: #16a34a;
    font-size: 1.1rem;
}

/* Payment Modal Actions */
.payment-modal-actions {
    display: flex;
    gap: 12px;
}

.payment-modal-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
}

.payment-modal-actions .btn-outline-primary {
    border-color: var(--real-estate-primary);
    color: var(--real-estate-primary);
}

.payment-modal-actions .btn-outline-primary:hover {
    background: var(--real-estate-primary);
    color: white;
}

/* Responsive Payment Modal */
@media (max-width: 576px) {
    .payment-modal-actions {
        flex-direction: column;
    }

    .payment-schedule-table th,
    .payment-schedule-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #16a34a;
    margin-right: 10px;
    margin-top: 3px;
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--real-estate-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.pricing-card .btn-primary:hover {
    background: var(--real-estate-secondary);
    transform: translateY(-2px);
}

.pricing-card.recommended .btn-primary {
    background: var(--real-estate-accent);
}

.pricing-card.recommended .btn-primary:hover {
    background: #b8960f;
}

/* Upsell Options */
.upsell-section {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.upsell-section h4 {
    color: var(--real-estate-primary);
    margin-bottom: 20px;
}

.upsell-option {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.upsell-option:hover {
    border-color: var(--real-estate-secondary);
}

.upsell-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.upsell-details {
    flex: 1;
}

.upsell-details strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--real-estate-primary);
}

.upsell-details span {
    color: #6b7280;
    font-size: 0.9rem;
}

.upsell-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #16a34a;
}

/* FAQ Styles */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--real-estate-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.8;
}

/* Instructor Cards */
.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.instructor-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.instructor-photo,
.instructor-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.instructor-card h5,
.instructor-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--real-estate-primary);
}

.instructor-credentials,
.instructor-title {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.experience-badge {
    display: inline-block;
    background: var(--real-estate-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.specialization-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.specialization-tag {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #4b5563;
}

/* Testimonial Cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--real-estate-accent);
    position: absolute;
    top: 15px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-stars,
.testimonial-rating {
    color: var(--real-estate-accent);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-text,
.testimonial-content {
    font-style: italic;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info strong,
.testimonial-author strong {
    display: block;
    color: var(--real-estate-primary);
    margin-bottom: 3px;
}

.author-info span,
.testimonial-author span {
    color: #9ca3af;
    font-size: 0.85rem;
    display: block;
}

.passed-badge {
    background: #22c55e;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* ==================== ANIMATED LICENSING TIMELINE STYLES ==================== */

/* Full-width section container */
.licensing-path-timeline-section {
    width: 100%;
    margin: 60px 0;
    overflow-x: hidden;
}

/* Hero Section */
.timeline-hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 20px;
}

.timeline-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: timelineFloat 20s linear infinite;
}

@keyframes timelineFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.timeline-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-hero h1,
.timeline-hero h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    color: #d4af37;
}

.timeline-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.timeline-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
}

.timeline-stat-item {
    text-align: center;
}

.timeline-stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.timeline-stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Container */
.timeline-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

/* Vertical Progress Line */
.timeline-progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #dee2e6;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.timeline-progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #d4af37 0%, #b8960f 100%);
    transition: height 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Timeline Step */
.timeline-animated-step {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-animated-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-animated-step:nth-child(odd) .timeline-step-content {
    flex-direction: row;
}

.timeline-animated-step:nth-child(even) .timeline-step-content {
    flex-direction: row-reverse;
}

.timeline-step-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* Step Number Circle */
.timeline-step-number {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.timeline-number-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: #1e3a8a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 6px solid #dee2e6;
    transition: all 0.5s ease;
    position: relative;
}

.timeline-animated-step.visible .timeline-number-circle {
    border-color: #d4af37;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.timeline-number-circle::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8960f);
    opacity: 0;
    animation: timelinePulse 2s infinite;
}

.timeline-animated-step.visible .timeline-number-circle::before {
    opacity: 0.3;
}

@keyframes timelinePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0; }
}

/* Step Card */
.timeline-step-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.timeline-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4af37 0%, #b8960f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.timeline-animated-step.visible .timeline-step-card::before {
    transform: scaleX(1);
}

.timeline-animated-step.visible .timeline-step-card {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.timeline-step-header {
    margin-bottom: 20px;
}

.timeline-step-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.timeline-step-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 16px;
}

.timeline-step-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.timeline-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4af37, #b8960f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.timeline-detail-content {
    flex: 1;
}

.timeline-detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 4px;
}

.timeline-detail-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.timeline-detail-value.timeline-included {
    color: #28a745;
}

/* Course Topics */
.timeline-course-topics {
    margin-top: 20px;
}

.timeline-topics-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.timeline-topic-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #495057;
}

.timeline-topic-item::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #d4edda;
    color: #155724;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* CTA Button */
.timeline-step-cta {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.timeline-step-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.4);
    color: white;
    text-decoration: none;
}

.timeline-step-cta::after {
    content: '\2192';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.timeline-step-cta:hover::after {
    transform: translateX(4px);
}

/* ==================== A LA CARTE COURSES SECTION STYLES ==================== */

/* Section Container */
.alacarte-section {
    margin-top: 40px;
    padding-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #fff3e6;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

/* Compact Card */
.compact-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.compact-card:hover {
    border-color: #d4af37;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.compact-header {
    background: white;
    padding: 24px 28px;
    border-bottom: 2px solid #e9ecef;
}

.compact-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #1e3a8a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.compact-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.compact-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #6c757d;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.compact-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.compact-description {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

/* Learning Style Selector */
.learning-style-selector {
    margin: 15px 0;
}

.learning-style-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.learning-style-select {
    max-width: 250px;
    width: 100%;
    padding: 5px 14px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
}

.learning-style-select option {
    color: #333;
    background-color: #fff;
    padding: 8px 12px;
}

.learning-style-select:focus {
    outline: none;
    border-color: var(--real-estate-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.learning-style-select:hover {
    border-color: #9ca3af;
}

.compact-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.compact-price {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1;
}

.compact-price-extras {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    vertical-align: middle;
}
.compact-price-extras:empty {
    display: none;
}
.compact-price-extras .price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
}
.compact-price-extras .price-save {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.price-suffix {
    font-size: 14px;
    color: #6c757d;
    font-weight: 400;
}

.compact-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn-primary-alacarte,
.btn-secondary-alacarte {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.btn-primary-alacarte {
    background: var(--real-estate-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-primary-alacarte:hover {
    background: var(--real-estate-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-alacarte {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary-alacarte:hover {
    background: #1e3a8a;
    color: white;
    text-decoration: none;
}

/* Info Banner */
.info-banner-alacarte {
    background: #e7f3ff;
    border-left: 4px solid #3b82f6;
    padding: 20px 24px;
    border-radius: 4px;
    display: flex;
    align-items: start;
    gap: 16px;
    margin-top: 40px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    color: #1e3a8a;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-content p {
    font-size: 14px;
    color: #1e3a8a;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 600;
}

.info-content a:hover {
    color: #1e3a8a;
}

/* ==================== SCROLL FADE-IN ANIMATIONS ==================== */

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== WHAT'S INCLUDED SIDEBAR ==================== */

.included-features-sidebar {
    background: white;
    padding: 20px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.included-features-sidebar h5 {
    color: var(--real-estate-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--real-estate-accent);
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 6px 4px;
    margin-bottom: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: help;
}

.feature-item:hover {
    background: #f3f4f6;
    transform: translateX(-3px);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

.feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    border-radius: 6px;
    margin-right: 12px;
}

.feature-icon i {
    color: white;
    font-size: 0.95rem;
}

.feature-text {
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

/* Sidebar Divider and CTA */
.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb 20%, #e5e7eb 80%, transparent);
    margin: 15px 0 12px 0;
}

.sidebar-cta-btn {
    width: 100%;
    background: var(--real-estate-accent);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    outline: none;
}

.sidebar-cta-btn:hover,
.sidebar-cta-btn:focus,
.sidebar-cta-btn:active {
    background: #e6c348;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    outline: none;
    border: none;
}

.sidebar-cta-btn i {
    font-size: 1.1rem;
}

/* Full-width tabs section styling */
.full-width-tabs-section {
    margin-top: 40px;
}

.about-course-section {
    margin-bottom: 30px;
}

.about-course-section h3 {
    color: var(--real-estate-primary);
    margin-bottom: 15px;
}

.about-course-section p,
.about-course-section .delivery-method-description {
    color: #6b7280;
    line-height: 1.8;
}

.about-course-section .delivery-method-description ul,
.about-course-section .delivery-method-description ol {
    padding-left: 1.5rem;
    margin: 0 0 1rem;
}

.about-course-section .delivery-method-description ul {
    list-style: disc outside;
}

.about-course-section .delivery-method-description ol {
    list-style: decimal outside;
}

.about-course-section .delivery-method-description li {
    margin-bottom: 0.35rem;
    color: #6b7280;
    line-height: 1.8;
}

.about-course-section .delivery-method-description a {
    color: var(--real-estate-primary);
    text-decoration: underline;
}

.delivery-method-section {
    margin-bottom: 30px;
}

.delivery-method-section h3 {
    color: var(--real-estate-primary);
    margin-bottom: 15px;
}

/* Schedule Button - Secondary CTA */
.schedule-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #dee2e6;
    color: #495057;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.schedule-btn i {
    font-size: 16px;
}

.schedule-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #212529;
}

.schedule-btn:active {
    transform: scale(0.98);
}

/* Schedule Enroll Button (combined button for In-Person/Online Live) */
.add-to-cart-btn.schedule-enroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn.schedule-enroll-btn i {
    font-size: 14px;
}

/* ==================== SCHEDULE MODAL STYLES ==================== */

/* Schedule Modal Header */
.schedule-modal-header {
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    color: white;
    padding: 24px 32px;
    border-bottom: none;
}

.schedule-modal-header .modal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.schedule-modal-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.schedule-modal-header .close {
    color: white;
    opacity: 1;
    text-shadow: none;
}

.schedule-modal-header .close:hover {
    color: var(--real-estate-accent);
}

/* Course Schedule Tabs */
.course-schedule-tabs {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0;
}

.course-schedule-tabs .nav-link {
    padding: 18px 24px;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    text-align: left;
    transition: all 0.2s;
}

.course-schedule-tabs .nav-link:hover {
    background: #e9ecef;
    color: #495057;
}

.course-schedule-tabs .nav-link.active {
    background: white;
    color: var(--real-estate-primary);
    border-bottom-color: var(--real-estate-primary);
}

.schedule-tab-title {
    font-size: 15px;
}

.schedule-tab-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #6c757d;
    margin-top: 2px;
}

.course-schedule-tabs .nav-link.active .schedule-tab-subtitle {
    color: var(--real-estate-primary);
    opacity: 0.8;
}

/* Schedule Info Banner */
.schedule-info-banner {
    background: #e7f3ff;
    border-left: 4px solid var(--real-estate-primary);
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 14px;
    color: #004085;
}

.schedule-info-banner strong {
    font-weight: 600;
}

/* Schedule Filters (Modal) */
#scheduleModal .schedule-filters,
#courseScheduleModal .schedule-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: flex-end;
}

#scheduleModal .schedule-filters .filter-group,
#courseScheduleModal .schedule-filters .filter-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

#scheduleModal .schedule-filters .filter-group label,
#courseScheduleModal .schedule-filters .filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin: 0;
    white-space: nowrap;
}

#scheduleModal .schedule-filters .form-select,
#scheduleModal .schedule-filters .form-control,
#courseScheduleModal .schedule-filters .form-select,
#courseScheduleModal .schedule-filters .form-control {
    min-width: 170px;
    font-size: 14px;
    padding: 10px 14px;
    height: auto;
    line-height: 1.4;
    border-radius: 6px;
}

#scheduleModal .schedule-filters .btn-outline-secondary,
#courseScheduleModal .schedule-filters .btn-outline-secondary {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    white-space: nowrap;
    align-self: flex-end;
}

#scheduleModal .schedule-filters .view-toggle-group,
#courseScheduleModal .schedule-filters .view-toggle-group {
    margin-left: auto;
    align-self: flex-end;
}

/* Session Cards (Grid View) */
.session-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 16px;
    transition: all 0.2s;
    cursor: pointer;
}

.session-card:hover {
    border-color: var(--real-estate-primary);
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.08);
    transform: translateY(-1px);
}

.session-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border: none;
}

.session-type {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.location-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    background: var(--real-estate-primary);
    color: white;
}

.type-day {
    background: #fff3cd;
    color: #856404;
}

.type-evening {
    background: #d1ecf1;
    color: #0c5460;
}

.type-weekend {
    background: #d4edda;
    color: #155724;
}

.session-code {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

.card-dates {
    margin-bottom: 10px;
}

.date-range {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 2px;
    line-height: 1.3;
}

.duration-text {
    font-size: 12px;
    color: #6c757d;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #495057;
}

.detail-icon {
    width: 16px;
    font-size: 14px;
}

/* Schedule List View */
.schedule-list {
    display: block;
}

.schedule-list.d-none {
    display: none !important;
}

.schedule-grid.d-none {
    display: none !important;
}

.schedule-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.schedule-table thead {
    background: #f8f9fa;
}

.schedule-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
}

.schedule-table td {
    padding: 16px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #495057;
}

.schedule-table tbody tr {
    transition: background 0.2s;
}

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

/* Empty State */
.schedule-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.schedule-empty-state .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.schedule-empty-state h3 {
    font-size: 18px;
    color: #495057;
    margin-bottom: 8px;
}

.schedule-empty-state p {
    font-size: 14px;
}

/* Loading State */
.schedule-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.schedule-loading i {
    font-size: 24px;
    margin-right: 8px;
}

/* Responsive Styles for Schedule Modal */
@media (max-width: 768px) {
    .schedule-modal-header {
        padding: 20px;
    }

    #scheduleModal .schedule-filters,
    #courseScheduleModal .schedule-filters {
        flex-direction: column;
        align-items: stretch;
    }

    #scheduleModal .schedule-filters .filter-group,
    #courseScheduleModal .schedule-filters .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    #scheduleModal .schedule-filters .form-select,
    #scheduleModal .schedule-filters .form-control,
    #courseScheduleModal .schedule-filters .form-select,
    #courseScheduleModal .schedule-filters .form-control {
        width: 100%;
    }

    #scheduleModal .schedule-filters .view-toggle-group,
    #courseScheduleModal .schedule-filters .view-toggle-group {
        display: none;
    }

    #scheduleModal .schedule-filters .btn-outline-secondary,
    #courseScheduleModal .schedule-filters .btn-outline-secondary {
        width: 100%;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .course-schedule-tabs .nav-link {
        padding: 14px 16px;
        font-size: 14px;
    }

    .schedule-table {
        font-size: 13px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px;
    }
}

/* Schedule Selection Styles */
.schedule-selectable-row {
    cursor: pointer;
    transition: all 0.2s ease;
}

.schedule-selectable-row:hover {
    background-color: #f0f7ff !important;
}

.schedule-selectable-row.schedule-row-selected {
    background-color: #e3f2fd !important;
    border-left: 4px solid #1976d2;
}

.schedule-selectable-row.schedule-row-selected td {
    font-weight: 500;
}

.select-cell {
    text-align: center;
    vertical-align: middle;
}

.schedule-radio {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1976d2;
}

/* Grid view selection styles */
.session-card {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.session-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.session-card.session-card-selected {
    border: 2px solid #1976d2;
    background-color: #e3f2fd;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.25);
}

/* Action button inside grid card */
.card-action-cell {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.card-action-cell:empty {
    display: none;
}

.card-action-cell .schedule-row-action-btn {
    width: 100%;
}

.card-action-cell .schedule-row-action-hint {
    display: block;
    text-align: center;
}

.card-select-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
}

.schedule-radio-grid {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1976d2;
}

/* Legacy action bar - hidden */
.schedule-action-bar,
.schedule-sticky-action-bar {
    display: none !important;
}

/* Action column header - minimal width, no visible label */
.action-col-header {
    width: 1%;
    white-space: nowrap;
}

/* Action cell in each row */
.row-action-cell {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
    padding: 8px 12px !important;
    width: 1%;
}

/* Inline action button within the selected row */
.schedule-row-action-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s ease;
    animation: fadeSlideIn 0.25s ease;
}

.schedule-row-action-btn:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.schedule-row-action-btn i {
    margin-left: 6px;
}

/* Hint text for incomplete state */
.schedule-row-action-hint {
    font-size: 12px;
    color: #999;
    font-style: italic;
    white-space: nowrap;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Filter hint message */
.schedule-filter-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: #eef6ff;
    border-left: 3px solid #1976d2;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: #1a5276;
    line-height: 1.5;
}

.schedule-filter-hint i {
    color: #1976d2;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .schedule-filter-hint {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Load More button */
.schedule-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.schedule-load-more .load-more-info {
    font-size: 13px;
    color: #6c757d;
}

.schedule-load-more .load-more-btn {
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.schedule-load-more .load-more-btn i {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .schedule-load-more {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
    }

    .schedule-load-more .load-more-btn {
        width: 100%;
    }
}

/* Tab check icon for selected courses */
.tab-check-icon {
    font-size: 14px;
    margin-left: 5px;
}

/* Modal body padding */
#scheduleModal .modal-body,
#courseScheduleModal .modal-body {
    padding-bottom: 20px;
}

/* Responsive adjustments for inline action button */
@media (max-width: 768px) {
    .row-action-cell {
        padding: 6px 8px !important;
    }

    .schedule-row-action-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .schedule-row-action-hint {
        font-size: 11px;
    }
}

/* Learning Style Selector */
.learning-style-selector {
    margin: 15px 0;
}

.learning-style-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--real-estate-primary);
}



/* Override Fortune Academy default colors */
.button-primary,
.btn-primary {
    background: var(--real-estate-primary) !important;
    border-color: var(--real-estate-primary) !important;
}

.button-primary:hover,
.btn-primary:hover {
    background: var(--real-estate-secondary) !important;
    border-color: var(--real-estate-secondary) !important;
}

.inner-banner-wrap .inner-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Package meta styling */
.package-meta {
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    padding: 14px 18px !important;
}

.package-meta ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 26px;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.package-meta ul li {
    color: white;
    font-size: 13px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    padding: 0;
    white-space: nowrap;
}

/* Kill the old absolute-positioned | separator */
.package-meta ul li::before {
    display: none !important;
}

.package-meta ul li i {
    color: var(--real-estate-accent);
    margin-right: 7px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .package-meta ul {
        gap: 8px 20px;
    }
    .package-meta ul li {
        font-size: 12px;
        white-space: normal;
    }
}

/* Breadcrumb */
.product-breadcrumb {
    margin: 20px 0;
}

.product-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.product-breadcrumb .breadcrumb-item a {
    color: var(--real-estate-secondary);
}

.product-breadcrumb .breadcrumb-item.active {
    color: #6b7280;
}

/* Instructors Section */
.instructors-section {
    margin-top: 60px;
    padding: 40px 0;
    background: #f8fafc;
    border-radius: 16px;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 60px;
    padding: 40px 0;
}

/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 1024px) {
    .timeline-progress-line {
        left: 60px;
    }

    .timeline-step-content {
        flex-direction: column !important;
        gap: 30px;
    }

    .timeline-animated-step:nth-child(even) .timeline-step-content {
        flex-direction: column !important;
    }

    .timeline-number-circle {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .timeline-hero h1,
    .timeline-hero h2 {
        font-size: 32px;
    }

    .timeline-stats {
        flex-direction: column;
        gap: 24px;
    }

    .timeline-progress-line {
        display: none;
    }

    .timeline-step-card {
        padding: 20px;
    }

    .timeline-step-title {
        font-size: 22px;
    }

    .timeline-step-details {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .timeline-topics-grid {
        grid-template-columns: 1fr;
    }

    .timeline-number-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .schedule-filters {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge-row {
        flex-direction: column;
        gap: 15px;
    }

    .tab-container .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .alacarte-section {
        margin-top: 60px;
        padding-top: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .compact-header {
        padding: 20px;
    }

    .compact-body {
        padding: 20px;
    }

    .compact-title {
        font-size: 20px;
    }

    .compact-meta {
        flex-direction: column;
        gap: 8px;
    }

    .compact-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .compact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-alacarte,
    .btn-secondary-alacarte {
        width: 100%;
    }

    .compact-price {
        font-size: 32px;
    }

    .info-banner-alacarte {
        padding: 16px;
        flex-direction: column;
    }

    .included-features-sidebar {
        margin-bottom: 30px;
    }

    .feature-item {
        padding: 10px 8px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        margin-right: 12px;
    }

    .feature-icon i {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

/* Two-column layout with equal height columns */
@media (min-width: 992px) {
    .single-tour-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .sidebar {
        display: flex;
        flex-direction: column;
    }

    .sidebar .widget-bg.information-content,
    .sidebar .widget-bg.included-features-sidebar {
        display: flex;
        flex-direction: column;
    }
}

/* ==================== TIMELINE FINAL STEP & COMPLETION BANNER ==================== */

.timeline-step-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Special styling for final step */
.timeline-final-step .timeline-step-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.timeline-final-step .timeline-step-title,
.timeline-final-step .timeline-detail-value,
.timeline-final-step .timeline-step-subtitle,
.timeline-final-step .timeline-course-topics p,
.timeline-final-step .timeline-step-description {
    color: white;
}

.timeline-final-step .timeline-detail-label {
    color: rgba(255,255,255,0.8);
}

.timeline-final-step .timeline-step-details {
    background: rgba(255,255,255,0.1);
}

.timeline-final-step .timeline-detail-icon {
    background: rgba(255,255,255,0.2);
}

.timeline-final-step .timeline-step-cta {
    background: white;
    color: #1e3a8a;
}

.timeline-final-step .timeline-step-cta:hover {
    color: #1e3a8a;
}

.timeline-final-step .timeline-topics-title {
    color: white;
}

.timeline-final-step .timeline-topic-item {
    color: rgba(255,255,255,0.95);
}

/* Completion Banner */
.timeline-completion-banner {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8960f 100%);
    color: white;
    margin: 80px 20px 0;
    border-radius: 16px;
}

.timeline-completion-banner-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.timeline-completion-banner-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-completion-banner h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.timeline-completion-banner p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.timeline-completion-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: white;
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.timeline-completion-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    color: #d4af37;
    text-decoration: none;
}

@media (max-width: 768px) {
    .timeline-completion-banner h2 {
        font-size: 32px;
    }
}

/* ==================== END TIMELINE FINAL STEP & COMPLETION BANNER ==================== */

/* ==================== WHY CHOOSE US ==================== */

.why-choose-desc {
    color: #6b7280;
    margin-bottom: 4px;
    line-height: 1.5;
}

.why-choose-desc.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== INSTRUCTOR GRID ==================== */

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.instructor-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.instructor-card.hidden {
    display: none;
}

.instructor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

.instructor-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.instructor-card h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--real-estate-primary);
}

.instructor-credentials {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.experience-badge {
    display: inline-block;
    background: var(--real-estate-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.instructor-bio.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specialization-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.specialization-tag {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #4b5563;
}

/* ==================== TESTIMONIAL GRID ==================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card.hidden {
    display: none;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--real-estate-accent);
    position: absolute;
    top: 15px;
    left: 20px;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stars {
    color: var(--real-estate-accent);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    border-top: none;
    padding-top: 0;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--real-estate-primary) 0%, var(--real-estate-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    color: var(--real-estate-primary);
    margin-bottom: 3px;
}

.author-info span {
    color: #9ca3af;
    font-size: 0.85rem;
    display: block;
}

.passed-badge {
    background: #22c55e;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* ==================== SHOW MORE BUTTON ==================== */

.show-more-btn {
    text-align: center;
    margin-top: 25px;
}

.show-more-btn button {
    background: var(--real-estate-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.show-more-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: var(--real-estate-secondary);
}

/* Read More toggle link */
.read-more-link {
    display: inline-block;
    color: var(--real-estate-primary, #1e3a8a);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 8px;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.read-more-link:hover {
    color: var(--real-estate-secondary, #3b82f6);
    text-decoration: underline;
}

/* ==================== END INSTRUCTOR / TESTIMONIAL ==================== */
