/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, #1a1a3e 0%, #2d1b4e 50%, #1a1a3e 100%);
    border-bottom: none;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    background-color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-menu > li:first-child {
    border-left: none;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0.75rem 1.25rem;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
}

.nav-menu > li > a:hover {
    color: #ffffff;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

.nav-menu > li:first-child > a:hover {
    background: linear-gradient(to right, rgba(138, 43, 226, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-left: 0.25rem;
    opacity: 0.9;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #ffffff;
    opacity: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    min-width: 240px;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 1000;
    /* Add padding to top to create hoverable area */
    padding-top: 0.5rem;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    list-style-type: none;
    margin: 0;
}

.dropdown-menu > li > a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
    letter-spacing: 0.01em;
}

.dropdown-menu > li > a:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.dropdown-sub {
    position: relative;
}

.submenu-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.submenu-arrow {
    font-size: 0.5rem;
    color: #999;
    transition: transform 0.2s ease;
    margin-left: 0.5rem;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.dropdown-sub:hover .submenu-arrow,
.dropdown-sub.active .submenu-arrow {
    transform: translateX(2px);
    color: #666;
}

.dropdown-menu-sub {
    display: none;
    position: absolute;
    left: calc(100% + 0.25rem);
    top: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    list-style-type: none;
    min-width: 240px;
    padding: 0.5rem 0;
    border-radius: 8px;
    z-index: 1001;
    /* Add padding to create hoverable area */
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.dropdown-menu-sub li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdown-sub:hover .dropdown-menu-sub,
.dropdown-sub.active .dropdown-menu-sub {
    display: block;
}

.dropdown-menu-sub > li > a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
    letter-spacing: 0.01em;
}

.dropdown-menu-sub > li > a:hover {
    background-color: #f8f8f8;
    color: #000000;
}

.nav-actions {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-enroll,
.btn-login {
    padding: 0.625rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
    display: inline-block;
    text-align: center;
}

.btn-enroll {
    background-color: #ffd700;
    color: #1a1a1a;
    border: 1px solid #ffd700;
    font-weight: 600;
}

.btn-enroll:hover {
    background-color: #ffed4e;
    border-color: #ffed4e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

.btn-login {
    border: none;
    color: #ffffff;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

.btn-login::before {
    content: "👤";
    font-size: 1.1rem;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
    background-color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: #1a1a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(26, 26, 62, 0.2);
}

.btn-primary:hover {
    background-color: #2d1b4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 62, 0.3);
}

/* Image Section */
.image-section {
    text-align: center;
    margin: 4rem 0;
    background-color: #ffffff;
    padding: 2rem 0;
}

.image-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
}

.image-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.passes-section .section-title {
    margin-bottom: 0;
}

.event-details .section-title {
    margin-bottom: 1.5rem;
}

/* Event Details Section */
.event-details {
    text-align: left;
    margin: 4rem 0;
    padding: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.event-date {
    font-size: 1.0625rem;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}

.location-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.location-pin {
    font-size: 1.25rem;
    line-height: 1.5;
    flex-shrink: 0;
}

.event-location {
    font-size: 1.0625rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.map-container {
    width: 100%;
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Passes Section */
.passes-section {
    margin: 4rem 0;
    padding: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 1.25rem 0 2.5rem 0;
}

.ticket-item {
    margin-bottom: 0;
}

.ticket-type-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #999;
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.ticket-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem 0;
}

.ticket-info {
    flex: 1;
}

.ticket-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.more-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #007bff;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.more-info-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.more-info-link .chevron {
    font-size: 0.625rem;
    transition: transform 0.2s ease;
}

.more-info-link:hover .chevron {
    transform: translateY(1px);
}

.ticket-description {
    font-size: 0.9375rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.65;
}

.ticket-right {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.price-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 140px;
}

.price-label {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.fee-text {
    font-size: 0.875rem;
    color: #999;
    font-weight: 400;
}

.quantity-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 120px;
}

.quantity-label {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 400;
    display: block;
}

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

.quantity-input {
    width: 80px;
    padding: 0.625rem 2rem 0.625rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9375rem;
    text-align: left;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #1a1a1a;
}

.quantity-input::-ms-expand {
    display: none;
}

.quantity-wrapper::after {
    content: "▼";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.625rem;
    color: #666;
    z-index: 1;
}

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

.quantity-input:hover {
    border-color: #999;
}

.quantity-input option {
    padding: 0.5rem;
    background-color: #fff;
    color: #1a1a1a;
}

.ticket-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 2rem 0;
}

/* Customer Information Form */
.customer-info-section {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-subtitle {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.orderer-section {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.attendee-section {
    margin-top: 2rem;
}

.attendee-fieldset {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #fafafa;
    transition: border-color 0.2s ease;
}

.attendee-fieldset legend {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    padding: 0 0.5rem;
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.promo-code-group {
    display: flex;
    gap: 0.75rem;
}

.promo-code-group input {
    flex: 1;
}

.btn-apply-promo {
    padding: 0.75rem 1.5rem;
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-apply-promo:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.promo-message {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
}

.promo-message.success {
    color: #28a745;
    background-color: #d4edda;
}

.promo-message.error {
    color: #dc3545;
    background-color: #f8d7da;
}

/* Checkout Summary */
.checkout-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.total-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.total-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.btn-checkout {
    padding: 0.875rem 2.5rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-checkout:hover:not(:disabled) {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-checkout:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-checkout:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* Share Section */
.share-section {
    margin: 4rem 0;
    padding: 2.5rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.share-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.social-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    font-weight: 600;
}

.share-icon .icon-text {
    font-size: 1.25rem;
    line-height: 1;
}

.share-icon.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    transform: translateY(-2px);
}

.share-icon.twitter:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.share-icon.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-content p {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links {
    margin: 1.5rem 0 2rem 0;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-icon .icon-text {
    font-size: 1rem;
    line-height: 1;
}

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

.social-icon.twitter:hover {
    background-color: #000000;
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.instagram:hover {
    background-color: #e4405f;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.social-icon.tiktok:hover {
    background-color: #000000;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

/* Responsive Design */

/* Tablet: 769px - 968px */
@media (min-width: 769px) and (max-width: 968px) {
    .nav-menu {
        gap: 0.875rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
    }

    .logo-img {
        height: 40px;
        max-width: 160px;
    }
    
    /* Tablet: Use click behavior, but keep desktop-style positioning */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Desktop: 1025px+ */
@media (min-width: 1025px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9375rem;
    }
}

/* Tablet and below: 1024px and below */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 36px;
        max-width: 150px;
    }
}

/* Mobile and Tablet: 968px and below */
@media (max-width: 968px) {
    .main-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: linear-gradient(to bottom, #1a1a3e 0%, #2d1b4e 100%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1.5rem 2rem;
        gap: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 2px 0 12px rgba(0,0,0,0.3);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li > a {
        padding: 1.125rem 0;
        font-size: 1rem;
        width: 100%;
        color: #ffffff;
        font-weight: 400;
    }

    .nav-menu > li > a:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        min-width: auto;
        transform: none;
        left: auto;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu > li > a {
        padding-left: 2rem;
        color: #ffffff;
    }

    .dropdown-menu > li > a:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    .dropdown-menu-sub {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-left: 0;
        border-radius: 0;
        width: 100%;
        min-width: auto;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .dropdown-sub.active .dropdown-menu-sub {
        display: block;
    }

    .dropdown-menu-sub > li > a {
        padding-left: 3rem;
        color: #ffffff;
    }

    .dropdown-menu-sub > li > a:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 1rem;
    }

    .btn-enroll,
    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .ticket-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ticket-right {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .price-column,
    .quantity-column {
        align-items: flex-start;
        width: 100%;
    }

    .checkout-summary {
        align-items: stretch;
    }

    .total-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }

    .btn-checkout {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 32px;
        max-width: 130px;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-enroll,
    .btn-login {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .ticket-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .ticket-right {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-column,
    .quantity-column {
        width: 100%;
        align-items: flex-start;
    }

    .quantity-input {
        width: 100%;
        max-width: 150px;
    }

    .ticket-name {
        font-size: 1rem;
    }

    .logo-img {
        height: 28px;
        max-width: 120px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .btn-enroll,
    .btn-login {
        width: 100%;
        text-align: center;
    }
}

