/* ===========================
   Pages Specific Styles
=========================== */

/* Privacy Policy Styles */
.toc-section {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toc-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.toc-list li {
    margin: 0;
}

.toc-list a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.toc-list a:hover {
    background: var(--light-bg);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.policy-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 0.5rem;
}

.policy-section h2 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.last-updated {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0ea5e9;
}

.policy-content h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-content h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.policy-content ul, .policy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #f59e0b;
}

.highlight-box h4 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 1rem;
}

.highlight-box i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #ef4444;
}

.warning-box h3 {
    color: #dc2626;
    margin-top: 0;
    margin-bottom: 1rem;
}

.warning-box i {
    color: #ef4444;
    margin-right: 0.5rem;
}

.info-box {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #3b82f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.policy-update {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    font-style: italic;
    color: #64748b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box,
    .warning-box,
    .info-box {
        padding: 1rem;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.online-header {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.header-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.9;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.header-badges .badge.featured-badge {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: headerPulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes headerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Training Details Card */
.training-details {
    padding: 80px 0;
    background: var(--gray-50);
}

.details-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.details-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.details-card .card-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.detail-item {
    padding: 2rem;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.detail-item:hover {
    background: var(--gray-50);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.detail-content p {
    color: var(--gray-600);
    margin: 0;
}

.detail-content .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.detail-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Training Structure */
.training-structure {
    padding: var(--section-padding);
    background: var(--white);
}

.structure-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--gray-100);
}

.accordion-header.active {
    background: var(--primary-color);
    color: var(--white);
}

.phase-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phase-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.accordion-header.active .phase-number {
    background: var(--white);
    color: var(--primary-color);
}

.phase-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.phase-duration {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: var(--transition);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.content-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.content-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.content-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.content-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.section-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.section-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.section-card ul {
    list-style: none;
    padding: 0;
}

.section-card li {
    padding: 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.section-card li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
}

.support-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.support-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.support-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Accommodation Info */
.accommodation-info {
    padding: 80px 0;
    background: var(--white);
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.info-card .card-header {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    padding: 1.5rem 2rem;
}

.info-card .card-header h3 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
}

.accommodation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.accommodation-details h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-list .detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
}

.detail-list .detail-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
}

.detail-list .detail-item span {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.accommodation-note {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.accommodation-note h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.accommodation-note p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Learning Outcomes */
.learning-outcomes {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.outcome-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.outcome-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.outcome-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.outcome-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Course Highlights */
.course-highlights {
    padding: 80px 0;
    background: var(--gray-50);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    counter-reset: highlight-counter;
}

.highlight-item {
    counter-increment: highlight-counter;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-number::before {
    content: counter(highlight-counter, decimal-leading-zero);
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--dark-color);
}

.highlight-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Training Highlights */
.training-highlights {
    padding: 80px 0;
    background: var(--white);
}

.highlights-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.highlights-card .card-header {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.highlights-card .card-header h3 {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
}

.highlights-grid .highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.highlights-grid .highlight-item:last-child {
    border-bottom: none;
}

.highlights-grid .highlight-item:hover {
    background: var(--gray-50);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.highlight-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Featured PCB Test Point Highlight */
.highlight-item.featured-highlight {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #fef3c7 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    margin: 10px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.highlight-item.featured-highlight:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 50%, #fbbf24 10%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.25);
}

.highlight-icon.featured {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    animation: featuredPulse 2s infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

@keyframes featuredPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.featured-highlight .highlight-content h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-highlight .highlight-content p {
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.6;
}

/* Course Features */
.course-features {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-tier {
    margin-bottom: 3rem;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.tier-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tier-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.bonus-tier .tier-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
}

.bonus-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-card li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* PCB Test Point Highlight Card */
.feature-card.highlight-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #fef3c7 100%);
    border: 2px solid var(--secondary-color);
    position: relative;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
    overflow: visible;
}

.feature-card.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.25);
}

.highlight-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.feature-card.highlight-card .card-icon.highlighted {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.highlight-desc {
    background: rgba(245, 158, 11, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    font-weight: 500;
    color: var(--dark-color) !important;
}

.enhanced-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.enhanced-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding-left: 12px;
    transition: var(--transition);
}

.enhanced-list li:hover {
    background: rgba(245, 158, 11, 0.05);
    transform: translateX(5px);
}

.enhanced-list li::before {
    display: none;
}

.enhanced-list li i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 8px;
}

.highlight-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.highlight-tag {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-tag:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-color), #dc2626);
}

/* Course Curriculum */
.course-curriculum {
    padding: var(--section-padding);
    background: var(--white);
}

.curriculum-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: var(--gray-200);
    color: var(--gray-700);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background: var(--gray-300);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.curriculum-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.curriculum-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.curriculum-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.curriculum-content {
    flex: 1;
}

.curriculum-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.curriculum-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.video-count {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* App Features */
.app-features {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-info h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.app-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.app-features-list {
    margin-bottom: 2rem;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.app-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.app-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.app-feature p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.app-mockup {
    text-align: center;
}

.app-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Support Features */
.support-features {
    padding: var(--section-padding);
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.support-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.support-card li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.support-card li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.pricing-header {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.price-period {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.pricing-note {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.features-checklist {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.checklist-item span {
    color: var(--gray-700);
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
}

.guarantee {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-style: italic;
}

/* Why Choose Online */
.why-online {
    padding: var(--section-padding);
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Enhanced CTA Section */
.price-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(5px);
}

.price-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.urgency-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--border-radius);
    color: var(--accent-color);
    text-align: center;
    font-weight: 500;
}

.urgency-note i {
    margin-right: 8px;
}

.offer-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(5px);
}

.offer-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.offer-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.savings {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.9;
}

.indicator i {
    font-size: 1.2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Success/Error Messages */
.success-message,
.error-message {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    transition: var(--transition);
    max-width: 400px;
}

.success-message {
    border-left: 4px solid #10b981;
}

.error-message {
    border-left: 4px solid var(--accent-color);
}

.success-message.show,
.error-message.show {
    transform: translateX(0);
}

.success-message i {
    color: #10b981;
    font-size: 1.2rem;
}

.error-message i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.success-message button,
.error-message button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    margin-left: auto;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.8);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--dark-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-500);
    line-height: 1;
}

.modal-content {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: right;
}

/* Form Error States */
input.error,
textarea.error,
select.error {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        border-right: none;
    }
    
    .accommodation-content {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .app-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .offer-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .phase-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .curriculum-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .discounted-price {
        font-size: 2rem;
    }
}
