/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #323232;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.856);
    backdrop-filter: blur(2px);
    z-index: 1000;
    padding: 24px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
    height: 54px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.active {
    font-weight: 700;
    color: #d8bfd8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 70px;
    height: 1px;
    background: #d8bfd8;
}

.nav-link:hover {
    color: #d8bfd8;
}

.contact-btn {
    background: #d8bfd8;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #c8afc8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(216, 191, 216, 1) 0%,
  );
  opacity: 0.6;
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 80px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 50px;
  font-weight: 500;
  color: #e6e6fa;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* صورة العربية فوق الوصف */
.hero-car {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 20px auto 30px;
  display: block;
}

.hero-description {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width:900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 250px;
}

.btn-primary {
  background: white;
  color: #d8bfd8;
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #d8bfd8;
  color: white;
}

.btn-secondary:hover {
  background: #c8afc8;
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px; /* ↓ قللتها من 40px لـ 20px عشان تنزل أكتر */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  
}
.scroll-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        text-align: center; /* يوسّط النص */
    }

    .hero-subtitle {
        font-size: 28px;
        text-align: center; /* يوسّط النص */
    }

    .hero-description {
        font-size: 18px;
        text-align: center; /* يوسّط النص */
        padding: 0 20px;   /* مسافة جانبية */
    }

    .btn {
        min-width: 180px;
        font-size: 16px;
        padding: 12px 20px;
        margin: 10px 0;     /* مسافة بين الأزرار */
    }

    .hero-car {
        max-width: 90%;
        height: auto;
        display: block;
        margin: 20px auto 0; /* يوسّط الصورة */
    }

    .scroll-icon {
        width: 40px;
        height: 40px;
        display: block;
        margin: 20px auto 0; /* يوسّط الأيقونة */
    }
}
/* ...existing code... */

/* زر القائمة */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
    z-index: 1002;
    position: relative;
}
.menu-icon {
    width: 28px;
    height: 3px;
    background: #333;
    display: block;
    position: relative;
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: #333;
    left: 0;
}
.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

/* خلفية شفافة عند فتح القائمة */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.nav.open ~ .nav-overlay {
    display: block;
}

/* القائمة الجانبية للجوال */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 2rem;
        width: 70vw;
        height: 100vh;
        padding: 3rem 2rem 2rem 2rem;
        box-shadow: -2px 0 8px rgba(0,0,0,0.08);
        transform: translateX(100%);
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
        z-index: 1001;
        align-items: flex-start;
        visibility: hidden;
        opacity: 0;
    }
    .nav.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    .menu-toggle {
        display: block;
    }
    .contact-btn {
        display: none;
    }
}

/* ...existing code... */



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-title {
    font-size: 40px;
    font-weight: 500;
    color: #d8bfd8;
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1; /* يخلي المحتوى فوق الخلفية */
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* تغطي كل القسم */
    background: url(imgs/background.svg) no-repeat center;
    background-size: cover;
    z-index: -1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1250px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    width: 508px;
    height: 392px;
    flex-shrink: 0;
}

.phone-mockup {
    position: absolute;
    top: 0;
    right: 0;
    width: 158px;
    height: 321px;
    object-fit: cover;
}

.app-interface {
    position: absolute;
    bottom: 0;
    right: 8px;
    width: 500px;
    height: 234px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-description {
    font-size: 20px;
    font-weight: 500;
    color: #d8bfd8;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #323232;
    line-height: 1.5;
}

.about-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: #d8bfd8;
    border-radius: 50%;
}

.about-story p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-story strong {
    color: #d8bfd8;
    font-weight: 600;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 20px; /* قللنا المسافة */
        padding: 0 15px;
    }

    .about-image {
        width: 100%;
        max-width: 280px; /* أصغر عرض */
        height: 220px; /* نخلي ارتفاع أصغر */
        margin: 0 auto;
        position: relative;
    }

    .phone-mockup {
        position: absolute; /* يخليها فوق التانية */
        top: 0;
        right: 20px;
        width: 100px;
        height: auto;
    }

    .app-interface {
        position: absolute; /* تبقى وراها */
        bottom: 0;
        right: 0;
        width: 240px;
        height: auto;
    }

    .about-text {
        width: 100%;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-list li {
        font-size: 16px;
    }
}




/* Features Section */
body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    background: #fff;
    color: #323232;
}

