/* ===================================
   2ND ICIBMAH 2026 - MODERN PREMIUM CSS
   International Conference on Business Management,
   Accounting, Engineering and Humanities
   =================================== */

:root {
    /* Color Palette - Pink/Crimson/Maroon Theme */
    --primary: #6b0d35;
    --secondary: #b5094d;
    --accent: #f0195a;
    --gold: #f4c430;
    --dark: #2d0418;
    --light-bg: #fff5f8;
    --gradient: linear-gradient(135deg, #2d0418 0%, #b5094d 50%, #f0195a 100%);
    --gradient-glow: linear-gradient(135deg, #2d0418 0%, #b5094d 50%, #f0195a 100%);
    
    /* Fonts */
    --font-body: 'Inter', sans-serif;
    --font-headings: 'Space Grotesk', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Shadows & Effects */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(181, 9, 77, 0.4);
    --transition: all 0.3s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    color: #ffffff;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    font-family: var(--font-headings);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   Navigation Bar
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.navbar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.4));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.navbar-logo-img:hover {
    filter: drop-shadow(0 0 14px rgba(0, 180, 216, 0.7));
    transform: scale(1.05);
}

.logo-badge {
    background: var(--gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-year {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-edition {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--accent);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-left: 15px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: #ff5520;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #3d0620 50%, #6b0d35 100%);
    margin-top: 80px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 25, 90, 0.12) 0%, transparent 50%);
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
    display: block;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 7rem;
    line-height: 1;
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.title-line {
    color: white;
    display: block;
    margin-bottom: 0.3rem;
}

.title-year {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-full-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-theme-box {
    background: rgba(15, 23, 41, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.theme-label {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
}

.hero-meta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-meta-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero-primary {
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(181, 9, 77, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(15, 23, 41, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.countdown-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.countdown-item span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.countdown-item span:last-child {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 300;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===================================
   Stats Bar
   =================================== */

.stats-bar {
    background: #3d0620;
    padding: 3rem 0;
    width: 100%;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-headings);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: 5rem 0;
    background: white;
}

.about .section-title {
    color: var(--secondary);
}

.affiliation .section-title {
    color: var(--secondary);
}

.schedule .section-title {
    color: var(--secondary);
}

.contact .section-title {
    color: var(--secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.about-card-body h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-card-body p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.highlight-box {
    background: var(--dark);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-header i {
    font-size: 1.8rem;
    color: var(--accent);
}

.highlight-box h4 {
    color: white;
    margin: 0;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f0195a;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box-alt {
    border: 2px solid var(--accent);
    background: #3d0620;
}

/* ===================================
   Affiliation Section
   =================================== */

.affiliation {
    padding: 5rem 0;
    background: #fce8ef;
}

.affiliation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.affiliation-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.affiliation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.affiliation-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #f9c0d0;
    box-shadow: 0 8px 24px rgba(181, 9, 77, 0.12);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.affiliation-card:hover .affiliation-logo {
    box-shadow: 0 12px 32px rgba(181, 9, 77, 0.22);
    transform: scale(1.05);
}

.affiliation-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    border-radius: 50%;
}

.affiliation-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.affiliation-card p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.affiliation-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===================================
   Research Themes Section
   =================================== */

.research-themes {
    padding: 5rem 0;
    background: var(--dark);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.themes-grid.center-last > :nth-last-child(-n+2) {
    grid-column: auto / span 1;
}

.themes-grid.center-last > :nth-last-child(1) {
    grid-column: 2;
}

.theme-card {
    background: #3d0620;
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 300px;
}

.theme-card[data-color="blue"] {
    border-top-color: #f0195a;
}

.theme-card[data-color="green"] {
    border-top-color: #e8407a;
}

.theme-card[data-color="purple"] {
    border-top-color: #c4536a;
}

.theme-card[data-color="orange"] {
    border-top-color: #b5094d;
}

.theme-card[data-color="teal"] {
    border-top-color: #6b0d35;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(181, 9, 77, 0.4);
}

.theme-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
}

.theme-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 25, 90, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0195a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.theme-card[data-color="blue"] .theme-icon {
    background: rgba(240, 25, 90, 0.2);
    color: #f0195a;
}

.theme-card[data-color="green"] .theme-icon {
    background: rgba(232, 64, 122, 0.2);
    color: #e8407a;
}

.theme-card[data-color="purple"] .theme-icon {
    background: rgba(196, 83, 106, 0.2);
    color: #c4536a;
}

.theme-card[data-color="orange"] .theme-icon {
    background: rgba(181, 9, 77, 0.2);
    color: #b5094d;
}

.theme-card[data-color="teal"] .theme-icon {
    background: rgba(107, 13, 53, 0.2);
    color: #a0305a;
}

.theme-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.theme-items {
    list-style: none;
}

.theme-items li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.5;
}

.theme-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f0195a;
    font-weight: bold;
    font-size: 1.2rem;
}

.theme-card-footer {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Speakers Section
   =================================== */

.speakers {
    padding: 5rem 0;
    background: white;
}

.speaker-section {
    margin-bottom: 4rem;
}

.speaker-card-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.speaker-image-wrapper {
    position: relative;
    text-align: center;
}

.speaker-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.15;
    border-radius: 20px;
    z-index: 0;
    blur: 40px;
}

.speaker-image {
    position: relative;
    z-index: 1;
}

.speaker-image img {
    width: 320px;
    height: 380px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.speaker-image:hover img {
    transform: scale(1.02);
}

.speaker-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.speaker-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.speaker-info h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.speaker-roles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.speaker-role {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.speaker-role i {
    color: var(--accent);
    font-size: 1.1rem;
}

.speaker-uni {
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.keynote-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.keynote-label i {
    font-size: 1rem;
}

.keynote-title {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.speaker-bio {
    margin-top: 1.5rem;
}

.speaker-bio h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.speaker-bio p {
    color: #555;
    line-height: 1.7;
}

/* ===================================
   Submission Section
   =================================== */

.submission {
    padding: 5rem 0;
    background: var(--gradient);
    color: white;
}

.submission .section-title {
    color: white;
}

.submission .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.submission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.submission-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.submission-card-featured {
    border-color: var(--gold);
    transform: scale(1.02);
}

.submission-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.submission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.submission-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.submission-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.journal-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.journal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.journal-item i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.journal-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.submission-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.submission-cta h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.btn-cta {
    background: var(--accent);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: #ff5520;
}

/* ===================================
   Schedule/Timeline Section
   =================================== */

.schedule {
    padding: 5rem 0;
    background: white;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Vertical center line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item.timeline-item-alt {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

/* Hide unused columns from old layout */
.timeline-left,
.timeline-right,
.timeline-center,
.timeline-line {
    display: none;
}

/* Content box */
.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8edf5;
    position: relative;
    max-width: 320px;
    width: 100%;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0,61,122,0.15);
    transform: translateY(-3px);
}

/* Arrow pointing to center line */
.timeline-item .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: white;
    border-right: none;
}

.timeline-item.timeline-item-alt .timeline-content::after {
    right: auto;
    left: -10px;
    border-left: none;
    border-right: 10px solid white;
}

/* Circle marker on the center line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: var(--secondary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover::before {
    transform: translate(-50%, -50%) scale(1.3);
}

/* Date badge styling */
.timeline-date-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.timeline-date-badge.urgent {
    background: linear-gradient(135deg, var(--accent), #ff4500);
}

.timeline-date-badge.highlight {
    background: linear-gradient(135deg, var(--gold), #e5a800);
    color: var(--dark);
}

.timeline-content h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    margin-top: 0;
}

.timeline-content p {
    color: #777;
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: 5rem 0;
    background: #f8faff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card-main {
    background: var(--gradient);
    color: white;
    grid-column: span 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.contact-card-main .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card-main h4 {
    color: white;
}

.contact-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-card-main p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-persons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.contact-person i {
    color: var(--accent);
    font-size: 1.1rem;
}

.contact-card-main .contact-person i {
    color: rgba(255, 255, 255, 0.8);
}

.contact-person a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-card-main .contact-person a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-person a:hover {
    color: var(--accent);
}

/* ===================================
   Footer
   =================================== */

.footer-top {
    background: var(--dark);
    padding: 4rem 0 2rem;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-badge {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo-year {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.75rem;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-section ul li a::after {
    content: '→';
    opacity: 0;
    transition: var(--transition);
}

.footer-section ul li a:hover::after {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ===================================
   Animations & Reveal
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speaker-card-main {
        grid-template-columns: 1fr;
    }

    .submission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 14px 28px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-cta {
        display: block;
        margin: 1rem 28px;
        padding: 0.75rem 1.5rem;
        text-align: center;
        border-radius: 25px;
        font-size: 0.95rem;
    }

    .nav-cta {
        margin-left: 10px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-wrapper {
        flex-direction: row;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .about-content,
    .speaker-card-main,
    .submission-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-item,
    .timeline-item.timeline-item-alt {
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item::before {
        left: 16px;
        top: 1.5rem;
        transform: translateX(-50%);
    }

    .timeline-item:hover::before {
        transform: translateX(-50%) scale(1.3);
    }

    .timeline-item .timeline-content::after,
    .timeline-item.timeline-item-alt .timeline-content::after {
        right: auto;
        left: -10px;
        border-left: none;
        border-right: 10px solid white;
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .countdown-wrapper {
        gap: 1rem;
        padding: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .countdown-sep {
        font-size: 1rem;
    }

    .navbar-container {
        height: 60px;
    }

    .logo-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .logo-year {
        font-size: 1.1rem;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .speaker-image img {
        width: 100%;
        height: auto;
    }

    .submission-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Utility Classes
   =================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-white {
    color: white;
}

.text-accent {
    color: var(--accent);
}

.bg-dark {
    background: var(--dark);
}

.bg-light {
    background: var(--light-bg);
}

.m-0 {
    margin: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

/* ===================================
   1st ICIBMAH Gallery Section
   =================================== */

.gallery-section {
    padding: 5rem 0;
    background: #fff;
}

.gallery-title {
    color: var(--secondary) !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(181, 9, 77, 0.25);
}

.gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-wide {
    grid-column: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(181, 9, 77, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    transition: color 0.2s;
}

.lightbox-close:hover { color: #ff8ab5; }

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10000;
    transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(181, 9, 77, 0.6); }

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }
}

/* ===================================
   Registration Fees Section
   =================================== */

.fees-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0a12 0%, #2d0f1f 50%, #1a0a12 100%);
}

.fees-section .section-title {
    color: #ffffff;
}

.fee-note {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.fee-table-wrapper {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.fee-category-label {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.fee-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.fee-badge-green {
    background: rgba(0, 200, 120, 0.3);
}

.fee-badge-blue {
    background: rgba(60, 130, 255, 0.3);
}

.mycite {
    text-decoration: underline;
    font-style: italic;
}

.fee-table-scroll {
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.fee-table thead tr {
    background: rgba(255, 255, 255, 0.08);
}

.fee-table th {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fee-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s ease;
}

.fee-table tbody tr:last-child {
    border-bottom: none;
}

.fee-table tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.fee-table td {
    padding: 1rem 1.25rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    vertical-align: top;
}

.mode-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.mode-badge.onsite {
    background: rgba(181, 9, 77, 0.3);
    color: #ff8ab5;
    border: 1px solid rgba(181, 9, 77, 0.5);
}

.mode-badge.online {
    background: rgba(60, 130, 255, 0.2);
    color: #80b3ff;
    border: 1px solid rgba(60, 130, 255, 0.4);
}

.fee-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.fee-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.35rem;
}

.fee-includes li i {
    color: #ff8ab5;
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.fee-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===================================
   Publication Accordion
   =================================== */

.pub-accordion {
    margin-bottom: 0.6rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pub-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: left;
    gap: 0.5rem;
}

.pub-accordion-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.pub-accordion-btn.pub-accordion-open {
    background: rgba(255, 255, 255, 0.15);
}

.pub-chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pub-accordion-body {
    display: none;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.15);
}

.pub-accordion-body-open {
    display: block;
}

/* ===================================
   Venue Map Modal
   =================================== */

.venue-trigger {
    cursor: pointer;
    transition: var(--transition);
}

.venue-trigger:hover {
    color: var(--accent) !important;
    transform: scale(1.05);
}

.map-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.map-modal-overlay.active {
    display: flex;
}

.map-modal-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 680px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

.map-modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary);
    color: #fff;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.map-modal-header i {
    font-size: 1.1rem;
}

.map-modal-header span {
    flex: 1;
}

.map-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.25rem;
    transition: var(--transition);
}

.map-modal-close:hover {
    color: #ffd0df;
    transform: scale(1.2);
}

.map-modal-footer {
    padding: 0.9rem 1.25rem;
    background: #f9f9f9;
    text-align: right;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-directions-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}