:root {
    --gold: #c9a24a;
    --gold-grad: linear-gradient(135deg, #c9a24a 0%, #ecd48a 100%);
    --dark-bg: #080808;
    --card-bg: #121212;
}

/* --- Hero Section --- */
.income-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 100%, rgba(201, 162, 74, 0.1), transparent 60%);
}

.hero-badge {
    background: rgba(201, 162, 74, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: inline-block;
}

/* --- Feature Cards --- */
.feature-card-dark {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: 0.3s;
}

.feature-card-dark:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

/* --- Comparison Section --- */
.bg-glass-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 100px 0;
}

.comparison-modern {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.comp-box { padding: 60px; }
.traditional { background: #0f0f0f; }
.coffyx { background: #151515; border-left: 1px solid rgba(201, 162, 74, 0.2); position: relative; }

.comp-list { list-style: none; padding: 0; }
.comp-list li { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; }
.comp-list i { margin-right: 15px; }

/* --- Plan Cards --- */
.plan-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: 0.4s ease;
}

.plan-card.highlighted {
    border-color: var(--gold);
    background: linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 50px;
}

.plan-header h3 { font-size: 1.5rem; margin-bottom: 10px; }
.plan-header .price { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 30px; }
.plan-header .price span { font-size: 1rem; color: #666; }

.plan-features { list-style: none; padding: 0; margin-bottom: 40px; text-align: left; }
.plan-features li { margin-bottom: 15px; color: #aaa; }
.plan-features i { color: var(--gold); margin-right: 10px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .plan-card.highlighted { transform: scale(1); }
    .comp-box { padding: 30px; }
    .hero-title { font-size: 2.5rem; }
}
.border-top-gold {
    border-top: 1px solid rgba(201, 162, 74, 0.3);
}

.text-gold {
    color: var(--gold);
}

.sm-text {
    font-size: 0.85rem;
}
.btn-gold-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-grad);
    color: #000 !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 32px;
    text-decoration: none !important;
    box-shadow: 0 0 25px rgba(201, 162, 74, 0.35);
    transition: all 0.3s ease;
    border: none;
}

.btn-gold-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 162, 74, 0.6);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    border: 1px solid rgba(201, 162, 74, 0.6);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(201, 162, 74, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.plan-card-global a {
    text-decoration: none !important;
}

.plan-card-global {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.plan-card-global .features {
    flex-grow: 1;
}
/* تحسين شكل Stat Cards لتكون أفقية وأكثر احترافية */
.rental-stat-card {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: 2px solid var(--gold);
    transition: 0.3s;
}
.rental-stat-card:hover {
    background: #151515;
    transform: translateY(-5px);
}

/* شكل الـ Form بشكل عصري */
.rental-form-card {
    background: linear-gradient(145deg, #111 0%, #050505 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* التباعد بين الأقسام */
.py-100 {
    padding: 100px 0;
}

/* الترويسة الذهبية المتدرجة */
.text-gradient {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
