/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    background-color: transparent;
    padding: 0.5rem 0;
    width: 100%;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    background-color: transparent;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: 60px;
    max-width: 220px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

html {
    scroll-behavior: smooth;
}

html, body {
    background: #000000 !important;
    background-color: #000000 !important;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

body {
    position: relative;
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 80%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    filter: brightness(0.6);
    will-change: transform;
    transform-style: preserve-3d;
    mask-image: linear-gradient(to right, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 45%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.4) 55%,
        rgba(0, 0, 0, 0) 60%);
    -webkit-mask-image: linear-gradient(to right, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 45%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.4) 55%,
        rgba(0, 0, 0, 0) 60%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        transparent 0%, 
        transparent 45%,
        rgba(20, 20, 20, 0.3) 50%,
        rgba(10, 10, 10, 0.6) 55%,
        rgba(5, 5, 5, 0.8) 58%,
        #000000 60%,
        #000000 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 2rem 1rem;
    padding-top: 3rem;
}

.hero-center-content {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    z-index: 2;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-center-image {
    display: block;
    max-width: 380px;
    width: 100%;
    height: auto;
    vertical-align: top;
    z-index: 3;
    position: relative;
    animation: slideUpFromBottom 1.5s ease-out forwards;
    opacity: 0;
    filter: drop-shadow(rgba(255, 255, 255, 0.5) 0px 0px 100px);
    will-change: transform;
    transform-style: preserve-3d;
    box-sizing: border-box;
}

.hero-center-image::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 30%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: slideUpFromBottom 1.5s ease-out forwards;
    opacity: 0;
}


@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    pointer-events: none;
}

.hero-text-filled {
    z-index: 2;
}

.hero-text-stroked {
    z-index: 5;
}

.hero-text-wrapper {
    position: relative;
    display: inline-block;
}

.hero-mea-text-stroke,
.hero-xlds-text-stroke {
    position: relative;
    font-size: 16rem;
    font-weight: 900;
    color: transparent;
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 1;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 4px rgba(255, 255, 255, 0.75);
    pointer-events: none;
    animation: slideInFromRight 1.5s ease-out forwards;
    opacity: 0;
}

.hero-xlds-text-stroke {
    margin-top: -2rem;
}

.hero-mea-text {
    position: relative;
    font-size: 16rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 1;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 2;
    animation: slideInFromLeft 1.5s ease-out forwards;
    opacity: 0;
}


.hero-xlds-text {
    position: relative;
    font-size: 16rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    margin: 0;
    margin-top: -2rem;
    line-height: 1;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 2;
    animation: slideInFromLeft 1.5s ease-out forwards;
    opacity: 0;
}

.hero-golden-line {
    width: 600px;
    height: 1px;
    background-color: #C2A769;
    margin: 0.5rem 0;
    z-index: 2;
}

.hero-bottom-image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-arabic-logo {
    max-width: 100%;
    height: auto;
    max-width: 300px;
}

