/* ====== BASE VARIABLES (NEW COLOR PALETTE) ====== */
:root {
    /* Primary Colors */
    --primary: #F68320;         /* Main orange */
    --primary-light: #ff9a44;   /* Light orange */
    --primary-dark: #dd612d;    /* Dark orange */
    
    /* Secondary Colors */
    --secondary: #4f74b0;       /* Blue */
    --secondary-light: #6b8fd8; /* Light blue */
    --secondary-dark: #3a5a8c;  /* Dark blue */
    
    /* Accent & Background */
    --accent: #FAE9CD;          /* Cream/Beige */
    --accent-dark: #f5e5d0;     /* Darker cream */
    
    /* Light Theme */
    --light-bg: #FAE9CD;        /* Light cream background */
    --light-card: #ffffff;      /* White cards */
    --light-text: #17191C;      /* Dark charcoal text */
    --light-text-secondary: #5a5d64; /* Medium gray text */
    --light-border: #e0d4c2;    /* Light beige border */
    --light-hover: #f5e5d0;     /* Cream hover */
    
    /* Dark Theme */
    --dark-bg: #17191C;         /* Dark charcoal background */
    --dark-card: #23252a;       /* Dark gray cards */
    --dark-text: #ffffff;       /* White text */
    --dark-text-secondary: #b0b2b8; /* Light gray text */
    --dark-border: #3a3c42;     /* Medium gray border */
    --dark-hover: #2c2e34;      /* Dark gray hover */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F68320 0%, #dd612d 100%);
    --gradient-secondary: linear-gradient(135deg, #4f74b0 0%, #3a5a8c 100%);
    --gradient-accent: linear-gradient(135deg, #FAE9CD 0%, #f5dfc4 100%);
    
    /* Current Theme (Defaults to Light) */
    --bg: var(--light-bg);
    --card: var(--light-card);
    --text: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --border: var(--light-border);
    --hover: var(--light-hover);
    --shadow-color: rgba(246, 131, 32, 0.15);
}

/* Dark Theme Class */
.dark-theme {
    --bg: var(--dark-bg);
    --card: var(--dark-card);
    --text: var(--dark-text);
    --text-secondary: var(--dark-text-secondary);
    --border: var(--dark-border);
    --hover: var(--dark-hover);
    --shadow-color: rgba(246, 131, 32, 0.25);
    --gradient-accent: linear-gradient(135deg, #2c2e34 0%, #23252a 100%);
}

/* ====== RESET & BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

main {
    flex: 1;
    padding-top: 1rem;
}

/* ====== NAVBAR STYLES ====== */
.navbar {
    background: var(--card);
    box-shadow: 0 2px 20px var(--shadow-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border);
}

.dark-theme .navbar {
    background: var(--dark-card);
    border-bottom-color: var(--dark-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(246, 131, 32, 0.3);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .brand-name {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(246, 131, 32, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(246, 131, 32, 0.1);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

/* Theme Switcher */
.theme-switch-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-switch-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    background: var(--gradient-accent);
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.theme-switch:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background: var(--gradient-primary);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dark-theme .theme-switch:before {
    transform: translateX(24px);
}

.theme-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 1;
    pointer-events: none;
}

.theme-icon.sun {
    left: 8px;
    color: var(--primary);
}

.theme-icon.moon {
    right: 8px;
    color: var(--secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(246, 131, 32, 0.3);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--border);
    border-radius: 0 0 20px 20px;
}

.dark-theme .mobile-nav {
    background: var(--dark-card);
    border-top-color: var(--dark-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(246, 131, 32, 0.1);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1.1rem;
    width: 24px;
}

/* ====== FOOTER STYLES ====== */
footer {
    background: var(--gradient-primary);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-container {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ====== EVENT HERO SECTION ====== */
.event-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 24px;
    margin: 2rem 0;
    background: linear-gradient(135deg, 
        rgba(23, 25, 28, 0.95) 0%, 
        rgba(35, 37, 42, 0.98) 50%, 
        rgba(40, 42, 48, 0.95) 100%);
}

.event-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.event-hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.event-hero-content {
    position: relative;
    z-index: 1;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.event-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, 
        var(--secondary-light) 0%, 
        white 50%, 
        var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.event-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Countdown box in hero */
.countdown-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.countdown-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
}

/* ====== CARD STYLES ====== */
.card {
    background: var(--card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow-color);
    margin-bottom: 2rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.dark-theme .card {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

/* ====== OFFER HEADER ====== */
.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-category {
    background: rgba(246, 131, 32, 0.1);
    color: var(--primary);
    border: 2px solid rgba(246, 131, 32, 0.3);
}

.tag-event {
    background: rgba(79, 116, 176, 0.1);
    color: var(--secondary);
    border: 2px solid rgba(79, 116, 176, 0.3);
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}



/* ====== DISCOUNT BADGE ====== */
.discount-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(246, 131, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.expired-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* ====== COUPON SECTION ====== */
.coupon-section {
    margin: 2rem 0;
}

.coupon-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coupon-box {
    display: flex;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coupon-box:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.coupon-box.expired {
    opacity: 0.7;
    border-color: #ff4444;
}

.coupon-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    outline: none;
    text-align: center;
    letter-spacing: 1px;
}

.coupon-copy {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
    min-width: 140px;
}

.coupon-copy:hover {
    background: var(--primary-dark);
}

.coupon-copy.expired {
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    cursor: not-allowed;
}

/* ====== PACKAGE SLIDE SYSTEM ====== */
.packages-section {
    margin: 2rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Package Card Wrapper */
.package-card {
    position: relative;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 70px;
}

/* Main Button */
.package-main-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.package-main-btn:hover {
    background: var(--primary-dark);
}

.package-main-btn .arrow-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

/* Slide Panel */
.package-slide-links {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: var(--card);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
    overflow-y: auto;
}

/* Link Buttons */
.package-link-btn {
    background: rgba(246, 131, 32, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid rgba(246, 131, 32, 0.2);
    white-space: nowrap;
}

.package-link-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* Active State */
.package-card.active .package-slide-links {
    right: 0;
}

.package-card.active .package-main-btn .arrow-icon {
    transform: rotate(180deg);
}

/* Desktop Hover */
@media (hover: hover) and (min-width: 769px) {
    .package-card:hover .package-slide-links {
        right: 0;
    }
    .package-card:hover .package-main-btn .arrow-icon {
        transform: rotate(180deg);
    }
}

/* ====== ORDER BUTTON ====== */
.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(246, 131, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.order-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(246, 131, 32, 0.4);
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:disabled,
.order-btn.expired {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.order-btn:disabled:hover,
.order-btn.expired:hover {
    transform: none;
    box-shadow: none;
}

/* ====== CONTENT SECTIONS ====== */
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
}



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

.offer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ====== SPECIFICATIONS ====== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.spec-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.spec-key {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.spec-value {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ====== OFFER DETAILS ====== */
.offer-details {
    margin: 2rem 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 2px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.detail-value {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
}

.detail-value.highlight {
    color: var(--primary);
    font-weight: 800;
}

/* ====== TRUST BADGES ====== */
.trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 15px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.badge-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ====== FEATURES LIST ====== */
.features-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 2px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ====== STEPS ====== */
.steps-container {
    counter-reset: step-counter;
}

.step-card {
    position: relative;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    padding-left: 5rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.step-card:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ====== ALERT ====== */
.alert {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(246, 131, 32, 0.3);
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.alert.show {
    top: 30px;
}

/* ====== BREADCRUMB ====== */
.breadcrumb {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
    background: rgba(246, 131, 32, 0.1);
}

.breadcrumb-separator {
    color: var(--text-secondary);
}

/* ====== MAIN GRID LAYOUT ====== */
.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ====== SIDEBAR ====== */
.sidebar-card {
    position: sticky;
    top: 2rem;
    background: var(--card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 2px solid var(--border);
}

.price-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.3rem;
    font-weight: 600;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0.5rem 0;
    display: block;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.price-expired {
    color: #ff4444;
    font-size: 2rem;
    font-weight: 900;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .desktop-nav {
        display: none;
    }
    
    /* Event Hero */
    .event-hero {
        min-height: 400px;
        margin: 1rem 0;
        border-radius: 20px;
    }
    
    .event-hero-content {
        height: 400px;
        padding: 1.5rem;
    }
    
    .event-hero h1 {
        font-size: 2.5rem;
    }
    
    .event-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Offer Header */
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-stats {
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
   
    
    /* Cards */
    .card {
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
   
    
    /* Steps */
    .step-card {
        padding: 1.5rem;
        padding-left: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .step-card:before {
        left: 1.5rem;
        top: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 12px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-main-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .package-slide-links {
        padding: 1.25rem;
        gap: 0.5rem;
    }
    
    .package-link-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Coupon */
    .coupon-box {
        flex-direction: column;
    }
    
    .coupon-input {
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
    }
    
    .coupon-copy {
        padding: 1rem 1.5rem;
        min-width: auto;
    }
    
    /* Order Button */
    .order-btn {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    
    /* Alert */
    .alert {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        max-width: 85%;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .alert.show {
        top: 20px;
    }
    
    /* Features & Badges */
    .feature-item,
    .badge-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon,
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Specs Grid */
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .spec-card {
        padding: 1.5rem;
    }
    
    /* Mobile/Desktop Toggle */
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .sidebar-column {
        display: none !important;
    }
    
    /* Show mobile sections */
    .mobile-order-section,
    .mobile-trust-section {
        display: block !important;
        margin: 1.5rem 0 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Event Hero */
    .event-hero {
        min-height: 350px;
    }
    
    .event-hero-content {
        height: 350px;
    }
    
    .event-hero h1 {
        font-size: 2rem;
    }
    
    .event-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Offer Title */
    .offer-title {
        font-size: 1.75rem;
    }
    
    /* Tags */
    .tag {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Discount Badge */
    .discount-badge,
    .expired-badge {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Section Title */
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    /* Card */
    .card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    /* Alert */
    .alert {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
        max-width: 90%;
    }
    
    .alert.show {
        top: 15px;
    }
    
    /* Steps */
    .step-card {
        padding: 1.25rem;
        padding-left: 3.5rem;
        margin-bottom: 1.25rem;
    }
    
    .step-card:before {
        left: 1.25rem;
        top: 1.25rem;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 991px) {
    .main-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    .sidebar-column {
        display: block !important;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .main-grid {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    .sidebar-column {
        display: block !important;
    }
    
    /* Hide mobile sections on desktop */
    .mobile-order-section,
    .mobile-trust-section {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .mobile-menu-toggle,
    .theme-switch-container,
    .order-btn,
    .coupon-copy {
        display: none !important;
    }
    
    .event-hero {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd;
    }
    
    .event-hero h1 {
        -webkit-text-fill-color: black !important;
        background: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border: #000000;
    }
    
    .card,
    .package-card,
    .spec-card,
    .badge-item,
    .feature-item {
        border: 2px solid var(--border) !important;
    }
}