/* ============================================
   Modern Course Detail Page Enhancements
   ============================================ */

/* Hero Section Enhancement */
.header_course {
    background: #282834;
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.header_course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 189, 166, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 109, 52, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.header_course .container {
    position: relative;
    z-index: 1;
}

/* Modern Hero Content - Clean 2 Column Layout */
.course-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 100%;
}

/* Default order - image first, text second */
.course-hero-wrapper > .course-hero-image {
    grid-column: 1;
    grid-row: 1;
}

.course-hero-wrapper > .course-text-details {
    grid-column: 2;
    grid-row: 1;
}

/* For RTL languages, swap positions - text on right (col 1), image on left (col 2) */
[dir="rtl"] .course-hero-wrapper > .course-text-details {
    grid-column: 1;
}

[dir="rtl"] .course-hero-wrapper > .course-hero-image {
    grid-column: 2;
}

.course-text-details {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent grid blowout */
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Override default dark theme h3 styles */
.single_course_page .header_course .course-text-details h3,
.course-text-details h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px 0;
    color: #1e293b !important;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
    display: block;
}

/* Override default dark theme paragraph styles */
.single_course_page .header_course .course-text-details p,
.course-text-details > p,
.course-text-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b !important;
    margin-bottom: 24px;
    padding: 0;
}

/* Certified Badge */
.certified-badge-modern {
    margin: 16px 0 20px;
}

.certified-badge-modern a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 189, 166, 0.1) 0%, rgba(255, 109, 52, 0.1) 100%);
    border: 1px solid rgba(0, 189, 166, 0.2);
    border-radius: 12px;
    color: #00BDA6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.certified-badge-modern a:hover {
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white;
    border-color: #00BDA6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 189, 166, 0.3);
}

.certified-badge-modern a i:first-child {
    font-size: 1.2rem;
}

.certified-badge-modern a i:last-child {
    margin-left: auto;
    font-size: 0.85rem;
}

/* Course Description */
.course-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 24px;
}

/* Modern Rating Display - Only show if has ratings */
.rating-display-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(0, 189, 166, 0.05) 0%, rgba(255, 109, 52, 0.05) 100%);
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(0, 189, 166, 0.1);
}

.rating-display-modern:empty,
.rating-display-modern:has(.rating-number-large:empty) {
    display: none;
}

.rating-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00BDA6 0%, #FF6D34 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.rating-stars-large {
    display: flex;
    gap: 4px;
}

.rating-stars-large i {
    font-size: 1.1rem;
    color: #FFD700;
}

.rating-count-modern {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Course Info Items - Organized Grid */
.course-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.course-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: white;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.course-info-item:hover {
    border-color: #00BDA6;
    background: linear-gradient(135deg, rgba(0, 189, 166, 0.03) 0%, rgba(0, 189, 166, 0.01) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 189, 166, 0.1);
}

.course-info-item svg,
.course-info-item i,
.course-info-item img {
    color: #00BDA6;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Override default dark theme course-info-item styles */
.single_course_page .header_course .course-text-details .course-info-item,
.course-info-item span {
    color: #475569 !important;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

/* Hero Image Side - Clean and Organized */
.course-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #00BDA6 0%, #FF6D34 100%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    max-height: 450px;
    width: 100%;
    color: transparent; /* Hide any text that might appear */
}

/* Hide any text inside the image container */
.course-hero-image * {
    color: transparent !important;
}

.course-hero-image img {
    color: transparent;
}

.course-hero-image .course-thumbnail-placeholder {
    color: white !important;
}

.course-hero-image .course-thumbnail-placeholder i {
    color: white !important;
}

.course-hero-image img,
.course-hero-image .course-thumbnail-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 4rem;
    background: linear-gradient(135deg, #00BDA6 0%, #FF6D34 100%);
}

.course-hero-image .play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.course-hero-image .play-video:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.course-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 189, 166, 0.1) 0%, rgba(255, 109, 52, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Modern Course Action Buttons - Organized */
.course-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}

.btn-modern-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 189, 166, 0.3);
}

.btn-modern-primary:hover {
    background: linear-gradient(135deg, #00a693 0%, #009882 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 189, 166, 0.4);
    color: white;
}

.btn-modern-primary i {
    font-size: 1.2rem;
}

.btn-modern-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #00BDA6;
    border: 2px solid #00BDA6;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-modern-secondary:hover {
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white;
    border-color: #00BDA6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 189, 166, 0.3);
}

.btn-modern-secondary i {
    font-size: 1.2rem;
}