/* Responsive adjustments for hero image section */
@media (max-width: 768px) {
    .hero-image-section {
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .hero-background {
        overflow: hidden;
    }
    
    .hero-bg-image {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content-wrapper {
        padding-top: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
        overflow-x: hidden;
    }
    
    .hero-center-content {
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .hero-center-image {
        max-width: 270px;
        width: 100%;
        height: auto;
        max-width: min(270px, 85vw);
        margin: 0 auto;
        display: block;
    }
    
    .hero-center-image::before {
        width: 100vw;
        max-width: 400px;
    }
    
    .hero-mea-text,
    .hero-xlds-text,
    .hero-mea-text-stroke,
    .hero-xlds-text-stroke {
        font-size: clamp(6rem, 15vw, 10rem);
        font-weight: 900;
    }
    
    .hero-mea-text-stroke,
    .hero-xlds-text-stroke {
        -webkit-text-stroke: 3px rgba(255, 255, 255, 0.75);
    }
    
    .hero-text-overlay {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-golden-line {
        width: min(400px, 90vw);
        max-width: 90%;
        margin: 0.5rem auto;
    }
    
    .hero-arabic-logo {
        max-width: min(200px, 60vw);
        width: 100%;
        height: auto;
    }
    
    .hero-bottom-image {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
}

/* Conference Info Section */
section.conference-info-section,
#conference-info.conference-info-section,
.conference-info-section {
    background: #000000 !important;
    padding: 5rem 0 !important;
    position: relative !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
}

.conference-info-content,
.conference-info-section .conference-info-content,
#conference-info .conference-info-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    gap: 3vw !important;
    align-items: stretch !important;
    max-width: 1000px !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.conference-eligible-roles {
    grid-column: 1 / -1 !important;
    padding: 2.5rem !important;
    padding: 3% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(194, 167, 105, 0.3) !important;
    border-radius: 12px !important;
    border-radius: 1.2vw !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 250px !important;
    min-height: 25vh !important;
    max-height: none !important;
    box-sizing: border-box !important;
    margin-top: -1.5rem !important;
    margin-top: -1vw !important;
}

.conference-eligible-roles:hover {
    border-color: rgba(194, 167, 105, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(194, 167, 105, 0.2);
}

.eligible-roles-info {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    gap: 1.5vw !important;
    flex: 1 !important;
    padding: 2rem 1rem !important;
    padding: 2vh 1vw !important;
}

.role-badge {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.25rem !important;
    font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
    font-weight: 700 !important;
    color: #000000 !important;
    background: linear-gradient(135deg, rgba(194, 167, 105, 0.9) 0%, rgba(194, 167, 105, 0.7) 100%) !important;
    background-color: #C2A769 !important;
    padding: 0.75rem 1.5rem !important;
    padding: 1.5vh 2.5vw !important;
    border-radius: 8px !important;
    border-radius: 0.8vw !important;
    box-shadow: 0 4px 15px rgba(194, 167, 105, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-align: center !important;
    min-width: 80px !important;
    min-width: 8vw !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.role-badge::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%) !important;
    transform: rotate(45deg) !important;
    transition: all 0.5s ease !important;
    opacity: 0 !important;
}

.role-badge:hover::before {
    opacity: 1 !important;
    animation: shine 1.5s ease-in-out !important;
}

.role-badge:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(194, 167, 105, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    background: linear-gradient(135deg, rgba(194, 167, 105, 1) 0%, rgba(194, 167, 105, 0.85) 100%) !important;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg) !important;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg) !important;
    }
}

.conference-time-form,
.conference-location {
    padding: 2.5rem !important;
    padding: 3% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(194, 167, 105, 0.3) !important;
    border-radius: 12px !important;
    border-radius: 1.2vw !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 250px !important;
    min-height: 25vh !important;
    max-height: none !important;
    box-sizing: border-box !important;
}

.conference-time-form:hover,
.conference-location:hover {
    border-color: rgba(194, 167, 105, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(194, 167, 105, 0.2);
}

.conference-info-title,
.conference-time-form .conference-info-title,
.conference-location .conference-info-title,
.conference-time-form h3.conference-info-title,
.conference-location h3.conference-info-title {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.5rem !important;
    font-size: clamp(1rem, 2vw, 1.5rem) !important;
    font-weight: 700 !important;
    color: #C2A769 !important;
    margin-bottom: 1.5rem !important;
    margin-bottom: 2% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    letter-spacing: 0.1vw !important;
    border-bottom: 2px solid rgba(194, 167, 105, 0.3) !important;
    padding-bottom: 0.75rem !important;
    padding-bottom: 1.5% !important;
    text-align: center !important;
}

.conference-date-info {
    margin-top: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    height: 100% !important;
}

.conference-date-range,
.conference-time-form .conference-date-range,
.conference-date-info .conference-date-range,
.conference-date-info p.conference-date-range {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.75rem !important;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    padding: 0 !important;
}

.location-details {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-name,
.conference-location .location-name,
.location-details .location-name,
.location-details p.location-name {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.75rem !important;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.75rem !important;
    margin-bottom: 1.5% !important;
    text-align: center !important;
}

.location-address,
.conference-location .location-address,
.location-details .location-address,
.location-details p.location-address {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.125rem !important;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.75rem !important;
    margin-bottom: 1.5% !important;
    text-align: center !important;
}

a.location-link,
.conference-info-section a.location-link,
#conference-info a.location-link,
.location-details a.location-link {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.125rem !important;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem) !important;
    color: #C2A769 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    font-weight: 600 !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    padding: 1.5% 2% !important;
    border: 1px solid rgba(194, 167, 105, 0.3) !important;
    border-radius: 6px !important;
    border-radius: 0.6vw !important;
    background: rgba(194, 167, 105, 0.1) !important;
    margin-top: 0 !important;
}

a.location-link:hover,
.conference-info-section a.location-link:hover,
#conference-info a.location-link:hover,
.location-details a.location-link:hover {
    background: rgba(194, 167, 105, 0.2) !important;
    border-color: rgba(194, 167, 105, 0.5) !important;
    color: #C2A769 !important;
}

a.location-link:visited,
.conference-info-section a.location-link:visited,
#conference-info a.location-link:visited {
    color: #C2A769 !important;
}

a.location-link:link,
.conference-info-section a.location-link:link,
#conference-info a.location-link:link {
    color: #C2A769 !important;
}


.register-now-button-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem auto 0 auto !important;
    margin: 3vh auto 0 auto !important;
    padding: 0 !important;
    max-width: 1000px !important;
    max-width: 90% !important;
    box-sizing: border-box !important;
}

.conference-info-section .container .register-now-button-wrapper {
    max-width: 1000px !important;
    max-width: 90% !important;
}

a.btn-register-now,
.register-now-button-wrapper a.btn-register-now,
.conference-info-section a.btn-register-now,
#conference-info a.btn-register-now {
    font-family: 'Lato', sans-serif !important;
    font-size: 2rem !important;
    font-size: clamp(1.25rem, 3vw, 2rem) !important;
    font-weight: 700 !important;
    padding: 1.5rem 3rem !important;
    padding: 2.5vh 5vw !important;
    background: #C2A769 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 12px !important;
    border-radius: 1.2vw !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    letter-spacing: 0.2vw !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    min-height: 80px !important;
    min-height: 8vh !important;
    box-sizing: border-box !important;
}

