/* marketing.css - أنماط خاصة بصفحة التسويق */

/* متغيرات الألوان المنسقة */
:root {
    --marketing-primary: #0a2540;
    --marketing-secondary: #00d4ff;
    --marketing-accent: #ff6b35;
    --marketing-success: #00c853;
    --marketing-dark: #1a365d;
    --marketing-light: #f8fafc;
    --marketing-gray: #64748b;
    --marketing-gray-light: #e2e8f0;
    --marketing-white: #ffffff;
    --marketing-black: #0f172a;
    --marketing-gradient: linear-gradient(135deg, var(--marketing-primary) 0%, var(--marketing-dark) 100%);
    --marketing-gradient-accent: linear-gradient(135deg, var(--marketing-secondary) 0%, var(--marketing-accent) 100%);
    --marketing-gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

/* خلفية الصفحة */
.marketing-page {
    background-color: var(--marketing-light);
    color: var(--marketing-black);
}

/* الهيدر الداخلي */
.marketing-header {
    position: relative;
    padding: 160px 0 80px;
    background: var(--marketing-gradient);
    overflow: hidden;
    border-bottom: 4px solid var(--marketing-secondary);
}

.marketing-header-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.marketing-particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.marketing-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.m-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--marketing-gradient-accent);
    opacity: 0.15;
    animation: marketingFloat 20s ease-in-out infinite;
}

.m-shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.m-shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.m-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 5%;
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes marketingFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--marketing-white);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-word {
    display: block;
    overflow: hidden;
}

.word-1 {
    color: var(--marketing-white);
    animation: slideInRight 1s ease 0.3s both;
}

.word-2 {
    color: var(--marketing-secondary);
    animation: slideInRight 1s ease 0.6s both;
}

.word-3 {
    color: var(--marketing-white);
    animation: slideInRight 1s ease 0.9s both;
}

/* قسم مقدمة التسويق */
.marketing-intro {
    padding: 100px 0;
    background-color: var(--marketing-white);
    border-bottom: 1px solid var(--marketing-gray-light);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    animation: fadeInLeft 1s ease;
}

.section-title {
    color: var(--marketing-primary);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--marketing-secondary);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--marketing-gradient-accent);
    border-radius: 2px;
}

.intro-description {
    font-size: 1.2rem;
    color: var(--marketing-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.intro-stats .stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--marketing-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--marketing-gray-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
    border-color: var(--marketing-secondary);
}

.intro-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--marketing-primary);
    margin-bottom: 8px;
}

.intro-stats .stat-label {
    font-size: 0.9rem;
    color: var(--marketing-gray);
    font-weight: 600;
}

.intro-visual {
    animation: fadeInRight 1s ease;
}

.marketing-visual {
    position: relative;
    width: 100%;
    height: 400px;
}

.visual-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--marketing-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marketing-secondary);
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    animation: marketingElementFloat 6s ease-in-out infinite;
    border: 2px solid var(--marketing-secondary);
}

.elem-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.elem-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.elem-3 {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes marketingElementFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.main-visual-circle {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 250px;
    height: 250px;
    background: var(--marketing-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: marketingPulse 3s ease-in-out infinite;
    box-shadow: 0 0 0 15px rgba(0, 212, 255, 0.1);
}

@keyframes marketingPulse {
    0%, 100% {
        box-shadow: 0 0 0 15px rgba(0, 212, 255, 0.1),
                    0 0 0 30px rgba(0, 212, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 0 25px rgba(0, 212, 255, 0.15),
                    0 0 0 45px rgba(0, 212, 255, 0.05);
    }
}

.circle-inner {
    width: 200px;
    height: 200px;
    background-color: var(--marketing-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--marketing-primary);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.circle-inner span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--marketing-gray);
}

.circle-inner strong {
    font-size: 3rem;
    font-weight: 800;
    color: var(--marketing-primary);
    margin-top: 5px;
}

/* قسم ميزات خدمات التسويق */
.marketing-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-tabs {
    background-color: var(--marketing-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--marketing-gray-light);
}

.tabs-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--marketing-gradient);
}

