/* ===================================
   BigWiin Public Website Styles
   =================================== */

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

:root {
    --primary-green: #3CB44A;
    --dark-green: #2a8034;
    --light-green: #4dd160;
    --accent-orange: #FF6B35;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e1e8ed;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-green);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    padding: 10px 24px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-primary {
    padding: 12px 28px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(60, 180, 74, 0.3);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 180, 74, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===================================
   Hero Slider
   =================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3CB44A 0%, #2a8034 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Individual slide backgrounds */
.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
                      url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&h=1080&fit=crop&q=80');
    background-color: #2a8034; /* Fallback color */
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
                      url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1920&h=1080&fit=crop&q=80');
    background-color: #3CB44A; /* Fallback color */
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
                      url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=1080&fit=crop&q=80');
    background-color: #2a8034; /* Fallback color */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    /* Overlay is handled by background-image gradient */
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    color: var(--white);
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s ease;
}

.btn-hero-primary {
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--white);
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Statistics Section
   =================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
}

.stats-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ===================================
   Why Choose BigWiin
   =================================== */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 180, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 180, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(60, 180, 74, 0.2);
    border-color: var(--primary-green);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 180, 74, 0.05), rgba(77, 209, 96, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.3);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Packages Section
   =================================== */
.packages-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.package-price .currency {
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 700;
}

.package-price .amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0 5px;
}

.package-price .period {
    font-size: 16px;
    color: var(--text-light);
}

.package-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-features li i {
    color: var(--primary-green);
    font-size: 18px;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-package:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.no-packages {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    color: var(--text-light);
}

/* ===================================
   Latest Draw Results
   =================================== */
.latest-draw {
    padding: 100px 0;
    background: var(--white);
}

/* Draw Results Tabs */
.draw-results-tabs {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.draw-results-tab {
    padding: 15px 35px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.draw-results-tab:hover {
    border-color: #FFD700;
    color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

.draw-results-tab.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.draw-results-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.draw-info-badge {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

/* Draw Results Carousel */
.draw-results-carousel {
    position: relative;
    min-height: 400px;
}

.draw-result-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.draw-result-slide.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.draw-meta {
    text-align: center;
    margin-bottom: 30px;
}

.draw-meta h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.draw-date {
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.draw-date i {
    color: #3CB44A;
}

.congratulations-banner {
    text-align: center;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.congratulations-banner::before {
    content: '🎊';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    opacity: 0.3;
    animation: confetti 3s ease-in-out infinite;
}

.congratulations-banner::after {
    content: '🎉';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 80px;
    opacity: 0.3;
    animation: confetti 3s ease-in-out infinite reverse;
}

@keyframes confetti {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(5deg) translateY(-10px);
    }
    75% {
        transform: rotate(-5deg) translateY(10px);
    }
}

.congratulations-banner i {
    font-size: 70px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.congratulations-banner h3 {
    font-size: 36px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.winner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    position: relative;
}

.winner-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(60, 180, 74, 0.25);
    border-color: var(--primary-green);
}

.winner-card::after {
    content: '🎉';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 40px;
    opacity: 0;
    transition: all 0.3s;
    transform: rotate(-15deg);
}

.winner-card:hover::after {
    opacity: 1;
    transform: rotate(0deg);
}

.winner-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.3);
    border: 4px solid var(--white);
    position: relative;
    transition: all 0.3s;
}

.winner-card:hover .winner-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.4);
}

.winner-avatar::before {
    content: '👑';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 30px;
    transform: rotate(25deg);
}

.winner-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.winner-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
}

.winner-prize i {
    font-size: 20px;
}

.winner-ticket {
    color: var(--text-light);
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results i {
    font-size: 60px;
    margin-bottom: 20px;
}

/* ===================================
   Prizes Section
   =================================== */
.prizes-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.prize-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    position: relative;
}

.prize-card::before {
    content: '⭐';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    z-index: 10;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.3s;
}

.prize-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(60, 180, 74, 0.25);
    border-color: var(--primary-green);
}

.prize-card:hover::before {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.prize-image {
    height: 220px;
    overflow: hidden;
    background: var(--light-bg);
}

.prize-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.prize-card:hover .prize-image img {
    transform: scale(1.1);
}

.prize-image-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    font-size: 80px;
}

