:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --light-color: #FFFFFF;
    --dark-color: #121212;
    --gray-color: #F5F5F5;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 10px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--light-color);
    color: var(--text-dark);
    transition: var(--transition);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark-mode {
    background-color: var(--dark-color);
    color: var(--text-light);
}

/* ===== تحسينات شريط التمرير ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), #FFC400);
    border-radius: 10px;
    border: 3px solid var(--gray-color);
}

.dark-mode ::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.dark-mode ::-webkit-scrollbar-thumb {
    border-color: #2a2a2a;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== تحسينات الهيدر ===== */
header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
}

.dark-mode header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.header-top {
    background: linear-gradient(135deg, var(--primary-color), #FFC400);
    padding: 8px 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-number {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    transition: var(--transition);
}

.phone-number:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.phone-number i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.theme-toggle {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--secondary-color);
    transition: var(--transition);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(30deg) scale(1.1);
}

.main-header {
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.logo:hover {
    transform: translateX(-5px);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: rotate(-5deg);
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary-color);
    transition: var(--transition);
}

.dark-mode .logo span {
    color: var(--light-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.dark-mode .mobile-menu-btn {
    color: var(--text-light);
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* ===== تحسينات التنقل ===== */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.dark-mode nav a {
    color: var(--text-light);
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), #FFC400);
    transition: var(--transition);
    border-radius: 2px;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* ===== أيقونة الواتساب ===== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(10deg);
    animation: none;
}

/* ===== تحسينات القسم الرئيسي ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 120px 0 100px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #FFC400);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button, .pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #FFC400);
    color: var(--secondary-color);
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover, .pricing-button:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.cta-button i, .pricing-button i {
    transition: var(--transition);
}

.cta-button:hover i, .pricing-button:hover i {
    transform: translateX(5px);
}

/* ===== تحسينات الأقسام ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
}

.dark-mode .section-title h2 {
    color: var(--text-light);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #FFC400);
    border-radius: 2px;
}

/* ===== تحسينات البطاقات ===== */
.service-card, .pricing-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 35px 30px;
    position: relative;
    border-top: 5px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dark-mode .service-card,
.dark-mode .pricing-card {
    background-color: #222;
    border-color: var(--primary-color);
}

.service-card:hover,
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 196, 0, 0.2));
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 196, 0, 0.3));
}

.service-card h3, .pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode .service-card h3,
.dark-mode .pricing-header h3 {
    color: var(--text-light);
}

.service-card p, .pricing-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.dark-mode .service-card p,
.dark-mode .pricing-card p {
    color: #ddd;
}

/* ===== تحسينات عرض الخدمات ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== قسم الساعات والمميزات ===== */
.hours, .feature {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: auto;
    border-right: 3px solid var(--primary-color);
    width: 100%;
}

.hours p, .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: right;
}

.hours p:last-child, .feature:last-child {
    margin-bottom: 0;
}

.hours i, .feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature span {
    font-weight: 500;
}

/* ===== قسم الفيديو ===== */
.video-container {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23FFD700" opacity="0.1" width="100" height="100"/></svg>');
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #FFC400);
}

.video-placeholder {
    color: white;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.video-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.video-button {
    background: linear-gradient(135deg, var(--primary-color), #FFC400);
    color: var(--secondary-color);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.video-button:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* ===== قسم التسعير ===== */
.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.pricing-card.highlight {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    position: relative;
    overflow: hidden;
}

.pricing-card.highlight::before {
    content: 'الأفضل';
    position: absolute;
    top: 15px;
    left: -30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.dark-mode .price span {
    color: #ddd;
}

.pricing-features p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-align: right;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pricing-info {
    background: var(--gray-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border-right: 4px solid var(--primary-color);
}

.dark-mode .pricing-info {
    background: #222;
}

.pricing-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-mode .pricing-info h3 {
    color: var(--text-light);
}

.timing-info {
    margin-top: 25px;
}

.timing-info h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timing-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.timing-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* ===== قسم من نحن ===== */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--primary-color);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.dark-mode .stat-label {
    color: #ddd;
}

.image-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    transform: scale(1);
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* ===== قسم اتصل بنا ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3, .contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-mode .contact-info h3,
.dark-mode .contact-form h3 {
    color: var(--text-light);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .contact-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #FFC400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.dark-mode .contact-text h4 {
    color: var(--text-light);
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-text a:hover {
    color: #FFC400;
}

.social-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .social-contact {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.social-contact h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.dark-mode .social-contact h4 {
    color: var(--text-light);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== تحسينات النماذج ===== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.dark-mode .form-group label {
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-color);
    color: var(--text-dark);
    font-family: inherit;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
    background-color: #2a2a2a;
    border-color: #444;
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #FFC400);
    color: var(--secondary-color);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* ===== تحسينات الفوتر ===== */
footer {
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: var(--text-light);
    padding: 70px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-logo h3::after {
    display: none;
}

.footer-column p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
}

.footer-social-icon:hover::before {
    transform: scale(1);
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
}

.footer-social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-5px) rotate(5deg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-links a::before {
    content: '←';
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.designer {
    margin-top: 10px;
    color: #FFD700;
}

.designer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.designer a:hover {
    color: #FFC400;
    text-decoration: underline;
}

/* ===== تحسينات التجاوبية ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.4rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .pricing-content,
    .about-content,
    .contact-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        background: var(--light-color);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .dark-mode nav ul {
        background: #1a1a1a;
    }
    
    nav ul.show {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 100px 0 80px;
        background-attachment: scroll;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button, .pricing-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 2.8rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }
    
    .social-link {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding: 80px 0 60px;
        margin-bottom: 60px;
    }
    
    .hero h2 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid,
    .pricing-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.highlight {
        transform: none;
    }
    
    .social-icons {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .phone-number {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3,
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ===== تحسينات الأداء ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== تحسينات الطباعة ===== */
@media print {
    header,
    .whatsapp-float,
    .hero::before,
    .cta-button,
    .pricing-button,
    .social-icons,
    .contact-form,
    .footer-social {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: black !important;
        text-decoration: underline;
    }
    
    .hero {
        background: none !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .hero h2 {
        color: black !important;
    }
}