/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-red: #470b0b;
    --burgundy: #470b0b;
    --deep-burgundy: #470b0b;
    --dark-burgundy: #470b0b;
    --gold: #C8A855;
    --dark-gold: #A88A30;
    --light-gold: #D4B860;
    --pale-gold: #DCC990;
    --cream: #F5F1E8;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --dark-bg: #2A0814;
    --cream-light: #FAF8F3;
    --cream-medium: #F5F1E8;
    --cream-dark: #E8DEC8;
    --beige: #D4C4A8;
    --sand: #C9B896;
    --ivory: #FFFFF0;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--cream);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-section.fading-out {
    opacity: 0;
    transform: translateY(-20px);
}

.hero,
.section,
.about-section,
.country-matrix-section,
.committees-section,
.contact-section,
.register-section {
    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.scroll-arrow {
    position: fixed;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(71,11,11,0.3);
}

.scroll-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-arrow:hover {
    background: var(--gold);
    color: var(--burgundy);
    transform: scale(1.1);
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

#scrollUp { bottom: 90px; }
#scrollDown { bottom: 36px; }

.navbar {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 50%, var(--deep-burgundy) 100%);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--gold);
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35));
    transition: filter 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.nav-logo-wrap:hover .nav-logo-img {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.7));
    transform: scale(1.04);
}

.nav-logo-wrap .nav-logo {
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--light-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
    letter-spacing: 0.8px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }

.nav-active { color: var(--gold) !important; }
.nav-active::after { width: 100% !important; }

.register-nav-btn {
    background: var(--gold);
    color: var(--burgundy) !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    font-size: 0.9rem !important;
}

.register-nav-btn:hover {
    background: var(--light-gold) !important;
    transform: translateY(-1px);
}

.register-nav-btn::after { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 40%, var(--deep-burgundy) 100%);
    color: var(--cream);
    padding: 60px 20px 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
    align-items: center;
}

