/* Modern Navbar Styles */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Dynamic navbar color overrides - these will be overridden by inline styles */
.modern-navbar[style*="background"] {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: none;
    width: 100%;
}

.navbar-brand-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.brand-logo .modern-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-logo .modern-logo:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    background-color: #667eea;
    color: white;
    text-decoration: none;
}

.nav-icon {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-text {
    transition: all 0.3s ease;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    position: relative;
    background: none;
    border: 2px solid #f8f9fa;
    color: #6c757d;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.2);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navbar Scroll Effect */
.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Main Page Layout with Sticky Footer */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: white !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px; /* Keep navbar padding */
}

.page-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-container {
        padding: 15px 20px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        align-items: stretch;
    }
    
    .nav-link {
        justify-content: flex-start;
        padding: 15px 20px;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .nav-icon {
        font-size: 1.2rem;
    }
    
    .navbar-actions {
        gap: 8px;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 12px 15px;
    }
    
    .brand-logo .modern-logo {
        height: 35px;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 60px;
    }
}

/* Enhanced Hero Section */
.enhanced-hero {
    padding: 60px 0;
}

.hero-main-content {
    padding-right: 30px;
}

.event-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.event-meta-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    color: #000000 !important;
}

.meta-item strong,
.meta-item span,
.meta-item div {
    color: #000000 !important;
}

.meta-item i {
    color: #667eea;
    font-size: 1.3rem;
    margin-top: 3px;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 3px;
}

.meta-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.event-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
}

.event-card .card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-card .card-content {
    padding: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

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

.btn-secondary-large {
    background: #f8f9fa;
    color: #667eea;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border: 2px solid #e9ecef;
    transition: all 0.2s ease;
}

.btn-secondary-large:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    text-decoration: none;
}

.map-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.map-card h4 {
    margin-bottom: 15px;
    color: #495057;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-card h4 i {
    color: #667eea;
}

/* Event Description in Hero */
.event-description {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.event-description h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-description h3 i {
    color: #667eea;
}

.description-content {
    line-height: 1.7;
    font-size: 1rem;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content p:last-child {
    margin-bottom: 0;
}



/* Clean Hero Section */
.clean-hero {
    background: white;
    padding: 80px 0 60px;
    border-bottom: 1px solid #e9ecef;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.event-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.event-meta-clean {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.event-meta-clean .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.event-meta-clean .meta-item i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

/* Clean Content Container */
.clean-content-container {
    background: white;
    padding: 60px 0;
}

.content-flow {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 80px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

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

.section-content {
    color: #495057;
    line-height: 1.8;
    font-size: 1.1rem;
}

.media-section .section-content {
    margin: 0;
}

/* Social Sharing Clean */
.flexstage-social-wrapper {
    margin-top: 30px;
}

.flexstage-social-wrapper .btn {
    background: #667eea;
    border: 1px solid #667eea;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
}

.flexstage-social-wrapper .btn:hover {
    background: #764ba2;
    border-color: #764ba2;
}

.flexstage-social-wrapper ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    justify-content: center;
}

.flexstage-social-wrapper li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: #667eea;
    border-radius: 50%;
    transition: all 0.2s ease;
    border: 2px solid #e9ecef;
}

.flexstage-social-wrapper li a:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-action-sidebar {
        right: 10px;
    }
    
    .floating-cart {
        width: 320px;
        transform: translateX(340px);
    }
}

@media (max-width: 768px) {
    .floating-action-sidebar {
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: none;
    }
    
    .floating-cart {
        width: 100vw;
        max-width: 350px;
        transform: translateX(100vw);
        right: 0;
    }
    
    .floating-cart.open {
        transform: translateX(0);
    }
    
    .event-title {
        font-size: 2.5rem;
    }
    
    .event-meta-clean {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .clean-hero {
        padding: 40px 0 30px;
    }
    
    .clean-content-container {
        padding: 40px 0;
    }
    
    .content-section {
        margin-bottom: 60px;
    }
}

.flexstage-company-name{
    max-width: 20px;
}

#map, #map1, #map2{
    height: 300px;
    border-radius: 8px;
}

/* Clean Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.speaker-card {
    background: white;
    border: 2px solid #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.speaker-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

.speaker-avatar {
    margin-bottom: 25px;
}

.avatar-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    border: 4px solid #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.speaker-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.speaker-bio {
    color: #6c757d;
    line-height: 1.7;
    text-align: left;
    font-size: 1rem;
}

/* Clean Agenda Styles */
.agenda-section {
    width: 100%;
}

.agenda-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.agenda-tab {
    background: white;
    border: 2px solid #f8f9fa;
    border-radius: 30px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
}

.agenda-tab:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.agenda-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tab-icon {
    font-size: 1rem;
}

.agenda-timeline {
    width: 100%;
}

.agenda-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 0;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
    box-shadow: none;
    transition: all 0.2s ease;
}

