/* ==========================================================================
   Karam Yaqin Coming Soon - Premium Styling CSS
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    --color-bg-deep: #080f1a;
    --color-bg-card: rgba(13, 23, 38, 0.75);
    --color-bg-card-hover: rgba(20, 32, 51, 0.85);
    --color-gold: #c5a059;
    --color-gold-light: #f3e7c4;
    --color-gold-dark: #94743b;
    --color-gold-gradient: linear-gradient(135deg, #f3e7c4 0%, #c5a059 50%, #94743b 100%);
    --color-gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #dcd0b2 50%, #c5a059 100%);
    --color-text-white: #ffffff;
    --color-text-muted: #b0c4de;
    --color-accent-blue: #1c3d5a;
    --color-glass-border: rgba(197, 160, 89, 0.25);
    --color-glass-border-hover: rgba(197, 160, 89, 0.5);
    
    --font-heading-en: 'Cinzel', serif;
    --font-body-en: 'Montserrat', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-gold-glow: 0 8px 32px rgba(197, 160, 89, 0.15);
    --shadow-gold-glow-intense: 0 12px 40px rgba(197, 160, 89, 0.3);
}

/* --- Base & Reset Rules --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Base directions based on language class */
body.lang-en {
    font-family: var(--font-body-en);
    direction: ltr;
}

body.lang-ar {
    font-family: var(--font-ar);
    direction: rtl;
}

/* Toggling lang spans */
body.lang-en [lang="ar"] {
    display: none !important;
}

body.lang-ar [lang="en"] {
    display: none !important;
}

/* --- Canvas and Background Styling --- */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: auto; /* Allow interactions on the canvas */
}

.luxury-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 70% 30%, rgba(13, 23, 38, 0.1) 0%, rgba(8, 15, 26, 0.85) 80%);
    z-index: 1;
    pointer-events: none;
}

body.lang-ar .luxury-overlay {
    background: radial-gradient(circle at 30% 30%, rgba(13, 23, 38, 0.1) 0%, rgba(8, 15, 26, 0.85) 80%);
}

/* --- Page Container Layout --- */
.page-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Header Styling --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.brand-logo {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.45)) drop-shadow(0 0 15px rgba(197, 160, 89, 0.3));
    margin-right: -0.6rem;
    transition: var(--transition-smooth);
}

body.lang-ar .brand-logo {
    margin-right: 0;
    margin-left: -0.6rem;
}

.ticket-logo {
    filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.45)) drop-shadow(0 0 12px rgba(197, 160, 89, 0.3));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-heading-en);
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.lang-ar .brand-title {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.lang-ar .brand-subtitle {
    letter-spacing: 0;
    font-weight: 400;
}
/* --- Header Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-call-btn {
    background: var(--color-gold-gradient);
    color: #121c2c;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.phone-call-btn:hover {
    background: var(--color-gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow-intense);
    color: #121c2c;
}

.phone-call-btn i {
    color: #121c2c;
}

body.lang-ar .phone-call-btn {
    font-family: var(--font-ar);
}

/* --- Language Toggle --- */
.lang-toggle-btn {
    background: rgba(13, 23, 38, 0.5);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text-white);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body-en);
}

body.lang-ar .lang-toggle-btn {
    font-family: var(--font-ar);
}

.lang-toggle-btn:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

.lang-toggle-btn i {
    color: var(--color-gold);
}

/* --- Main Grid Layout --- */
.grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding: 4rem 0;
    align-items: center;
}

body.lang-ar .grid-layout {
    grid-template-columns: 0.8fr 1.2fr;
}

/* --- Content Panel (Left) --- */
.content-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge-container {
    align-self: flex-start;
}

.luxury-badge {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--color-glass-border);
    color: var(--color-gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold-glow);
}

.luxury-badge i {
    animation: gold-pulse 2s infinite ease-in-out;
}

@keyframes gold-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.title-main {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

body.lang-en .title-main {
    font-family: var(--font-heading-en);
}

body.lang-ar .title-main {
    font-family: var(--font-ar);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.4;
}

.gold-text {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 600px;
    font-weight: 300;
}

body.lang-ar .lead-text {
    font-weight: 400;
}

/* --- Coming Soon Styling --- */
.coming-soon-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 400px;
}

.coming-soon-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

body.lang-ar .coming-soon-label {
    letter-spacing: 0;
    font-family: var(--font-ar);
    font-size: 1.1rem;
}

.coming-soon-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-glass-border);
}

