:root {
    --primary-navy: #0B1F3A;
    --secondary-navy: #162C4E;
    --accent-gold: #C9A227;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: right;
    direction: rtl;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Header */
.top-nav {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    border-radius: 0;
}

.logo span {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-navy);
}

.nav-cta {
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

/* Sticky Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.price-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    margin: 20px 0;
}

.current-price {
    font-size: 2.2rem;
    color: var(--accent-gold);
    font-weight: 900;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.6;
    margin-left: 10px;
}

.cta-button.primary {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
}

/* Features */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-navy);
}

.section-title.align-right {
    text-align: right;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.animated-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Grid-2 Common */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.check-list {
    list-style: none;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--success);
}

/* Video */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.price-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 800;
}

.cta-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* Trust */
.trust {
    background: #fff;
    padding: 40px 0;
}

.trust-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

.trust-item img {
    width: 70px;
    margin: 0 auto 15px;
}

.trust-item p {
    font-weight: 700;
    color: var(--primary-navy);
}

/* Checkout */
.checkout {
    background-color: var(--bg-light);
}

.checkout-box {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.urgency-banner {
    background: #fffbeb;
    border: 2px dashed var(--accent-gold);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

#timer {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ef4444;
}

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

.form-group {
    margin-bottom: 20px;
}

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

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.final-price-box {
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
}

.final-price-box span {
    font-size: 1.8rem;
    color: var(--accent-gold);
    display: block;
}

.submit-btn {
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    margin: 20% auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
}

.close-btn {
    margin-top: 20px;
    padding: 10px 30px;
    background: var(--primary-navy);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.large-pulse { animation: pulse 2s infinite; }

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title.align-right { text-align: center; }

    .hero h1 { font-size: 2rem; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .sticky-cta { display: flex; }
    
    .nav-cta { display: none; }
}

footer {
    background: var(--primary-navy);
    color: white;
    padding: 40px 0 100px;
    text-align: center;
}
