/* ===========================================
   Webinar Single Page Styles - Modern Design
   =========================================== */

.webinar-single-container {
    direction: rtl;
    font-family: 'IRANSans', Arial, sans-serif;
}

/* Hide breadcrumb for webinar single pages */
.single-webinar .breadcrumb-area,
.single-webinar .breadcrumb-wrap,
.single-webinar .breadcrumb {
    display: none !important;
}

/* Ensure Font Awesome icons display properly */
.webinar-single-container i,
.webinar-single-container .fas,
.webinar-single-container .fab {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Specific Font Awesome Brand Icons Fix */
.webinar-single-container .fab {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* Hero Section */
.webinar-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background: #00194c;
    margin-top: 0;
}

/* Hero background is now handled by the main hero class */

.webinar-hero-content {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-badge,
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.status-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.status-badge.live {
    background: rgba(220, 53, 69, 0.4);
    border-color: rgba(220, 53, 69, 0.6);
    color: #ffffff;
    animation: pulse-badge 2s infinite;
}

.status-badge.upcoming {
    background: rgba(40, 167, 69, 0.4);
    border-color: rgba(40, 167, 69, 0.6);
    color: #ffffff;
}

.status-badge.ended {
    background: rgba(108, 117, 125, 0.4);
    border-color: rgba(108, 117, 125, 0.6);
    color: #ffffff;
}

@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.webinar-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.webinar-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
    color: #e8f4fd;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-items {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #e8f4fd;
}

.meta-item i {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #ffffff;
}

.hero-action {
    flex-shrink: 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero.btn-live {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.btn-hero.btn-register {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Content Section */
.webinar-content-section {
    padding: 80px 0 20px 0;
    background: #f8f9fa;
}

.webinar-main-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Webinar Featured Image */
.webinar-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.webinar-featured-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.webinar-main-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.webinar-main-image:hover {
    transform: scale(1.02);
}

.webinar-placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.webinar-placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.placeholder-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.9;
    display: block;
}

.placeholder-content span {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.webinar-description {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.webinar-description h2 {
    color: #00194c;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.webinar-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.webinar-description p {
    margin-bottom: 15px;
    color: #555;
}

/* Sidebar */
.webinar-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

/* Quick Info Card */
.quick-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px !important;
    transition: all 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.card-header i {
    font-size: 1.3rem;
    color: #667eea;
}

.card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.06), 
                0 2px 4px rgba(0, 0, 0, 0.04),
                0 1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12), 
                0 4px 8px rgba(0, 0, 0, 0.06),
                0 2px 4px rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    border-color: rgba(102, 126, 234, 0.15);
}

.info-item.presenter {
    background: linear-gradient(135deg, #fef7ff 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.06), 
                0 2px 4px rgba(0, 0, 0, 0.04),
                0 1px 2px rgba(0, 0, 0, 0.02);
    border-color: rgba(139, 92, 246, 0.08);
}

.info-item.presenter:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.12), 
                0 4px 8px rgba(0, 0, 0, 0.06),
                0 2px 4px rgba(0, 0, 0, 0.04);
    border-color: rgba(139, 92, 246, 0.15);
}

.info-item.price {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.06), 
                0 2px 4px rgba(0, 0, 0, 0.04),
                0 1px 2px rgba(0, 0, 0, 0.02);
    border-color: rgba(34, 197, 94, 0.08);
}

.info-item.price:hover {
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.12), 
                0 4px 8px rgba(0, 0, 0, 0.06),
                0 2px 4px rgba(0, 0, 0, 0.04);
    border-color: rgba(34, 197, 94, 0.15);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.info-item:hover .info-icon::before {
    left: 100%;
}

.info-icon.date {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.info-icon.time {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.info-icon.duration {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.info-icon.presenter {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.info-icon.capacity {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.info-icon.price {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.info-content {
    flex: 1;
}

.info-content .label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content .value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.info-content .value.free {
    color: #22c55e;
}

.info-content .value.paid {
    color: #667eea;
}

/* Status Card */
.status-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px !important;
    text-align: center;
    transition: all 0.3s ease;
}

.status-card.status-upcoming {
    border-top: 4px solid #28a745;
}

.status-card.status-live {
    border-top: 4px solid #dc3545;
    animation: pulse-card 2s infinite;
}

.status-card.status-ended {
    border-top: 4px solid #6c757d;
}

@keyframes pulse-card {
    0% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
    50% { box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2); }
    100% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.status-header i {
    font-size: 1.2rem;
}

.status-upcoming .status-header {
    color: #28a745;
}

.status-live .status-header {
    color: #dc3545;
}

.status-ended .status-header {
    color: #6c757d;
}

.pulse {
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
    justify-content: center;
}

.btn-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-action:hover::before {
    left: 100%;
}

.btn-action.btn-live {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.btn-action.btn-register {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Share Card */
.share-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px !important;
    transition: all 0.3s ease;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    font-size: 16px;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.6s;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.share-btn.copy {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-color: #e6683c;
}

/* Instructor Card */
.instructor-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.08), 
                0 2px 6px rgba(0, 0, 0, 0.04),
                0 1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.06);
    margin-bottom: 35px !important;
    transition: all 0.3s ease;
}

.instructor-card .card-header {
    position: relative;
}



.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12), 
                0 4px 8px rgba(0, 0, 0, 0.06),
                0 2px 4px rgba(0, 0, 0, 0.04);
    border-color: rgba(139, 92, 246, 0.12);
}

.instructor-content {
    text-align: center;
}

.instructor-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.instructor-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.instructor-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.instructor-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    border: 3px solid white;
}

.instructor-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse-badge 2s infinite;
}