/* Enrollment Info Modern */
.enrollment-info-modern {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

/* Brochure Section Modern */
.brochure-section-modern {
    margin: 24px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

/* Contact Section Modern */
.contact-section-modern {
    background: linear-gradient(135deg, rgba(0, 189, 166, 0.03) 0%, rgba(255, 109, 52, 0.03) 100%);
    border-radius: 24px;
    padding: 48px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

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

.contact-header-modern h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-header-modern h4 i {
    color: #00BDA6;
    font-size: 1.8rem;
}

.contact-header-modern p {
    color: #64748b;
    font-size: 1.05rem;
}

.contact-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-image-modern {
    text-align: center;
}

.contact-image-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-modern {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-modern .form-group {
    margin-bottom: 24px;
}

.contact-form-modern label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form-modern .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-form-modern .form-control:focus {
    outline: none;
    border-color: #00BDA6;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 189, 166, 0.1);
}

.contact-form-modern .form-control:disabled {
    background: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}

.phone-link-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(0, 189, 166, 0.1) 0%, rgba(0, 189, 166, 0.05) 100%);
    border: 2px solid rgba(0, 189, 166, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #00BDA6;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link-modern:hover {
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white;
    border-color: #00BDA6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 189, 166, 0.3);
}

.phone-link-modern:hover .phone-icon,
.phone-link-modern:hover .link-icon {
    color: white;
}

.phone-link-modern .phone-icon {
    font-size: 1.2rem;
    color: #00BDA6;
    transition: color 0.3s ease;
}

.phone-link-modern .link-icon {
    margin-left: auto;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

/* Modern Contract Modal - Two Column Layout */
.modal-content-order-modern {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-body-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 0;
    min-height: 600px;
}

.contract-modal-left {
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contract-course-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.contract-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.contract-info-item i {
    color: #00BDA6;
    font-size: 1.1rem;
    min-width: 24px;
}

.contract-info-item span {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.order-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-modern label i {
    color: #00BDA6;
}

.form-row-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.form-control-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: #00BDA6;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 189, 166, 0.1);
}

.form-control-modern:disabled {
    background: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}

.form-control-modern::placeholder {
    color: #94a3b8;
}

.contract-buttons-modern {
    margin-top: 8px;
}

.btn-contract-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 189, 166, 0.3);
    cursor: pointer;
}

.btn-contract-submit:hover {
    background: linear-gradient(135deg, #00a693 0%, #009882 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 189, 166, 0.4);
}

.btn-contract-submit i {
    font-size: 1.1rem;
}

.contract-modal-right {
    background: linear-gradient(135deg, #00BDA6 0%, #FF6D34 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contract-modal-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contract-gradient-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.contract-course-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contract-course-image {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contract-course-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.close-icon-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.close-icon-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-icon-modern::before {
    filter: brightness(0) invert(1);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .course-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Reset for mobile - stack vertically */
    .course-hero-wrapper > .course-hero-image,
    [dir="rtl"] .course-hero-wrapper > .course-hero-image {
        grid-column: 1;
        grid-row: 1;
    }
    
    .course-hero-wrapper > .course-text-details,
    [dir="rtl"] .course-hero-wrapper > .course-text-details {
        grid-column: 1;
        grid-row: 2;
    }
    
    .course-hero-image {
        min-height: 280px;
        max-height: 350px;
    }
    
    .course-info-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body-modern {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contract-modal-right {
        padding: 30px 20px;
    }
    
    .contract-course-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .course-text-details h3 {
        font-size: 2rem;
    }
    
    .course-buttons-modern {
        gap: 10px;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .contact-content-modern {
        grid-template-columns: 1fr;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .contract-modal-left {
        padding: 24px;
    }
}

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

/* ============================================
   Course Quick Actions Bar
   ============================================ */
.course-quick-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin-top: 20px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.action-btn-brochure {
    background: linear-gradient(135deg, #FF6D34 0%, #ff8c5a 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 109, 52, 0.25);
}

.action-btn-brochure:hover {
    background: linear-gradient(135deg, #e55d2a 0%, #ff7c4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 109, 52, 0.35);
    color: white !important;
}

.action-btn-interest {
    background: white;
    color: #00BDA6 !important;
    border-color: #00BDA6;
}

.action-btn-interest:hover {
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 189, 166, 0.25);
}

.action-btn-share {
    background: #f8fafc;
    color: #475569 !important;
    border-color: #e2e8f0;
}

.action-btn-share:hover {
    background: #e2e8f0;
    color: #1e293b !important;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 1rem;
}

/* ============================================
   Modern Share Modal
   ============================================ */
#shareLinks .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

#shareLinks .modal-header {
    background: linear-gradient(135deg, #00BDA6 0%, #FF6D34 100%);
    color: white;
    border: none;
    padding: 20px 24px;
}

#shareLinks .modal-title {
    font-weight: 700;
    font-size: 1.2rem;
}

#shareLinks .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#shareLinks .btn-close:hover {
    opacity: 1;
}

#shareLinks .modal-body {
    padding: 32px;
}

/* Modern Social Share Icons */
.share-icons-modern {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.share-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-icon-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-icon-btn i {
    font-size: 1.4rem;
    color: white;
}

.share-icon-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d65d9 100%);
}

.share-icon-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0c85d0 100%);
}

.share-icon-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.share-icon-btn.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.share-icon-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.share-icon-btn.email {
    background: linear-gradient(135deg, #EA4335 0%, #c5221f 100%);
}

/* Copy Link Section */
.copy-link-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.copy-link-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
    background: white;
    direction: ltr;
    text-overflow: ellipsis;
}

.copy-link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00BDA6 0%, #00a693 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-link-btn:hover {
    background: linear-gradient(135deg, #00a693 0%, #009882 100%);
    transform: translateY(-1px);
}

.copy-link-btn.copied {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Hide old icons-wrapper styles */
.icons-wrapper {
    display: none !important;
}

/* Responsive Quick Actions */
@media (max-width: 768px) {
    .course-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .share-icons-modern {
        gap: 12px;
    }
    
    .share-icon-btn {
        width: 48px;
        height: 48px;
    }
    
    .share-icon-btn i {
        font-size: 1.2rem;
    }
}
