.footer-section {
  background: linear-gradient(to right,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.6) 63%,
    rgba(25, 25, 25, 0.6) 63%,
      rgba(25, 25, 25, 0.6) 100%);
  padding: 40px 0;
  display: flex;
  justify-content: center;
  color: white;
  font-family: 'Inter', sans-serif;
  padding-left: 100px;
  position: relative; /* إضافة position relative */
}

/* صورة blur للموبايل في footer */
.mobile-blur-image-footer {
  display: none; /* مخفية في الديسكتوب */
  position: absolute;
  width: 100%;
  max-width: 440px;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.footer-container {
  display: flex;
  width: 1512px;
  height: auto;
  justify-content: space-between;
  gap: 24px;
}

.form-side {
  width: 756px;
  height: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  
}

.form-text {
  font-size: 32px;
  font-weight: 400;
  width: 756px;
  height: 117px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-input {
  display: flex;
  align-items: center;
  border: 1px solid #19A79B;
  border-radius: 12px;
  background-color: transparent;
  padding: 10px;
  width: 344px;
  height: 56px;
  gap: 10px;
}

.form-input.wide {
  width: 344px;
  height: 56px;
}

.form-input input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: white;
  width: 100%;
}

.send-button {
  width: 214px;
  height: 75px;
  border-radius: 12px;
  background-color: #19A79B;
  color: white;
  font-weight: 700;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

.info-side {
  width: 494px;
  height: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-title {
  width: 178px;
  height: 34px;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.find-us-container {
  width: 387px;
  height: 51px;
  padding-bottom: 24px;
}

.find-us-title {
  width: 387px;
  height: 29px;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  color: #FFFFFF;
}

.find-us-address {
  width: 387px;
  height: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding-right: 55px;
  color: #FFFFFF;
  Opacity: 70%
}

.call-us-title {
  width: 387px;
  height: 29px;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  color: #FFFFFF;
}

.call-us-number {
  width: 387px;
  height: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding-right: 55px;
  color: #FFFFFF;
  Opacity: 70%
}

.contact-detail p {
  margin: 0;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  height: 28px;
  margin-top: 8px;
  justify-content: flex-start;
  align-items: center;
}

.icon {
  width: 24px;
  height: 24px;
  background-color: #19A79B;
  border-radius: 50%;
}

.contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #00d1ff;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

.base-icon {
  width: 21.42px;
  height: 30.6px;
}

.overlay-icon {
  width: 28.8px;
  height: 18.39px;
  top: 17.61px
}

.contact-detail-mobile {
  display: none;
}

/* نسخة الموبايل للسكشن كما في Figma */
@media (max-width: 600px),
(max-width: 768px) {

  .main-wrapper,
  .hero,
  .section-class,
  .any-main-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
  }

  .footer-section {
    background: none !important;
    background-color: #111924 !important;
    /* لون ثابت مشابه لنهاية التدرج */
    padding: 24px 0 0 0 !important; /* إزالة padding-bottom */
    margin: 0 !important;
    width: 100%;
    max-width: 440px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    padding-left: 16px !important;
    padding-right: 16px !important;
    position: relative !important; /* إضافة position relative */
  }

  /* إظهار صورة blur الموبايل في footer */
  .mobile-blur-image-footer {
    display: block !important; /* إعادة إظهار الصورة */
    position: absolute;
    width: 100%;
    max-width: 440px;
    height: 150px; /* تقليل الارتفاع */
    top: 20px; /* تقليل المسافة من الأعلى */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0; /* z-index متوسط */
    opacity: 0.4; /* تقليل الشفافية */
    filter: blur(4px); /* زيادة blur */
    object-fit: cover; /* تغطية كاملة */
  }

  .footer-container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
    box-sizing: border-box;
    align-items: flex-start;
  }

  .form-side {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .form-text {
    width: 100%;
    height: auto;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFFCC;
    line-height: 1.6;
    margin-bottom: 24px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .contact-form {
    width: 100%;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }

  .form-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .form-input,
  .form-input.wide {
    width: 185px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #19A79B;
    background: transparent;
    padding: 10px;
    font-size: 12px;
    color: #fff;
    gap: 10px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .form-input input {
    font-size: 12px;
    color: #fff;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
  }

  .send-button {
    width: 185px;
    height: 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    background: #19A79B;
    color: #fff;
    border: none;
    cursor: pointer;
  }

  .info-side {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .contact-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0 !important;
    margin-top: 42px !important;
    padding-bottom: 0 !important;
  }

  .contact-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 103px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .contact-detail {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 4px !important;
    min-width: 0 !important;
    flex: 1 1 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .find-us-container,
  .call-us-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .find-us-title,
  .call-us-title {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .find-us-address,
  .call-us-number {
    font-size: 10px !important;
    color: #fff !important;
    opacity: 0.7 !important;
    position: relative !important;
    top: -2px !important;
  }

  .contact-detail img {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    align-self: flex-start !important;
    display: block !important;
    padding: 0 !important;
  }

  .social-icons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    height: 28px;
    margin-top: 8px;
    justify-content: flex-start;
    align-items: center;
  }

  .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #19A79B;
  }

  .find-us-address,
  .call-us-number {
    font-size: 10px !important;
    color: #fff !important;
    opacity: 0.7 !important;
    position: relative !important;
    top: -2px !important;
  }

  .contact-container>*:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* تنسيق رابط الموقع ليبقى بنفس مظهر النص */
.find-us-address a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.find-us-address a:hover {
    text-decoration: underline;
    color: inherit;
}

.find-us-address a p {
    margin: 0;
    color: inherit;
}

/* تنسيق رابط الهاتف ليبقى بنفس مظهر النص */
.call-us-number a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.call-us-number a:hover {
    text-decoration: underline;
    color: inherit;
}

.call-us-number a p {
    margin: 0;
    color: inherit;
}

/* Credit Line Styles - At the very bottom of the site */
.mobile-credit {
    display: block; /* Visible on all devices by default */
    width: 100%;
    text-align: center;
    margin-top: 32px;
    padding: 12px;
    font-size: 12px;
    color: #ccc;
    position: relative;
    box-sizing: border-box;
}

.mobile-credit__brand {
    color: #00E5FF;
    text-decoration: none;
    font-weight: 600;
    animation: brightCodeColors 40s steps(20, end) infinite;
    display: inline-block;
    min-height: 32px;
    line-height: 32px;
    padding: 0 4px;
}

@keyframes brightCodeColors {
    0%, 5% { color: #00E5FF; }
    5%, 10% { color: #1DE9B6; }
    10%, 15% { color: #00C853; }
    15%, 20% { color: #64DD17; }
    20%, 25% { color: #AEEA00; }
    25%, 30% { color: #FFD600; }
    30%, 35% { color: #FFAB00; }
    35%, 40% { color: #FF6D00; }
    40%, 45% { color: #FF3D00; }
    45%, 50% { color: #FF1744; }
    50%, 55% { color: #F50057; }
    55%, 60% { color: #D500F9; }
    60%, 65% { color: #651FFF; }
    65%, 70% { color: #3D5AFE; }
    70%, 75% { color: #2979FF; }
    75%, 80% { color: #00B0FF; }
    80%, 85% { color: #00E5FF; }
    85%, 90% { color: #1DE9B6; }
    90%, 95% { color: #69F0AE; }
    95%, 100% { color: #64FFDA; }
}

/* Desktop Credit Line Styles */
@media (min-width: 769px) {
    .mobile-credit {
        display: block;
        font-size: 14px;
        margin-top: 40px;
        padding: 16px;
        background: rgba(0, 0, 0, 0.4);
        border-top: 2px solid rgba(255, 255, 255, 0.15);
    }
    
    .mobile-credit__brand {
        font-weight: 700;
        font-size: 16px;
        min-height: 40px;
        line-height: 40px;
    }
}

/* Mobile Credit Line Styles */
@media (max-width: 768px) {
    .mobile-credit {
        display: block;
        font-size: 12px;
        margin-top: 32px;
        padding: 12px;
    }
    
    .mobile-credit__brand {
        font-size: 12px;
        min-height: 32px;
        line-height: 32px;
    }
}