/* ============================================
   CARIBBEAN-GHANA FOOD CULTURAL EXCHANGE
   Premium Event Ticket Portal Stylesheet
   ============================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@700&display=swap');

/* BRAND COLOR PALETTE */
:root {
    /* Primary Colors */
    --red-dark: #6D0000;
    --red-medium: #8B0000;
    --red-light: #A52A2A;
    
    /* Accent Colors */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    
    /* Secondary Colors */
    --green-dark: #0C5F3F;
    --green-medium: #1A7A52;
    --green-light: #2E8B57;
    
    /* Neutral Colors */
    --cream: #FDF8F0;
    --cream-dark: #F5E6D3;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #999999;
    --gray-lighter: #E5E5E5;
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, #6D0000 0%, #A52A2A 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-green: linear-gradient(135deg, #0C5F3F 0%, #2E8B57 100%);
    --gradient-hero: linear-gradient(135deg, rgba(109, 0, 0, 0.95) 0%, rgba(12, 95, 63, 0.85) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.4);
    --shadow-red: 0 4px 20px rgba(109, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--gray-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* SELECTION */
::selection {
    background-color: var(--gold);
    color: var(--black);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes confetti {
    0% {
        transform: translateY(0) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) rotateZ(720deg);
        opacity: 0;
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   NAVBAR
   ============================================ */
.main-navbar {
    background: var(--gradient-red);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.main-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-navbar .navbar-brand img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    transition: var(--transition-normal);
}

.main-navbar .navbar-brand:hover img {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.main-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.main-navbar .nav-link:hover::before,
.main-navbar .nav-link.active::before {
    width: 70%;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border: 2px solid var(--gold) !important;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--green-dark) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}

/* Animated Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--green-light);
    border-radius: 50%;
    bottom: 20%;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 40%;
    right: 10%;
    animation: rotate 20s linear infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title span {
    color: var(--gold);
    font-family: 'Dancing Script', cursive;
    font-size: 1.1em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.1rem;
}

.hero-meta-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--black);
}

.btn-hero:active {
    transform: translateY(-1px);
}

.btn-hero i {
    font-size: 1.2rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red-dark);
    transform: translateY(-3px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-red);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(109, 0, 0, 0.4);
    color: var(--white);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-green);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(12, 95, 63, 0.4);
    color: var(--white);
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: var(--gradient-red);
    color: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    min-width: 140px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0.9;
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(109, 0, 0, 0.1);
    color: var(--red-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   EVENT INFO SECTION
   ============================================ */
.event-info-section {
    background: var(--cream);
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.event-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
}

.event-card-content {
    padding: 30px;
}

.event-card-title {
    font-size: 1.5rem;
    color: var(--red-dark);
    margin-bottom: 15px;
}

.event-card-details {
    margin-bottom: 20px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.event-detail-item:last-child {
    border-bottom: none;
}

.event-detail-item i {
    width: 40px;
    height: 40px;
    background: rgba(109, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-dark);
    font-size: 1rem;
}

.event-detail-item span {
    color: var(--gray-medium);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--white);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ============================================
   TICKET PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
}

.pricing-section .section-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.pricing-section .section-title {
    color: var(--white);
}

.pricing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--gold);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card-header {
    padding: 40px 30px 30px;
    text-align: center;
    background: var(--cream);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--red-dark);
    margin-bottom: 10px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-medium);
}

.pricing-card-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray-dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--green-dark);
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: var(--gray-light);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--gray-light);
}

/* ============================================
   BUY TICKETS PAGE
   ============================================ */
.buy-header {
    background: var(--gradient-red);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.buy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/banner.jpg') center/cover;
    opacity: 0.2;
}

.buy-header-content {
    position: relative;
    z-index: 2;
}

.buy-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.buy-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.payment-header {
    background: var(--gradient-red);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.payment-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/banner.jpg') center/cover;
    opacity: 0.2;
}

/* ============================================
   TICKET CARD / FORM STYLING
   ============================================ */
.ticket-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.ticket-card:hover {
    box-shadow: var(--shadow-xl);
}

.ticket-card-header {
    background: var(--gradient-red);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.ticket-card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.ticket-card-header p {
    opacity: 0.9;
}

.ticket-card-body {
    padding: 40px;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.premium-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--cream);
}

.premium-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.premium-input::placeholder {
    color: var(--gray-light);
}

.form-select.premium-input {
    cursor: pointer;
}

/* Ticket Type Selection */
.ticket-type-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ticket-type-option {
    position: relative;
}

.ticket-type-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.ticket-type-label {
    display: block;
    padding: 25px 20px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    background: var(--cream);
}

.ticket-type-label:hover {
    border-color: var(--gold);
}

.ticket-type-option input:checked + .ticket-type-label {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.ticket-type-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red-dark);
    margin-bottom: 5px;
}

.ticket-type-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-dark);
}

.ticket-type-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-medium);
}

/* Order Summary */
.order-summary {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 30px;
}

.order-summary-title {
    font-size: 1.2rem;
    color: var(--red-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-lighter);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1rem;
}

.order-summary-row.total {
    border-top: 2px solid var(--gray-lighter);
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.order-summary-row.total span:last-child {
    color: var(--gold-dark);
}

/* ============================================
   SUCCESS / FAILURE PAGES
   ============================================ */
.result-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    background: var(--cream);
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.5s ease forwards;
}

.result-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.result-icon.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    animation: bounce 1s ease;
}

.result-icon.failed {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: var(--white);
}

.result-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.result-title.success {
    color: #059669;
}

.result-title.failed {
    color: #DC2626;
}

.result-text {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.result-details {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.result-details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.result-details-row:last-child {
    border-bottom: none;
}

.result-details-label {
    color: var(--gray-medium);
}

.result-details-value {
    font-weight: 600;
    color: var(--black);
}

.ticket-id-display {
    background: var(--gradient-red);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confetti 5s ease forwards;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   LOADING STATES
   ============================================ */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-lighter) 25%, var(--cream) 50%, var(--gray-lighter) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease forwards;
    max-width: 350px;
}

.toast.success {
    border-left: 4px solid #10B981;
}

.toast.error {
    border-left: 4px solid #EF4444;
}

.toast.warning {
    border-left: 4px solid #F59E0B;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast.success .toast-icon { color: #10B981; }
.toast.error .toast-icon { color: #EF4444; }
.toast.warning .toast-icon { color: #F59E0B; }

.toast-message {
    flex: 1;
}

.toast-close {
    cursor: pointer;
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--gray-dark);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-meta {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 110px;
        padding: 20px 25px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 15px 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero, .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .countdown-wrapper {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .ticket-card-body {
        padding: 25px;
    }
    
    .result-card {
        padding: 40px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-navbar .navbar-brand {
        font-size: 1.2rem;
    }
    
    .main-navbar .navbar-brand img {
        height: 40px;
        width: 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .ticket-type-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold) !important; }
.text-red { color: var(--red-dark) !important; }
.text-green { color: var(--green-dark) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-white { background-color: var(--white) !important; }

.mt-6 { margin-top: 4rem !important; }
.mb-6 { margin-bottom: 4rem !important; }
.py-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }

.center-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--cream);
}
