@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --gold: #3e84f4;
    --gold-light: #3e84f4;
    --gold-dark: #00345d;
    --black: #000000;
    --dark-grey: #f5f5f5;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition-speed: 0.6s;
}

body {
    background-color: #fff;
    color: #000;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a{ text-decoration:none; }

h1, h2, h3, h4, .font-serif {
    font-family: "League Gothic", sans-serif;
}

/* Premium Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background:#ccc; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

.main-header{  width: 100%; z-index: 99; }

/* Navigation */
.navbar {
    padding: 4px 0;
    transition: all 0.5s ease;
    background: #f2f8fc;
}

.navbar.scrolled {
    padding:0px;
    background: rgb(255 255 255 / 85%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed;
    width: 100%;
    z-index: 999;
}

.navbar.scrolled .navbar-brand img{ max-width: 80px; }

.navbar.scrolled .nav-link{ color: #000; }

.nav-link {
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    letter-spacing: 0.4px;
}

.nav-link i{ font-size: 16px; }

.nav-link:hover {
    color: var(--gold) !important;
}


.navbar-brand img{ max-width: 150px; transition: all 1s ease; }

.navbar-brand:focus, .navbar-brand:hover{ color: var(--gold); }

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%), 
                url('../images/banner.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 1100px;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: calc(6rem + 4vw);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.hero-title span {
    color: var(--gold-light);
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 200;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 2rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* Buttons */
.btn-premium-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-premium-gold:hover {
    background: var(--gold-dark);
    color: #fff;
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(0, 179, 255, 0.4);
    padding: 1rem 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: rgba(0, 180, 246, 1);
    border-color: var(--gold);
    color: #fff;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.gold-text {
   color:var(--gold);
}

.text-gold {
    color:var(--gold);
}

.border-gold-subtle { border: 1px solid rgba(0, 157, 255, 0.3); }

.gold-icon {
    color:var(--gold);
    border: 1px solid rgba(1, 98, 158, 0.3);
    border-radius: 50%;
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    max-width: 48px;
    flex: 0 0 48px;
}

#trophy h4.gold-text{ font-size: 32px; }

#location {
    background: var(--gold);
    position: relative;
    overflow: hidden;
}
#location::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}
#location::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

#location .container {
    position: relative;
    z-index: 1;
}

/* Cards */
.premium-card {
    background: #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 3rem;
    height: 100%;
    transition: all 0.4s ease;
}

.premium-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.03);
}

.card-icon {
    color: var(--gold);
    margin-bottom: 2rem;
}

/* Trophy Stats */
.stat-box {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
}

.stat-box:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-family: "League Gothic", sans-serif;
    margin-bottom: 0.5rem;
}