.hero-banner {
    position: absolute;
    inset: 0;
    background-image: url('World_map.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(47, 5, 15, 0.4);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.title-section { margin: 1.2rem 0; }

.university-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--pale-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    animation: fadeInDown 1s ease;
}

.college-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    animation: fadeInDown 1s ease 0.2s both;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease 0.4s both;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #e8c96a;
    letter-spacing: 6px;
    margin-bottom: 1.2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.tagline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.tagline-ornament {
    width: 45px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.tagline-ornament.left { background: linear-gradient(to right, transparent, var(--gold)); }
.tagline-ornament.right { background: linear-gradient(to left, transparent, var(--gold)); }

.tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    color: var(--pale-gold);
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.8s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.cta-button {
    display: inline-block;
    padding: 11px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button span { position: relative; z-index: 2; }

.btn-shine {
    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 ease;
}

.cta-button:hover .btn-shine { left: 100%; }

.primary-btn {
    background: var(--gold);
    color: var(--burgundy);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    border: 2px solid var(--gold);
}

.primary-btn:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.secondary-btn:hover {
    background: var(--gold);
    color: var(--burgundy);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.section {
    padding: 60px 20px;
    position: relative;
}

.about-section {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 40%, var(--deep-burgundy) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('world-map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
    letter-spacing: 3px;
}

.about-section .section-title,
.committees-section .section-title,
.contact-section .section-title {
    color: var(--gold);
}

.register-delegate-section .section-title {
    color: var(--burgundy) !important;
}

.register-ipc-section .section-title,
.ipc-title {
    color: var(--burgundy) !important;
}

.title-underline {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 0.8rem;
}

.section-tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pale-gold);
    letter-spacing: 1.5px;
}

.register-delegate-section .section-tagline,
.register-ipc-section .section-tagline {
    color: var(--burgundy) !important;
    opacity: 0.7;
}

.about-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-intro-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.about-ornament-top,
.about-ornament-bottom {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.about-ornament-top { margin-bottom: 1.8rem; }
.about-ornament-bottom { margin-top: 1.8rem; }

.about-ornament-top::before,
.about-ornament-top::after,
.about-ornament-bottom::before,
.about-ornament-bottom::after {
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.about-ornament-top::before,
.about-ornament-bottom::before { left: 0; }
.about-ornament-top::after,
.about-ornament-bottom::after { right: 0; }

.about-opening {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--cream);
    font-weight: 400;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.pillar-card {
    background: rgba(255,255,255,0.06);
    padding: 2.5rem 2.2rem;
    border: 1px solid rgba(200,168,85,0.3);
    border-top: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.25;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.pillar-divider {
    width: 45px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.2rem;
    opacity: 0.6;
}

.pillar-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.country-matrix-section {
    background: linear-gradient(160deg, var(--cream-light) 0%, var(--cream-medium) 40%, var(--ivory) 60%, var(--cream-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
}

.matrix-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(71,11,11,0.04) 0%, transparent 35%),
        radial-gradient(circle at 85% 50%, rgba(71,11,11,0.04) 0%, transparent 35%);
    pointer-events: none;
}

.matrix-bg-glow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px; height: 300px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.06;
}

.matrix-bg-glow.left { left: -80px; background: var(--burgundy); }
.matrix-bg-glow.right { right: -80px; background: var(--burgundy); }

.country-matrix-section .section-title {
    color: var(--burgundy) !important;
}

.country-matrix-section .section-tagline {
    color: rgba(71,11,11,0.65) !important;
}

.country-matrix-section .title-underline {
    background: linear-gradient(90deg, transparent, var(--burgundy), transparent);
}

.matrix-horizontal-strip {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.matrix-h-card {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 3.5rem;
    background: #ffffff;
    border: 1px solid rgba(71,11,11,0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 6px 0;
    box-shadow: 0 2px 16px rgba(71,11,11,0.07);
}

.matrix-h-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.matrix-h-card:hover {
    background: var(--cream-light);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(71,11,11,0.12);
}

.matrix-h-card:hover::before { opacity: 1; }

.matrix-h-card-shimmer {
    position: absolute;
    top: 0; left: -200%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200,168,85,0.05), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.8s ease;
}

.matrix-h-card:hover .matrix-h-card-shimmer { left: 200%; }

.matrix-h-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-h-icon-ring {
    position: relative;
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-h-icon-inner {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(71,11,11,0.06);
    border: 1px solid rgba(71,11,11,0.2);
    border-radius: 50%;
    color: var(--burgundy);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.matrix-h-icon-inner svg {
    width: 28px; height: 28px;
    transition: all 0.4s ease;
}

.matrix-h-card:hover .matrix-h-icon-inner {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--gold);
}

.matrix-h-icon-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(71,11,11,0.15);
    animation: orbitSpin 10s linear infinite;
}

.matrix-h-icon-orbit:first-of-type {
    width: 78px; height: 78px;
}

.matrix-h-icon-orbit.delay {
    width: 90px; height: 90px;
    animation-duration: 14s;
    animation-direction: reverse;
    border-color: rgba(71,11,11,0.08);
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.matrix-h-center { position: relative; z-index: 1; }

.matrix-h-label {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(71,11,11,0.5);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.matrix-h-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 1.5px;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.matrix-h-card:hover .matrix-h-title { color: var(--burgundy); }

.matrix-h-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(26,26,26,0.7);
    margin-bottom: 1rem;
    max-width: 420px;
}

.matrix-h-tags { display: flex; gap: 1rem; flex-wrap: wrap; }

.matrix-h-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: rgba(71,11,11,0.55);
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.matrix-h-card:hover .matrix-h-tag { color: var(--burgundy); }

.matrix-h-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.8rem;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.matrix-h-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(71,11,11,0.05);
    border: 1px solid rgba(71,11,11,0.1);
    border-radius: 12px;
    padding: 1rem 1.8rem;
    transition: all 0.4s ease;
}

.matrix-h-card:hover .matrix-h-stats-row {
    background: rgba(71,11,11,0.08);
    border-color: rgba(71,11,11,0.2);
}

.matrix-h-stat { text-align: center; display: flex; flex-direction: column; gap: 0.2rem; }

.matrix-h-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

.matrix-h-stat-lbl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: rgba(71,11,11,0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.matrix-h-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(71,11,11,0.2);
}

.matrix-h-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 11px 26px;
    background: var(--burgundy);
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 14px rgba(71,11,11,0.2);
    white-space: nowrap;
}

.matrix-h-btn:hover {
    background: var(--gold);
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(71,11,11,0.25);
}

.matrix-h-btn span, .matrix-h-btn svg { position: relative; z-index: 1; }
.matrix-h-btn-arrow { width: 16px; height: 16px; transition: transform 0.3s ease; }
.matrix-h-btn:hover .matrix-h-btn-arrow { transform: translateX(5px); }

.matrix-h-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 3.5rem;
    margin: 3px 0;
    opacity: 0.4;
}

.matrix-h-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(71,11,11,0.4), transparent);
}

.matrix-h-divider-gem {
    color: var(--burgundy);
    font-size: 0.9rem;
}

.committees-section {
    background: linear-gradient(135deg, #faf8f4 0%, #f2ede0 50%, #faf8f4 100%);
    position: relative;
}

.committees-section .section-title {
    color: var(--burgundy) !important;
}

.committees-section .section-tagline {
    color: rgba(71,11,11,0.6) !important;
}

.committees-section .title-underline {
    background: linear-gradient(90deg, transparent, var(--burgundy), transparent);
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.committees-grid-5 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.committees-grid-5 .committee-card {
    flex: 0 1 calc(33.333% - 1.4rem);
    min-width: 260px;
}

.committees-grid-5 .committee-card:nth-child(4),
.committees-grid-5 .committee-card:nth-child(5) {
    flex: 0 1 calc(33.333% - 1.4rem);
}

.committee-card {
    background: #ffffff;
    padding: 2.5rem 2rem 2rem;
    border-radius: 14px;
    border: 1px solid rgba(71,11,11,0.1);
    border-top: 3px solid var(--burgundy);
    box-shadow: 0 4px 18px rgba(71,11,11,0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    background-size: 200% 100%;
}

.committee-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 14px 40px rgba(71,11,11,0.14);
}

.committee-emblem-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.committee-emblem {
    width: 120px; height: 120px;
    transition: transform 0.4s ease;
    object-fit: contain;
}

.committee-card:hover .committee-emblem { transform: scale(1.08); }

.committee-abbr {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    text-align: center;
    transition: all 0.3s ease;
}

.committee-full {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(71,11,11,0.75);
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.committee-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(26,26,26,0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    flex: 1;
}

.committee-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(71,11,11,0.1);
}

.committee-tag {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.contact-section {
    background: linear-gradient(160deg, var(--deep-burgundy) 0%, #3d0a0a 35%, var(--burgundy) 65%, var(--deep-burgundy) 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 60px 20px 65px;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('world-map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.contact-bg-pattern { display: none; }
.contact-bg-glow { display: none; }

.contact-corner {
    position: absolute;
    width: 44px; height: 44px;
    border-style: solid;
    border-color: rgba(200,168,85,0.35);
    pointer-events: none;
    z-index: 2;
}
.contact-corner-tl { top: 24px; left: 24px; border-width: 2px 0 0 2px; }
.contact-corner-tr { top: 24px; right: 24px; border-width: 2px 2px 0 0; }
.contact-corner-bl { bottom: 24px; left: 24px; border-width: 0 0 2px 2px; }
.contact-corner-br { bottom: 24px; right: 24px; border-width: 0 2px 2px 0; }

.contact-un-seal {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px; height: 340px;
    color: rgba(200,168,85,0.07);
    pointer-events: none;
    z-index: 0;
}

.contact-title-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,168,85,0.45), transparent);
}

.contact-title-center {
    text-align: center;
    flex-shrink: 0;
}

.contact-title-tag {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.7rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(200,168,85,0.6);
    margin-bottom: 0.45rem;
}

.contact-title-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    line-height: 1.15;
}

.contact-title-sub {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(245,241,232,0.5);
    letter-spacing: 1.5px;
}

.contact-triptych {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 2.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(200,168,85,0.12);
    transition: all 0.3s ease;
}

.contact-info-card:last-of-type { border-bottom: none; }

.contact-info-card:hover .contact-info-icon {
    background: var(--gold);
    color: var(--burgundy);
    border-color: var(--gold);
}

.contact-info-icon {
    width: 42px; height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,168,85,0.1);
    border: 1px solid rgba(200,168,85,0.25);
    border-radius: 10px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.contact-info-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.68rem;
    color: rgba(200,168,85,0.5);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    text-decoration: none;
    line-height: 1.45;
    font-weight: 500;
    transition: color 0.3s ease;
}

a.contact-info-value:hover { color: var(--light-gold); }

.contact-social-row {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(200,168,85,0.15);
}

.contact-social-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 0.68rem;
    color: rgba(200,168,85,0.5);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-social-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 5px 12px;
    background: rgba(200,168,85,0.1);
    border: 1px solid rgba(200,168,85,0.25);
    border-radius: 20px;
    color: rgba(200,168,85,0.85);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon-btn:hover {
    background: var(--gold);
    color: var(--burgundy);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-social-icon-btn svg { flex-shrink: 0; }

.contact-vert-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 0;
}

.contact-vert-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200,168,85,0.35), transparent);
}