.instructor-info {
    text-align: center;
}

.instructor-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instructor-expertise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.instructor-expertise i {
    color: #ffd700;
}

.instructor-experience {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    display: inline-flex;
}

.instructor-profile-btn {
    text-align: center;
    margin-bottom: 15px;
}

.btn-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-profile:hover::before {
    left: 100%;
}

.btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

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

.instructor-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 3px solid #667eea;
    font-style: italic;
}

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    color: white;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.social-link.linkedin:hover {
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.social-link.website {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-link.website:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Related Webinars Main Section - Full Width */
.related-webinars-main-section {
    padding: 20px 0;
    background: #f8f9fa;
    margin-top: 0;
    padding-bottom: 80px;
}

/* Related Webinars Section */
.related-webinars-section {
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-header h3 i {
    color: #667eea;
    font-size: 1.8rem;
}

.section-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}



/* Featured Webinars Slider Styles */
.featured-webinars-slider {
    padding: 20px 0 60px 0;
    margin: 0 -10px;
}

.featured-webinars-slider .swiper-slide {
    height: auto;
    padding: 0 10px;
}

.featured-webinars-slider .swiper-button-next,
.featured-webinars-slider .swiper-button-prev {
    color: #2563eb;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.featured-webinars-slider .swiper-button-next:hover,
.featured-webinars-slider .swiper-button-prev:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.featured-webinars-slider .swiper-button-next::after,
.featured-webinars-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.featured-webinars-slider .swiper-pagination {
    bottom: 20px;
    position: relative;
    margin-top: 30px;
}

.featured-webinars-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(37, 99, 235, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.featured-webinars-slider .swiper-pagination-bullet-active {
    background: #2563eb;
    transform: scale(1.2);
}

/* RTL support for slider */
.featured-webinars-slider .swiper-button-prev {
    right: 10px;
    left: auto;
}

.featured-webinars-slider .swiper-button-next {
    left: 10px;
    right: auto;
}

/* Utility Classes */
.copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

.pulse-intense {
    animation: pulse-intense 0.6s ease-in-out;
}

@keyframes pulse-intense {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.live-dot {
    color: #dc3545;
    margin-right: 5px;
}

.clicked {
    animation: ripple 0.3s ease-out;
}

.ripple {
    position: relative;
    overflow: hidden;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .webinar-content-section {
        padding: 60px 0;
    }

    .webinar-main-content {
        padding: 30px;
    }

    /* Webinar Featured Image - Large Tablet */
    .webinar-featured-image {
        margin-bottom: 35px;
        border-radius: 16px;
    }

    .webinar-main-image {
        min-height: 280px;
        max-height: 450px;
    }

    .webinar-placeholder-image {
        height: 280px;
    }

    .placeholder-content i {
        font-size: 3.8rem;
        margin-bottom: 14px;
    }

    .placeholder-content span {
        font-size: 1.15rem;
    }

    .webinar-sidebar {
        margin-top: 30px;
    }

    .quick-info-card,
    .status-card,
    .share-card,
    .instructor-card {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 991px) {
    .webinar-hero {
        min-height: 45vh;
    }

    .webinar-title {
        font-size: 2.5rem;
    }

    .webinar-main-content {
        padding: 25px;
    }

    /* Webinar Featured Image - Tablet */
    .webinar-featured-image {
        margin-bottom: 35px;
        border-radius: 14px;
    }

    .webinar-main-image {
        min-height: 250px;
        max-height: 400px;
    }

    .webinar-placeholder-image {
        height: 250px;
    }

    .placeholder-content i {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }

    .placeholder-content span {
        font-size: 1.1rem;
    }

    .info-item {
        padding: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 20px;
    }

    .meta-items {
        justify-content: center;
    }

    .webinars-swiper .swiper-button-next,
    .webinars-swiper .swiper-button-prev {
        display: none;
    }

    .webinars-swiper {
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .webinar-hero {
        min-height: 40vh;
    }

    .webinar-title {
        font-size: 2rem;
    }

    .webinar-excerpt {
        font-size: 1rem;
    }

    .hero-badges {
        gap: 10px;
        margin-bottom: 20px;
    }

    .category-badge,
    .status-badge {
        padding: 8px 15px;
        font-size: 12px;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-meta {
        gap: 15px;
    }

    .meta-items {
        gap: 15px;
    }

    .meta-item {
        font-size: 0.9rem;
    }

    .webinar-content-section {
        padding: 40px 0;
    }

    .webinar-main-content {
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Webinar Featured Image - Mobile */
    .webinar-featured-image {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .webinar-main-image {
        min-height: 200px;
        max-height: 300px;
    }

    .webinar-placeholder-image {
        height: 200px;
    }

    .placeholder-content i {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .placeholder-content span {
        font-size: 1rem;
    }

    .quick-info-card,
    .status-card,
    .share-card,
    .instructor-card {
        padding: 20px;
        margin-bottom: 30px !important;
    }

    /* Instructor Card - Mobile */
    .instructor-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .instructor-name {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .instructor-expertise {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 8px;
    }

    .instructor-experience {
        font-size: 12px;
        padding: 4px 8px;
        margin-bottom: 12px;
    }

    .instructor-bio {
        font-size: 13px;
        padding: 12px;
        margin-bottom: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .info-item {
        padding: 10px;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .section-header h3 {
        font-size: 1.5rem;
    }



    .related-webinars-main-section {
        padding: 15px 0;
    }
    
    .related-webinars-section {
        padding: 30px 20px;
        max-width: 100%;
    }

    .featured-webinars-slider .swiper-button-next,
    .featured-webinars-slider .swiper-button-prev {
        display: none;
    }
    
    .featured-webinars-slider {
        padding: 10px 0 50px 0;
        margin: 0 -5px;
    }
    
    .featured-webinars-slider .swiper-slide {
        padding: 0 5px;
    }
    
    .featured-webinars-slider .swiper-pagination {
        bottom: 15px;
        margin-top: 25px;
    }
    
    .featured-webinars-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* تنظیمات اضافی برای تبلت (768px تا 1023px) - 2 کارت */
@media (min-width: 768px) and (max-width: 1023px) {
    .featured-webinars-slider {
        padding: 15px 0 55px 0;
    }
    
    .featured-webinars-slider .swiper-pagination {
        bottom: 18px;
        margin-top: 28px;
    }
}

/* تنظیمات برای دسکتاپ (1024px و بالاتر) - 3 کارت */
@media (min-width: 1024px) {
    .featured-webinars-slider {
        padding: 20px 0 60px 0;
    }
    
    .featured-webinars-slider .swiper-pagination {
        bottom: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .webinar-hero {
        min-height: 35vh;
        padding: 20px 0;
    }

    .webinar-hero-content {
        padding: 30px 0;
    }

    .webinar-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-badges {
        gap: 8px;
        margin-bottom: 15px;
    }

    .category-badge,
    .status-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-meta {
        gap: 12px;
    }

    .meta-items {
        gap: 12px;
    }

    .section-header h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
    }

    /* Webinar Featured Image - Extra Small Mobile */
    .webinar-featured-image {
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .webinar-main-image {
        min-height: 180px;
        max-height: 250px;
    }

    .webinar-placeholder-image {
        height: 180px;
    }

    .placeholder-content i {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .placeholder-content span {
        font-size: 0.9rem;
    }

    .related-webinars-main-section {
        padding: 10px 0;
    }
    
    .related-webinars-section {
        padding: 25px 15px;
    }

    /* Instructor Card - Extra Small Mobile */
    .instructor-card {
        padding: 20px 15px;
    }

    .instructor-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .instructor-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
        border-width: 2px;
    }

    .instructor-name {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .instructor-expertise {
        font-size: 12px;
        padding: 5px 10px;
        margin-bottom: 6px;
    }

    .instructor-experience {
        font-size: 11px;
        padding: 3px 6px;
        margin-bottom: 10px;
    }

    .instructor-bio {
        font-size: 12px;
        padding: 10px;
        margin-bottom: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* Fix Specific Spacing Issues */
.quick-info-card .card-header,
.share-card .card-header {
    margin-bottom: 40px !important;
}

.quick-info-card .info-grid {
    margin-top: 0 !important;
}

.share-card .share-buttons {
    margin-top: 0 !important;
}

/* Animation Classes */
.webinar-main-content,
.quick-info-card,
.instructor-card,
.status-card,
.share-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.quick-info-card { animation-delay: 0.1s; }
.instructor-card { animation-delay: 0.15s; }
.status-card { animation-delay: 0.2s; }
.share-card { animation-delay: 0.3s; }



/* Final optimizations for landing page similarity */
.related-webinars-section .swiper-slide {
    padding: 0 !important;
}

/* Ensure proper flex layout */
.featured-webinars-slider .swiper-slide {
    height: auto !important;
}

.webinar-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}
 