/* الخط الأساسي */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@700&display=swap');

body, html {
  margin: none;
  padding: 0;
  font-family: 'Cairo', sans-serif;
    background: linear-gradient(to bottom, #abc5ca, #2d738d); /* تدرج من الأعلى للأسفل */

}


.landing-container {
  position: relative;
  background-image: url('logo/image3.png'); /* غيرها بالصورة اللي عندك */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  color: white;

  margin: 0px auto;
  padding: 0px;
  max-width: 450px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.201); /* تظليل خفيف على الخلفية */
  z-index: 1;
}

.logo-glass {
  position: relative;
  width: 80%; /* أو 80% حسب ذوقك */
  max-width: 350px; /* 🔥 العرض النهائي اللي تبيه */
  margin-bottom: 30px; /* المسافة بين الشعار والنصوص */
  padding: 30px 0 20px 0; 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}




.logo {
  width: 200px;
  height: auto;
}
.full-content {
  position: relative;
  width: 80%; /* أو 80% حسب ذوقك */
  max-width: 350px; /* 🔥 العرض النهائي اللي تبيه */
  margin: 0 auto; /* يوسط العنصر */
  padding: 30px 0 20px 0; 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
   flex-direction: column; /* <<< يخلي العناصر تحت بعض */

  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 15px;
 
}

.main-text h1,
.main-text h2 {
  color: white;
  font-weight: bold;
  margin: 10px 0;
  font-size: 22px;
    line-height: 1.5; /* 👈 قللها أكثر لو تبي النصوص تلتصق شوي */
  text-align: center;

}

/* العناصر الأربعة */
.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 1px;
}




.features {
  z-index: 2;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90%;
}

.feature {
  background: linear-gradient(135deg, #274149, #274149);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 8px;
  padding: 1px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-align: center; /* 👈 يوسّط النص */
}

.contact-box {
  margin-top: 25px;
  width: 80%;
  padding: 20px 15px;
  padding: 30px 0 20px 0; 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
   flex-direction: column; /* <<< يخلي العناصر تحت بعض */

  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 15px;
}

.contact-text {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
  position: relative;
}

/* تخصيص زر الاتصال */
.btn-call {
   position: relative;
  margin: 0;
  padding: 100px 35px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d36c18, #a86e0a);
  border: 3px solid rgb(215, 161, 59);
  border-radius: 10px;
  color: #ffffff;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
 
}


.btn-call, .btn-whatsapp {
  width: 130px; /* نفس العرض */
  height: 42px;  /* نفس الارتفاع */
  font-size: 14px;
}

/* تحريك زر الاتصال للأسفل قليلاً */


.btn-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  display: block;
  width: 200em;
  height: 20em;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
  white-space: nowrap; /* هذا يمنع النص من الانتقال لسطر جديد */

}






/* تخصيص زر الواتساب */
.btn-whatsapp {
  position: relative;
  margin: 0;
  padding: 100px 35px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1e7b1b, #2db113);
  border: 3px solid rgb(59, 215, 72);
  border-radius: 10px;
  color: #ffffff;
  font-weight: 400;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  display: block;
  width: 200em;
  height: 20em;
  left: -5em;
  z-index: -1;
}

.btn-call, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  white-space: nowrap; /* هذا يمنع النص من الانتقال لسطر جديد */
  gap: 8px; /* مسافة صغيرة بين الأيقونة والنص */
  padding: 6px 14px; /* تصغير الحشوة داخل الزر */
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
}

.form-glass {
        direction: rtl;

  margin-top: 25px;
  width: 80%;
  padding: 20px 15px;
  padding: 30px 0 20px 0; 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
   flex-direction: column; /* <<< يخلي العناصر تحت بعض */

  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 15px;
}
.container-css {
  width: 100%;
}

.heading {
  font-size: 18px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.input-container {
  position: relative;
  margin-bottom: 18px;
}

.input {
  width: 100%;
  padding: 16px 14px 10px 14px; /* Padding من تحت أكثر عشان الليبل يطلع فوق */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  font-size: 14px;
  outline: none;
}
.input:focus{
  border-color: #ffffff;
}
.input::placeholder {
  color: transparent; /* نخفي الـ placeholder */
}

.floating-label {
  position: absolute;
  right: 6px;
  top: 6px; /* يبدأ بنفس مكان الكتابة */
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.input:focus + .floating-label,
.input:not(:placeholder-shown) + .floating-label {
  top: -15px; /* يصعد لنص الحافة العليا */
  font-size: 14px;
  color: white;
  border-radius: 4px;
    border-color: #ffffff;

}

.custom-select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.custom-select option {
  color: rgba(0, 0, 0, 0.7);
}

.custom-select:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}


.privacy-text {
  color: white;
  font-size: 12px;
  margin: 10px 0;
  text-align: center;
}

.privacy-link {
  color: #ffd700;
  text-decoration: underline;
}

.button  {
   display: block;
  width: 100%;
  font-weight: bold;
  background: linear-gradient(135deg, #074645, #4e8686);
  color: white;
  padding-block: 15px;
  margin: 20px auto;
    border: #69abd7 0.2em solid;

  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  transform: scale(1.03);
  background: #ffffff;
  color: #000;
}
.button svg {
  width: 1.6em;
  margin: -0.2em 0.8em 1em;
  position: absolute;
  display: flex;
  transition: all 0.6s ease;
}

.button:hover svg {
  transform: translateX(5px);
}

.text {
  margin: 0 1.5em
}
.text-decoration {

     direction: rtl;

  margin-top: 25px;
  width: 80%;
  padding: 20px 15px;
  padding: 30px 0 20px 0; 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
   flex-direction: column; /* <<< يخلي العناصر تحت بعض */

  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 15px;
  margin-top: 30px;
  margin-bottom: 20px;
}