a.btn-register-now:hover,
.register-now-button-wrapper a.btn-register-now:hover,
.conference-info-section a.btn-register-now:hover,
#conference-info a.btn-register-now:hover {
    background: #b89a5a !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(194, 167, 105, 0.3) !important;
    color: #000000 !important;
}

a.btn-register-now:visited,
.register-now-button-wrapper a.btn-register-now:visited,
.conference-info-section a.btn-register-now:visited,
#conference-info a.btn-register-now:visited {
    color: #000000 !important;
}

a.btn-register-now:link,
.register-now-button-wrapper a.btn-register-now:link,
.conference-info-section a.btn-register-now:link,
#conference-info a.btn-register-now:link {
    color: #000000 !important;
}

/* Registration Form Styles */
.registration-form {
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 2.5rem !important;
    padding: 3% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(194, 167, 105, 0.3) !important;
    border-radius: 12px !important;
    border-radius: 1.2vw !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    box-sizing: border-box !important;
}

.registration-form-title {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.5rem !important;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
    font-weight: 700 !important;
    color: #C2A769 !important;
    margin-bottom: 1.5rem !important;
    margin-bottom: 2vh !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    letter-spacing: 0.1vw !important;
    border-bottom: 2px solid rgba(194, 167, 105, 0.3) !important;
    padding-bottom: 0.75rem !important;
    padding-bottom: 1.5% !important;
    text-align: center !important;
}