.contact-vert-gem {
    color: var(--gold);
    font-size: 0.6rem;
    opacity: 0.55;
    padding: 3px 0;
    line-height: 1;
}

.contact-form-col {
    display: flex;
    flex-direction: column;
    padding-left: 2.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,168,85,0.15);
    border-radius: 14px;
    overflow: hidden;
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.5rem;
    background: rgba(71,11,11,0.5);
    border-bottom: 1px solid rgba(200,168,85,0.2);
    flex-wrap: wrap;
}

.contact-form-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    flex: 1;
}

.contact-form-header-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    color: rgba(200,168,85,0.65);
}

.contact-form-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--light-gold);
    animation: pulseDot 2.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

.contact-form-compact {
    padding: 1.5rem 1.5rem 1.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
    align-content: start;
}

.cfc-field {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.cfc-field-full { grid-column: 1 / -1; }
.contact-submit-wrap-full { grid-column: 1 / -1; }

.cfc-field label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(200,168,85,0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cfc-field label svg { color: rgba(200,168,85,0.6); flex-shrink: 0; }

.cfc-field input,
.cfc-field select,
.cfc-field textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid rgba(200,168,85,0.18);
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--cream);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    outline: none;
}

.cfc-field select option { background: var(--burgundy); color: var(--cream); }

