
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000000;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* التمرير السلس */
        html {
            scroll-behavior: smooth;
        }

        /* الشريط العلوي */
        .navbar {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #d4af37;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo-symbol {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #d4af37, #f9e076);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: #000;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        /* أزرار */
        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline {
            background: transparent;
            color: #d4af37;
            border: 1px solid #d4af37;
                      padding: 7px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
              background: transparent;
            color: #d4af37;
            border: 1px solid #d4af37;
            gap: 8px;
        }

        .btn-outline:hover {
            background: #d4af37;
            color: #000;
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(90deg, #d4af37, #f9e076);
            color: #000;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        /* زر اللغة */
        .lang-btn {
            padding: 7px;
            background: rgba(212, 175, 55, 0.1);
            color: #d4af37;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .lang-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-2px);
        }

        /* قسم الهيرو */
        .hero {
      
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem 3rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* قسم المميزات */
        .features {
            padding: 2rem;
            background: #0a0a0a;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #d4af37;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d4af37, #f9e076);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #000;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .feature-desc {
            color: #ccc;
            line-height: 1.6;
        }

        /* قسم كيف يعمل */
        .how-it-works {
            padding: 2rem;
            background: #000000;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d4af37, #f9e076);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .step-desc {
            color: #ccc;
            line-height: 1.6;
        }

        /* قسم المنتجات */
        .products {
            padding: 100px 2rem;
            background: #0a0a0a;
        }

        .products-subtitle {
            text-align: center;
            color: #ccc;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
        }

        .product-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #d4af37, #f9e076);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.2rem;
            color: #000;
        }

        .product-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .product-desc {
            color: #ccc;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            min-height: 60px;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #d4af37;
        }

        .product-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* قسم الباقات */
        .pricing {
            padding: 100px 2rem;
            background: #000000;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            border-color: #d4af37;
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #d4af37;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.5rem 0;
            color: #ccc;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        /* قسم اتصل بنا */
        .contact {
            padding: 100px 2rem;
            background: #000000;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
        }

        .contact-info h3 {
            color: #d4af37;
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #d4af37, #f9e076);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #000;
        }

        .contact-details {
            text-align: center;
        }

        .contact-details h4 {
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .contact-details p {
            color: #ccc;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .contact-link {
            background: linear-gradient(135deg, #d4af37, #f9e076);
            color: #000;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .contact-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .whatsapp-link {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
        }

        .whatsapp-link:hover {
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        /* قسم الدعوة للعمل */
        .cta {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* الفوتر */
        .footer {
            background: #000000;
            padding: 3rem 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1.5rem;
            color: #d4af37;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #d4af37;
        }

        .footer-rights {
            color: #666;
            font-size: 0.9rem;
        }

        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .contact-methods {
                grid-template-columns: 1fr;
            }

            .contact-info {
                padding: 2rem 1rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-actions {
                flex-direction: column;
                align-items: center;
            }
        }

        /* هامبورجر مينو للجوال */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 26, 0.95);
                backdrop-filter: blur(10px);
                padding: 1rem;
                border-top: 1px solid rgba(212, 175, 55, 0.3);
            }
        }
/* ===== تحسينات قسم المنتجات ===== */
.products-section {
    padding: 5rem 2rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* بطاقات المنتجات */
.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.products-section .product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.products-section .product-card:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 30px 50px -15px rgba(212, 175, 55, 0.3);
}

/* بطاقات مميزة */
.products-section .product-card.premium {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 215, 0, 0.3);
}

.products-section .product-card.premium:hover {
    border-color: #ffd700;
    box-shadow: 0 30px 50px -15px rgba(255, 215, 0, 0.25);
}

.products-section .product-card.enterprise {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(76, 175, 80, 0.3);
}

.products-section .product-card.enterprise:hover {
    border-color: #4CAF50;
    box-shadow: 0 30px 50px -15px rgba(76, 175, 80, 0.25);
}

/* صورة المنتج */
.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* شارة المنتج */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #d4af37;
    z-index: 2;
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

[dir="ltr"] .product-badge {
    right: auto;
    left: 15px;
}

.product-badge.premium {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    border: none;
}

.product-badge.enterprise {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
}

/* محتوى المنتج */
.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #d4af37;
}

.product-card.premium:hover .product-title {
    color: #ffd700;
}

.product-card.enterprise:hover .product-title {
    color: #4CAF50;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    min-height: 50px;
}

/* المميزات المصغرة */
.product-features-mini {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-features-mini span {
    color: #aaa;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-features-mini i {
    color: #d4af37;
    font-size: 0.8rem;
}

/* تذييل المنتج */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
}

.product-price .currency {
    color: #fff;
    font-size: 0.9rem;
    font-weight: normal;
    margin-right: 0.3rem;
}

[dir="ltr"] .product-price .currency {
    margin-right: 0;
    margin-left: 0.3rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-actions .btn i {
    margin: 0;
    font-size: 1rem;
}

.product-actions .btn-outline {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
}

.product-actions .btn-outline:hover {
    background: #d4af37;
    color: #000;
}

.product-actions .btn-primary {
    background: #d4af37;
    color: #000;
}

.product-actions .btn-primary:hover {
    background: #f9e076;
    transform: translateY(-2px);
}

/* زر عرض جميع المنتجات */
.view-all-products {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #d4af37, #f9e076);
    color: #000;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large i {
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(5px) scale(1.1);
}

[dir="ltr"] .btn-large:hover i {
    transform: translateX(-5px) scale(1.1);
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .products-section {
        padding: 3rem 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .product-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .product-actions .btn {
        flex: 1;
        border-radius: 25px;
        width: auto;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-section .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
}



/* أنماط إضافية للصفحات الجديدة */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-links a.active {
    color: #d4af37;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
}

/* أنماط المعاينة السريعة في الصفحة الرئيسية */
.quick-preview, .quick-process {
    padding: 4rem 2rem;
    background: #000;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.preview-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f9e076);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #000;
}

.preview-item h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
}

.preview-action {
    text-align: center;
    margin-top: 2rem;
}

.mini-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem auto;
    max-width: 800px;
}

.mini-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.step-number.small {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mini-step p {
    color: #ccc;
    font-size: 0.9rem;
}

.products-section.mini-grid .products-grid {
    grid-template-columns: minmax(250px, 300px);
    justify-content: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.contact-mini {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem auto;
    max-width: 600px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mini-steps {
        gap: 1rem;
    }
    
    .contact-mini {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
}