.registration-form:hover {
    border-color: rgba(194, 167, 105, 0.6) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(194, 167, 105, 0.2) !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    gap: 2vw !important;
    margin-bottom: 1.5rem !important;
    margin-bottom: 2vh !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
}

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

.form-group label {
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    font-size: clamp(0.875rem, 1.5vw, 1rem) !important;
    font-weight: 700 !important;
    color: #C2A769 !important;
    margin-bottom: 0.75rem !important;
    margin-bottom: 1.5% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    letter-spacing: 0.1vw !important;
    border-bottom: 1px solid rgba(194, 167, 105, 0.2) !important;
    padding-bottom: 0.5rem !important;
    padding-bottom: 1% !important;
}

.form-group input,
.form-group select {
    font-family: 'Lato', sans-serif !important;
    font-size: 1rem !important;
    font-size: clamp(0.875rem, 1.5vw, 1rem) !important;
    padding: 0.875rem 1rem !important;
    padding: 1.5vh 1.5vw !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    border-radius: 0.6vw !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.form-group input:focus,
.form-group select:focus {
    outline: none !important;
    border-color: #C2A769 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 2px rgba(194, 167, 105, 0.3) !important;
    transform: translateY(-2px) !important;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-group select {
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C2A769' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-position: right 1.5vw center !important;
    padding-right: 2.5rem !important;
    padding-right: 4vw !important;
}

.form-group select option {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.5rem !important;
}

/* Datalist styling - native browser styling applies */

.form-error {
    color: #ff6b6b !important;
    font-size: 0.875rem !important;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem) !important;
    margin-top: 0.5rem !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
}

.form-submit-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-top: 2rem !important;
    margin-top: 3vh !important;
}

.registration-form button.btn-register-now {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.5rem !important;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
    font-weight: 700 !important;
    padding: 1rem 3rem !important;
    padding: 1.5vh 5vw !important;
    background: #C2A769 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    border-radius: 0.8vw !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    letter-spacing: 0.2vw !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    min-width: 200px !important;
    min-width: 20vw !important;
    min-height: 50px !important;
    min-height: 5vh !important;
    box-shadow: 0 4px 15px rgba(194, 167, 105, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.registration-form button.btn-register-now:hover {
    background: #b89a5a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(194, 167, 105, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.registration-form button.btn-register-now:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(194, 167, 105, 0.4) !important;
}

@media (max-width: 968px) {
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        gap: 2vh !important;
    }
    
    .registration-form {
        padding: 2rem !important;
        padding: 3vh 4vw !important;
    }
}

@media (max-width: 768px) {
    .registration-form {
        padding: 1.5rem !important;
        padding: 3vh 4vw !important;
    }
    
    .registration-form button.btn-register-now {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    .form-group label {
        font-size: 0.875rem !important;
    }
    
    .form-group input,
    .form-group select {
        font-size: 0.875rem !important;
        padding: 0.75rem 1rem !important;
    }
}

/* Responsive adjustments for conference info section */
@media (max-width: 968px) {
    .conference-info-content,
    .conference-info-section .conference-info-content,
    #conference-info .conference-info-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        gap: 4vw !important;
    }
    
    .conference-eligible-roles {
        grid-column: 1 !important;
        margin-top: 0 !important;
    }
    
    .register-now-button-wrapper {
        max-width: 95% !important;
        padding: 0 3% !important;
    }
    
    .conference-time-form,
    .conference-location,
    .conference-eligible-roles {
        height: auto !important;
        min-height: 20vh !important;
    }
}

@media (max-width: 768px) {
    .conference-info-section {
        padding: 5vh 0;
    }
    
    .conference-info-content,
    .conference-info-section .conference-info-content,
    #conference-info .conference-info-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        gap: 3vw !important;
    }
    
    .conference-eligible-roles {
        grid-column: 1 !important;
        margin-top: 0 !important;
    }
    
    .conference-time-form,
    .conference-location,
    .conference-eligible-roles {
        padding: 4% !important;
        height: auto !important;
        min-height: 18vh !important;
    }
    
    .register-now-button-wrapper {
        padding: 0 4% !important;
    }
    
    a.btn-register-now {
        padding: 2vh 4vw !important;
        min-height: 7vh !important;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.golden-line-small {
    width: 150px;
    height: 2px;
    background-color: #C2A769;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: #000000;
    padding: 6rem 0;
    position: relative;
    opacity: 0;
}

.about-section.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: #ffffff;
}

.about-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C2A769;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: #C2A769;
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #C2A769;
    border-radius: 4px;
}