.coming-soon-fill {
    height: 100%;
    width: 85%; /* 85% complete */
    background: var(--color-gold-gradient);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 8px rgba(197, 160, 89, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 16px rgba(197, 160, 89, 0.7); }
}

/* --- Waitlist Form Card --- */
.waitlist-card {
    background: rgba(10, 16, 26, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 16px;
    padding: 2.2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.waitlist-card:hover {
    border-color: rgba(197, 160, 89, 0.45);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* --- Form Tabs Styling --- */
.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 0.8rem;
}

.form-tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-smooth);
}

.form-tab-btn.active {
    color: var(--color-gold-light);
}

.form-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -0.9rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.form-tab-btn.active::after {
    transform: scaleX(1);
}

body.lang-ar .form-tab-btn {
    font-family: var(--font-ar);
    font-size: 0.95rem;
}

.hidden {
    display: none !important;
}

.input-wrapper input[type="date"] {
    color-scheme: dark;
}

.card-header {
    margin-bottom: 1.8rem;
}

.card-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

body.lang-ar .card-header h4 {
    font-family: var(--font-ar);
}

.card-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.2rem;
}

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

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group.flex-grow {
    flex-grow: 1;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gold-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

body.lang-ar .form-group label {
    letter-spacing: 0;
    font-size: 0.8rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Custom Styled Select Inputs */
.select-wrapper, .input-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select, .input-wrapper input {
    width: 100%;
    background: rgba(6, 10, 17, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.18);
    color: #f3e7c4; /* gold tinted text color */
    padding: 0.85rem 1rem 0.85rem 2.8rem; /* Padding left for icon space */
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    appearance: none; /* Hide default dropdown arrow */
    cursor: pointer;
}

.select-wrapper select::placeholder, .input-wrapper input::placeholder {
    color: rgba(243, 231, 196, 0.4);
}

body.lang-ar .select-wrapper select, body.lang-ar .input-wrapper input {
    padding: 0.85rem 2.8rem 0.85rem 1rem; /* Padding right for Arabic icon space */
}

/* Custom Dropdown Arrow */
.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

body.lang-ar .select-wrapper::after {
    right: auto;
    left: 1.2rem;
}

.select-wrapper select:focus, .input-wrapper input:focus {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 15px rgba(243, 231, 196, 0.2);
    background: rgba(13, 20, 31, 0.95);
}

.select-icon, .input-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    font-size: 0.95rem;
    pointer-events: none;
}

body.lang-ar .select-icon, body.lang-ar .input-icon {
    left: auto;
    right: 1.1rem;
}

/* Inline form for email and button */
.inline-form {
    align-items: flex-end;
    margin-top: 0.5rem;
}

.submit-btn {
    background: var(--color-gold-gradient);
    color: #121c2c;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

body.lang-ar .submit-btn {
    font-family: var(--font-ar);
    font-weight: 700;
}

.submit-btn:hover {
    background: var(--color-gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow-intense);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    transition: var(--transition-smooth);
}

body.lang-en .submit-btn:hover i {
    transform: translateX(4px);
}

body.lang-ar .submit-btn:hover i {
    transform: translateX(-4px);
}




/* Custom styling for options */
select option {
    background: #0d1726;
    color: var(--color-text-white);
    padding: 10px;
}

/* --- Visual Panel (Right / Desktop only) --- */
.visual-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.globe-overlay-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: 5;
    animation: floating 6s ease-in-out infinite;
}

body.lang-ar .globe-overlay-card {
    right: auto;
    left: 20px;
}

.glass-feature {
    background: rgba(13, 23, 38, 0.6);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.2rem;
    max-width: 260px;
    box-shadow: var(--shadow-gold-glow);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gold-icon-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.glass-feature h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-white);
}

body.lang-ar .glass-feature h5 {
    font-family: var(--font-ar);
}

.glass-feature p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* --- Luxury Slideshow Styling --- */
.luxury-slideshow-container {
    width: 100%;
    max-width: 450px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-gold);
    position: relative;
    background: var(--color-bg-card);
    box-shadow: var(--shadow-gold-glow);
    z-index: 6;
    margin-bottom: 2rem;
}

.slideshow-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-img {
    transform: scale(1.12);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.2rem 1.5rem;
    background: linear-gradient(to top, rgba(8, 15, 26, 0.95) 0%, rgba(8, 15, 26, 0.6) 60%, transparent 100%);
    z-index: 3;
    text-align: left;
}

body.lang-ar .slide-caption {
    text-align: right;
}