.bookticket-sec{ background: #fff; }

.booking-image{ height: 100%; }
.booking-image img{ width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.text-muted{ color: #777 !important; }

/* Booking Form */
.booking-container {
    background: #eee;
    border: 1px solid #e1e1e1;
    padding: 2rem;
    height: 100%;
    margin: 0 auto;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.form-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    margin-bottom:10px;
}

.form-control, .form-select {
    border-radius: 0;
    padding: 10px 14px;
    font-weight: 400;
    font-size: 14px;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    font-family: "League Gothic", sans-serif;
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #996515 0%, #D4AF37 50%, #F1D592 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.social-links a {
    color: #666;
    margin: 0px 5px;
    transition: color 0.3s ease;
    font-size: 19px;
}

.social-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .booking-container { padding: 2rem; }
    .navbar-brand span { font-size: 1rem; }
}

.footer-logo img{
max-width: 300px;
}

.title-col{ text-align: center; }

.italic {
    
}

.creative-card {
    background: #fff;
    padding:40px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    backdrop-filter: blur(5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.6s ease;
    transform-style: preserve-3d;
    z-index: 1;
}

.icon-special-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 1.8rem;
}
.card-title-adv {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 26px;
    color: var(--gold);
    text-align: center;
    transition: color 0.5s ease;
    font-family: "Poppins", sans-serif;
}
.card-text-adv {
    color: #444;
    font-size:13px;
    letter-spacing: 0.1px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    font-weight: 400;
    transition: color 0.5s ease;
}

.pricing-section {
    background: var(--gold);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}
.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.pricing-section .container{ position: relative; z-index: 1; }

.pricing-card {
    background: #fff;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
    padding: 40px 30px 30px;
    min-height: 480px;
    position: relative;
}

.pricing-card a {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 88%;
    margin: auto;
    z-index: 9;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.pricing-card h5{ color: #000; }

.price {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--gold);
}

.price span {
    color: #333;
}

.pricing-card ul{
    list-style: disc;
    text-align: left;
    margin:10px auto 10px;
    padding-left: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
  color: #555; /* darker for readability */
  font-size: 14px;
}

/* Featured Card */
.featured {
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

/* Badge */
.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-light);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 20px;
}

.btn{ border-radius: 0px; }

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 10px 10px;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff;
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 10px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

/* --- Custom Navbar / Trigger Area --- */
.mock-nav {
    padding: 20px 50px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.login-trigger {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    background: transparent;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 5px;
}

.login-trigger:hover {
    color: var(--black);
    background: var(--gold);
}

/* --- Modal Customizations --- */

/* --- Mock Navigation --- */
.mock-nav {
    padding: 20px 50px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.login-trigger {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.login-trigger:hover {
    color: var(--black);
    background: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* --- Modal Customizations --- */

.modal-backdrop.show {
    opacity: 0.7;
    backdrop-filter: blur(8px); /* Bolder blur on backdrop */
}

.custom-modal-content {
    background: #fff;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 
                0 0 30px rgba(212, 175, 55, 0.08);
    position: relative;
    overflow: hidden;
    color: #fff;
    
    /* Crucial for height transition: 
        Set height transition and ensure overflow is hidden so grid collapses neatly */
    transition: height var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Gold Glow Effect */
.custom-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    box-shadow: 0 0 20px 2px var(--gold);
}

/* Custom Close Button */
.custom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.custom-close-btn:hover { opacity: 1; }

/* --- Brand Header --- */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

.brand-header h2 {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.brand-header p {
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 5px;
}

/* --- Tab Toggles --- */
.form-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 50%;
}

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

.toggle-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

/* --- Form Elements --- */
.form-floating > .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding-left: 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.form-floating > .form-control:focus {
    border-bottom-color: var(--gold);
    background-color: transparent;
}

.form-control:-webkit-autofill {
     background-color: transparent;
    -webkit-box-shadow: none !important;
    -webkit-text-fill-color: none !important;
    border-bottom: 1px solid var(--gold) !important;
}

.form-floating > label { color: #888; padding-left: 0; }

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--gold-light);
    transform: scale(0.85) translateY(-1.5rem) translateX(0);
}

.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after{ background: none !important; }

/* =========================================
    ADVANCED SMOOTH TRANSITION LOGIC
    ========================================= */

/* The container for the forms using the CSS Grid technique 
    to enable smooth height transitions without rigid height values. */
.form-anim-wrapper {
    display: grid;
    grid-template-rows: 0fr; /* Collapsed by default */
    overflow: hidden;
    transition: grid-template-rows var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

/* The inner container that holds the actual content. 
    This must have transition on opacity for the cross-fade. */
.form-inner-content {
    min-height: 0; /* Important for grid animation */
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

/* Class applied when a form is active (expanded) */
.form-active {
    grid-template-rows: 1fr;
    padding-top: 20px; /* Expand to content size */
}

.form-active .form-inner-content {
    opacity: 1;
    /* delay opacity to fade in after grid starts expanding */
    transition-delay: calc(var(--transition-speed) / 4);
}

/* Animation class for 'flicker' cross-fade effect when both fade at once */
.cross-fade-out {
    opacity: 0 !important;
    transition-delay: 0s !important;
}

/* Inactive State: Dark Gray to Black Gradient */
.faq-v3-card {
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-section{ 
    background: url(../images/faq-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Base Button Style */
.faq-v3-btn {
    background: transparent !important;
    color: #000 !important; /* Inactive color: Dark Gray */
    padding: 25px !important;
    font-size: 1.1rem;
    box-shadow: none !important;
    font-family: "Poppins", sans-serif;
}

/* ACTIVE STATE: Gold Effect */
.faq-v3-btn:not(.collapsed) {
    color: #fff !important;
    background: var(--gold) !important;
}

/* Active Border Glow */
.faq-v3-card:has(.show) {
    border-color: #fff !important;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}

/* Numbers Styling */
.v3-number {
    margin-right: 15px;
    font-weight: 800;
    font-family: 'serif';
    transition: 0.3s;
}

.faq-v3-btn:not(.collapsed) .v3-number {
    color: #fff;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.faq-v3-btn.collapsed .v3-number {
    color: #000; /* Darker gray for inactive numbers */
}

/* Answer Body */
.accordion-body {
    padding-left: 65px !important;
    padding-bottom: 25px !important;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 15px;
}

/* Arrow Icon Color to Match Gold when active */
.faq-v3-btn:not(.collapsed)::after {
    filter: invert(1) brightness(100);
}


/*---------------about page------------------*/

/* Full Screen Hero - Full and Seamless */
.abouthero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    overflow: hidden;
    border: none !important; /* Forces no border */
}

.abouthero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.abouthero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.95;
}

/* Seamless Dark Overlay */
.abouthero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,1) 100%);
    z-index: 2;
}

/* Centralized and Animated Hero Content */
.abouthero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    top: 55%;
    transform: translateY(-50%) !important;
    text-align: center;
}

.abouthero-content h1 {
    color: #fff;
    font-size: 5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.abouthero-content .launch-sub {
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 5px;
}

/* --- Section Styling - Seamless flow, NO CARDS --- */

.seamless-section {
    background-color: transparent;
    border: none;
}

.section-subtitle {
    margin-top: 15px;
    font-weight: 300;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blended Quote and Feature grid styles */
.quote-icon {
    font-size: 6rem;
    color:var(--gold);
    line-height: 1;
    margin-bottom:0px;
}

.quote-text {
    font-weight: 300;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 35px;
    font-size: 1.15rem;
}

.quote-attribution {
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.quote-title {
    color: var(--gold);
    font-weight: 300;
    font-size: 0.9rem;
}

/* Blended feature sections, NO CARDS */
.feature-block {
    padding: 40px;
    border: none;
    background:var(--gold);
    height: 100%;
}

.feature-icon-framer {
    display: inline-block;
    margin-bottom: 25px;
    color: #fff;
    border-bottom: 3px solid #fff;
    padding-bottom: 10px;
}

.feature-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 38px;
}

.feature-block p{ font-size: 14px; font-weight: 200; letter-spacing: 1px; }

#announcement{ background: var(--gold); }
#announcement p{ color: #fff; font-weight: 200; letter-spacing: 1px; }

/* Blended Data Spotlights */
.data-panel {
    padding: 50px 0;
    background-color: transparent;
    border: none;
}
.data-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}
.data-point {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom:10px;
}
.data-subpoint {
    font-weight: 300;
    color: #fff;
    font-size: 1rem;
}

/* Seamless Venue Spotlight */
.venue-spotlight {
    background-color: var(--dark-grey); /* Pure seamless blend, no border */
}
.venue-details {
    max-width: 600px;
}
.venue-spotlight h3 {
    color: var(--gold);
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 25px;
}
.venue-subtitle {
    font-weight: 300;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}
.venue-image-wrapper {
    width: 100%;
    border: none;
}

.footer-links a{ color: #000; }
.footer-links a:hover{ color: var(--gold); }

.about-section2 {
    background: #f5f5f5;
}


.privacy-content-wrapper .container{ max-width: 1000px; padding-top: 80px; }
.privacy-content-wrapper p{ font-size: 14px; color:#444; font-weight: 400; }

.privacy-content-wrapper h3 {
    border-bottom: 2px solid var(--gold-dark);
    padding-bottom: 10px;
    display: inline-block;
    color: var(--gold);
}

.privacy-content-wrapper ul {
    padding-left: 16px;
}
.privacy-content-wrapper li {
    font-size: 14px;
    font-weight: 400;
    color: #444;
    margin-bottom: 1.25rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #0a0a0a;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow var(--transition-speed) ease;
}
.graphic-panel {
    position: relative;
    background:radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%), 
                url('../images/trophy.jpg') no-repeat;
    background-size: cover;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.form-panel {
    padding: 60px;
    background-color: #eee;
}


.graphic-panel h2 {
    color: var(--gold);
    font-size: 4.2rem;
    margin-bottom: 30px;
}
.form-panel h3 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size:3.5rem;
}

.fifa-museum-callout {
    color: var(--gold-light);
    border-left: 3px solid #fff;
    padding-left: 20px;
    font-style: italic;
    font-weight: 300;
}

/* Layout */
.cart-section {
    padding: 80px 0;
}

/* Card */
.cart-box {
    background: var(--dark-grey);
    height: 100%;
    border: 1px solid #e1e1e1;
    padding: 25px;
}

/* Title */
.section-title {
    font-weight: 500;
}

/* Info Rows */
.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #000;
}

/* Total */
.total {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}


/*-------------dashboard pages--------*/

/* Sidebar */
.sidebar {
    padding: 20px;
}

.sidebar h4 {
    color: var(--gold);
}

.sidebar a {
    display: block;
    color: #333;
    padding: 10px 0;
    text-decoration: none;
}

.sidebar a:hover,
.sidebar a.active {
    color: var(--gold);
}

/* Content */
.dashboard-content {
    padding: 30px;
}

/* Cards */
.card-custom {
    background: var(--dark-grey);
    border: 1px solid #e1e1e1;
    border-radius: 0px;
}

/* Ticket */
.ticket-card {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticket-title {
    color: var(--gold);
}

/* Profile */
.profile-box {
    text-align: center;
}

.profile-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Section */
.tickets-section {
    padding: 80px 0;
}

/* Ticket Card */
.ticket-card {
    background: var(--dark-grey);
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    overflow: hidden;
    transition: 0.3s;
}

.ticket-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
}

/* Left Strip */
.ticket-left {
    background: linear-gradient(180deg, #0a77c9, #034374);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.ticket-left h5 {
    font-weight: 600;
}

/* Ticket Content */
.ticket-content {
    padding: 20px;
}

.ticket-label {
    font-size: 12px;
    color: #aaa;
}

.ticket-value {
    font-size: 15px;
    color: #000;
}

/* QR */
.qr-box img {
    width: 100px;
}

.profile-card {
    background: var(--dark-grey);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px;
}

/* Card */
.history-card {
    background: var(--dark-grey);
    border: 1px solid #e1e1e1;
    padding: 20px;
    transition: 0.3s;
}

.history-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

/* Labels */
.label {
    font-size: 12px;
    color: #aaa;
}

.value {
    font-size: 14px;
}

/* Status */
.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.status-confirmed {
    background: rgba(0,255,100,0.1);
    color: #00ff88;
}

.status-cancelled {
    background: rgba(255,0,0,0.1);
    color: #ff4d4d;
}

table{ font-size: 14px; }

.success-card {
    background: var(--dark-grey);
    border-radius: 20px;
    border: 1px solid #e1e1e1;
    padding: 40px;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* Icon */
.success-icon {
    font-size: 60px;
    color: var(--gold);
}

/* Ticket Box */
.ticket-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
}

/* Labels */
.label {
    font-size: 12px;
    color: #999;
}

.value {
    font-size: 14px;
}

.dashboard-pages {
    padding: 60px 0px;
}

.privacy-content-wrapper{ padding: 0px; }


/*---------------media css------------------*/

@media (max-width: 1280px) {
.nav-link{ font-size: 13px; }
.hero-title{ font-size: calc(3rem + 4vw); }
.hero-desc {
    font-size: 1rem;
    max-width: 730px;
    margin: 0 auto 2rem;
}

.btn-premium-outline, .btn-premium-gold{ padding: 0.8rem 1.8rem; }
.hero-tagline{ margin-bottom: 1rem; }
.section-title{ font-size: 3.5rem; }


}

@media (max-width: 1280px) {
body{ overflow-x: hidden !important; }
#trophy .row.align-items-center.g-5{ --bs-gutter-x: 0rem; }
.footer-links a{margin: 0px 3px !important; }
footer{ padding: 20px 0 30px; }
.v3-number{ display: none; }
.faq-v3-btn{ padding: 15px !important; font-size: 1rem; }
.accordion-body{ padding-left: 15px !important; padding-bottom: 15px !important; font-size: 14px; }
section { padding: 50px 0; }
.faq-section{ padding-top: 0px; padding-bottom: 0px; }
.section-title { font-size: 3rem; margin-bottom: 2rem; }
.title-col.mb-5 { margin-bottom: 2rem !important; }
.navbar-toggler { font-size: 30px; }
.abouthero-content { padding: 20px; }
.contact-container{ display: block; }
.graphic-panel{ padding: 30px; }
.form-panel{ padding: 30px; }
.leading { font-size: 1rem; }
.event-status{ gap: 10px; }
.divider.ps-4{ border-left: none !important; padding-left: 0.8rem !important; margin-top: 10px; margin-bottom: 10px; }
.d-flex.gap-3.mt-4 {
    flex-direction: column;
}
.d-flex.gap-3.mt-4 a, .d-flex.gap-3.mt-4 button{ width: 100% !important; display: block; }
.info-row{ flex-direction: column; gap: 10px; }
.ticket-item{ flex-direction: column; gap: 10px; }








}




