.features {
    padding: 100px 0;
    background: white;
    position: relative;
}

/* العنوان الرئيسي */
.features-title {
    font-size: 32px;
    font-weight: 700;
    color: #D8BFD8;
    text-align: center;
    margin-bottom: 60px;
}

.features-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1440px;
    margin: 0 auto;
    gap: 50px;
    padding: 0 20px;
}

.features-column {
    flex: 1;
    text-align: center;
}

/* عنوان الأعمدة (المستخدم / السواق) */
.features-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #D8BFD8;
    margin-bottom: 40px;
    text-align: center;
}

.features-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.features-side.reverse {
    flex-direction: row-reverse;
}

.features-phone {
    width: 147px;
    height: 411px;
    object-fit: contain;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    text-align: right;
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 18px;
    font-weight: 500;
    color: #323232;
}

.features-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-image {
    width: 88px;
    height: 466px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-content {
        flex-direction: column;
        gap: 60px;
        justify-content: center;  /* يوسّط العناصر */
        align-items: center;      /* يخليها في النص */
        text-align: center;       /* يوسّط النص */
    }

    .features-side,
    .features-side.reverse {
        flex-direction: column;
        align-items: center;  /* يخلي المحتوى في النص */
    }

    .features-divider {
        display: none;
    }

    .features-list {
        align-items: center;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
    }

    .features-subtitle {
        text-align: center;
    }
}


/* How It Works Section */
.how-it-works {
    padding: 0;
    background: white;
}