.caption-tag {
    font-size: 0.7rem;
    color: var(--color-gold-light);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.2rem;
}

body.lang-ar .caption-tag {
    letter-spacing: 0;
}

.slide-caption h4 {
    font-size: 1.2rem;
    color: var(--color-text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

body.lang-ar .slide-caption h4 {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.slideshow-dots {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

body.lang-ar .slideshow-dots {
    right: auto;
    left: 1.2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
    border-color: var(--color-gold-light);
}

/* --- Features Section (Full Width Bottom) --- */
.features-section {
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    margin-top: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

body.lang-en .section-header h2 {
    font-family: var(--font-heading-en);
}

body.lang-ar .section-header h2 {
    font-family: var(--font-ar);
    font-weight: 700;
    font-size: 2rem;
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-glass-border);
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow);
}

.card-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    background: rgba(197, 160, 89, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .card-icon {
    background: var(--color-gold-gradient);
    color: #121c2c;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-white);
}

body.lang-ar .feature-card h3 {
    font-family: var(--font-ar);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
}

body.lang-ar .feature-card p {
    font-weight: 400;
}

/* --- Footer Styling --- */
.main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2rem;
}

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

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

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

.footer-sep {
    opacity: 0.3;
}

.copyright {
    font-weight: 300;
}

/* --- VIP Pass Ticket Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 18, 0.9);
    z-index: 100;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.ticket-card {
    background: radial-gradient(circle at 50% 120%, #152238 0%, #0a1128 100%);
    border: 1px solid var(--color-gold);
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.4);
    text-align: center;
    transform: translateY(50px) scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .ticket-card {
    transform: translateY(0) scale(1);
}

.ticket-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold-gradient);
    color: #121c2c;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

body.lang-ar .ticket-badge {
    right: auto;
    left: 1rem;
    letter-spacing: 0;
    font-family: var(--font-ar);
}

.ticket-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ticket-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.ticket-header h3 {
    font-family: var(--font-heading-en);
    font-size: 1.6rem;
    letter-spacing: 1.5px;
}

body.lang-ar .ticket-header h3 {
    font-family: var(--font-ar);
    letter-spacing: 0;
}

.ticket-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.lang-ar .ticket-sub {
    letter-spacing: 0;
    font-family: var(--font-ar);
}

.ticket-body {
    border-top: 1px dashed rgba(197, 160, 89, 0.4);
    border-bottom: 1px dashed rgba(197, 160, 89, 0.4);
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    position: relative;
}

/* Ticket Side Notches */
.ticket-body::before, .ticket-body::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(5, 10, 18, 1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--color-gold);
    z-index: 2;
}

.ticket-body::before {
    left: -37px;
    clip-path: circle(50% at 100% 50%);
}

.ticket-body::after {
    right: -37px;
    clip-path: circle(50% at 0% 50%);
}

.ticket-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.lang-ar .ticket-info {
    text-align: right;
}

.info-chunk {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
}

body.lang-ar .info-label {
    font-family: var(--font-ar);
}

.info-value {
    font-size: 0.85rem;
    font-weight: 600;
}

body.lang-ar .info-value {
    font-family: var(--font-ar);
}

.ticket-discount {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--color-glass-border);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.disc-perc {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-gold);
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-body-en);
}

.disc-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

body.lang-ar .disc-label {
    letter-spacing: 0;
    font-family: var(--font-ar);
}

.ticket-code {
    background: rgba(8, 15, 26, 0.9);
    border: 1px solid var(--color-gold);
    color: var(--color-text-white);
    padding: 0.4rem 1.2rem;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.ticket-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.ticket-footer p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

body.lang-ar .ticket-footer p {
    font-family: var(--font-ar);
}

.close-modal-btn {
    background: rgba(13, 23, 38, 0.6);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text-white);
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

body.lang-ar .close-modal-btn {
    font-family: var(--font-ar);
}

.close-modal-btn:hover {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-gold-light);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    body.lang-ar .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .visual-panel {
        height: 350px;
        order: -1; /* Put globe on top for tablet/mobile */
    }
    
    .globe-overlay-card {
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
    }
    
    body.lang-ar .globe-overlay-card {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }
    
    .main-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-bottom: 1.5rem;
    }
    
    .header-logo-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .brand-text {
        align-items: center;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    body.lang-ar .title-main {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .inline-form {
        align-items: stretch;
    }
    
    .submit-btn {
        justify-content: center;
    }
    
    .main-footer {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .footer-sep {
        display: none;
    }
    

    
    .visual-panel {
        height: 300px;
    }
}
