/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text h1 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 12px;
    color: var(--secondary-color);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

    .back-btn:hover {
        color: var(--secondary-color);
        gap: 12px;
    }

/* Workshop Hero */
.workshop-hero {
    background: linear-gradient(135deg, rgba(102, 32, 70, 0.9), rgba(126, 114, 90, 0.9)), url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 60px;
    text-align: center;
}

.workshop-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.workshop-icon-large {
    width: 150px;
    height: 150px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    margin-bottom: 10px;
}

.workshop-title {
    font-size: 42px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.workshop-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

    .meta-item i {
        color: var(--accent-color);
    }

.workshop-tagline {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Workshop Content */
.workshop-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 20px;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .workshop-content {
        grid-template-columns: 1fr;
    }
}

/* Workshop Details */
.workshop-details {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.section-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        right: 0;
        width: 80px;
        height: 2px;
        background-color: var(--secondary-color);
    }

.workshop-description {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

/* Objectives */
.objectives-section {
    margin: 40px 0;
}

.objectives-list {
    list-style: none;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

    .objective-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.objective-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.objective-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.objective-content p {
    font-size: 14px;
    color: var(--text-color);
}

/* Program Schedule */
.schedule-section {
    margin: 40px 0;
}

.schedule-timeline {
    position: relative;
    padding-right: 30px;
}

    .schedule-timeline::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: var(--accent-color);
    }

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

    .timeline-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        right: -36px;
        top: 5px;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: var(--primary-color);
        border: 3px solid var(--white);
        box-shadow: 0 0 0 3px var(--accent-color);
    }

.timeline-time {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-title {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.timeline-speaker {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.speaker-avatar {
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
}

/* Speakers Section */
.speakers-section {
    margin: 40px 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.speaker-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

    .speaker-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.speaker-avatar-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 20px;
    font-weight: 700;
}

.speaker-name {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.speaker-title {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.speaker-bio {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.speaker-exp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color);
}

/* Registration Sidebar */
.registration-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.registration-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 35px 30px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
}

.workshop-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.price-label {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.price-note {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 10px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 30px;
}

.registration-timer {
    background-color: var(--light-color);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
}

.timer-title {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 12px;
    color: var(--text-color);
}

/* Registration Form */
.registration-form {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 35px 30px;
}

.form-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(102, 32, 70, 0.1);
    }


/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .modal.active {
        display: flex;
    }

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

    .modal-close:hover {
        color: var(--primary-color);
    }

.modal-body {
    padding: 25px 30px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

    .payment-option:hover {
        border-color: var(--primary-color);
    }

    .payment-option.selected {
        border-color: var(--primary-color);
        background-color: rgba(102, 32, 70, 0.05);
    }

.payment-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    margin-left: 15px;
}

.payment-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.payment-info p {
    font-size: 14px;
    color: var(--text-color);
}

/* ID Card Preview */
.id-card-preview {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    border: 2px dashed var(--primary-color);
    display: none;
}

    .id-card-preview.active {
        display: block;
    }

.id-card-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.id-card {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    border-radius: var(--radius);
    padding: 25px;
    border: 2px solid var(--primary-color);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.id-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.id-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.id-logo-img {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.id-logo-text h4 {
    font-size: 14px;
    color: var(--primary-color);
}

.id-logo-text p {
    font-size: 10px;
    color: var(--secondary-color);
}

.id-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.id-card-body {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.id-photo {
    width: 100px;
    height: 120px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 40px;
    flex-shrink: 0;
}

.id-info {
    text-align: right;
    flex-grow: 1;
}

.id-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.id-details {
    list-style: none;
}

    .id-details li {
        margin-bottom: 8px;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
    }

.id-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.id-value {
    color: var(--text-color);
    font-weight: 600;
}

.id-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.id-qr {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
}

.id-validity {
    font-size: 12px;
    color: var(--secondary-color);
}

.id-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--white);
            padding-right: 5px;
        }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .workshop-title {
        font-size: 32px;
    }

    .workshop-icon-large {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }

    .workshop-meta {
        flex-direction: column;
        gap: 15px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timer-value {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .id-card-body {
        flex-direction: column;
        align-items: center;
    }

    .id-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .workshop-hero {
        padding: 30px 0;
    }

    .workshop-details {
        padding: 15px;
    }

    .registration-card,
    .registration-form {
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

