/* Custom styles for Tech Conference 2024 */

:root {
    /* Diocese-inspired color palette */
    --primary-color: #6a4c93;        /* Purple from coat of arms */
    --secondary-color: #8b5a83;      /* Muted purple */
    --accent-color: #ff8c42;         /* Orange from mitre */
    --gold-color: #ffd700;           /* Gold accents */
    --blue-color: #4c9fb8;           /* Blue from shield */
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ff8c42;        /* Use orange as warning */
    --info-color: #4c9fb8;           /* Use blue as info */
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Enhanced Hero Section */
.hero-section-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--blue-color) 100%);
    color: white;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-diocese-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-theme {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-subtheme {
    color: #87ceeb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.hero-detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-detail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-detail-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.hero-detail-card h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-detail-card small {
    opacity: 0.9;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #333;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    color: #333;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, var(--primary-color));
    transform: translateY(-2px);
}

/* Forms */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Custom navbar styling */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 2px 10px rgba(106, 76, 147, 0.3);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.95), rgba(139, 90, 131, 0.95)) !important;
    backdrop-filter: blur(10px);
}

.navbar-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.navbar-text {
    color: white !important;
    text-decoration: none !important;
}

.navbar-title {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

.navbar-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
    color: var(--gold-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--gold-color) !important;
}

/* Speaker Cards */
.speaker-card {
    text-align: center;
    padding: 30px 20px;
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

/* Schedule */
.schedule-item {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.schedule-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Registration Form */
.registration-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Enhanced Registration Page Styles */
.registration-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.registration-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.registration-hero-content {
    position: relative;
    z-index: 2;
}

.registration-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.text-gold {
    color: var(--gold-color) !important;
}

.registration-details-cards .detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.registration-details-cards .detail-card:hover {
    transform: translateY(-5px);
}

.registration-details-cards .detail-card i {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 8px;
    display: block;
}

.registration-details-cards .detail-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
}

.registration-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 40px;
}

.registration-progress {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step span {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.step.active span {
    color: var(--primary-color);
    font-weight: 600;
}

.form-section-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.form-section-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-section-card .card-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 25px;
    border-bottom: none;
    display: flex;
    align-items: center;
}

.form-section-card .section-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.form-section-card .section-icon i {
    font-size: 1.2rem;
    color: white;
}

.form-section-card .card-body {
    padding: 30px 25px;
}

.form-section-card h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.registration-form-modern .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.registration-form-modern .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.registration-form-modern .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(106, 76, 147, 0.25);
}

.registration-submit-section {
    margin-top: 40px;
}

.submit-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 25px 30px;
}