.tab-button {
    padding: 25px 20px;
    background: transparent;
    border: none;
    color: var(--marketing-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    background: var(--marketing-white);
    color: var(--marketing-primary);
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
}

.tab-button i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.tab-button:hover i {
    transform: scale(1.2);
}

.tabs-content {
    padding: 50px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-visual {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* أنيميشن SEO */
.seo-animation {
    width: 100%;
    max-width: 300px;
}

.search-bar {
    width: 100%;
    height: 50px;
    background: var(--marketing-gradient-accent);
    border-radius: 25px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.search-dots {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.search-dots span {
    width: 8px;
    height: 8px;
    background-color: var(--marketing-white);
    border-radius: 50%;
    animation: searchPulse 1.5s ease-in-out infinite;
}

.search-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.search-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes searchPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    height: 40px;
    background-color: var(--marketing-gray-light);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.result-bar {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: var(--marketing-gradient-accent);
    border-radius: 8px;
    animation: resultLoad 2s ease-in-out infinite;
}

.result-1 .result-bar {
    width: 90%;
    animation-delay: 0s;
}

.result-2 .result-bar {
    width: 70%;
    animation-delay: 0.5s;
}

.result-3 .result-bar {
    width: 50%;
    animation-delay: 1s;
}

@keyframes resultLoad {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0);
    }
}

/* أنيميشن الإعلانات */
.ads-animation {
    width: 100%;
    max-width: 300px;
    height: 200px;
    position: relative;
}

.ad-bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--marketing-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marketing-white);
    font-weight: 700;
    font-size: 0.9rem;
    animation: adFloat 4s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.bubble-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.bubble-3 {
    top: 70%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes adFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.ad-platform {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background-color: var(--marketing-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marketing-white);
    font-size: 22px;
    animation: platformRotate 6s linear infinite;
    border: 2px solid var(--marketing-secondary);
}

.platform-icon:nth-child(2) {
    animation-delay: 2s;
}

.platform-icon:nth-child(3) {
    animation-delay: 4s;
}

@keyframes platformRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* أنيميشن السوشيال ميديا */
.social-animation {
    width: 100%;
    max-width: 300px;
    height: 200px;
    position: relative;
}

.social-post {
    position: absolute;
    background-color: var(--marketing-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--marketing-gray-light);
}

.post-1 {
    width: 200px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation: postFloat 5s ease-in-out infinite;
}

.post-2 {
    width: 180px;
    height: 120px;
    top: 60%;
    left: 10%;
    animation: postFloat 5s ease-in-out infinite reverse;
    animation-delay: 2.5s;
}

.post-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--marketing-gray-light), #e0e0e0);
}

@keyframes postFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.social-icons {
    position: absolute;
    bottom: 20%;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 24px;
    color: var(--marketing-secondary);
    animation: socialIconPulse 3s ease-in-out infinite;
}

.social-icons i:nth-child(1) { animation-delay: 0s; }
.social-icons i:nth-child(2) { animation-delay: 0.5s; }
.social-icons i:nth-child(3) { animation-delay: 1s; }
.social-icons i:nth-child(4) { animation-delay: 1.5s; }
.social-icons i:nth-child(5) { animation-delay: 2s; }

@keyframes socialIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* أنيميشن البريد الإلكتروني */
.email-animation {
    width: 100%;
    max-width: 300px;
    height: 200px;
    position: relative;
}

.email-letter {
    width: 200px;
    height: 150px;
    background-color: var(--marketing-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: letterFloat 6s ease-in-out infinite;
    border: 1px solid var(--marketing-gray-light);
}

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.letter-header {
    height: 40px;
    background: var(--marketing-gradient-accent);
    border-radius: 12px 12px 0 0;
}

.letter-body {
    padding: 20px;
}

.body-line {
    height: 8px;
    background-color: var(--marketing-gray-light);
    border-radius: 4px;
    margin-bottom: 10px;
}

.line-1 {
    width: 90%;
    animation: lineLoad 2s ease-in-out infinite;
}

.line-2 {
    width: 70%;
    animation: lineLoad 2s ease-in-out infinite 0.5s;
}

.line-3 {
    width: 50%;
    animation: lineLoad 2s ease-in-out infinite 1s;
}

@keyframes lineLoad {
    0%, 100% {
        background-color: var(--marketing-gray-light);
    }
    50% {
        background-color: var(--marketing-secondary);
    }
}

.email-icons {
    position: absolute;
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 20px;
}

.email-icons i {
    font-size: 28px;
    color: var(--marketing-secondary);
    animation: emailIconFloat 4s ease-in-out infinite;
}

.email-icons i:nth-child(1) { animation-delay: 0s; }
.email-icons i:nth-child(2) { animation-delay: 1s; }
.email-icons i:nth-child(3) { animation-delay: 2s; }

@keyframes emailIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* أنماط تبويب النص */
.tab-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--marketing-primary);
    margin-bottom: 20px;
}