.cfc-field input:focus,
.cfc-field select:focus,
.cfc-field textarea:focus {
    border-color: rgba(200,168,85,0.5);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(200,168,85,0.08);
}

.cfc-field input::placeholder,
.cfc-field textarea::placeholder {
    color: rgba(245,241,232,0.25);
    font-style: italic;
}

.cfc-field textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 11px 28px;
    background: var(--gold);
    color: var(--burgundy);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.2rem;
}

.contact-submit-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.contact-submit-btn .btn-text { position: relative; z-index: 2; }

.contact-submit-btn .btn-icon {
    width: 15px; height: 15px;
    position: relative; z-index: 2;
    transition: transform 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}

.contact-submit-btn .btn-icon svg { width: 100%; height: 100%; }
.contact-submit-btn:hover .btn-icon { transform: translateX(5px); }

.contact-bottom-ribbon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-ribbon-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,168,85,0.35), transparent);
}

.contact-ribbon-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.72rem;
    font-style: italic;
    color: rgba(200,168,85,0.4);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.register-delegate-section {
    background: linear-gradient(145deg,
        var(--cream-light) 0%,
        var(--cream-medium) 40%,
        var(--ivory) 60%,
        var(--cream-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 70px 20px 60px;
    border-bottom: 1px solid rgba(200,168,85,0.2);
}

.register-ipc-section {
    background: linear-gradient(145deg,
        #faf9f5 0%,
        #f5f0e8 40%,
        #fdfcf9 60%,
        #faf9f5 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 70px 20px 80px;
}

.register-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reg-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--burgundy);
    color: var(--gold);
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 3px 12px rgba(71,11,11,0.2);
    margin-bottom: 1.2rem;
}

.reg-section-eyebrow svg { color: var(--gold); flex-shrink: 0; }

.reg-eyebrow-ipc {
    background: linear-gradient(135deg, #1a1a2e, #2a1a40);
}

.reg-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.reg-mini-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem 1.6rem;
    border: 1px solid rgba(200,168,85,0.18);
    box-shadow: 0 4px 16px rgba(71,11,11,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    overflow: hidden;
}

.reg-mini-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    background-size: 200% 100%;
}

.reg-mini-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(71,11,11,0.12);
    border-color: rgba(200,168,85,0.4);
}

.reg-mini-card-ipc::before {
    background: linear-gradient(90deg, #1a1a2e, var(--gold), #1a1a2e);
}

.reg-mini-corner {
    position: absolute;
    width: 12px; height: 12px;
    border-style: solid;
    border-color: var(--gold);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.reg-mini-corner.tl { top: 10px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.reg-mini-corner.tr { top: 10px; right: 10px; border-width: 1.5px 1.5px 0 0; }
.reg-mini-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 1.5px 1.5px; }
.reg-mini-corner.br { bottom: 10px; right: 10px; border-width: 0 1.5px 1.5px 0; }

.reg-mini-card:hover .reg-mini-corner { opacity: 1; }

.reg-mini-icon-wrap {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    margin-bottom: 0.2rem;
    transition: all 0.4s ease;
}

.reg-icon-delegate {
    background: rgba(71,11,11,0.08);
    color: var(--burgundy);
    border: 1px solid rgba(71,11,11,0.15);
}

.reg-icon-ipc {
    background: rgba(200,168,85,0.14);
    color: var(--dark-gold);
    border: 1px solid rgba(200,168,85,0.25);
}

.reg-mini-card:hover .reg-mini-icon-wrap { transform: scale(1.08); }

.reg-mini-card:hover .reg-icon-delegate {
    background: var(--burgundy);
    color: var(--gold);
    border-color: var(--burgundy);
}

.reg-mini-card:hover .reg-icon-ipc {
    background: var(--gold);
    color: var(--burgundy);
    border-color: var(--gold);
}

.reg-mini-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.5px;
    line-height: 1.35;
    margin: 0;
}

.reg-mini-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(26,26,26,0.7);
    line-height: 1.6;
    flex: 1;
}

.reg-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 3rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.reg-cta-delegate {
    background: linear-gradient(135deg, var(--burgundy) 0%, #5a0d0d 50%, var(--burgundy) 100%);
    border: 1px solid rgba(200,168,85,0.3);
    box-shadow: 0 8px 30px rgba(71,11,11,0.25);
}

.reg-cta-ipc {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a1a40 50%, #1a1a2e 100%);
    border: 1px solid rgba(200,168,85,0.3);
    box-shadow: 0 8px 30px rgba(26,26,46,0.25);
}

.reg-cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reg-cta-left { position: relative; z-index: 1; }

.reg-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.reg-cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(245,241,232,0.85);
    line-height: 1.5;
    max-width: 500px;
}

.reg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.reg-cta-btn svg { transition: transform 0.3s ease; flex-shrink: 0; }
.reg-cta-btn:hover svg { transform: translateX(4px); }