.feature-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #C2A769;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(194, 167, 105, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #C2A769;
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #C2A769;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Schedule Section */
.schedule-section {
    background: #0a0a0a;
    padding: 6rem 0;
    position: relative;
    opacity: 0;
}

.schedule-section.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #C2A769, rgba(194, 167, 105, 0.3));
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 150px;
}

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

.timeline-date {
    position: absolute;
    left: 0;
    width: 100px;
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #C2A769;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    padding-right: 2rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-left: 3px solid #C2A769;
    border-radius: 4px;
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.timeline-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-time {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #C2A769;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timeline-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Registration Section */
.register-section {
    background: #000000;
    padding: 6rem 0;
    position: relative;
    opacity: 0;
}

.register-section.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.register-info h3 {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.register-info > p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(194, 167, 105, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #C2A769;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #C2A769;
    border-width: 2px;
    background: rgba(194, 167, 105, 0.1);
}

.pricing-card h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #C2A769;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: #C2A769;
    font-weight: bold;
    margin-right: 0.75rem;
}

.register-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(194, 167, 105, 0.3);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #C2A769;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #b89a5a;
    transform: translateY(-1px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C2A769;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #000000;
    color: #ffffff;
}

.btn-register,
.btn-contact {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background: #C2A769;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-register:hover,
.btn-contact:hover {
    background: #b89a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(194, 167, 105, 0.3);
}

/* Contact Section */
.contact-section {
    background: #0a0a0a;
    padding: 6rem 0;
    position: relative;
    opacity: 0;
}

.contact-section.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C2A769;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(194, 167, 105, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(194, 167, 105, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link:hover {
    color: #C2A769;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-link {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-link:hover {
    color: #C2A769;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p a {
    color: #C2A769;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom p a:hover {
    color: #b89a5a;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content,
    .register-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1.125rem;
    }

    .feature-item h4 {
        font-size: 1.125rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .schedule-timeline::before {
        left: 50px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-date {
        width: 50px;
        font-size: 0.875rem;
        padding-right: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .register-form-container,
    .contact-form-container {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Step Indicator Styles */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-number.active {
    background: #C2A769;
    color: #000000;
}

.step-number.inactive {
    background: #000000;
    border: 2px solid #C2A769;
    color: #C2A769;
}

.step-number.completed {
    background: #C2A769;
    color: #000000;
}

.step-label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #C2A769;
}

.step-label.inactive {
    color: rgba(255, 255, 255, 0.6);
}

.step-arrow {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    color: rgba(194, 167, 105, 0.5);
}

/* Registration Page Styles */
.registration-page {
    background: #000000;
    padding: 6rem 0;
    min-height: calc(100vh - 200px);
}

.registration-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.registration-review-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.registration-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(194, 167, 105, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.registration-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #C2A769;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.registration-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .registration-layout {
        grid-template-columns: 1fr;
    }
    
    .registration-review-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-indicator {
        gap: 1rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .registration-card {
        padding: 2rem;
    }
    
    .registration-title {
        font-size: 2rem;
    }
    
    .registration-layout,
    .registration-review-layout {
        grid-template-columns: 1fr;
    }
}

