/* تنسيقات الصفحة الرئيسية العامة */
body.landing-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
    color: #e2e8f0;
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

.landing-page a {
    text-decoration: none;
}

.landing-navbar {
    background: transparent;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(20px);
    background-color: rgba(15, 23, 42, 0.75);
}

.landing-navbar .navbar-brand {
    font-weight: 700;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-navbar .btn-login {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    color: #0f172a;
}

.hero-section {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: -2;
}

.hero-section::before {
    background: #38bdf8;
    top: -200px;
    inset-inline-end: -150px;
}

.hero-section::after {
    background: #22d3ee;
    bottom: -200px;
    inset-inline-start: -150px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(148, 163, 184, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: #f8fafc;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5f5;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.5rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.25);
}

.hero-cta .btn-outline-light {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    background-color: transparent;
}

.metrics-row {
    margin-top: 3rem;
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.75), rgba(2, 6, 23, 0.9));
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

.metric-title {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f8fafc;
}

.products-section {
    padding: 4rem 0;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header .badge {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.section-header h2 {
    font-weight: 800;
    color: #f8fafc;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #cbd5f5;
    line-height: 1.8;
}

.product-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.8) 55%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 45px rgba(15, 23, 42, 0.35);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    padding: 1.75rem;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.7));
}

.product-body {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.18);
    color: #38bdf8;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 1rem 0 0.5rem;
}

.product-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #cbd5f5;
    min-height: 75px;
}

.product-meta {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    color: #e0f2fe;
}

.product-meta .price-tag {
    font-size: 1.25rem;
    font-weight: 800;
    color: #22d3ee;
}

.product-meta .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
}

.product-meta .btn-primary {
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    border: none;
    color: #0f172a;
}

.brands-strip {
    background: rgba(15, 23, 42, 0.85);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.brands-strip .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brands-strip .brand-item:hover {
    opacity: 1;
    transform: translateY(-4px);
    color: #38bdf8;
}

.features-section {
    padding: 4rem 0;
}

.feature-card {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.35);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(8, 145, 178, 0.35));
    color: #f8fafc;
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.25);
}

.feature-card h5 {
    color: #f8fafc;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #cbd5f5;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-landing {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-landing a {
    color: #cbd5f5;
}

.footer-landing a:hover {
    color: #38bdf8;
}

.footer-landing .contact-heading {
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.footer-landing .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
}

.footer-landing .contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #cbd5f5;
}

.footer-landing .contact-links a i {
    color: #38bdf8;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 45px;
    border: 2px solid rgba(148, 163, 184, 0.5);
    border-radius: 999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4px;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: #38bdf8;
    border-radius: 999px;
    animation: scroll-down 1.8s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    60% {
        transform: translateY(16px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .metric-card {
        text-align: center;
        flex-direction: column;
    }

    .metric-icon {
        margin-bottom: 0.5rem;
    }

    .footer-landing .contact-links {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .products-section {
        padding: 3rem 0;
    }

    .features-section {
        padding: 3rem 0;
    }
}