.reg-cta-btn-delegate {
    background: var(--gold);
    color: var(--burgundy);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.reg-cta-btn-delegate:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.reg-cta-btn-ipc {
    background: var(--gold);
    color: var(--burgundy);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.reg-cta-btn-ipc:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.footer {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--burgundy) 40%, var(--deep-burgundy) 100%);
    color: var(--cream);
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('world-map.png');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand { padding-right: 1.5rem; }
.footer-logo-container { margin-bottom: 1rem; }

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.logo-underline {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.footer-tagline {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: var(--pale-gold);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(245,241,232,0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,168,85,0.12);
    border: 1px solid rgba(200,168,85,0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon svg {
    width: 17px; height: 17px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--burgundy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-icon:hover svg { color: var(--burgundy); }

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-heading-underline {
    width: 35px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
    color: rgba(245,241,232,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.link-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover { color: var(--gold); padding-left: 1.2rem; }
.footer-links a:hover .link-arrow { opacity: 1; transform: translateX(0); }

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    width: 32px; height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,168,85,0.12);
    border: 1px solid rgba(200,168,85,0.25);
    border-radius: 8px;
    color: var(--gold);
}

.contact-icon svg { width: 15px; height: 15px; }

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(245,241,232,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    margin: 0;
}

.footer-contact-item:hover a { color: var(--gold); }

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,168,85,0.4), transparent);
    margin: 2rem 0 1.8rem;
    position: relative;
}

.footer-divider::before,
.footer-divider::after {
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.footer-divider::before { left: 0; }
.footer-divider::after { right: 0; }

.footer-bottom { position: relative; z-index: 1; }

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

.copyright {
    color: var(--pale-gold);
    font-size: 0.88rem;
    margin: 0;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bottom-link {
    color: rgba(245,241,232,0.75);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.3s ease;
}

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

.separator {
    color: rgba(200,168,85,0.4);
    font-size: 0.75rem;
}

.scroll-to-top {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--burgundy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.scroll-to-top svg {
    width: 18px;
    height: 18px;
}

.scroll-to-top:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .matrix-h-card { grid-template-columns: 110px 1fr auto; gap: 2rem; padding: 2rem 2.5rem; }
    .matrix-h-right { min-width: 240px; }
    .matrix-h-title { font-size: 1.5rem; }
}

@media (max-width: 1024px) {
    .committees-grid { grid-template-columns: repeat(2, 1fr); }
    .committees-grid-5 { gap: 1.5rem; align-items: stretch; }
    .committees-grid-5 .committee-card { flex: 0 1 calc(50% - 0.75rem); }
    .contact-triptych { grid-template-columns: 1fr; }
    .contact-vert-divider { display: none; }
    .contact-info-col { padding-right: 0; padding-bottom: 2rem; border-bottom: 1px solid rgba(200,168,85,0.15); }
    .contact-form-col { padding-left: 0; }
    .contact-title-main { font-size: 1.75rem; }
    .reg-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .reg-cta-banner { padding: 2rem; }
}

@media (max-width: 900px) {
    .matrix-h-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 2rem; text-align: center; }
    .matrix-h-left { justify-content: center; }
    .matrix-h-desc { max-width: 100%; }
    .matrix-h-tags { justify-content: center; }
    .matrix-h-right { align-items: center; min-width: auto; }
    .matrix-h-stats-row { width: 100%; justify-content: center; }
    .matrix-horizontal-strip { padding: 0 15px; }
    .contact-form-compact { grid-template-columns: 1fr; }

    /* Committee Cards - 900px */
    .committees-grid-5 { align-items: stretch; }
    .committee-card { min-height: auto; overflow: visible; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--deep-burgundy), var(--burgundy));
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        border-top: 2px solid var(--gold);
    }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }

    .main-title { font-size: 1.8rem; }
    .event-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .cta-button { width: 100%; max-width: 280px; }
    .committees-grid { grid-template-columns: 1fr; }
    .committees-grid-5 { gap: 1.5rem; align-items: stretch; }
    .committees-grid-5 .committee-card { flex: 0 1 100%; }
    .contact-triptych { grid-template-columns: 1fr; }
    .contact-vert-divider { display: none; }
    .contact-info-col { padding-right: 0; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(200,168,85,0.15); }
    .contact-form-col { padding-left: 0; }
    .contact-form-compact { grid-template-columns: 1fr; }
    .contact-title-banner { gap: 1rem; }
    .contact-title-main { font-size: 1.55rem; letter-spacing: 2px; }
    .contact-ribbon-text { font-size: 0.64rem; white-space: normal; }

    .reg-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .reg-cta-banner { flex-direction: column; align-items: flex-start; padding: 1.8rem; }

    /* Committee Cards Mobile - 768px */
    .committees-grid-5 { gap: 1.5rem; align-items: stretch; }
    .committee-card { padding: 2rem 1.8rem 1.8rem; overflow: visible; }
    .committee-emblem { width: 110px; height: 110px; }
    .committee-abbr { font-size: 1.6rem; }
    .committee-full { font-size: 0.95rem; }
    .committee-desc { font-size: 0.95rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand { padding-right: 0; text-align: center; }
    .logo-underline { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

    /* Matrix Section Mobile - 768px */
    .matrix-h-card { padding: 1.8rem 1.5rem; }
    .matrix-h-title { font-size: 1.4rem; }
    .matrix-h-desc { font-size: 0.95rem; }
    .matrix-h-right { gap: 1.2rem; }
    .matrix-h-stats-row { gap: 1.5rem; padding: 0.8rem 1.2rem; }
    .matrix-h-stat-num { font-size: 1.3rem; }
    .matrix-h-divider { padding: 0 1.5rem; }

    .hero,
    .section,
    .about-section,
    .country-matrix-section,
    .committees-section,
    .contact-section,
    .register-section { min-height: auto; }

    .scroll-arrow { right: 16px; }
    #scrollUp { bottom: 76px; }
    #scrollDown { bottom: 24px; }
}

@media (max-width: 480px) {
    .hero { padding: 60px 15px 50px; }
    .university-name { font-size: 0.9rem; }
    .college-name { font-size: 1.05rem; }
    .main-title { font-size: 1.6rem; }
    .event-title { font-size: 1.9rem; }
    .tagline { font-size: 1.1rem; }
    .section { padding: 60px 15px; }
    .contact-section { padding: 50px 15px; }
    .section-title { font-size: 1.7rem; }
    .cta-button { padding: 10px 30px; font-size: 0.9rem; }
    .contact-title-main { font-size: 1.3rem; }
    .contact-title-banner { gap: 0.8rem; margin-bottom: 2rem; }
    .contact-title-line { display: none; }
    .reg-grid-4 { grid-template-columns: 1fr; }
    .reg-cta-title { font-size: 1.25rem; }

    /* Committee Cards Mobile - 480px */
    .committees-grid-5 { gap: 1.2rem; align-items: flex-start; }
    .committee-card { padding: 1.8rem 1.3rem 1.5rem; min-height: auto; overflow: visible; }
    .committee-emblem { width: 100px; height: 100px; }
    .committee-abbr { font-size: 1.5rem; margin-bottom: 0.4rem; }
    .committee-full { font-size: 0.9rem; margin-bottom: 1rem; }
    .committee-desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
    .committee-footer { padding-top: 0.8rem; }
    .committee-tag { font-size: 0.75rem; }

    /* Matrix Section Mobile - 480px */
    .matrix-h-left { margin-bottom: 0.8rem; }
    .matrix-h-icon-ring { width: 70px; height: 70px; }
    .matrix-h-icon-inner { width: 50px; height: 50px; }
    .matrix-h-icon-inner svg { width: 24px; height: 24px; }
    .matrix-h-icon-orbit:first-of-type { width: 65px; height: 65px; }
    .matrix-h-icon-orbit.delay { width: 75px; height: 75px; }
    .matrix-h-card { padding: 1.5rem 1rem; gap: 1rem; margin: 4px 0; }
    .matrix-h-title { font-size: 1.2rem; margin-bottom: 0.5rem; }
    .matrix-h-label { font-size: 0.7rem; }
    .matrix-h-desc { font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.8rem; }
    .matrix-h-tags { gap: 0.5rem; margin-bottom: 0.8rem; }
    .matrix-h-tag { font-size: 0.75rem; }
    .matrix-h-stats-row { gap: 0.8rem; padding: 0.6rem 0.8rem; flex-wrap: wrap; flex-direction: column; }
    .matrix-h-stat { gap: 0.1rem; }
    .matrix-h-stat-num { font-size: 1.1rem; }
    .matrix-h-stat-lbl { font-size: 0.65rem; }
    .matrix-h-stat-sep { display: none; }
    .matrix-h-divider { padding: 0 1rem; margin: 2px 0; }
    .matrix-h-btn { padding: 9px 20px; font-size: 0.8rem; gap: 0.5rem; }
    .matrix-h-btn-arrow { width: 14px; height: 14px; }
    .matrix-horizontal-strip { padding: 0 10px; }

    /* Contact Form Mobile - 480px */
    .contact-form-col { padding-left: 0; padding-right: 0; border-radius: 8px; }
    .contact-form-compact { padding: 1rem 1rem 1.2rem; gap: 0.8rem; }
    .cfc-field { gap: 0.24rem; }
    .cfc-field input,
    .cfc-field select,
    .cfc-field textarea {
        padding: 7px 11px;
        font-size: 0.95rem;
    }
    .contact-form-header { padding: 0.7rem 1rem; gap: 0.5rem; }
    .contact-form-header-title { font-size: 0.8rem; letter-spacing: 1.5px; }
    .contact-form-header-badge { font-size: 0.75rem; gap: 0.25rem; }
    .contact-info-card { gap: 0.8rem; margin-bottom: 1.2rem; }
    .contact-info-icon { width: 18px; height: 18px; flex-shrink: 0; }
    .contact-info-label { font-size: 0.65rem; letter-spacing: 1px; }
    .contact-info-value { font-size: 0.85rem; }
    .contact-submit-btn { padding: 8px 16px; font-size: 0.8rem; gap: 0.6rem; }
    .contact-ribbon-text { white-space: normal; }
}

@media (max-width: 640px) {
    .contact-form-compact { padding: 1.2rem; gap: 0.9rem; }
    .contact-ribbon-text { white-space: normal; }
    .cfc-field input,
    .cfc-field select,
    .cfc-field textarea {
        padding: 8px 12px;
        font-size: 0.98rem;
    }
    .contact-form-header { padding: 0.8rem 1.2rem; }
    .contact-submit-btn { padding: 9px 18px; font-size: 0.85rem; }
    .contact-title-main { font-size: 1.4rem; }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(20, 3, 8, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.04) 3px,
        rgba(0,0,0,0.04) 4px
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}

.hero-crest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: crestReveal 2.5s ease 0.5s forwards;
}

@keyframes crestReveal {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.hero-crest-svg { width: 100%; height: 100%; }

.crest-ring {
    stroke: var(--gold);
    stroke-width: 0.8;
    fill: none;
    transform-origin: 260px 260px;
}

.crest-ring-outer {
    opacity: 0.2;
    animation: rotateCW 60s linear infinite;
}

.crest-ring-mid {
    opacity: 0.12;
    animation: rotateCCW 40s linear infinite;
}

.crest-ring-inner {
    opacity: 0.08;
    stroke-dasharray: 3 6;
}

.crest-globe {
    stroke: rgba(200,168,85,0.12);
    stroke-width: 0.6;
    fill: none;
}

.crest-diamond {
    fill: rgba(200,168,85,0.35);
    animation: diamondPulse 4s ease-in-out infinite;
}

.crest-tick {
    stroke: rgba(200,168,85,0.4);
    stroke-width: 1.2;
    stroke-linecap: round;
}

@keyframes rotateCW  { to { transform: rotate(360deg);  transform-origin: 260px 260px; } }
@keyframes rotateCCW { to { transform: rotate(-360deg); transform-origin: 260px 260px; } }
@keyframes diamondPulse {
    0%, 100% { opacity: 0.35; }
    50%       { opacity: 0.9; }
}

.hero-rule {
    position: absolute;
    left: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    animation: ruleSlide 1.2s ease 1.4s forwards;
}

.hero-rule-top    { top: 6%; }
.hero-rule-bottom { bottom: 6%; }

@keyframes ruleSlide {
    from { opacity: 0; transform: scaleX(0.6); }
    to   { opacity: 1; transform: scaleX(1); }
}

.hero-rule-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,168,85,0.5), transparent);
}