.btn-register {
    background: linear-gradient(45deg, var(--accent-color), #ff6b1a);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.4);
    color: white;
}

.alert-modern {
    border: none;
    border-radius: 15px;
    padding: 20px 25px;
}

.alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments for registration */
@media (max-width: 768px) {
    .registration-hero {
        padding: 60px 0 100px;
    }
    
    .registration-form-container {
        margin-top: -40px;
        padding: 25px;
        border-radius: 15px;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 10px;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .detail-card h6 {
        font-size: 0.8rem;
    }
    
    .registration-details-cards .col-md-3 {
        margin-bottom: 10px;
    }
}

/* Dashboard */
.dashboard-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .registration-form {
        margin-top: 0;
        border-radius: 0;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Table styles */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

/* Alert styles */
.alert {
    border-radius: 10px;
    border: none;
    font-weight: 500;
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* ================================
   SCHEDULE PAGE STYLES
   ================================ */

.schedule-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.schedule-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.4;
}

.schedule-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.schedule-overview-cards .overview-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-overview-cards .overview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.schedule-overview-cards .overview-card i {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    display: block;
}

.schedule-overview-cards .overview-card h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.schedule-overview-cards .overview-card small {
    color: rgba(255, 255, 255, 0.8);
}

.schedule-container {
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}

.schedule-intro-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    z-index: 10;
}

.schedule-day-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.schedule-day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.day-number {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.day-info {
    flex: 1;
    margin-left: 1.5rem;
}

.day-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.day-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.day-icon i {
    font-size: 2rem;
    opacity: 0.7;
}

.day-sessions {
    padding: 2rem;
}

.session-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

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

.session-time {
    min-width: 200px;
    margin-right: 2rem;
}

.time-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.time-badge i {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.time-badge span {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.time-badge small {
    display: block;
    opacity: 0.9;
    font-size: 0.8rem;
}

.location-info {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
}

.location-info i {
    margin-right: 0.25rem;
}

.session-content {
    flex: 1;
}

.session-header {
    margin-bottom: 1rem;
}

.session-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.session-type-badge i {
    margin-right: 0.5rem;
}

.session-type-worship {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

.session-type-teaching {
    background: linear-gradient(135deg, #4ecdc4, #6bcf7f);
    color: white;
}

.session-type-workshop {
    background: linear-gradient(135deg, #ffd93d, #ff9f40);
    color: white;
}

.session-type-prayer {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.session-type-special {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
}

.session-title {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.session-speaker {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.session-speaker i {
    margin-right: 0.5rem;
}

.session-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.schedule-coming-soon {
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
}

.schedule-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.schedule-cta-card .cta-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.schedule-cta-card .cta-text h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.schedule-cta-card .cta-text .lead {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   SPEAKERS PAGE STYLES
   ================================ */

.speakers-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.speakers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.4;
}

.speakers-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.speakers-stats .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speakers-stats .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.speakers-stats .stat-card i {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    display: block;
}

.speakers-stats .stat-card h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.speakers-stats .stat-card small {
    color: rgba(255, 255, 255, 0.8);
}

.speakers-container {
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}

.speakers-intro-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    z-index: 10;
}

.verse-highlight {
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.verse-highlight i {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.verse-highlight em {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

.speakers-grid {
    margin-bottom: 3rem;
}

.speaker-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.speaker-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.speaker-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.speaker-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.speaker-card-modern:hover .speaker-overlay {
    opacity: 1;
}

.anointing-badge {
    background: linear-gradient(135deg, var(--gold-color), #ffa500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.anointing-badge i {
    margin-right: 0.5rem;
}

.speaker-content {
    padding: 2rem;
}

.speaker-header {
    margin-bottom: 1.5rem;
}

.speaker-name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.speaker-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

.speaker-church {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.speaker-church i {
    margin-right: 0.5rem;
}

.speaker-bio {
    margin-bottom: 1.5rem;
}

.speaker-bio p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.speaker-footer {
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
    padding-top: 1rem;
}

.ministry-type {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.ministry-type i {
    margin-right: 0.5rem;
}

.speakers-coming-soon {
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.speakers-coming-soon .coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
}

.expectation-section {
    margin: 2rem 0;
}

.expectation-item {
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-3px);
    background: rgba(var(--primary-rgb), 0.15);
}

.expectation-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.expectation-item span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.speakers-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0.3;
}

.speakers-cta-card .cta-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.speakers-cta-card .cta-text h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.speakers-cta-card .cta-text .lead {
    color: rgba(255, 255, 255, 0.9);
}

.ministry-features {
    margin-top: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.feature-item i {
    margin-right: 0.5rem;
    color: var(--gold-color);
}

.pricing-highlight {
    margin-top: 1rem;
}

.price-tag {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.price-tag .price {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    color: var(--gold-color);
}

.price-tag small {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contact-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.4;
}

.contact-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.contact-methods .contact-method-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-methods .contact-method-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.contact-methods .contact-method-card i {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-methods .contact-method-card h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-methods .contact-method-card small {
    color: rgba(255, 255, 255, 0.8);
}

.contact-container {
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}

.contact-intro-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    z-index: 10;
}

.response-time-card {
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.response-time-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.response-time-card h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.form-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
}

.form-body {
    padding: 3rem;
}

.alert-modern {
    border-radius: 15px;
    border: none;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.alert-modern .alert-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.alert-modern.alert-danger {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: #c53030;
}

.alert-modern.alert-danger .alert-icon {
    background: #fed7d7;
}

.alert-modern.alert-success {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    color: #2d7738;
}

.alert-modern.alert-success .alert-icon {
    background: #c6f6d5;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
}

.contact-form-modern .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-modern .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-modern .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.btn-contact-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 15px;
    padding: 1rem 3rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.4);
    color: white;
}

.form-note {
    color: #6c757d;
    font-size: 0.85rem;
    text-align: center;
}

.contact-info-card,
.conference-details-card,
.quick-links-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.info-header,
.details-header,
.links-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.info-header i,
.details-header i,
.links-header i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.info-body,
.details-body,
.links-body {
    padding: 2rem;
}

.contact-item,
.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.contact-item:last-child,
.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon,
.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

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

.phone-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.location-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.theme-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.date-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: var(--primary-color);
}

.price-icon {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: var(--primary-color);
}

.contact-details h6,
.detail-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: var(--primary-color);
}

.quick-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.quick-link:hover {
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateX(5px);
    color: var(--primary-color);
}

.quick-link i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.registration-link i {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

.speakers-link i {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.about-link i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.quick-link h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.quick-link small {
    color: #6c757d;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.contact-cta-card .cta-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cta-feature i {
    margin-right: 0.5rem;
    color: var(--gold-color);
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-price {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    color: var(--gold-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        margin-top: -2rem;
    }
    
    .contact-intro-card,
    .form-body {
        padding: 2rem;
    }
    
    .form-header {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
    }
    
    .form-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-item,
    .detail-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon,
    .detail-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .contact-details,
    .detail-content {
        text-align: center;
    }
    
    .info-body,
    .details-body {
        text-align: center;
    }
    
    .quick-link {
        text-align: center;
        justify-content: center;
    }
    
    .quick-link i {
        margin-right: 1rem;
    }
}

/* ================================
   ADMIN LOGIN PAGE STYLES
   ================================ */

.admin-login-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, var(--primary-color) 75%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.admin-login-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.4;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.login-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 3rem 2rem;
    text-align: center;
    position: relative;
}

.login-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.3;
}

.login-logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.login-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.login-title-section {
    position: relative;
    z-index: 2;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.login-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.security-badge i {
    margin-right: 0.5rem;
    color: var(--gold-color);
}

.login-body {
    padding: 3rem;
}

.admin-login-form .form-group {
    margin-bottom: 2rem;
}

.admin-login-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.admin-login-form .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.admin-login-form .input-group-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem;
}

.admin-login-form .form-control {
    border: none;
    padding: 1rem;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.admin-login-form .form-control:focus {
    background: white;
    box-shadow: none;
    border: none;
}

.admin-login-form .form-control::placeholder {
    color: #adb5bd;
}

.btn-admin-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    color: white;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-admin-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
    color: white;
}

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

.btn-admin-primary:disabled {
    opacity: 0.8;
    transform: none;
}

.login-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.demo-credentials {
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.demo-header {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.demo-header i {
    margin-right: 0.5rem;
}

.credential-item {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.credential-item:last-child {
    margin-bottom: 0;
}

.login-links {
    text-align: center;
}

.back-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.back-link:hover {
    color: var(--primary-color);
    transform: translateX(-3px);
}

#togglePassword {
    border-left: none;
    background: #f8f9fa;
    border: none;
    color: #6c757d;
    transition: all 0.3s ease;
}

#togglePassword:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .admin-login-card {
        margin: 1rem;
        border-radius: 20px;
    }
    
    .login-header,
    .login-body {
        padding: 2rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .admin-login-form .input-group-text,
    .admin-login-form .form-control {
        padding: 0.875rem;
    }
}

/* ================================
   CONFERENCE MATERIALS SECTION
   ================================ */

.flyer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.flyer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.flyer-preview {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.flyer-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.purple-flyer {
    background-image: url('../images/flyer-purple.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.blue-flyer {
    background-image: url('../images/flyer-blue.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.flyer-card:hover .flyer-overlay {
    opacity: 1;
}

.flyer-actions {
    text-align: center;
}

.flyer-info {
    padding: 2rem;
}

.flyer-features {
    margin-top: 1rem;
}

.materials-info-card {
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.sharing-options ul {
    margin: 0;
}

.share-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flyer-preview {
        height: 300px;
    }
    
    /* Make flyer overlay always visible on mobile */
    .flyer-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .flyer-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .materials-info-card {
        padding: 2rem;
        text-align: center;
    }
    
    .share-buttons {
        margin-top: 2rem;
    }
    
    .sharing-options ul li {
        display: block;
        margin: 0.5rem 0;
    }
    
    /* Fix navbar Register Now alignment */
    .navbar-collapse .navbar-nav {
        text-align: left;
    }
    
    .navbar-collapse .navbar-nav .nav-item {
        text-align: left;
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        text-align: left !important;
        justify-content: flex-start !important;
        display: flex !important;
        align-items: center;
        padding-left: 1rem;
        margin-left: 0;
    }
    
    /* Specifically target the Register Now button */
    .navbar-collapse .navbar-nav .nav-link.btn {
        text-align: left !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: auto;
        border-radius: 0.375rem;
        margin-top: 0.5rem;
    }
}

/* ================================
   ADMIN DASHBOARD STYLES
   ================================ */

.admin-navbar {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
    box-shadow: 0 2px 15px rgba(44, 62, 80, 0.3);
    border-bottom: 3px solid #3498db;
}

.admin-navbar .navbar-brand {
    color: #ecf0f1 !important;
    font-weight: 600;
}

.admin-navbar .navbar-nav .nav-link {
    color: #bdc3c7 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-navbar .navbar-nav .nav-link:hover {
    color: #3498db !important;
    transform: translateY(-1px);
}

.admin-body {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 100vh;
}

.admin-container {
    padding: 2rem 0;
}

.admin-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.admin-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.admin-header .lead {
    opacity: 0.9;
    font-size: 1.1rem;
}

.admin-stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    height: 100%;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.admin-stat-card.primary {
    border-left-color: #3498db;
}

.admin-stat-card.success {
    border-left-color: #27ae60;
}

.admin-stat-card.info {
    border-left-color: #f39c12;
}

.admin-stat-card.warning {
    border-left-color: #e74c3c;
}

.admin-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.admin-stat-icon.primary {
    color: #3498db;
}

.admin-stat-icon.success {
    color: #27ae60;
}

.admin-stat-icon.info {
    color: #f39c12;
}

.admin-stat-icon.warning {
    color: #e74c3c;
}

.admin-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.admin-stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-action-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    color: #333;
    height: 100%;
    min-height: 140px;
}

.admin-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #333;
}

.admin-action-card.primary {
    border-left: 4px solid #007bff;
}

.admin-action-card.primary:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.admin-action-card.success {
    border-left: 4px solid #28a745;
}

.admin-action-card.success:hover {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

.admin-action-card.info {
    border-left: 4px solid #17a2b8;
}

.admin-action-card.info:hover {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
    color: white;
}

.admin-action-card.secondary {
    border-left: 4px solid #6c757d;
}

.admin-action-card.secondary:hover {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
}

.admin-action-card.warning {
    border-left: 4px solid #ffc107;
}

.admin-action-card.warning:hover {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #333;
}

.admin-action-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: #f8f9fa;
    color: #6c757d;
    transition: all 0.3s ease;
}

.admin-action-card.primary .admin-action-icon {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.admin-action-card.success .admin-action-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.admin-action-card.info .admin-action-icon {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.admin-action-card.secondary .admin-action-icon {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.admin-action-card.warning .admin-action-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.admin-action-card:hover .admin-action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    transform: scale(1.1);
}

.admin-action-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.admin-action-card small {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
    display: block;
}

/* ================================
   MODERN FOOTER STYLES
   ================================ */

.footer-modern {
    background: #1a1a1a;
    color: white;
    margin-top: auto;
}

.footer-main {
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1), rgba(139, 90, 131, 0.1));
    z-index: 1;
}

.footer-main > .container {
    position: relative;
    z-index: 2;
}

.footer-section {
    height: 100%;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 1rem;
    filter: brightness(1.2);
}

.footer-brand-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gold-color);
}

.footer-brand-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Conference Details */
.footer-conference-details {
    margin-left: 0;
}

.conference-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.footer-icon {
    width: 16px;
    margin-right: 0.5rem;
    color: var(--gold-color);
    font-size: 0.8rem;
}

.footer-theme {
    font-weight: 500;
    color: var(--gold-color);
    font-style: italic;
    font-size: 0.9rem;
}

/* Section Titles */
.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-color);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-section-title i {
    color: var(--gold-color);
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 0.25rem;
}

/* Registration Info - Simplified */
.footer-registration-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-price-card {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 0.25rem;
}

.price-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta-btn {
    display: block;
    text-align: center;
    background: var(--gold-color);
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: #ffed4e;
    color: #333;
}

/* Contact Info - Simplified */
.footer-contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: var(--gold-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-details {
    flex-grow: 1;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold-color);
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Social Media - Simplified */
.footer-social-section {
    margin-top: 1rem;
}

.social-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--gold-color);
    color: #333;
}

/* Footer Bottom - Simplified */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-align: center;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn:hover {
    color: var(--gold-color);
}

.back-to-top-btn i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
}

/* Responsive Footer - Simplified */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo-section {
        justify-content: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-conference-details,
    .footer-contact-info,
    .social-links {
        text-align: center;
        justify-content: center;
    }
    
    .conference-detail-item,
    .contact-item {
        justify-content: center;
    }
    
    .footer-registration-info {
        margin-bottom: 1.5rem;
    }
}

/* Fix dropdown positioning */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.navbar-nav .dropdown-menu.dropdown-menu-end {
    right: 0;
    left: auto;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.navbar-nav .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Ensure dropdown stays in viewport */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        box-shadow: none;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav .dropdown-item {
        color: #333;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: var(--primary-color);
        color: white;
        transform: none;
    }
}

/* ================================
   MODERN CTA SECTION STYLES
   ================================ */

.cta-section-modern {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    overflow: hidden;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-icon i {
    font-size: 2rem;
    color: var(--gold-color);
}

.cta-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Registration Card */
.cta-registration-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.registration-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.price-highlight {
    flex-shrink: 0;
}

.price-badge {
    background: linear-gradient(45deg, var(--gold-color), #ffed4e);
    color: #333;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    min-width: 200px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.registration-benefits {
    flex-grow: 1;
}

.benefits-title {
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    color: var(--gold-color);
    font-size: 0.8rem;
    width: 16px;
}

/* Action Buttons */
.action-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(45deg, var(--gold-color), #ffed4e);
    color: #333;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    color: #333;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold-color);
    color: var(--gold-color);
    transform: translateY(-3px);
}

.cta-btn-primary span,
.cta-btn-secondary span {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cta-btn-primary small,
.cta-btn-secondary small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--gold-color);
    font-size: 1rem;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section-modern {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .registration-card-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-indicators {
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

/* ================================
   ADMIN FOOTER STYLES
   ================================ */

.admin-footer {
    background: #2c3e50;
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
    border-top: 1px solid #34495e;
}

.admin-footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.admin-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.admin-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.admin-footer-link:hover {
    color: var(--gold-color);
}

.admin-footer-link i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .admin-footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .admin-footer .row {
        text-align: center;
    }
}

.admin-action-card small {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
    display: block;
}

/* Admin Table Container */
.admin-table-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.admin-table {
    margin-bottom: 0;
}

.admin-table thead th {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #2c3e50;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.admin-table tbody td {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: #f8f9fa;
}

.admin-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

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

/* Admin Breadcrumb */
.admin-breadcrumb {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ================================
   MODERN DASHBOARD STYLES
   ================================ */

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0.3;
    z-index: 1;
}

.dashboard-welcome {
    position: relative;
    z-index: 2;
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.dashboard-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dashboard-time {
    position: relative;
    z-index: 2;
    text-align: right;
}

.current-time {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.current-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modern Statistics Cards */
.modern-stat-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.modern-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-card-body {
    padding: 2rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.stat-content {
    flex-grow: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.stat-trend i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
}

/* Card Variants */
.modern-stat-card.registrations {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modern-stat-card.registrations .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-stat-card.registrations .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.modern-stat-card.confirmed {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.modern-stat-card.confirmed .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-stat-card.confirmed .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.modern-stat-card.pending {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.modern-stat-card.pending .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-stat-card.pending .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.modern-stat-card.revenue {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #8b4513;
}

.modern-stat-card.revenue .stat-icon {
    background: rgba(139, 69, 19, 0.1);
    color: #8b4513;
}

.modern-stat-card.revenue .stat-label {
    color: rgba(139, 69, 19, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Modern Action Cards */
.modern-action-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Enhanced Schedule Styles for About and Schedule Pages */

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 500px;
}

.hero-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-carousel .container {
    position: relative;
    z-index: 2;
}

.scripture-highlight {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About Page Schedule Section */
.schedule-day-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.schedule-day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.session-card {
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.session-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.session-time {
    font-size: 0.9rem;
    font-weight: 600;
}

.session-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.session-speaker {
    font-size: 0.85rem;
}

.session-type {
    margin-top: 0.5rem;
}

.session-location {
    font-size: 0.8rem;
}

/* Schedule Coming Soon Styles */
.schedule-coming-soon {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon i {
    animation: pulse 2s infinite;
}

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

.preview-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 500;
}

.preview-item i {
    width: 20px;
    margin-right: 10px;
}

/* Enhanced Session Cards */
.session-notes {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Badge Enhancements */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35em 0.6em;
}

.bg-opacity-75 {
    background-color: rgba(var(--bs-bg-opacity-rgb), 0.75) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-carousel .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-carousel h1 {
        font-size: 2rem !important;
    }
    
    .hero-carousel h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-carousel p {
        font-size: 1rem !important;
    }
    
    .schedule-day-card {
        margin-bottom: 2rem;
    }
    
    .session-card {
        margin-bottom: 1rem;
    }
    
    .day-header {
        padding: 1.5rem !important;
    }
    
    .day-sessions {
        padding: 1.5rem !important;
    }
}

/* Vision/Mission/Values Cards */
.vision-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
}

/* Expectation Cards */
.expectation-card {
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.expectation-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
}

/* Enhanced gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #5a3a7a);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #6d4c7a);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color), #146c43);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warning-color), #e67100);
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--info-color), #3a7a8a);
}

/* Countdown Timer Styles */
.countdown-section {
    text-align: center;
}

.countdown-section-main {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1), rgba(255, 140, 66, 0.1));
}

.countdown-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    color: var(--primary-color) !important;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(106, 76, 147, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    box-shadow: 0 8px 25px rgba(106, 76, 147, 0.15);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(106, 76, 147, 0.25);
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: none;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.countdown-message {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 135, 84, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.countdown-message p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* Materials Form Styles */
.materials-form .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.materials-form .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.materials-form .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.materials-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(106, 76, 147, 0.25);
}

.materials-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.materials-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 76, 147, 0.3);
}

.materials-form .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.materials-form .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 76, 147, 0.3);
}

/* Registration Alert Styles */
.registration-alert {
    animation: slideDown 0.5s ease-out;
    position: relative !important;
    z-index: 1020;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.registration-alert.show {
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-alert.alert-warning {
    background: linear-gradient(135deg, var(--warning-color), #ffc107) !important;
    border: 2px solid #ffc107 !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.registration-alert.alert-danger {
    background: linear-gradient(135deg, var(--danger-color), #e74c3c) !important;
    border: 2px solid #dc3545 !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Prevent Bootstrap auto-dismiss */
.registration-alert .btn-close {
    display: none !important;
}

/* Force visibility */
.alert.registration-alert:not(.d-none) {
    display: block !important;
    opacity: 1 !important;
}

/* Bishop/Host Section Styles */
.bishop-section {
    position: relative;
    z-index: 1;
}

.bishop-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(106, 76, 147, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.bishop-photo-container {
    position: relative;
    display: inline-block;
}

.bishop-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(106, 76, 147, 0.3);
    transition: transform 0.3s ease;
}

.bishop-photo:hover {
    transform: scale(1.05);
}

.bishop-photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    border: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(106, 76, 147, 0.3);
}

.bishop-info {
    padding-left: 1rem;
}

.bishop-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bishop-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.bishop-diocese {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.bishop-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(106, 76, 147, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
}

.bishop-message blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* Calendar Integration Styles */
.calendar-buttons {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.calendar-buttons .btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-detail-card .calendar-buttons .btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-detail-card .calendar-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Location Link Styles */
.location-link-section {
    margin: 1.5rem 0;
}

.location-link-section .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-link-section .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Detail Cards */
.hero-detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.hero-detail-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-detail-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.hero-detail-card h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-detail-card small {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Design for Bishop Section */
@media (max-width: 768px) {
    .bishop-card {
        padding: 1.5rem;
    }
    
    .bishop-photo,
    .bishop-photo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .bishop-photo-placeholder {
        font-size: 3rem;
    }
    
    .bishop-name {
        font-size: 1.6rem;
    }
    
    .bishop-title {
        font-size: 1.1rem;
    }
    
    .bishop-info {
        padding-left: 0;
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .bishop-message {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .calendar-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hero-detail-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .location-link-section .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .calendar-buttons .btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Animation for calendar and map buttons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.calendar-buttons .btn:active,
.location-link-section .btn:active {
    animation: pulse 0.3s ease;
}

/* Additional styling for better visual hierarchy */
.hero-detail-card:nth-child(1) .hero-detail-icon {
    color: #87ceeb; /* Light blue for date */
}

.hero-detail-card:nth-child(2) .hero-detail-icon {
    color: #ff8c42; /* Orange for location */
}

.hero-detail-card:nth-child(3) .hero-detail-icon {
    color: #ffd700; /* Gold for price */
}

.hero-detail-card:nth-child(4) .hero-detail-icon {
    color: #98fb98; /* Light green for calendar */
}
  