
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #00ff88;
    --secondary: #0099ff;
    --accent: #ff2a6d;
    --dark: #0a0a0f;
    --darker: #050508;
    --card: #12121a;
    --light: #f8f8f8;
    --gray: #b0b0b0;
    --success: #00ff88;
    --warning: #ffb300;
    --error: #ff2a6d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --radius: 16px;
}

body {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.website-header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--darker);
    font-weight: 900;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.4rem;
    cursor: pointer;
}

@media (max-width: 880px) {
    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10,10,15,0.98);
        flex-direction: column;
        gap: 0;
        padding: 12px 20px;
        display: none;
    }

    .main-nav.show {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }

    .header-container {
        gap: 12px;
    }
}

/* Calculator widget styles */
.calculator {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    padding: 18px;
    border-radius: 12px;
    max-width: 360px;
    margin-top: 20px;
}
.calculator h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.calculator label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 6px;
}
.calculator input, .calculator select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 10px;
    background: transparent;
    color: var(--light);
}
.calculator .calc-actions {
    display: flex;
    gap: 8px;
}
.calculator .calc-actions button {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    background: var(--primary);
    color: var(--darker);
    font-weight: 700;
    cursor: pointer;
}
.calculator #calcResult { margin-top: 8px; color: var(--light); font-weight: 700; }

@media (min-width: 1000px) {
    /* Keep calculator centered above the games on wide screens */
    .shop-section .container { display: block; }
}

.calculator { margin: 0 auto 24px; }

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.cart-button {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
}

.gaming-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-item span {
    font-weight: 600;
    color: var(--light);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light);
    border-color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
}

/* Shop Section */
.shop-section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-grid-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.game-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.game-grid-item:hover::before {
    transform: scaleX(1);
}

.game-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.game-name {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 10px;
    font-weight: 600;
}

.game-currency {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Product View */
.product-view {
    margin-top: 50px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--primary);
    color: var(--darker);
}

.product-view h2 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 30px;
    text-align: center;
}

#productList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s;
    position: relative;
    min-height: 280px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.product-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, var(--card), rgba(0, 255, 136, 0.05));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 30px 20px 20px 20px;
}

.product-name {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-old-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-per-unit {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.product-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart, .whatsapp-order {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
}

.add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.add-to-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.whatsapp-order {
    background: #25D366;
    color: white;
}

.whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-faq {
    padding: 0 0 40px;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cart-content {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--card);
    border-radius: var(--radius);
    width: 350px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--light);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.cart-items {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    color: var(--light);
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.cart-item-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.8rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.quantity-btn:hover {
    background: var(--primary);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Cart Calculator Section */
.cart-calculator {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.cart-calculator h4 {
    color: var(--light);
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.calculator-items {
    margin-bottom: 15px;
}

.calculator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.calculator-item:last-child {
    border-bottom: none;
}

.calculator-item-name {
    color: var(--gray);
    flex: 1;
}

.calculator-item-price {
    color: var(--primary);
    font-weight: 600;
}

.selected-product-display {
    margin-bottom: 15px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
}

.selected-product-name {
    font-weight: 700;
    color: #f0f0f0;
    font-size: 16px;
    margin-bottom: 5px;
}

.selected-product-price {
    color: #00ff88;
    font-size: 14px;
    font-weight: 600;
}

.calculator-total {
    border-top: 2px solid var(--primary);
    padding-top: 15px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.total-row span:first-child {
    color: var(--light);
}

.total-row span:last-child {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    #productList {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-faq {
        padding: 40px 0 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
}

.game-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, var(--card), rgba(0, 255, 136, 0.05));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-header {
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 8px;
}

.product-category {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 25px 0 10px;
}

.product-old-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-features {
    list-style: none;
    margin: 25px 0;
}

.product-features li {
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.product-action {
    margin-top: 25px;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* Trust Features */
.trust-features {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--darker);
}

.feature-card h3 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.rating {
    color: #ffb300;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--light);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.customer-name {
    color: var(--gray);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo h3 {
    color: var(--light);
    font-size: 1.4rem;
}

.company-info p {
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.company-info i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary);
}

.security-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.security-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.security-badge i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button span {
        display: none;
    }
    
    .chat-button {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
.refund-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.refund-box {
  background: var(--card);
  max-width: 450px;
  width: 90%;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
}

.refund-box h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.refund-box p {
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.refund-box strong {
  color: var(--primary);
  font-weight: 600;
}

.refund-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s;
}

.refund-check:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.refund-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.refund-box button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darker);
  font-size: 16px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.3s;
  margin-top: 20px;
}

.refund-box button.enabled {
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.refund-box button.enabled:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

}

/* FAQ Section */
.faq-section, .footer-faq {
  padding: 0;
  background: transparent;
}

.faq-section .section-header, .footer-faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section .section-header h2, .footer-faq .section-header h2 {
  color: var(--light);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-section .section-header p, .footer-faq .section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 136, 0.1);
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-item h3 {
  color: var(--light);
  margin: 0;
  font-size: 1.2rem;
  flex: 1;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-icon.rotate {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.faq-answer.open {
  max-height: 200px;
  margin-top: 1rem;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 300px;
}

.notification-toast.success {
    border-color: var(--success);
}

.notification-toast.error {
    border-color: var(--error);
}

.notification-toast.warning {
    border-color: var(--warning);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-content i.fa-check-circle {
    color: var(--success);
}

.notification-content i.fa-exclamation-circle {
    color: var(--error);
}

.notification-content i.fa-info-circle {
    color: var(--warning);
}

.notification-content span {
    color: var(--light);
    font-size: 0.9rem;
}

.notification-toast button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.8rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
}