.hero-rule-gem {
    color: var(--gold);
    font-size: 0.55rem;
    opacity: 0.6;
    letter-spacing: -2px;
}

.hero-side-text {
    position: absolute;
    top: 50%;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(200,168,85,0.3);
    pointer-events: none;
    z-index: 3;
    white-space: nowrap;
    opacity: 0;
    animation: sideTextReveal 1.5s ease 1.8s forwards;
}

.hero-side-left {
    left: 22px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
}

.hero-side-right {
    right: 22px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
}

@keyframes sideTextReveal {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.1s forwards;
}

.hero-badge-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,168,85,0.6));
}

.hero-badge-line:last-child {
    background: linear-gradient(to left, transparent, rgba(200,168,85,0.6));
}

.hero-badge-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.62rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(200,168,85,0.6);
    border: 1px solid rgba(200,168,85,0.2);
    padding: 3px 14px;
    border-radius: 20px;
    background: rgba(200,168,85,0.06);
}

.hero-title-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0.6rem 0 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.hero-sep-wing {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,168,85,0.45));
}

.hero-title-sep .hero-sep-wing:last-child {
    background: linear-gradient(to left, transparent, rgba(200,168,85,0.45));
}

.hero-sep-center {
    color: rgba(200,168,85,0.55);
}

