/* ===== WHO SHOULD ATTEND SECTION ===== */
.conscious-attend-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.conscious-attend-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.2), transparent);
}

.conscious-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.conscious-attend-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Content Column */
.conscious-attend-content {
    flex: 1;
}

.conscious-attend-header {
    margin-bottom: 40px;
}

.conscious-attend-label {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: #2E8B57;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.conscious-attend-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.conscious-attend-title-highlight {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.conscious-attend-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2E8B57, #3CB371);
    opacity: 0.3;
    border-radius: 2px;
}

.conscious-attend-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 90%;
}

/* Checklist */
.conscious-attend-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.conscious-attend-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(46, 139, 87, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.conscious-attend-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    border-color: rgba(46, 139, 87, 0.3);
}

.conscious-attend-item-primary {
    border-left: 4px solid #2E8B57;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.02), rgba(60, 179, 113, 0.05));
}

.conscious-attend-item-accent {
    border-left: 4px solid #ecc94b;
    background: linear-gradient(135deg, rgba(236, 201, 75, 0.02), rgba(236, 201, 75, 0.05));
}

.conscious-attend-item-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.conscious-attend-item-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.conscious-attend-item-content {
    flex: 1;
}

.conscious-attend-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.conscious-attend-item-desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

/* Stats */
.conscious-attend-stats {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05), rgba(60, 179, 113, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(46, 139, 87, 0.15);
}

.conscious-attend-stat {
    text-align: center;
    flex: 1;
}

.conscious-attend-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2E8B57;
    line-height: 1;
    margin-bottom: 5px;
}

.conscious-attend-stat-label {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

/* Video Column */
.conscious-attend-video {
    flex: 1;
    min-width: 400px;
}

.conscious-attend-video-container {
    position: sticky;
    top: 100px;
}

.conscious-attend-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.conscious-attend-video-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(46, 139, 87, 0.1);
}

.conscious-attend-video-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.conscious-video-title-icon {
    width: 24px;
    height: 24px;
    fill: #2E8B57;
}

.conscious-attend-video-subtitle {
    font-size: 14px;
    color: #718096;
}

/* Video Player */
.conscious-attend-video-player {
    padding: 0 25px 25px;
}

.conscious-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.conscious-video-placeholder {
    position: relative;
    cursor: pointer;
    display: block;
}

.conscious-video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.conscious-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.conscious-video-placeholder:hover .conscious-video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.conscious-play-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.conscious-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.conscious-play-icon {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

.conscious-video-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conscious-video-duration {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.conscious-video-label {
    background: rgba(46, 139, 87, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.conscious-video-embed {
    display: none;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.conscious-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.conscious-video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.conscious-video-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.conscious-video-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Video Features */
.conscious-attend-video-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 10px;
}

.conscious-video-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
}

.conscious-feature-icon {
    width: 18px;
    height: 18px;
    fill: #2E8B57;
}

/* Testimonial */
.conscious-attend-testimonial {
    padding: 20px;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 12px;
    margin: 0 25px 25px;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.conscious-testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.conscious-quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    fill: rgba(46, 139, 87, 0.2);
    transform: rotate(180deg);
}

.conscious-testimonial-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
    padding-left: 25px;
}

.conscious-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.conscious-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conscious-author-avatar svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.conscious-author-info {
    flex: 1;
}

.conscious-author-name {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.conscious-author-title {
    font-size: 12px;
    color: #718096;
}

/* CTA Box */
.conscious-attend-cta-box {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.25);
}

.conscious-cta-box-content {
    color: white;
}

.conscious-cta-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.conscious-cta-box-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.5;
}

.conscious-cta-box-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #2E8B57;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.conscious-cta-box-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #2E8B57;
}

.conscious-cta-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.conscious-cta-box-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.conscious-note-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .conscious-attend-wrapper {
        gap: 40px;
    }
    
    .conscious-attend-video {
        min-width: 350px;
    }
}

@media (max-width: 992px) {
    .conscious-attend-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .conscious-attend-video {
        width: 100%;
        min-width: auto;
    }
    
    .conscious-attend-video-container {
        position: static;
    }
    
    .conscious-attend-title {
        font-size: 32px;
    }
    
    .conscious-attend-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .conscious-attend-section {
        padding: 70px 0;
    }
    
    .conscious-attend-title {
        font-size: 28px;
    }
    
    .conscious-attend-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .conscious-attend-video-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .conscious-attend-testimonial {
        margin: 0 15px 15px;
        padding: 15px;
    }
    
    .conscious-cta-box-title {
        font-size: 24px;
    }
    
    .conscious-cta-box-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .conscious-attend-title {
        font-size: 24px;
    }
    
    .conscious-attend-item {
        padding: 15px;
    }
    
    .conscious-video-thumbnail {
        height: 200px;
    }
    
    .conscious-play-button {
        width: 60px;
        height: 60px;
    }
    
    .conscious-cta-box {
        padding: 25px 20px;
    }
}