.prize-info {
    padding: 25px;
}

.prize-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.prize-quantity {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 8px;
}

.prize-draw {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(60, 180, 74, 0.1);
    line-height: 1;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '💰';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 120px;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.cta-section::after {
    content: '🎁';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 120px;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    display: inline-block;
    padding: 20px 60px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(60, 180, 74, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-green);
    font-size: 16px;
}

.btn-footer {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-footer:hover {
    background: var(--light-green);
}

.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);
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* ===================================
   How It Works Detailed
   =================================== */
.how-it-works-detailed {
    padding: 100px 0;
    background: var(--white);
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 3px;
    height: calc(100% + 30px);
    background: linear-gradient(180deg, var(--primary-green), var(--light-green));
}

.step-number-big {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.4);
    position: relative;
    z-index: 2;
}

.step-content-big {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.step-content-big:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(60, 180, 74, 0.2);
}

.step-icon-big {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.step-content-big h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-content-big p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.step-features li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 16px;
}

/* ===================================
   Rules Section
   =================================== */
.rules-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.2);
}

.rule-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.rule-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.rule-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   FAQ Simple
   =================================== */
.faq-quick {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-simple {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s;
}

.faq-simple:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-simple h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-simple p {
    color: var(--text-light);
    line-height: 1.7;
}

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

/* ===================================
   About Page Styles
   =================================== */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 30px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(60, 180, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.image-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    border-radius: 10px;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(60, 180, 74, 0.2);
}

.mv-icon {
    font-size: 60px;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Core Values */
.core-values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.2);
}

.value-icon {
    font-size: 55px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.value-card:nth-child(2) .value-icon {
    animation-delay: 0.5s;
}

.value-card:nth-child(3) .value-icon {
    animation-delay: 1s;
}

.value-card:nth-child(4) .value-icon {
    animation-delay: 1.5s;
}

.value-card:nth-child(5) .value-icon {
    animation-delay: 2s;
}

.value-card:nth-child(6) .value-icon {
    animation-delay: 2.5s;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Why Choose About */
.why-choose-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.choose-item {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--dark-green));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.choose-item:hover::before {
    transform: scaleY(1);
}

.choose-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.2);
}

.choose-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.choose-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.choose-content h4 i {
    color: var(--primary-green);
    margin-right: 10px;
}

.choose-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
}

.commitment-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.commitment-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.commitment-item:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-item i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-green);
}

.commitment-item p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    color: var(--text-dark);
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 50px;
    border-radius: 30px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(60, 180, 74, 0.3);
}

.contact-info-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info-box > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.method-icon i {
    font-size: 24px;
}

.method-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-social {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links-contact a:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-5px);
}

/* Contact Form Box */
.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-form-box > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert i {
    font-size: 20px;
    margin-top: 2px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert li {
    margin-bottom: 5px;
}

.alert li:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-green);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(60, 180, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.4);
}

.btn-submit i {
    font-size: 18px;
}

/* Quick Help Section */
.quick-help {
    padding: 100px 0;
    background: var(--white);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.help-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.help-card:hover {
    background: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.15);
}

.help-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.help-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.help-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.help-link:hover {
    gap: 12px;
}

.help-link i {
    font-size: 14px;
}

/* ===================================
   Packages Page Styles
   =================================== */
.packages-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.packages-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 180, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.info-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover::before {
    opacity: 1;
}

.info-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(60, 180, 74, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 35px rgba(60, 180, 74, 0.4);
}

.info-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Packages Listing */
.packages-listing {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.packages-listing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(60, 180, 74, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.packages-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.package-card-detailed {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    border: 2px solid var(--border-color);
}

.package-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(60, 180, 74, 0.15);
    border-color: var(--primary-green);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    z-index: 10;
}

.badge-hot,
.badge-featured {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
}

.badge-featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.package-header-detailed {
    margin-bottom: 20px;
}

.package-header-detailed h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.package-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 15px;
}

.package-duration i {
    color: var(--primary-green);
    font-size: 14px;
}