.event-title-word {
    display: inline-block;
    position: relative;
}

.event-title-year {
    color: var(--gold);
    text-shadow:
        0 0 30px rgba(200,168,85,0.4),
        0 0 60px rgba(200,168,85,0.15);
}

.event-title-space { display: inline; }

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 1.8rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(200,168,85,0.18);
    border-radius: 50px;
    padding: 0.7rem 2.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(6px);
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.4rem;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}

.hero-stat-lbl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    color: rgba(200,168,85,0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-stat-sep {
    color: rgba(200,168,85,0.3);
    font-size: 0.5rem;
    padding: 0;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.8rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.6s forwards;
}

.hero-scroll-line {
    width: 28px;
    height: 1px;
    background: rgba(200,168,85,0.3);
}

.hero-scroll-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.58rem;
    letter-spacing: 4px;
    color: rgba(200,168,85,0.35);
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50%       { transform: translateY(3px); opacity: 0.6; }
}

.primary-btn {
    box-shadow:
        0 4px 14px rgba(0,0,0,0.25),
        0 0 0 0 rgba(200,168,85,0);
    transition: all 0.35s ease, box-shadow 0.4s ease;
}

.primary-btn:hover {
    box-shadow:
        0 10px 28px rgba(0,0,0,0.3),
        0 0 20px rgba(200,168,85,0.25);
}

