/* تصميم حديث لموقع عمرة */

/* Islamic Colors */
:root {
    --salla-primary: #004956;
    --salla-dark: #003440;
    --salla-light-bg: #E6F4F7;
    --salla-text: #2C2C2C;
    --salla-text-light: #6B7280;
    --salla-white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: var(--salla-white);
    min-height: 100vh;
    direction: rtl;
    color: var(--salla-text);
}

/* Navbar */
.navbar {
    background: var(--salla-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--salla-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--salla-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--salla-primary);
}

.btn-login {
    background: var(--salla-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--salla-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 193, 103, 0.3);
}

/* Hero Section */
.hero {
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--salla-light-bg);
    color: var(--salla-text);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--salla-dark);
}

.hero h1 .price-highlight {
    display: inline-block;
    background: var(--salla-primary);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 3rem;
    margin: 0 0.5rem;
    box-shadow: 0 5px 20px rgba(6, 193, 103, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--salla-text-light);
}

.hero-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-step:hover {
    background: var(--salla-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 193, 103, 0.3);
}

.hero-step-number {
    background: var(--salla-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--salla-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--salla-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 193, 103, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--salla-primary);
    border: 2px solid var(--salla-primary);
}

.btn-secondary:hover {
    background: var(--salla-primary);
    color: white;
}

/* Features Section */
.features {
    background: white;
    padding: 10px;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--salla-dark);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--salla-text);
    transition: all 0.3s;
    border: 1px solid #E5E7EB;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--salla-primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--salla-primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--salla-dark);
}

.feature-card p {
    color: var(--salla-text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Why Us Section */
.why-us {
    background: white;
    padding: 10px;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.why-us-box {
    background: var(--salla-light-bg);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-width: 300px;
}

.why-us-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 73, 86, 0.15);
    border-color: var(--salla-primary);
    background: white;
}

.why-us-box i {
    font-size: 2rem;
    color: var(--salla-primary);
    flex-shrink: 0;
}

.why-us-box p {
    color: var(--salla-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Designs Section */
.designs-section {
    background: #F9FAFB;
    padding: 15px;
}

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

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.design-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #E5E7EB;
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(6, 193, 103, 0.2);
    border-color: var(--salla-primary);
}

.design-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.design-image-placeholder {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ddd;
}

.design-info {
    padding: 11px;
}

.design-info h3 {
    color: var(--salla-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1px;
}

.design-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.design-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0px;
    color: var(--salla-text);
    font-size: 0.95rem;
}

.design-features li i {
    color: var(--salla-primary);
    font-size: 0.85rem;
}

.design-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
    background: var(--salla-light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.price-main {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--salla-light-bg);
}

.price-label {
    color: var(--salla-text-light);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.price-value {
    color: var(--salla-primary);
    font-size: 15px;
    font-weight: 700;
}

.exclusive-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.1);
}

.exclusive-badge i {
    font-size: 1rem;
}

.design-actions {
    display: flex;
    gap: 1rem;
}

.btn-preview,
.btn-buy {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-preview {
    background: white;
    color: var(--salla-primary);
    border: 2px solid var(--salla-primary);
}

.btn-preview:hover {
    background: var(--salla-primary);
    color: white;
}

.btn-buy {
    background: var(--salla-primary);
    color: white;
}

.btn-buy:hover {
    background: var(--salla-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 193, 103, 0.3);
}

/* Sold Design Styles */
.design-card.sold {
    position: relative;
    opacity: 0.85;
}

.sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}

.sold-badge {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.5);
    transform: rotate(-5deg);
    animation: soldPulse 2s infinite;
}

@keyframes soldPulse {

    0%,
    100% {
        transform: rotate(-5deg) scale(1);
    }

    50% {
        transform: rotate(-5deg) scale(1.05);
    }
}

.sold-badge i {
    font-size: 2rem;
}

.btn-buy:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-buy:disabled:hover {
    background: #9CA3AF;
    transform: none;
    box-shadow: none;
}

.no-designs {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem;
    color: #999;
}

.no-designs i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.no-designs p {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--salla-dark);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.footer p {
    opacity: 0.9;
}

/* Logo Image Styles */
.logo .site-logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .hero h1 .price-highlight {
        font-size: 1.5rem;
        padding: 0.2rem 0.8rem;
        display: inline;
        margin: 0 0.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .designs-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    .why-us-content {
        flex-direction: column;
        gap: 1rem;
    }

    .why-us-box {
        min-width: auto;
        padding: 1rem 1.5rem;
    }

    .why-us-box i {
        font-size: 1.5rem;
    }

    .why-us-box p {
        font-size: 0.9rem;
    }

    .hero-steps {
        gap: 0.5rem;
    }

    .hero-step {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .btn {
        flex: 1;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .design-price {
        gap: 0;
    }

    .price-label {
        font-size: 0.75rem;
    }

    .price-value {
    font-size: 15px;
    }

    .exclusive-badge {
        font-size: 0.7rem;
        padding: 0.8rem 0.5rem;
    }

    .exclusive-badge i {
        font-size: 0.85rem;
    }

    .design-actions {
        flex-direction: column;
    }

    .btn-preview,
    .btn-buy {
        width: 100%;
    }
}