/* l2.css - Legendary Pricing Style */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700;900&display=swap');

:root {
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 25, 0.6);
    --primary: #6366f1; /* Indigo */
    --gold: #fbbf24;    /* Gold for VIP */
    --cyan: #06b6d4;    /* Cyan for Tech */
    --danger: #ef4444;  /* Red for Urgency */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    line-height: 1.6;
    overflow-x: hidden;
    /* خلفية شبكية خفيفة جداً لتعطي طابع تقني */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

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

/* Hero Text */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr; /* عمود واحد للموبايل */
    gap: 40px;
    align-items: center; /* لمحاذاة البطاقات */
}

@media (min-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    /* جعل البطاقة الوسطى (الأغلى) أكبر قليلاً */
    .vip-offer-card.scale-up {
        transform: scale(1.05);
        z-index: 2;
    }
}

/* --- THE CARD DESIGN --- */
.vip-offer-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.vip-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

/* Badges */
.vip-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 0 0 12px 12px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.5);
    width: max-content;
    z-index: 10;
}

/* Special Badges Coloring */
.badge-gold { background: linear-gradient(45deg, #b45309, #fbbf24); box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4); }
.badge-standard { background: #334155; box-shadow: none; }
.badge-ultra { background: linear-gradient(90deg, #ff00cc, #333399); animation: pulse 2s infinite; }

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

/* Title */
.vip-title {
    text-align: center;
    margin-top: 30px;
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* Price Section */
.vip-price {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    color: var(--text-main);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
    vertical-align: top;
}

/* Different Colors for Prices */
.text-gold { color: var(--gold); text-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
.text-cyan { color: var(--cyan); text-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
.text-ultra { 
    background: linear-gradient(to right, #ff00cc, #333399); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* Features List */
.vip-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes button down */
}

.vip-features li {
    margin-bottom: 20px;
    position: relative;
    padding-right: 25px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.vip-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--primary);
    font-weight: bold;
}

.vip-features li span {
    font-weight: 800;
    color: var(--text-main);
}

.vip-features small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 5px;
    line-height: 1.4;
}

/* Buttons */
.vip-contact-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.vip-contact-btn:hover {
    background: white;
    color: black;
    transform: scale(1.02);
}

.btn-highlight {
    background: linear-gradient(90deg, var(--gold), #d97706);
    color: #000;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.btn-ultra {
    background: linear-gradient(90deg, #ff00cc, #333399);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 0, 204, 0.3);
}

/* Neon Text for the last card */
.neon-text {
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff00de,
        0 0 30px #ff00de,
        0 0 40px #ff00de;
    font-size: 1.2rem;
}

.underline-glow {
    height: 2px;
    width: 50%;
    margin: 10px auto;
    background: #ff00de;
    box-shadow: 0 0 10px #ff00de;
}

/* Glow Effect Background */
.vip-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, rgba(0,0,0,0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}