.secondary-btn:hover {
    box-shadow:
        0 10px 28px rgba(0,0,0,0.3),
        0 0 20px rgba(200,168,85,0.2);
}

@media (max-width: 768px) {
    .hero-side-text { display: none; }
    .hero-rule-top { top: 3%; }
    .hero-rule-bottom { bottom: 3%; }
    .hero-stats-row { padding: 0.6rem 1.4rem; gap: 0; }
    .hero-stat { padding: 0 0.9rem; }
    .hero-stat-num { font-size: 1.1rem; }
    .hero-crest { width: min(400px, 95vw); height: min(400px, 95vw); }
}

@media (max-width: 480px) {
    .hero-badge-text { font-size: 0.55rem; letter-spacing: 3px; }
    .hero-stats-row { flex-wrap: wrap; border-radius: 16px; padding: 0.8rem 1rem; }
    .hero-stat { padding: 0.3rem 0.8rem; }
    .hero-stat-sep { display: none; }
    .hero-crest { opacity: 0.5; }
}
/* ================================================================
   HAMBURGER SIDEBAR — ADD THESE TO THE END OF styles.css
   ================================================================ */

/* ── Sidebar Overlay ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 3, 8, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ── Hamburger Icon — animated X ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* Animate into X when active */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Sidebar Panel ── */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        /* Override the old dropdown style */
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: min(300px, 82vw) !important;
        height: 100dvh !important;
        flex-direction: column !important;
        background: linear-gradient(160deg, #2a0505 0%, var(--deep-burgundy) 40%, #1a0303 100%) !important;
        border-left: 1px solid rgba(200, 168, 85, 0.3) !important;
        border-top: none !important;
        padding: 0 !important;
        gap: 0 !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
        box-shadow: -12px 0 50px rgba(0, 0, 0, 0.6) !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    /* Sidebar header area */
    .nav-menu::before {
        content: 'SIMATS MUN';
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.6rem 1.5rem 1.2rem;
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--gold);
        letter-spacing: 3px;
        border-bottom: 1px solid rgba(200, 168, 85, 0.2);
        margin-bottom: 0.5rem;
        text-align: center;
    }

    /* Gold top accent line */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), var(--light-gold), var(--gold), transparent);
    }

    /* Nav items */
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(200, 168, 85, 0.08);
        transform: translateX(30px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }

    /* Staggered animation for each item */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.10s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.20s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.30s; }

    .nav-menu a {
        display: flex !important;
        align-items: center;
        padding: 1rem 1.8rem !important;
        font-size: 1rem !important;
        letter-spacing: 1.5px;
        color: rgba(245, 241, 232, 0.85) !important;
        transition: all 0.25s ease !important;
        position: relative;
    }

    .nav-menu a::before {
        content: '◆';
        font-size: 0.45rem;
        color: rgba(200, 168, 85, 0.4);
        margin-right: 0.8rem;
        transition: color 0.25s ease;
        flex-shrink: 0;
    }

    .nav-menu a::after {
        display: none !important;
    }

    .nav-menu a:hover {
        color: var(--gold) !important;
        background: rgba(200, 168, 85, 0.07) !important;
        padding-left: 2.2rem !important;
    }

    .nav-menu a:hover::before {
        color: var(--gold);
    }

    /* Register button inside sidebar */
    .nav-menu li:last-child {
        padding: 1.5rem 1.8rem;
        border-bottom: none;
    }

    .register-nav-btn {
        display: flex !important;
        justify-content: center;
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        border-radius: 8px !important;
        font-size: 0.9rem !important;
        text-align: center;
        background: var(--gold) !important;
        color: var(--burgundy) !important;
        box-shadow: 0 4px 18px rgba(200, 168, 85, 0.25) !important;
    }

    .register-nav-btn::before {
        display: none !important;
    }

    .register-nav-btn:hover {
        background: var(--light-gold) !important;
        transform: none !important;
        padding-left: 1.5rem !important;
    }

    /* Sidebar social footer */
    .nav-sidebar-footer {
        margin-top: auto;
        padding: 1.5rem 1.8rem;
        border-top: 1px solid rgba(200, 168, 85, 0.15);
        font-family: 'Libre Baskerville', serif;
        font-size: 0.62rem;
        letter-spacing: 2px;
        color: rgba(200, 168, 85, 0.35);
        text-align: center;
        text-transform: uppercase;
    }
}