:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(25, 25, 25, 0.6);
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --red: #e74c3c;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Background Glow */
.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--gold-glow) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--red);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 4rem;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price-box {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 900;
}

.cta-button {
    background: linear-gradient(45deg, var(--gold), #f1c40f);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px var(--gold-glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.6);
}

.guarantee {
    margin-top: 15px;
    color: #2ecc71;
    font-weight: 700;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-book {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Pain Points Section */
.pain-points {
    padding: 5rem 0;
}

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

.card {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.icon-red {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1.5rem;
}

/* Bonuses Section */
.bonuses {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.bonus-card {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
}

.bonus-card img {
    width: 150px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.bonus-text h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.bonus-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.value {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--red);
}

/* Checkout Section */
.payment-section {
    padding: 5rem 0;
}

.checkout-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
}

.checkout-wrapper p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.instapay-instructions {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px dashed var(--gold);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.step-num {
    background: var(--gold);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.copy-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 45px 20px 0;
    border: 1px solid #333;
}

.copy-box span {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.copy-box button {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}

.copy-box button:hover {
    background: var(--gold);
    color: #000;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.file-upload {
    position: relative;
    border: 2px dashed #444;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0,0,0,0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

#file-name {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gold);
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #222;
    color: var(--text-muted);
}

/* Animations */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .price-box {
        justify-content: center;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    .checkout-wrapper {
        padding: 2rem 1rem;
    }
}
