:root {
    --cmyk-cyan: #00aeef;
    --cmyk-magenta: #ec008c;
    --cmyk-yellow: #fff200;
    --dark-color: #1a1a1a;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Logo */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px; /* يمكنك تعديل الارتفاع حسب الحاجة ليتناسب مع الهيدر */
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--cmyk-cyan);
}

.cta-btn {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--cmyk-magenta);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(26,26,26,0.85)), url('https://images.unsplash.com/photo-1541701494587-cb58502866ab?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.primary-btn {
    background: var(--cmyk-magenta);
    color: var(--white);
}

.primary-btn:hover {
    background: #d0007b;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.color-bars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.bar {
    width: 30px;
    height: 4px;
    border-radius: 2px;
}

.bar.cyan { background: var(--cmyk-cyan); }
.bar.magenta { background: var(--cmyk-magenta); }
.bar.yellow { background: var(--cmyk-yellow); }
.bar.black { background: var(--dark-color); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.cyan-bg { background: var(--cmyk-cyan); }
.magenta-bg { background: var(--cmyk-magenta); }
.yellow-bg { background: var(--cmyk-yellow); color: var(--dark-color) !important; }

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
}

/* About Us */
.about {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--cmyk-cyan);
}

.about-visual {
    background: linear-gradient(135deg, var(--cmyk-cyan), var(--cmyk-magenta));
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.creative-box {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.creative-box i {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
    color: var(--cmyk-yellow);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    background: var(--white);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--cmyk-cyan);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.info-item i {
    font-size: 20px;
    color: var(--cmyk-magenta);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--dark-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--cmyk-cyan);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

footer span {
    color: var(--cmyk-yellow);
}



/* Responsive */
@media (max-width: 768px) {
    nav { display: none; }
    .about-container, .contact-wrapper { grid-template-columns: 1fr; }
    .hero-content h2 { font-size: 32px; }
}
/* تعديلات وتناسق بطاقات المتجر */
.shop-card {
    padding: 0 !important; /* إلغاء الـ padding الافتراضي لكي تلتصق الصورة بالإطار */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--white);
}

.shop-card .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--cmyk-magenta);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.shop-card .product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.shop-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.shop-card:hover .product-image img {
    transform: scale(1.08);
}

.shop-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left; /* جعل النصوص متناسقة ومنظمة من اليسار */
}

.shop-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.shop-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.product-footer .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-color);
}

.product-footer .btn {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 20px;
}
