:root {
    --primary: #FF6B35;
    --secondary: #000000;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --success: #06d6a0;
    --warning: #ffd166;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --dark-blue: #1a2a6c;
    --light-blue: #2a4d69;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #e0e0e0;
    --border-light: #ddd;
    --border-dark: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

body {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.dark-mode {
    background: var(--dark-bg);
    color: var(--dark-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* زر الوضع الداكن */
.theme-switcher-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
}

.theme-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

body.dark-mode .theme-btn {
    background: rgba(18, 18, 18, 0.95);
    color: #FF6B35;
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.theme-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* زر العودة للصفحة الرئيسية */
.home-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 7px 20px rgba(255, 107, 53, 0.6); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4); }
}

body.dark-mode .home-btn {
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

.home-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* الهيدر */
header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode header {
    background: #1a1a1a;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.logo:hover .logo-img {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
}

.logo h1 {
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    position: relative;
}

body.dark-mode .nav-links a {
    color: var(--dark-text);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-menu {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary);
}

/* القائمة المنسدلة */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 1000;
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

body.dark-mode .dropdown-menu {
    background: #1e1e1e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 22px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

body.dark-mode .dropdown-menu li a {
    color: var(--dark-text);
}

.dropdown-menu li a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding-right: 30px;
}

.dropdown-menu .divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

body.dark-mode .dropdown-menu .divider {
    background: #444;
}

/* القسم الرئيسي (Hero) */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 110px 0 80px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,208C96,224,192,256,288,245.3C384,235,480,181,576,176C672,171,768,213,864,218.7C960,224,1056,192,1152,165.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: wave 12s linear infinite;
}

@keyframes wave {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
}

.video-text {
    font-size: 52px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.8), 0 0 25px var(--primary);
    animation: textGlow 2s infinite alternate;
    font-family: 'Tajawal', sans-serif;
    transform: rotate(-4deg);
    padding: 25px 40px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

@keyframes textGlow {
    from { text-shadow: 0 0 12px rgba(0,0,0,0.8), 0 0 25px var(--primary), 0 0 35px rgba(255,255,255,0.4); }
    to { text-shadow: 0 0 18px rgba(0,0,0,0.8), 0 0 35px var(--secondary), 0 0 50px rgba(255,255,255,0.7); }
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.btn:active {
    transform: translateY(-2px);
}

/* Services */
.services {
    padding: 80px 0;
    background-color: white;
}

body.dark-mode .services {
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

body.dark-mode .section-title h2 {
    color: var(--dark-text);
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

body.dark-mode .section-title p {
    color: #aaa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

body.dark-mode .service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

body.dark-mode .service-content h3 {
    color: var(--dark-text);
}

.service-content h3 i {
    margin-left: 10px;
    color: var(--primary);
}

.service-content ul {
    list-style: none;
    margin: 15px 0;
}

.service-content ul li {
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
    color: #555;
}

body.dark-mode .service-content ul li {
    color: #ccc;
}

.service-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--success);
}

/* ألوان الخدمات */
.service-icon.facebook { background: linear-gradient(135deg, #3b5998 0%, #4267B2 100%); }
.service-icon.snapchat { background: linear-gradient(135deg, #FFFC00 0%, #FFFC00 100%); color: #000; }
.service-icon.google { background: linear-gradient(135deg, #4285F4 0%, #34A853 100%); }
.service-icon.instagram { background: linear-gradient(135deg, #833AB4 0%, #E1306C 100%); }
.service-icon.icloud { background: linear-gradient(135deg, #000000 0%, #A3AAAE 100%); }
.service-icon.marketing { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); color: white; }
.service-icon.video { background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); color: white; }
.service-icon.social { background: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%); color: white; }
.service-icon.ads { background: linear-gradient(135deg, #FFD166 0%, #EF476F 100%); color: white; }
.service-icon.store { background: linear-gradient(135deg, #06D6A0 0%, #1B998B 100%); color: white; }
.service-icon.globe { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); color: white; }
.service-icon.tiktok { background: linear-gradient(135deg, #000000 0%, #FE2C55 100%); color: white; }

/* السعر */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body.dark-mode .pricing {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    border: 2px solid #eee;
}

body.dark-mode .pricing-card {
    background: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

body.dark-mode .pricing-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 25px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-title i {
    font-size: 1.8rem;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 15px 0;
    position: relative;
    display: inline-block;
}

.pricing-price::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: white;
}

.pricing-body {
    padding: 25px;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 25px;
    color: #555;
}

body.dark-mode .pricing-features li {
    color: #ccc;
    border-bottom-color: #444;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--success);
}

/* من نحن */
.about-us {
    padding: 80px 0;
    background-color: white;
}

body.dark-mode .about-us {
    background-color: var(--dark-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    transition: transform 0.3s ease;
}

body.dark-mode .about-image {
    border-color: #444;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    max-width: 800px;
}

.about-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.about-highlight-content h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-highlight-content p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

body.dark-mode .value-card {
    background: #2d2d2d;
}

.value-card h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
}

.value-card h4 i {
    font-size: 1.2rem;
}

.value-card p {
    color: #555;
    font-size: 0.95rem;
}

body.dark-mode .value-card p {
    color: #ccc;
}

/* Free Content */
.free-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}

body.dark-mode .free-content {
    background: linear-gradient(135deg, #1a1a2a 0%, #2a2a3a 100%);
}

.content-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

body.dark-mode .content-container {
    background: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instructor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
    padding: 20px 0;
}

.instructor-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

body.dark-mode .instructor-image {
    border-color: #444;
}

.instructor-image:hover {
    transform: scale(1.05);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instructor-info h4 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

body.dark-mode .instructor-info h4 {
    color: var(--dark-text);
}

.instructor-info p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

body.dark-mode .instructor-info p {
    color: #ccc;
}

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc277f, #c135a7, #9d2abc);
}

.social-link.snapchat {
    background: #fffc00;
    color: #000;
}

.social-link.facebook:hover {
    background: #0d6ad8;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc277f, #c135a7, #9d2abc, #8a24b3);
}

.social-link.snapchat:hover {
    background: #fff200;
}

/* تواصل معنا */
.new-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

body.dark-mode .new-contact {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3d4d 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info,
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.dark-mode .contact-info,
body.dark-mode .contact-form {
    background: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after,
.contact-form h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

body.dark-mode .form-group label {
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: #333;
}

body.dark-mode .form-control {
    background: #333;
    color: white;
    border-color: #555;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.file-upload-container {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

body.dark-mode .file-upload-container {
    background: #2d2d2d;
}

.file-upload-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark);
}

body.dark-mode .file-upload-header {
    color: var(--dark-text);
}

.file-upload-header i {
    font-size: 1.3rem;
    color: var(--primary);
}

.file-preview {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-item {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

body.dark-mode .file-item {
    background: #3d3d3d;
    color: #ccc;
}

.file-item i {
    font-size: 1.1rem;
}

.remove-file {
    cursor: pointer;
    color: #dc3545;
    font-size: 0.9rem;
}

.remove-file:hover {
    color: #c82333;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float a {
    color: white;
    text-decoration: none;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* --- تحسينات للهواتف المحمولة --- */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--primary);
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 0 10px 10px 0;
        overflow-y: auto;
    }

    body.dark-mode .nav-links {
        background: var(--dark-card);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        margin-top: 5px;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .theme-switcher-container {
        top: 15px;
        left: 15px;
        padding: 6px 10px;
    }

    .theme-btn {
        font-size: 0.8rem;
        gap: 6px;
    }

    .theme-btn span {
        display: none;
    }

    .home-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        left: 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .video-text {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .privacy-content {
        padding: 20px;
    }

    .services-grid,
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .pricing-card {
        margin-bottom: 20px;
    }

    .about-content {
        text-align: center;
    }

    .about-text {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 0;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .theme-switcher-container {
        left: 10px;
        top: 10px;
    }

    .navbar {
        padding: 10px 0;
    }
}.footer-content .social-icons a.instagram {
    background: linear-gradient(45deg, #833AB4, #E1306C, #C135A7);
}

.footer-content .social-icons a.facebook {
    background: #1877f2;
}

.footer-content .social-icons a.snapchat {
    background: #FFFC00;
    color: #000;
}

.footer-content .social-icons a.linkedin {
    background: #0077b5;
}

.footer-content .social-icons a.whatsapp {
    background: #25D366;
}

/* ضمان ظهور الأيقونات بشكل جيد في الوضع الداكن */
body.dark-mode .footer-content .social-icons a {
    border-color: #333;
}

/* --- تلوين أيقونات وسائل التواصل في التذييل بألوان مميزة وحديثة --- */
.footer-content .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
}

body.dark-mode .footer-content .social-icons a {
    border-color: #333;
}

.footer-content .social-icons a:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ألوان مخصصة لكل منصة */
.footer-content .social-icons a.instagram {
    background: linear-gradient(45deg, #833AB4, #E1306C, #C135A7);
}

.footer-content .social-icons a.facebook {
    background: #1877f2;
}

.footer-content .social-icons a.snapchat {
    background: #FFFC00;
    color: #000;
}

.footer-content .social-icons a.whatsapp {
    background: #25D366;
}

/* --- تصغير حجم خط الشريط العلوي (navbar) --- */
.navbar {
    padding: 12px 0; /* تقليل المساحة */
}

.nav-links a {
    font-size: 1rem; /* تصغير الحجم من 1.1rem إلى 1rem */
    padding: 8px 14px; /* تقليل البادينج */
    font-weight: 500;
}

.nav-links a.active {
    font-size: 1.05rem; /* حجم قليلاً أكبر للعنوان النشط */
}

/* تحسين الهامبرغر في الجوال */
.mobile-menu {
    font-size: 1.4rem;
}

/* التأكد من أن القوائم المنسدلة متناسقة */
.dropdown-menu li a {
    font-size: 0.95rem;
    padding: 10px 20px;
}
