:root {
    /* الألوان الرئيسية */
    --primary-color: #4D4D4D;
    --secondary-color: #FFAF55;
    --accent-color: #3C99FF;
    --light-color: #FFFFFF;
    --dark-color: #333333;
    --gray-color: #F5F5F5;
    --border-color: #EEEEEE;
    
    /* الخطوط */
    --heading-font: 'Roboto', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

/* إعادة تعيين عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* أنماط الأزرار */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(255, 175, 85, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 175, 85, 0.4);
    color: var(--light-color);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(77, 77, 77, 0.2);
}
.btn-intro {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-intro :hover{
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(77, 77, 77, 0.2);
}
.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* أنماط العناوين */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 3px;
}

.section-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

/* أنماط الهيدر */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

#header.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

#header.sticky .logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* قسم المقدمة */
.intro {
    height: 100vh;
    background-image: url('images/digital_marketing_concept.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--light-color);
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(77, 77, 77, 0.8), rgba(60, 153, 255, 0.7));
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.intro h1 {
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.intro-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* قسم من نحن */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: var(--heading-font);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 20px 10px;
    background-color: var(--gray-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 14px;
    color: #777;
}

/* قسم الخدمات */
.services {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    opacity: 0.1;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--light-color);
    transform: rotateY(180deg);
}

.service-icon-main {
    font-size: 30px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-main {
    color: var(--accent-color);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

/* قسم معرض الأعمال */
.portfolio {
    padding: 100px 0;
    background-color: var(--light-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(77, 77, 77, 0.1), rgba(77, 77, 77, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
    opacity: 0;
}

.portfolio-title {
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--light-color);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
    opacity: 0;
}

.portfolio-buttons {
    display: flex;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.3s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-category,
.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-buttons {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio-button:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* قسم الفريق */
.team {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .team-image {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-position {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* قسم الشهادات */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--gray-color);
    border-radius: 10px;
    padding: 30px;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--light-color);
}

.author-info h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-position {
    font-size: 14px;
    color: #777;
}

/* قسم الإحصائيات */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--light-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stats-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.stats-label {
    font-size: 16px;
}

/* قسم الباقات */
.packages {
    padding: 100px 0;
    background-color: var(--gray-color);
}

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

.package-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.vip {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 2;
}

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

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.package-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--light-color);
}

.package-name {
    font-family: var(--heading-font);
    font-size: 24px;
    margin-bottom: 15px;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.package-price span {
    font-size: 16px;
    font-weight: 400;
}

.package-features {
    padding: 30px;
}

.package-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    margin-left: 10px;
    font-size: 16px;
}

.package-features ul li .fa-check-circle {
    color: #4CAF50;
}

.package-features ul li .fa-times-circle {
    color: #F44336;
}

.package-button {
    padding: 0 30px 30px;
    text-align: center;
}

/* قسم الأسئلة الشائعة */
.faq {
    padding: 100px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: var(--gray-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.faq-question i {
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--light-color);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* قسم الاتصال */
.contact {
    padding: 100px 0;
    background-color: var(--gray-color);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--secondary-color);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-text h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-social a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 175, 85, 0.2);
}

/* الفوتر */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-section h3 i {
    margin-left: 10px;
    color: var(--secondary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.footer-section p i {
    margin-left: 10px;
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* شات بوت */
.chat-bot {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.chat-bot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chat-bot-toggle:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.chat-bot-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    flex-direction: column;
    height: 450px;
}

.chat-bot.active .chat-bot-container {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.chat-bot-header {
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-bot-header h3 {
    font-family: var(--heading-font);
    font-size: 18px;
}

.chat-bot-close {
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    font-size: 18px;
}

.chat-bot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
}

.chat-message.bot {
    align-self: flex-start;
    background-color: var(--gray-color);
}

.chat-message.user {
    align-self: flex-end;
    background-color: var(--accent-color);
    color: var(--light-color);
}

.chat-message-content {
    margin-bottom: 5px;
}

.chat-time {
    font-size: 12px;
    opacity: 0.7;
    text-align: right;
}

.chat-bot-input {
    padding: 15px;
    display: flex;
    border-top: 1px solid var(--border-color);
}

.chat-bot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: var(--body-font);
    font-size: 14px;
}

.chat-bot-input input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.chat-bot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-bot-input button:hover {
    background-color: var(--accent-color);
}

/* نظام الإشعارات */
#notification-system {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 15px 20px;
    border-radius: 5px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 4.7s;
    opacity: 0;
    transform: translateX(-100%);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-icon {
    font-size: 20px;
}

.notification-success .notification-icon {
    color: #4CAF50;
}

.notification-error .notification-icon {
    color: #F44336;
}

.notification-info .notification-icon {
    color: var(--accent-color);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #777;
    transition: all 0.3s ease;
}

.notification-close:hover {
    color: var(--primary-color);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--light-color);
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    color: var(--light-color);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    margin-right: 20px;
}

.lightbox-next {
    margin-left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--secondary-color);
}

/* Blog Popup */
.blog-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.blog-popup.active {
    opacity: 1;
    visibility: visible;
}

.blog-popup-content {
    background-color: var(--light-color);
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.3s ease;
}

.blog-popup-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.blog-popup-title {
    font-family: var(--heading-font);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-popup-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
}

.blog-popup-meta span {
    display: flex;
    align-items: center;
}

.blog-popup-meta i {
    margin-left: 5px;
}

.blog-popup-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-popup-close:hover {
    color: var(--secondary-color);
}

.blog-popup-body {
    padding: 20px;
}

.blog-popup-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-popup-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-popup-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-popup-tags {
    display: flex;
    gap: 10px;
}

.blog-popup-tag {
    padding: 5px 10px;
    background-color: var(--gray-color);
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.blog-popup-tag:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.blog-popup-share {
    display: flex;
    gap: 10px;
}

.blog-popup-share a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-popup-share a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* تحريك العناصر */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* تصميم متجاوب */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .intro h1 {
        font-size: 42px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .intro h1 {
        font-size: 36px;
    }
    
    .intro-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.vip {
        transform: scale(1);
    }
    
    .package-card.vip:hover {
        transform: translateY(-10px);
    }
    
    .footer-sections {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .intro h1 {
        font-size: 30px;
    }
    
    .intro-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .chat-bot-container {
        width: 300px;
    }
}