.tab-text > p {
    color: var(--marketing-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.tab-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.tab-text ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--marketing-gray);
}

.tab-text ul li i {
    color: var(--marketing-secondary);
    font-size: 18px;
    margin-top: 3px;
}

/* قسم باقات التسويق */
.marketing-packages {
    padding: 100px 0;
    background-color: var(--marketing-white);
    border-top: 1px solid var(--marketing-gray-light);
}

.package-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--marketing-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.category-title i {
    color: var(--marketing-secondary);
    font-size: 2.5rem;
}

.category-description {
    color: var(--marketing-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--marketing-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--marketing-gray-light);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
    border-color: var(--marketing-secondary);
}

.package-card.featured {
    border-color: var(--marketing-secondary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--marketing-gradient-accent);
    color: var(--marketing-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.package-header {
    padding: 40px 30px 30px;
    background: var(--marketing-gradient);
    color: var(--marketing-white);
    text-align: center;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--marketing-secondary);
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.package-body {
    padding: 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--marketing-gray-light);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--marketing-gray);
}

.package-features li i {
    font-size: 18px;
}

.package-features li i.fa-check {
    color: var(--marketing-success);
}

.package-features li i.fa-times {
    color: #dc3545;
}

.package-cta {
    margin-top: 30px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* أزرار مخصصة */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--marketing-gradient-accent);
    color: var(--marketing-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--marketing-primary);
    border-color: var(--marketing-primary);
}

.btn-outline:hover {
    background: var(--marketing-primary);
    color: var(--marketing-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.2);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* قسم العملية التسويقية */
.marketing-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--marketing-gray-light);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 4px;
    height: 100%;
    background: var(--marketing-gradient-accent);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--marketing-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--marketing-white);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: stepPulse 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.step-content {
    flex: 1;
    padding: 0 40px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--marketing-primary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--marketing-gray);
    line-height: 1.7;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--marketing-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marketing-secondary);
    font-size: 24px;
    flex-shrink: 0;
    border: 2px solid var(--marketing-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* قسم دراسات الحالة */
.case-studies {
    padding: 100px 0;
    background-color: var(--marketing-white);
    border-top: 1px solid var(--marketing-gray-light);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study {
    background-color: var(--marketing-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--marketing-gray-light);
}

.case-study:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
    border-color: var(--marketing-secondary);
}

.case-header {
    padding: 30px;
    background: var(--marketing-gradient);
    display: flex;
    align-items: center;
    gap: 20px;
}

.case-logo {
    width: 60px;
    height: 60px;
    background: var(--marketing-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--marketing-white);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.case-info {
    flex: 1;
}

.case-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--marketing-white);
    margin-bottom: 5px;
}

.case-info span {
    color: var(--marketing-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--marketing-primary);
    margin-bottom: 15px;
}

.case-content > p {
    color: var(--marketing-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--marketing-gray-light);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--marketing-primary);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--marketing-gray);
    font-weight: 600;
}

/* قسم الأسئلة الشائعة */
.marketing-faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--marketing-gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--marketing-white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--marketing-gray-light);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--marketing-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 212, 255, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--marketing-secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--marketing-gray);
    line-height: 1.8;
}

/* قسم CTA */
.marketing-cta {
    padding: 100px 0;
    background: var(--marketing-gradient);
    position: relative;
    overflow: hidden;
}

.marketing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--marketing-white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 1200px) {
    .packages-grid {
        gap: 20px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .tab-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        right: 30px;
    }
    
    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: row;
        padding-right: 60px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-header {
        grid-template-columns: 1fr;
    }
    
    .marketing-visual {
        height: 300px;
    }
    
    .main-visual-circle {
        width: 200px;
        height: 200px;
    }
    
    .circle-inner {
        width: 160px;
        height: 160px;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding-right: 0;
    }
    
    .step-content {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .tabs-content {
        padding: 30px 20px;
    }
    
    .marketing-header {
        padding: 120px 0 60px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
}