.how-it-works-content {
    display: flex;
    flex-direction: column; /* الصورة فوق النص */
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.how-it-works-image {
    flex: 1;
    margin: 0;
    padding: 0;
}

.illustration {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.how-it-works-text {
    flex: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.how-it-works-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 10px;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.step {
    display: flex;
    flex-direction: row; /* ✅ الأيقونة على الجنب */
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 20px 0 0 20px;
    min-height: auto;
    margin: 0;
}

.step-1 {
    background: #d8bfd8;
}
.step-2 {
    background: #e6e6fa;
}
.step-3 {
    background: #d8bfd8;
}

.step-icon {
    width: auto;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.step-text {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
    color: white;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
    .how-it-works-subtitle {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .steps {
        gap: 8px;
    }

    .step {
        gap: 8px;
        padding: 8px;
    }

    .step-icon {
        height: 40px;
    }

    .step-text {
        font-size: 16px;
    }
}




/* Why Choose Us Section */
/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1238px;
    margin: 0 auto;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(246, 241, 254, 0.5);
    padding: 30px;
    border-radius: 500px;
    min-height: 176px;
    position: relative;
}

.why-choose-icon {
    position: relative;
    width: 176px;
    height: 176px;
    flex-shrink: 0;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 176px;
    height: 176px;
    background: #e6e6fa;
    border-radius: 50%;
    z-index: 1;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 13px;
    width: 170px;
    height: 169px;
    background: #d8bfd8;
    border-radius: 50%;
    z-index: 2;
}

.icon {
    position: relative;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 3;
    top: 28px;
    right: 28px;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #d8bfd8;
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-choose-content p {
    font-size: 14px;
    font-weight: 500;
    color: #323232;
    line-height: 1.5;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 50px 0; /* قللنا المسافة فوق وتحت */
    }

    .why-choose-grid {
        grid-template-columns: 1fr; /* كل عنصر ياخد عرض الشاشة */
        gap: 20px;
        padding: 0 15px;
    }

    .why-choose-item {
        flex-direction: row;
        gap: 15px;
        padding: 15px;
        min-height: auto;
        border-radius: 30px; /* أصغر عشان الشكل يبقى أنعم */
    }

    .why-choose-icon {
        width: 90px;
        height: 90px;
    }

    .why-choose-icon::before {
        width: 90px;
        height: 90px;
    }

    .why-choose-icon::after {
        width: 84px;
        height: 84px;
        top: 3px;
        right: 3px;
    }

    .icon {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }

    .why-choose-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: right;
    }

    .why-choose-content p {
        font-size: 13px;
        line-height: 1.4;
        text-align: right;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1492px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    height: 227px;
    position: relative;
}

.testimonial-content {
    padding: 20px 50px;
    height: 136px;
    display: flex;
    align-items: center;
}

.testimonial-content p {
    font-size: 20px;
    font-weight: 500;
    color: #323232;
    line-height: 1.5;
}

.testimonial-author {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 91px;
    background: #d8bfd8;
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 40px;
    font-weight: 500;
    color: white;
}

.author-role {
    font-size: 30px;
    font-weight: 400;
    color: white;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* كل كارت ياخد عرض الشاشة */
        gap: 30px;
        padding: 0 15px;
    }

    .testimonial-card {
        height: auto; /* يخلي الكارت يتمدد حسب المحتوى */
        min-height: unset;
    }

    .testimonial-content {
        padding: 15px 20px;
        height: auto; /* يتظبط مع الكلام */
        display: block; /* يخلي النص يظهر كامل */
        text-align: center;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.4;
    }

    .testimonial-author {
        position: static; /* يشيل التثبيت تحت */
        width: 100%;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 20px;
    }

    .author-role {
        font-size: 16px;
    }
}



/* CTA Section */
.cta {
    padding: 100px 0;
    background: white;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 426px;
    background: url('https://images.pexels.com/photos/1040881/pexels-photo-1040881.jpeg?auto=compress&cs=tinysrgb&w=1440&h=426') no-repeat center;
    background-size: cover;
    z-index: -1;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.cta-image {
    position: relative;
    width: 542px;
    height: 571px;
    flex-shrink: 0;
}

.cta-phone {
    position: absolute;
    top: 0;
    right: 0;
    width: 277px;
    height: 571px;
    object-fit: contain;
}

.app-stores-image {
    position: absolute;
    bottom: 35px;
    right: 96px;
    width: 445px;
    height: 202px;
    object-fit: contain;
}

.cta-text {
    flex: 1;
    max-width: 652px;
}

.cta-description {
    font-size: 25px;
    font-weight: 500;
    color: #323232;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.cta-tagline {
    font-size: 28px;
    font-weight: 500;
    color: #d8bfd8;
    text-align: center;
    margin-bottom: 40px;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: #e6e6fa;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #323232;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 310px;
    height: 60px;
    justify-content: center;
}

.app-btn:hover {
    background: #d6d6ea;
    transform: translateY(-2px);
}

.app-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        position: relative;
    }

    .cta-phone {
        position: relative;
        width: 100%;
        height: auto;
    }

    .app-stores-image {
        display: none; /* لغيتها عشان متعملش لخبطة */
    }

    .cta-text {
        max-width: 100%;
        padding: 0 15px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-tagline {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .app-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .app-btn {
        width: 90%;
        max-width: 300px;
    }
}



/* Footer */
.footer {
    background: #323232;
    color: #fff;
    padding: 80px 0 40px;
    text-align: right;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: flex-start;
}
.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.footer-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
}
.footer-description {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 16px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #d8bfd8;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.contact-item span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #d8bfd8;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    color: #fff;
    font-size: 18px;
    transition: background 0.3s;
}
.social-links a:hover {
    background: #c8afc8;
}
.copyright {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
}

.company-link {
    color: #D8BFD8; /* بنفسجي فاتح */
    font-weight: 600;
    text-decoration: none;
    opacity: 1;
    transition: color 0.3s ease;
}

.company-link:hover {
    color: #b89fb8; /* درجة أغمق للهوفر */
    text-decoration: underline;
}


/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }
    .footer-section h3 {
        margin-bottom: 20px;
    }
    .footer-logo {
        margin-bottom: 20px;
    }
    .footer-links {
        align-items: center;
    }
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
    }
    .footer-content {
        gap: 24px;
    }
}
@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }
    .footer-logo {
        margin-bottom: 16px;
        width: 140px;
    }
    .footer-links {
        gap: 10px;
        margin-bottom: 16px;
    }
    .footer-bottom {
        font-size: 14px;
        padding-top: 16px;
    }
    .copyright {
        font-size: 14px;
    }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 60px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 40px;
        text-align: center;
    }

    .hero-description {
        font-size: 20px;
        text-align: center;
        padding: 0 20px;
    }

    .about-content,
    .how-it-works-content,
    .cta-content {
        flex-direction: column !important;
        text-align: center;
        gap: 60px;
        align-items: center;
    }

    .features-content {
        flex-direction: column !important;
        gap: 80px;
        align-items: center;
        text-align: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-items: center;
    }
}