.package-description {
    margin-top: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.package-description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.package-pricing {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    border: 1px solid var(--border-color);
}

.price-full,
.price-monthly {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.price-amount-monthly {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.price-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 6px;
}

.price-divider {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}

.package-features-detailed {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.package-features-detailed h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features-detailed h4 i {
    color: var(--primary-green);
    font-size: 16px;
}

.package-features-detailed ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.package-features-detailed li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.package-features-detailed li i {
    color: var(--primary-green);
    font-size: 14px;
}

.package-availability {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.availability-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.availability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    transition: width 0.8s ease;
}

.availability-text {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.available {
    color: var(--primary-green);
    font-weight: 700;
}

.total {
    color: var(--text-light);
}

.package-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-view-details,
.btn-buy-now {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-details {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-view-details:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60, 180, 74, 0.3);
}

.btn-buy-now {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-buy-now:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60, 180, 74, 0.4);
}

/* No Packages */
.no-packages {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: 25px;
}

.no-packages-icon {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.no-packages h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.no-packages p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Why Packages Section */
.why-packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.why-packages::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 180, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.why-package-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-package-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    transition: width 0.4s ease;
}

.why-package-item:hover::after {
    width: 80%;
}

.why-package-item:hover {
    transform: translateY(-15px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(60, 180, 74, 0.2);
}

.why-icon {
    font-size: 70px;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.why-package-item:hover .why-icon {
    transform: scale(1.2) rotateZ(5deg);
}

.why-package-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-package-item p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Packages Page Responsive */
@media (max-width: 1200px) {
    .packages-grid-detailed {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid,
    .why-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-info {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-item {
        padding: 30px 20px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .packages-listing {
        padding: 80px 0;
    }

    .packages-grid-detailed {
        gap: 30px;
    }

    .package-card-detailed {
        padding: 25px 20px;
    }

    .package-header-detailed h3 {
        font-size: 24px;
    }

    .package-pricing {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .price-divider {
        margin: 10px 0;
    }

    .package-features-detailed ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .package-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-packages {
        padding: 80px 0;
    }

    .why-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-package-item {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .package-badge {
        top: -8px;
        right: 15px;
    }

    .badge-hot,
    .badge-featured {
        padding: 6px 12px;
        font-size: 11px;
    }

    .price-amount,
    .price-amount-monthly {
        font-size: 24px;
    }

    .package-card-detailed {
        padding: 20px 15px;
    }
}

/* ===================================
   Buy Tickets Page Styles
   =================================== */
.buy-steps {
    padding: 60px 0;
    background: var(--white);
}

.steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s;
}

.step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(60, 180, 74, 0.4);
}

.step span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.step.active span {
    color: var(--primary-green);
}

.step-line {
    width: 100px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 20px;
}

/* Package Selection */
.package-selection {
    padding: 100px 0;
    background: var(--light-bg);
}

.buy-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.buy-package-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    border: 3px solid transparent;
}

.buy-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(60, 180, 74, 0.2);
    border-color: var(--primary-green);
}

.urgency-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.buy-package-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-period {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.package-period i {
    color: var(--primary-green);
}

.buy-package-price {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.price-option {
    position: relative;
}

.price-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.price-option label {
    display: block;
    padding: 20px;
    border: 3px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.price-option input[type="radio"]:checked + label {
    border-color: var(--primary-green);
    background: rgba(60, 180, 74, 0.05);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.option-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.option-save {
    background: #ffe5e5;
    color: #ff6b6b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.option-popular {
    background: #e8f5e9;
    color: var(--primary-green);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.option-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.per-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.option-desc {
    font-size: 14px;
    color: var(--text-light);
}

.buy-package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 18px;
}

.btn-select-package {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.3);
    margin-bottom: 15px;
}

.btn-select-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.4);
}

.link-view-details {
    display: block;
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.link-view-details:hover {
    gap: 10px;
}

/* Buy Benefits */
.buy-benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(60, 180, 74, 0.15);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* How It Works Quick */
.how-it-works-quick {
    padding: 100px 0;
    background: var(--light-bg);
}

.quick-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.quick-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.15);
}

.quick-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.quick-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.quick-step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Buy FAQs */
.buy-faqs {
    padding: 100px 0;
    background: var(--white);
}

.faq-buy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-buy-item {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s;
}

.faq-buy-item:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.faq-buy-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-buy-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-text:hover {
    gap: 12px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-cta-secondary {
    background: var(--white);
    color: var(--primary-green);
    padding: 18px 40px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 3px solid var(--primary-green);
}

.btn-cta-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   Legal Pages Styles
   =================================== */
.legal-content {
    padding: 80px 0;
    background: var(--light-bg);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}

/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-nav {
    list-style: none;
    padding: 0;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-nav li {
    margin-bottom: 10px;
}

.legal-nav a {
    display: block;
    padding: 10px 15px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.legal-nav a:hover,
.legal-nav a.active {
    background: rgba(60, 180, 74, 0.1);
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Legal Main Content */
.legal-main {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-update {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-update i {
    color: #ffc107;
    font-size: 20px;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-bg);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2::before {
    content: '';
    width: 5px;
    height: 35px;
    background: linear-gradient(180deg, var(--primary-green), var(--dark-green));
    border-radius: 10px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-section p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.legal-agreement {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.legal-agreement p {
    color: var(--white);
    font-size: 17px;
    margin: 0;
}

/* ===================================
   FAQs Page Styles
   =================================== */
.faqs-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faqs-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.faqs-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(60, 180, 74, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s;
}

.faq-question i {
    font-size: 16px;
    color: var(--primary-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid,
    .packages-grid,
    .winners-grid,
    .prizes-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .package-price .amount {
        font-size: 42px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .why-choose,
    .packages-section,
    .latest-draw,
    .prizes-section,
    .how-it-works,
    .cta-section {
        padding: 60px 0;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 40px;
    }
}

/* ===================================
   Package Detail Page
   =================================== */

.package-detail-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.package-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

/* Main Package Info */
.package-main-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.detail-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-green);
}

.detail-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card h3 i {
    color: var(--primary-green);
}

/* Package Meta Info */
.package-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(60, 180, 74, 0.15);
}

.meta-item i {
    font-size: 24px;
    color: var(--primary-green);
    margin-top: 3px;
}

.meta-item div {
    flex: 1;
}

.meta-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.meta-item span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Availability Section */
.availability-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.availability-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.availability-bar-large {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.availability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 1s ease;
    box-shadow: 0 2px 10px rgba(60, 180, 74, 0.4);
}

.availability-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.availability-stats span {
    font-size: 16px;
    font-weight: 600;
}

.stat-sold {
    color: var(--primary-green);
}

.stat-available {
    color: var(--accent-orange);
}

/* Description & Content Sections */
.description-section,
.rules-section,
.terms-section {
    margin-top: 30px;
}

.description-section p,
.rules-section p,
.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Draw Schedule Timeline */
.draws-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.draw-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.draw-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.draw-item:hover::before {
    transform: scaleY(1);
}

.draw-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(60, 180, 74, 0.15);
    transform: translateX(5px);
}

.draw-item.completed {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--primary-green);
}

.draw-item.cancelled {
    opacity: 0.6;
    background: #f9fafb;
}

.draw-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    min-width: 80px;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, rgba(60, 180, 74, 0.1) 0%, rgba(60, 180, 74, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.draw-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.draw-month {
    display: flex;
    align-items: center;
    gap: 10px;
}

.draw-month i {
    color: var(--primary-green);
    font-size: 18px;
}

.draw-month strong {
    font-size: 20px;
    color: var(--text-dark);
}

.draw-date,
.draw-payment {
    font-size: 15px;
    color: var(--text-light);
}

.draw-status-badge {
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-completed {
    background: var(--primary-green);
    color: var(--white);
}

.badge-pending {
    background: var(--accent-orange);
    color: var(--white);
}

.badge-cancelled {
    background: #6b7280;
    color: var(--white);
}

/* Sidebar */
.package-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sidebar-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-green);
}

.pricing-option {
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-option:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(60, 180, 74, 0.15);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-badge {
    padding: 5px 12px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-badge.popular {
    background: var(--primary-green);
}

.pricing-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    margin: 15px 0;
}

.per-month {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-divider {
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
    margin: 15px 0;
    position: relative;
}

.pricing-divider::before,
.pricing-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.pricing-divider::before {
    left: 0;
}

.pricing-divider::after {
    right: 0;
}

.btn-buy-package {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(60, 180, 74, 0.3);
}

.btn-buy-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(60, 180, 74, 0.4);
}

.btn-buy-package i {
    font-size: 20px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--primary-green);
    font-size: 18px;
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    text-align: center;
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-help:hover {
    background: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Package Detail */
@media (max-width: 992px) {
    .package-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-sidebar {
        order: -1;
    }

    .package-meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-card {
        padding: 30px 25px;
    }

    .detail-card h2 {
        font-size: 28px;
    }

    .sidebar-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .package-detail-section {
        padding: 50px 0;
    }

    .detail-card {
        padding: 25px 20px;
    }

    .detail-card h2 {
        font-size: 24px;
    }

    .draw-item {
        flex-direction: column;
        padding: 20px;
    }

    .draw-number {
        min-width: 100%;
        font-size: 28px;
    }

    .pricing-amount {
        font-size: 36px;
    }

    .availability-bar-large {
        height: 30px;
    }
}

/* ===================================
   Utility Classes
   =================================== */

/* Logo Text in Footer */
.footer-logo-text {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Legal Page Main Container */
.legal-main-centered {
    max-width: 900px;
    margin: 0 auto;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Margin Utilities */
.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mx-auto-mb-30 {
    margin: 0 auto 30px;
}

/* Section Header White */
.section-header-white {
    color: white;
}

.section-header-white p {
    color: white;
}

/* ===================================
   Upcoming Draws Section
   =================================== */
.upcoming-draws-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Package Tabs */
.package-tabs {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.package-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.package-tab:hover {
    border-color: #3CB44A;
    color: #3CB44A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(60, 180, 74, 0.15);
}

.package-tab.active {
    background: linear-gradient(135deg, #3CB44A 0%, #45c757 100%);
    border-color: #3CB44A;
    color: white;
    box-shadow: 0 4px 15px rgba(60, 180, 74, 0.3);
}

.package-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 180, 74, 0.4);
}

/* Loading/Error States for Tab Switching */
.loading-draws, .error-draws {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-draws .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3CB44A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-draws p, .error-draws p {
    font-size: 16px;
    margin: 0;
}

.error-draws i {
    font-size: 48px;
    color: #dc3545;
    margin-bottom: 15px;
}

.upcoming-draws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.draw-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.draw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(60, 180, 74, 0.15);
    border-color: #3CB44A;
}

.draw-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.draw-header h3 {
    font-size: 22px;
    color: #1a202c;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.draw-badge {
    background: linear-gradient(135deg, #3CB44A 0%, #2d8a3a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(60, 180, 74, 0.3);
}

.draw-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #718096;
    font-size: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.draw-date i {
    color: #3CB44A;
    font-size: 16px;
}

.draw-prizes {
    overflow: hidden;
}

.draw-prizes h4 {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prizes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prizes-list img {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    object-fit: cover;
}

.prizes-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.prizes-list li:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.prize-thumb {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.prize-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #d4a000;
    font-size: 24px;
    border-radius: 8px;
    flex-shrink: 0;
}

.prize-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prize-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.or-cash {
    font-size: 13px;
    font-weight: 500;
    color: #3CB44A;
    font-style: italic;
}

.prize-qty {
    font-size: 13px;
    color: #718096;
}

.no-draws {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-draws i {
    font-size: 64px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.no-draws p {
    font-size: 18px;
    color: #718096;
}

.load-more-container {
    margin-top: 50px;
    text-align: center;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3CB44A 0%, #2d8a3a 100%);
    color: white !important;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(60, 180, 74, 0.3);
    transition: all 0.3s ease;
}

.btn-load-more .btn-text {
    color: white !important;
}

.btn-load-more i {
    color: white !important;
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(60, 180, 74, 0.4);
}

.btn-load-more:active {
    transform: translateY(-1px);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #3CB44A;
    font-size: 16px;
    font-weight: 600;
}

.loading-spinner i {
    font-size: 24px;
}

/* Responsive Design for Upcoming Draws */
@media (max-width: 992px) {
    .upcoming-draws-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .draw-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .upcoming-draws-section {
        padding: 60px 0;
    }

    .upcoming-draws-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .draw-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .draw-card {
        padding: 20px;
    }

    .btn-load-more {
        padding: 14px 30px;
        font-size: 15px;
    }
}
