/* New Organizer Section Styles */
.new-organizer-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    padding: 80px 0;
    border-top: 1px solid rgba(203, 213, 225, 0.3);
}

/* Additional specificity to ensure background is applied */
.additional-sections .new-organizer-section.section-variant {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
}

/* Maximum specificity override for any conflicting styles */
.hospitality-main .additional-sections .new-organizer-section.section-variant,
.hospitality-page .additional-sections .new-organizer-section.section-variant,
body .additional-sections .new-organizer-section.section-variant {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    background-color: #f8fafc !important;
}

/* Fallback background color in case gradients don't work */
.new-organizer-section {
    background-color: #f8fafc !important;
}

.new-organizer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
    pointer-events: none;
}

.new-organizer-badge {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.new-organizer-header .section-title-variant {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0 10px 0;
    text-shadow: none;
}

.new-organizer-header .section-subtitle {
    color: #475569 !important;
    text-shadow: none !important;
}

.new-organizer-visual .visual-element {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: new-organizer-pulse 3s ease-in-out infinite;
}

@keyframes new-organizer-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.new-organizer-visual .visual-element i {
    font-size: 3rem;
    color: white;
}

/* Upper Section Layout */
.organizer-upper-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.organizer-upper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Content - Data Card */
.organizer-data-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.organizer-data-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.organizer-data-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.data-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.data-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.data-icon i {
    font-size: 1.5rem;
    color: white;
}

.data-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.data-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Content - Info Card */
.organizer-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.organizer-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.organizer-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Lower Section - Highlight */
.organizer-lower-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.organizer-highlight-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.highlight-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.highlight-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    border-radius: 25px;
}

.highlight-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    text-align: center;
}

.highlight-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: highlight-glow 2s ease-in-out infinite alternate;
}

@keyframes highlight-glow {
    0% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
}

.highlight-icon i {
    font-size: 2rem;
    color: white;
}

.highlight-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.highlight-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.highlight-cta {
    margin-top: 40px;
}

.highlight-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.highlight-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.highlight-btn i {
    margin-right: 10px;
}

/* Dynamic Content Styles */
.organizer-data-content,
.organizer-info-content,
.organizer-highlight-content {
    animation: fadeInUp 0.6s ease-out;
}

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

.data-title,
.info-title,
.highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.data-content,
.info-content,
.highlight-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.responsive-data-image,
.responsive-info-image,
.responsive-highlight-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.responsive-data-image:hover,
.responsive-info-image:hover,
.responsive-highlight-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .organizer-upper-grid {
        gap: 30px;
        padding: 0 15px;
    }
    
    .organizer-data-card,
    .organizer-info-card {
        padding: 30px;
    }
    
    .highlight-content {
        padding: 40px;
    }
    
    .highlight-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .new-organizer-section {
        padding: 60px 0;
    }
    
    .new-organizer-header .section-title-variant {
        font-size: 2rem;
    }
    
    .organizer-upper-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .organizer-data-card,
    .organizer-info-card {
        padding: 25px;
    }
    
    .data-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-content {
        padding: 30px 20px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-header {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .highlight-header h3 {
        font-size: 1.5rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .organizer-data-card,
    .organizer-info-card {
        padding: 20px;
    }
    
    .data-card-header,
    .info-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .data-icon,
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .highlight-content {
        padding: 20px 15px;
    }
    
    .highlight-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animation for scroll reveal */
.new-organizer-section.animate-in .organizer-data-card,
.new-organizer-section.animate-in .organizer-info-card,
.new-organizer-section.animate-in .organizer-highlight-card {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}