.agenda-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.agenda-item:hover {
    transform: none;
    box-shadow: none;
}

.agenda-time {
    flex-shrink: 0;
    width: 180px;
}

.time-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    width: 100%;
    letter-spacing: 0.5px;
}

.agenda-content {
    flex: 1;
}

.agenda-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.agenda-hosts {
    margin-bottom: 20px;
}

.host-badge {
    background: #f8f9fa;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.agenda-description {
    line-height: 1.7;
    font-size: 1rem;
}

.read-more-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.read-more-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Clean Media Section */
.flexstage-event {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.flex-image-container {
    border-radius: 16px;
    overflow: hidden;
}

.flex-image-container > div {
    border-radius: 16px;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tab Content Improvements */
.tab-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Enhanced Hero Responsive */
@media (max-width: 768px) {
    .enhanced-hero {
        padding: 40px 0;
    }
    
    .hero-main-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .event-title {
        font-size: 2.5rem;
    }
    
    .event-meta-enhanced {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .meta-item {
        padding: 15px;
    }
    
    .action-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        flex: 1;
        padding: 12px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 2rem;
    }
    
    .event-meta-enhanced {
        gap: 12px;
    }
    
    .meta-item {
        padding: 12px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .event-description {
        margin-top: 30px;
        padding: 20px;
    }
    
    .event-description h3 {
        font-size: 1.2rem;
    }
}

/* Modern Tickets Page Styles */
.tickets-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
}

.tickets-hero .hero-content {
    text-align: center;
}

.tickets-hero .event-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.tickets-hero .event-title[style*="color"] {
    color: inherit !important;
}

.tickets-hero .meta-item[style*="color"] {
    color: inherit !important;
}

.event-meta-tickets {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.event-meta-tickets .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.event-meta-tickets .meta-item i {
    font-size: 1.3rem;
    opacity: 0.9;
}

.tickets-container {
    padding: 60px 0;
    min-height: 80vh;
}

/* Modern Ticket Container - Simplified */
.modern-ticket-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.tickets-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
}



.attendee-info-section {
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.submit-section {
    margin-top: 40px;
    text-align: center;
}

.btn-complete-order {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-complete-order:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.btn-complete-order i {
    font-size: 1.3rem;
}

/* Modern Form Grid for Attendee Information */
.modern-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.modern-form-grid .form-group {
    margin-bottom: 0;
}

.modern-form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

/* Modern Input Styling for Attendee Forms */
.modern-form-grid .form-group label.control-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--content-text-color, #2c3e50);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.modern-form-grid .form-control,
.modern-form-grid .modern-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--content-text-color, #2c3e50);
    background: var(--content-bg-color, #ffffff);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    min-height: 52px;
    line-height: 1.4;
}

.modern-form-grid .form-control:focus,
.modern-form-grid .modern-input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
    background: inherit !important;
    color: inherit !important;
}

.modern-form-grid .form-control:valid,
.modern-form-grid .modern-input:valid {
    border-color: #28a745 !important;
}

.modern-form-grid .form-control:invalid:not(:placeholder-shown),
.modern-form-grid .modern-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545 !important;
}

.modern-form-grid .form-control::placeholder,
.modern-form-grid .modern-input::placeholder {
    color: #6c757d;
    font-weight: 400;
}

/* Bootstrap Select Styling for Modern Form */
.modern-form-grid .bootstrap-select .dropdown-toggle {
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--content-text-color, #2c3e50) !important;
    background: var(--content-bg-color, #ffffff) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    min-height: 52px !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

.modern-form-grid .bootstrap-select .dropdown-toggle:focus,
.modern-form-grid .bootstrap-select.open .dropdown-toggle {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.modern-form-grid .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    font-weight: 500 !important;
}

.modern-form-grid .bootstrap-select .dropdown-toggle.bs-placeholder .filter-option-inner-inner {
    color: #6c757d !important;
    font-weight: 400 !important;
}

.modern-form-grid .bootstrap-select .bs-caret .caret {
    border-top-color: #667eea !important;
}

.modern-form-grid .bootstrap-select .dropdown-menu {
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    padding: 8px 0 !important;
    margin-top: 4px !important;
    background: var(--content-bg-color, #ffffff) !important;
}

.modern-form-grid .bootstrap-select .dropdown-menu .inner {
    max-height: 250px !important;
}

.modern-form-grid .bootstrap-select .dropdown-menu li a {
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
    color: var(--content-text-color, #2c3e50) !important;
    transition: all 0.2s ease !important;
}

.modern-form-grid .bootstrap-select .dropdown-menu li a:hover,
.modern-form-grid .bootstrap-select .dropdown-menu li.active a {
    background: #667eea !important;
    color: white !important;
}

.modern-form-grid .bootstrap-select .bs-searchbox input {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 10px 15px !important;
    margin: 8px 12px !important;
    width: calc(100% - 24px) !important;
    color: var(--content-text-color, #2c3e50) !important;
    background: var(--content-bg-color, #ffffff) !important;
}

/* Modern Checkbox Styling */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--content-bg-color, linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%));
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.modern-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.modern-checkbox:checked {
    background: #667eea;
    border-color: #667eea;
}

.modern-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.terms-label {
    font-size: 0.95rem;
    color: var(--content-text-color, #2c3e50);
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

.terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.wizard-header {
    background: white;
    padding: 40px;
    border-bottom: 1px solid #e9ecef;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.step-item.active .step-label {
    color: #2c3e50;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
}

/* Ticket Selection Layout */
.ticket-selection-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
}



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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    margin: 0;
}

.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ticket-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}



.ticket-card-header {
    background: #f8f9fa;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.ticket-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.ticket-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #667eea;
}

.ticket-card-body {
    padding: 30px;
}

.ticket-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    margin-bottom: 15px;
}

.info-item i {
    color: #667eea;
    width: 20px;
}



.quantity-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modern-quantity-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.modern-quantity-btn {
    background: #f8f9fa;
    border: none;
    padding: 12px 16px;
    font-size: 1.1rem;
    color: #667eea;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-quantity-btn:hover {
    background: #667eea;
    color: white;
}

.modern-quantity-input {
    border: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    width: 80px;
    background: white;
}

.modern-quantity-input:focus {
    outline: none;
}

.availability-info {
    margin-top: 10px;
}

.availability-info small {
    color: #28a745;
    font-weight: 500;
}

.availability-info i {
    color: #28a745;
}

.ticket-sold-out {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sold-out-badge {
    background: #dc3545;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Modern Order Sidebar */
.ticket-order-sidebar {
    position: sticky;
    top: 120px;
}

.order-summary-card {
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.order-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
}

.order-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-body {
    padding: 30px;
}

.order-section {
    margin-bottom: 30px;
}

.section-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header i {
    color: #667eea;
}



.order-summary {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin: 8px 0;
    font-weight: 600;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
    transition: all 0.2s ease;
}

.summary-row:hover {
    background: #f1f3f4;
    border-left-color: #667eea;
}

.summary-row .label {
    color: #495057;
    font-size: 0.95rem;
    font-weight: 600;
}

.summary-row.total-row {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    margin-top: 15px;
    padding: 16px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.summary-row.total-row:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.summary-row.total-row .label {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-row.total-row .value {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
}

.summary-row .value {
    color: #2c3e50;
    font-weight: 700;
}

/* Modern Coupon Input Section */
.coupon-input-section {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 18px;
    background: var(--content-bg-color, linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%));
    border-radius: 16px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}



.input-wrapper {
    margin-bottom: 25px;
}

.coupon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--content-text-color, #2c3e50);
    margin-bottom: 12px;
    font-size: 1rem;
}

.coupon-label::before {
    content: '🏷️';
    font-size: 1.1rem;
}

.coupon-input {
    width: 100%;
    padding: 16px 20px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--content-text-color, #2c3e50) !important;
    background: var(--content-bg-color, #f8f9fa) !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    min-height: 50px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
}

.coupon-input:focus {
    border-color: #667eea !important;
    background: var(--content-bg-color, white) !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.coupon-input:hover:not(:focus) {
    border-color: #ced4da !important;
    background: var(--content-bg-color, white) !important;
}

.coupon-input::placeholder {
    color: #6c757d !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.btn-apply-coupon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-apply-coupon:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-apply-coupon:active {
    transform: scale(0.98);
}

.btn-apply-coupon i {
    font-size: 1.1rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    padding: 10px 15px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message::before {
    content: '⚠️';
    font-size: 1rem;
}

/* Success message for applied coupons */
.coupon-success {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    padding: 10px 15px;
    background: #f0fff4;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-success::before {
    content: '✅';
    font-size: 1rem;
}

/* Multiple Coupons Styling */
.coupon-discount-row {
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
    border-radius: 8px;
    padding: 10px 15px;
    margin: 8px 0;
    border: 1px solid #d4edda;
    transition: all 0.3s ease;
}

.coupon-discount-row:hover {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
}

.coupon-discount-row .btn-danger {
    background: #dc3545;
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    transition: all 0.2s ease;
}

.coupon-discount-row .btn-danger:hover {
    background: #c82333;
    transform: scale(1.1);
}

.coupon-discount-row hr {
    margin: 0 0 8px 0;
    border-color: #d4edda;
}

.coupon-discount-row span {
    font-weight: 600;
}

.coupon-discount-row .fa-tag {
    margin-right: 6px;
}

/* Responsive coupon section */
@media (max-width: 768px) {
    .coupon-input-section {
        margin-top: 25px;
        padding: 15px;
        border-radius: 12px;
    }
    

    
    .coupon-input,
    .btn-apply-coupon {
        padding: 14px 18px;
        min-height: 48px;
        font-size: 0.95rem;
    }
    
    .btn-apply-coupon {
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .coupon-input-section {
        padding: 12px;
        margin-top: 20px;
    }
    
    .coupon-input,
    .btn-apply-coupon {
        padding: 12px 16px;
        min-height: 44px;
        font-size: 0.9rem;
    }
    
    .btn-apply-coupon {
        letter-spacing: 0.2px;
    }
}

/* Attendee Info Layout */
.attendee-info-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px;
}



.modern-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}



.form-group.full-width {
    grid-column: 1 / -1;
}

.modern-input,
.modern-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.modern-input:focus,
.modern-select:focus {
    border-color: #667eea;
    outline: none;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.modern-checkbox {
    margin-top: 3px;
}

.terms-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    margin: 0;
}

.terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Wizard Navigation */
.wizard-navigation {
    background: #f8f9fa;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-wizard {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.btn-wizard.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-wizard.btn-primary {
    background: #667eea;
    color: white;
}

.btn-wizard.btn-success {
    background: #28a745;
    color: white;
}

.btn-wizard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Tickets Page */
@media (max-width: 1024px) {
    .tickets-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ticket-order-sidebar {
        position: static;
    }
    
    .attendee-info-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tickets-hero {
        padding: 60px 0 40px;
    }
    
    .tickets-hero .event-title {
        font-size: 2.2rem;
    }
    
    .event-meta-tickets {
        flex-direction: column;
        gap: 15px;
    }
    
    .wizard-header {
        padding: 25px 20px;
    }
    
    .step-indicator {
        max-width: 300px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-line {
        width: 60px;
        margin: 0 15px;
    }
    
    .tickets-layout {
        padding: 25px 20px;
    }
    
    .attendee-info-section {
        padding: 25px 20px;
    }
    
    .modern-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ticket-card-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ticket-card-body {
        padding: 20px;
    }
    
    .modern-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wizard-navigation {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-wizard {
        width: 100%;
        justify-content: center;
    }
}

/* Modern Attendee Forms Styling - Separated Container */
.attendee-forms-container {
    padding: 25px;
    border-radius: 16px;
}

.attendee-forms-container .panel_s {
    border: 2px solid #e9ecef !important;
    border-radius: 16px !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.attendee-forms-container .panel_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}



.attendee-forms-container .panel_s strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--content-text-color, #2c3e50);
    padding-bottom: 15px;
}

.attendee-forms-container .panel_s strong::before {
    content: '👤';
    font-size: 1.1rem;
}

.attendee-forms-container .row {
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.attendee-forms-container .col-md-3 {
    padding: 0 !important;
    flex: 1;
    min-width: 220px;
}

.attendee-forms-container .form-control {
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--content-text-color, #2c3e50) !important;
    background: var(--content-bg-color, #f8f9fa) !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    width: 100% !important;
    min-height: 50px !important;
    line-height: 1.4 !important;
}

.attendee-forms-container .form-control:focus {
    border-color: #667eea !important;
    background: inherit !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
    color: inherit !important;
}

.attendee-forms-container .form-control::placeholder {
    color: #6c757d !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.attendee-forms-container .form-control:hover:not(:focus) {
    border-color: #ced4da !important;
    background: inherit !important;
    color: inherit !important;
}

/* Valid/Invalid states with enhanced styling */
.attendee-forms-container .form-control:valid {
    border-color: #28a745 !important;
}

.attendee-forms-container .form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545 !important;
}

/* Enhanced responsive attendee forms */
@media (max-width: 768px) {
    .attendee-forms-container {
        padding: 5px;
        border-radius: 12px;
    }
    
    .attendee-forms-container .panel_s {
        padding: 25px !important;
        margin-bottom: 20px !important;
    }
    
    .attendee-forms-container .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .attendee-forms-container .col-md-3 {
        min-width: auto;
        flex: none;
    }
    
    .attendee-forms-container .form-control {
        padding: 14px 18px !important;
        font-size: 1rem !important;
        min-height: 48px !important;
    }
    
    .attendee-forms-container .panel_s strong {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .attendee-forms-container {
        padding: 15px;
        margin-top: 20px;
    }
    
    .attendee-forms-container .panel_s {
        padding: 20px !important;
        border-radius: 12px !important;
    }
    
    .attendee-forms-container .row {
        gap: 12px;
    }
    
    .attendee-forms-container .form-control {
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        min-height: 44px !important;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .speaker-card {
        padding: 25px 20px;
    }
    
    .agenda-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .agenda-tab {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .agenda-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .agenda-time {
        width: 100%;
        text-align: center;
    }
    
    .time-badge {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .agenda-title {
        font-size: 1.2rem;
    }
    
    .flex-image-container > div {
        height: 250px;
    }
}

/* FlexStage Custom Template Styles */
.flexstage-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.flexstage-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Modern Footer Styles */
.modern-event-footer {
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    height: auto !important; /* Override default footer height */
    min-height: auto !important;
    margin-top: auto; /* Push footer to bottom when content is short */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
}

.footer-container:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-event-info {
    flex: 1;
    min-width: 250px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.event-title img {
    max-height: 40px;
    max-width: 150px;
    width: auto;
    height: auto;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.price-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #feca57;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-buy-tickets {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-buy-tickets:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.btn-share {
    padding: 12px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-share:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-container:first-child {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-event-info,
    .footer-actions,
    .footer-links {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .event-meta {
        justify-content: center;
        gap: 15px;
    }
    
    .action-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-buy-tickets {
        flex: 1;
        justify-content: center;
        max-width: 200px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 15px 20px;
    }
    
    .event-title {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .event-title img {
        max-height: 35px;
        max-width: 120px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    

}

/* jquery validation */
label.error {
    color: #e7505a;
    margin-left: 10px;
    padding: 7px;
}
input.error {
    border: 2px solid #e7505a;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  display: none;
  margin-top: 10px;
  overflow: hidden;
  font-size: 3px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #31c5d2;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.flex-image-container{
    max-height: 600px;
}

.flex-event-main-title{
  font-size: 2rem;
  line-height: 2.5rem;
}

.flex-image-container > div{
  width: 100%;
  background-size: contain;
  padding-bottom: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 10;
  background-color : #dce2e5;
  backdrop-filter: blur(5px);
}

.slick-dots li button {
  border-radius: 20px;
  border: 2px solid #eee;
}

.slick-dots li.slick-active button {
  border-radius: 20px;
  border: 2px solid #aaa;
}

.no-border-radius{
  border-radius: 0px;
}

.flexstage-speaker-image{
  height: 150px;
  width: 150px;
}

.flexstage-social-wrapper{
    display: block;
}

.flexstage-social-wrapper ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.flexstage-social-wrapper ul li{
    display: inline-block;
    margin: 0 5px;
    background: #f2f4f5;
    padding: 5px 10px;
    border-radius: 4px;
}

.flexstage-social-wrapper ul li a{
    font-size: 1rem;
}
/** plus minus on button **/
.flex-quantity-wrapper .flex-quantity-btn{
    background: #f2f4f5;
    border-radius: 100%;
    padding: 5px 10px;
    border: 1px solid #eee;
    cursor: pointer;
    color : #333;
}

.flex-quantity-wrapper input{
    width: 50px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px 10px;
    margin-right: 5px;
    margin-left: 5px;
}

.flex-event-container{
  background-color: #f8fafc;
  border: none;
}

.navbar-default .navbar-nav>li>a.flex-tickets-cta{
  color: #fff;
}

.navbar-default .navbar-nav>li>a.flex-tickets-cta:hover{
  color: #fff;
background: darkred;
}

.flex-border-white{
    border: 1px solid #fff;
}

.flexstage-rhs-panel{
    padding : 10px;
    line-height: 1.5rem;
}

.flexstage-rhs-panel .map{
    margin-top: 10px;
}
.flexstage-rhs-panel.flexstage-is-flex > div{
    display: flex;
}

.flexstage-rhs-panel.flexstage-is-flex > div span{
    margin: 5px;
}

.flexstage-rhs-panel.flexstage-is-flex > div span i{
    font-size: 18px;
    color : #aaa;
    margin-top: 5px;
}

.flexstage-success-icon i{
    font-size: 3rem;
    color : mediumseagreen;
}

@media screen and (max-width: 768px) {
    .flexstage-nav-bar-footer .navbar-nav>li>a.flex-tickets-cta{
        display: block;
        margin: 10px;
    }
    .flexstage-nav-bar-footer ul.navbar-right{
        text-align: center;
    }
}

/* ----- Agenda Cards ---*/

.flexstage-card {
  border-left: 4px solid #f8d7da;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  margin-top: 10px;
  padding-top: 15px;
}

.flexstage-card-title {

  font-weight: bold;
  color: black;
}
.flexstage-card-subtitle {
  font-size: 1.1rem;
  font-weight: bold;
}
.flexstage-card-link {
  color: #007bff;
  text-decoration: none;
}
.flexstage-card-link:hover {
  text-decoration: underline;
}

.flexstage-sponsor-image{
    background-size: cover;
    width: 100px; height: 100px;
    margin-right:10px;
    background-position:center center;
}

/* Attendee form styles - responsive grid */
.modern-attendee-card {
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 16px;
    background: var(--content-bg-color, white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.attendee-card-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.attendee-card-title {
    color: var(--content-text-color, #333);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 600;
}

.attendee-card-icon {
    font-size: 1.2rem;
}

.attendee-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.attendee-form-field {
    padding: 0;
    flex: 1;
    min-width: 200px;
}

.modern-attendee-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    color: var(--content-text-color, #2c3e50);
    background: var(--content-bg-color, #ffffff);
}

.modern-attendee-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background: inherit;
    color: inherit;
}

.modern-attendee-input:hover {
    border-color: #ced4da;
    background: inherit;
    color: inherit;
}

/* Responsive design */
@media (max-width: 768px) {
    .attendee-form-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        grid-row-gap: 12px;
    }
    
    .attendee-form-field {
        min-width: unset;
    }
    
    .modern-attendee-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .attendee-card-header {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    
    .attendee-card-title {
        font-size: 1rem;
    }
    
    .modern-attendee-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modern-attendee-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .attendee-form-grid {
        grid-row-gap: 10px;
    }
    
    .modern-attendee-input {
        padding: 10px 14px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .attendee-card-title {
        font-size: 0.95rem;
        gap: 6px;
    }
    
    .attendee-card-icon {
        font-size: 1rem;
    }
}

/* Coupon input section - full width styling */
.coupon-input-section {
    width: 100%;
    margin-bottom: 20px;
}

.coupon-input-section .input-group {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
}

.coupon-input-section .input-wrapper {
    flex: 1;
    min-width: 250px;
}

.coupon-input-section .coupon-input {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.coupon-input-section .coupon-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.coupon-input-section .coupon-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--content-text-color, #333);
    font-size: 0.95rem;
}

.coupon-input-section .btn-apply-coupon {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    height: fit-content;
}

.coupon-input-section .btn-apply-coupon:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.coupon-input-section .error-message {
    display: block;
    margin-top: 6px;
    color: #dc3545;
    font-size: 0.875rem;
    border-left: 3px solid #dc3545;
    padding-left: 8px;
}

.coupon-input-section .coupon-success {
    color: #28a745;
    border-left-color: #28a745;
}

/* Responsive design for coupon input */
@media (max-width: 768px) {
    .coupon-input-section .input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .coupon-input-section .input-wrapper {
        min-width: unset;
    }
    
    .coupon-input-section .btn-apply-coupon {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .coupon-input-section {
        margin-bottom: 15px;
    }
    
    .coupon-input-section .input-group {
        gap: 10px;
    }
    
    .coupon-input-section .coupon-input {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .coupon-input-section .btn-apply-coupon {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

#content {
    padding: 0px !important;
}

.bootstrap-select .no-results {
    background: inherit !important;
}