* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Almarai', sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 1px 16px rgba(18,44,101,0.10);
  height: 68px;
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  margin-top: 15px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: space-evenly;
  margin: 0;
  gap: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #122C65;
  font-family: 'Almarai', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 11px;
  left: 11px;
  height: 2px;
  background-color: #EAAE40;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-dropdown {
  position: relative;
}

.lang-selected {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: 'Almarai', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #122C65;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  background: #fafafa;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}

.lang-selected:hover {
  border-color: #EAAE40;
  background: #fffbf0;
}

.lang-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.arrow {
  font-size: 10px;
  color: #122C65;
  transition: transform 0.2s;
}

.lang-menu {
  display: none;
  position: absolute;
  top:100%;
  right:0;
  left:auto ;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(18,44,101,0.13);
  list-style: none;
  padding: 6px 0;
  min-width: 140px;
  z-index: 200;
}

.lang-menu.open {
  display: block;
}

.lang-menu li {
  padding: 10px 18px;
  font-family: 'Almarai', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #122C65;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.lang-menu li:hover {
  background-color: #fffbf0;
  color: #EAAE40;
}

.lang-menu li span.flag {
  font-size: 16px;
}

.btn-join {
  background-color: #EAAE40;
  color: #122C65;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: 'Almarai', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-join:hover {
  background-color: #d49c2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,174,64,0.4);
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: unset;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10,20,50,0.75) 35%,
    rgba(10,20,50,0.25) 65%,
    rgba(10,20,50,0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 68px 20px 0 0;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-text {
    max-width: 500px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 0;
}

.highlight {
  color: #EAAE40;
}

.hero-desc {
  font-size: 18px !important;
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  font-weight: 400;
  text-align: right;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 10px;
}

.btn-primary {
  background-color: #EAAE40;
  color: #122C65;
  border: none;
  padding: 14px 50px;
  border-radius: 10px;
  font-family: 'Almarai', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #d49c2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,174,64,0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 50px;
  border-radius: 10px;
  font-family: 'Almarai', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-circle {
  width: 32px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  position: relative;
}

.scroll-circle::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 3px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

.scroll-arrows {
  color: #EAAE40;
  font-size: 16px;
  transform: rotate(90deg);
  animation: arrowFade 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.4; }
}

@keyframes arrowFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  background-image: url('BackgroundTwo.PNG');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 60px 40px 80px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.services-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #EAAE40;
  margin: 10px auto 0;
}

.services-header p {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 40px;
}

.services-grid {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(18,44,101,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 200px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(18,44,101,0.15);
}

.service-card img {
  width: 40%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.service-card-text {
  flex: 1;
  text-align: right;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #122C65;
  margin-bottom: 8px;
  white-space: nowrap;
}

.service-card p {
  font-size: 14px;
  color: #122C65;
  line-height: 1.7;
  font-weight: 600;
}

.navbar-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 68px;
  width: auto;
  pointer-events: none;
}
/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 60, 0.45);
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 40px 0;
}

.about-top {
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
}

.about-highlight {
  color: #EAAE40;
}

.about-line {
  width: 50px;
  height: 3px;
  background: #EAAE40;
  margin: 16px 0 24px;
}

.about-text p {
  font-size: 18px;
  color: #ffffff;
  line-height: 2;
  max-width: 550px;
  text-align: right;
 
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.08);
  border-radius: 20px 20px 0 0;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.15);
  
}

.about-card {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.about-card:last-child {
  border-right: none;
}

.about-card:hover {
  background: rgba(255,255,255,0.05);
}

.about-card-icon {
  margin-bottom: 16px;
}

.about-card-icon i {
  font-size: 40px;
  color: #EAAE40;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #EAAE40;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.8;
}

/* ===== CUSTOMER JOURNEY ===== */
.customer-journey {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  background-image: url('Customerbackground.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 150px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: 0;

}

.journey-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.journey-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}

.journey-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #EAAE40;
}

.highlight-dark {
  color: #122C65;
}

.journey-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.journey-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  width: 100%;
  flex-wrap: nowrap;
}

.journey-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.step-number {
  font-size: 22px;
  font-weight: 900;
  color: #EAAE40;
}

.step-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  border: none;
}

.step-number {
  font-size: 28px !important;
}
.step-circle::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    #122C65 0deg 180deg,
    #EAAE40 180deg 360deg
  );
  z-index: 0;
}

.step-circle img {
  position: relative;
  z-index: 2;
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* دائرة بيضاء فوق الحد */
.step-circle::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
}

.journey-step h3 {
  font-size: 15px;
  font-weight: 800;
  color: #122C65;
}

.journey-step p {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  max-width: 140px;
}

.step-arrow {
  font-size: 28px;
  color: #EAAE40;
  margin-top: 55px;
  letter-spacing: -4px;
  .faq-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 40px;
  overflow: hidden;
}


}/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  min-height: 100vh;
  background-image: url('about.jpg');
  background-size: cover;
  background-position: right -400px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  padding-top: 100px;
   
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 242, 247, 0.1);
  z-index: 0;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 40px;
  direction: ltr;
  align-items: start;
  margin-bottom: 30px;
}
.contact-info {
  text-align: right;
}
.contact-info h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.contact-info h2 .highlight { color: #EAAE40; }
.contact-info h2 .dark { color: #122C65; }

.contact-info .subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.gold-line {
  width: 50px;
  height: 3px;
  margin-right: 0;
 margin-left: auto;
  background: #EAAE40;
  margin-bottom: 24px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(18,44,101,0.08);
  margin-top: 60px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i { font-size: 18px; color: #122C65; }

.info-text strong {
  font-size: 20px;
  font-weight: 700;
  color: #122C65;
  display: block;
}

.info-text span { font-size: 15px; color: #888; }

.social-section { margin-top: 20px; text-align: center;
margin-top: 60px; }

.social-section p {
  font-size: 13px;
  font-weight: 700;
  color: #122C65;
  margin-bottom: 10px;
 
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #122C65;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}

.social-links a:hover {
  background: #EAAE40;
  transform: scale(1.1);
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(18,44,101,0.12);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #122C65;
  display: block;
  margin-bottom: 6px;
}

.input-wrapper { position: relative; }

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Almarai', sans-serif;
  font-size: 13px;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
  direction: rtl;
  background: #fafafa;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #EAAE40;
  background: #fff;
}

.input-wrapper textarea {
  height: 100px;
  resize: none;
  padding-top: 12px;
}

.input-wrapper.textarea-wrap i {
  top: 16px;
  transform: none;
}

.phone-row { display: flex; gap: 10px; }

.phone-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Almarai', sans-serif;
  color: #333;
  background: #fafafa;
  white-space: nowrap;
  cursor: pointer;
}

.phone-code i { font-size: 14px; color: #aaa; }
.phone-row .input-wrapper { flex: 1; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: #122C65;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Almarai', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 6px;
}

.btn-submit:hover {
  background: #EAAE40;
  transform: translateY(-2px);
}

.btn-submit i { font-size: 18px; }

.contact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(18,44,101,0.07);
  transition: transform 0.2s;
}

.feature-item:hover { transform: translateY(-3px); }

.feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #e8eef8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i { font-size: 20px; color: #122C65; }
.feature-item:last-child .feature-icon i { color: #EAAE40; }

.feature-text strong {
  font-size: 18px;
  font-weight: 800;
  color: #122C65;
  display: block;
}

.feature-text span { font-size: 11px; color: #888; }
.info-text a {
  text-decoration: none;
  color: inherit;
}
.phone-code {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Almarai', sans-serif;
  font-size: 13px;
  color: #122C65;
  font-weight: 700;
  background: #fafafa;
  cursor: pointer;
  outline: none;
  min-width: 100px;
  max-width: 120px;
  text-align: center;
  letter-spacing: 3px;
}

.input-wrapper input {
  text-align: right;
}

.form-group label {
  text-align: right;
  display: block;
}
.faq-section {

  justify-content: center;
    background-image: url('AskBackground.PNG');
  background-size: cover;
  background-position: right center;
    position: relative;
  min-height: 100vh;
  padding: 80px 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.faq-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 245, 255, 0);
}

.faq-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 46px;
  font-weight: 900;
  color: #122C65;
}

.faq-highlight { color: #EAAE40; }

.faq-line {
  width: 50px;
  height: 3px;
  background: #EAAE40;
  margin: 12px auto 16px;
}

.faq-header p {
  font-size: 15px;
  color: #666;
}

.faq-search-wrap {
  position: relative;
  margin-bottom: 30px;
}

.faq-search {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Almarai', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  background: #fff;
  direction: rtl;
  transition: border-color 0.3s;
}

.faq-search:focus { border-color: #EAAE40; }

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #aaa;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(18,44,101,0.06);
  transition: box-shadow 0.3s;
}

.faq-item.hidden { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  direction: rtl;
}

.faq-question span {
  font-size: 15px;
  font-weight: 700;
  color: #122C65;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff7e6;
  color: #EAAE40;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  margin-right: 12px;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid #f0f0f0;
   font-family: 'Almarai', sans-serif;
    font-size: 15px;
  direction: rtl;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-top: 14px;
}

.faq-item.open .faq-icon {
  background: #122C65;
  color: #fff;
  transform: rotate(45deg);
}

.faq-item.open .faq-answer { display: block; }

.faq-item.open {
  box-shadow: 0 4px 20px rgba(18,44,101,0.12);
  border: 1.5px solid #e0e8ff;
}
.faq-list {
  
  padding-left: 4px;
}
.faq-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-direction: row;
  direction: rtl;
  margin-top: 20px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
 
}

.faq-footer-text {
  text-align: right;
}

.faq-footer p {
  font-size: 15px;
  font-weight: 800;
  color: #122C65;
  margin: 0 0 2px 0;
}

.faq-footer span {
  font-size: 12px;
  color: #888;
}


.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EAAE40;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Almarai', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.faq-contact-btn i {
  font-size: 18px;
}
.faq-contact-btn:hover {
  background: #122C65;
}

.faq-contact-btn i {
  font-size: 18px;
}
/* ===== FOOTER ===== */
.footer {
  background: #F9E1AF;
  color: #073372;
  padding: 50px 40px 0;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: rgba(7,51,114,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(7,51,114,0.2);
  direction: rtl;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
  border: none;
  border-radius: 0;
  padding: 0;
  filter: none;
}

.footer-brand p {
  font-size: 13px;
  color: #073372;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #073372;
  color: #F9E1AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #0a4a9e;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 800;
  color: #073372;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(7,51,114,0.2);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #073372;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a::before {
  content: '←';
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-links ul li a:hover {
  color: #073372;
  opacity: 1;
  padding-right: 4px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  direction: rtl;
}

.footer-contact-item i {
  font-size: 18px;
  color: #073372;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item strong {
  font-size: 13px;
  color: #073372;
  display: block;
  font-weight: 700;
}

.footer-contact-item span {
  font-size: 11px;
  color: rgba(7,51,114,0.65);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(7,51,114,0.7);
}
/* زر الإغلاق مخفي على الديسكتوب */
.mobile-close-btn {
  display: none;
}

/* عناصر الجوال مخفية على الديسكتوب */
.contact-info-mobile,
.contact-social-mobile {
  display: none;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ========================================
   MOBILE RESPONSIVE - MAX 768px
   تعديلات الجوال فقط - لا تأثير على الديسكتوب
   ======================================== */

@media (max-width: 768px) {

  /* ===== NAVBAR ===== */
  .navbar {
    height: 80px;
    min-height: 80px;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }
  body {
    padding-top: 0px;
  }

  .nav-container {
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 0 16px;
    gap: 12px;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 3;
  }

  .logo-img {
    height: 90px;
    margin-top: 10px;
  }

  .navbar-corner {
    display: none;
  }
  

  /* زر الهامبرغر - يسار */
  .hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    order: 1;
  }

  .hamburger-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #122C65;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* القائمة المنسدلة - مستقلة كاملة */
  .nav-links {
  display: none;
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  background: rgba(18, 44, 101, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(18,44,101,0.3);
  z-index: 999;
  flex-direction: column;
  padding: 12px 0 20px;
  border-top: 2px solid #EAAE40;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.nav-links li a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff !important;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-links li:last-child a {
  border-bottom: none;
}
.nav-links.mobile-open {
  display: flex !important;
}

.nav-links li a:hover {
  background: rgba(234,174,64,0.15);
  color: #EAAE40 !important;
  padding-right: 30px;
}

  .nav-links li a::after {
    display: none;
  }

  /* زر إغلاق القائمة */
  .mobile-close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    display: none !important;
  }

  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    order: 1;
    margin-top: 10px;
  }

  .lang-selected {
    padding: 5px 8px;
    font-size: 11px;
    gap: 4px;
  }

  .lang-text {
    display: none;
  }
  .lang-icon {
  width: 30px !important;
  height: 30px !important;
}

.lang-icon svg {
  width: 100% !important;
  height: 100% !important;
}

  .btn-join {
    padding: 6px 12px;
    font-size: 12px;
    display: none;
  }

  /* ===== HERO ===== */
  
   .hero {
  height: 100svh !important;
  min-height: unset !important;
  margin-top: 0 !important;
}
  

  .hero-img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
  }

  .hero-overlay {
    background: rgba(10,20,50,0.55);
  }

  .hero-content {
    padding: 70px 20px 40px;
    justify-content: center;
    align-items: center;
    direction: ltr;
  }

  .hero-text {
    max-width: 100%;
    text-align: right;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 40px !important;
    line-height: 1.5;
    text-align: right;
    width: 100%;
  }

  .hero-desc {
    font-size: 13px;
    text-align: right;
    width: 100%;
  }
  .faq-footer p {
  font-size: 25px !important;
}

.faq-footer span {
  font-size: 17px !important;
}
.faq-contact-btn {
  font-size: 16px !important;
  padding: 14px 24px !important;
}

.faq-contact-btn i {
  font-size: 22px !important;
}

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-self: flex-end;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 26px !important;
    font-size: 16px !important;
  }

  /* ===== SERVICES ===== */
  .services {
    padding: 40px 16px 60px;
  
  }

  .services-header h2 {
    font-size: 40px !important;
  }

  .services-header p {
    font-size: 20px !important;
    margin-bottom: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 14px;
  }

  .service-card {
    flex-direction: row;
    min-height: unset;
    padding: 16px 14px;
    gap: 14px;
  }

  .service-card img {
    width: 150px !important;
    height: 150px !important;
    flex-shrink: 0;
  }

  .service-card h3 {
    font-size: 30px !important;
    white-space: normal;
  }

  .service-card p {
    font-size: 20px !important;
  }

  /* ===== CUSTOMER JOURNEY ===== */
  .customer-journey {
    clip-path: none;
    padding-bottom: 60px;
  }

  .journey-container {
    padding: 40px 16px;
  }

  .journey-header h2 {
    font-size: 40px;
  }
  .journey-header p {
  font-size: 20px;
}

  .journey-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 16px;
  }

  .journey-step {
    width: 100%;
  }
  

  /* السهم يشير للأسفل */
  .step-arrow {
    transform: rotate(90deg) scaleX(-1);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    display: block;
    text-align: center;
    color: #EAAE40;
    letter-spacing: -4px;
  }

  .step-circle {
    width: 130px;
    height: 130px;
  }

  .step-circle img {
    width: 48px;
    height: 48px;
  }

  .journey-step h3 {
    font-size: 30px !important;
  }

  .journey-step p {
    font-size: 20px !important;
    max-width: 240px;
  }

  /* ===== ABOUT ===== */
  .about-container {
    padding: 50px 20px 0;
  }

  .about-text h2 {
    font-size: 40px !important;
  }

  .about-text p {
    font-size: 20px !important;
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card {
    padding: 20px 14px;

  }

  .about-card h3 {
    font-size: 25px !important;
  }

  .about-card p {
    font-size: 18px !important;
  }

  /* ===== FAQ ===== */
  .faq-section {
    padding: 50px 16px;
    min-height: unset;
  }

  .faq-header h2 {
    font-size: 40px !important;
  }

  .faq-header p {
    font-size: 20px !important;
  }

  .faq-question span {
    font-size: 28px !important;
  }

  .faq-answer p {
    font-size: 20px !important;
    line-height: 1.8;
  }
 .faq-search-wrap {
  min-height: 60px !important;
  font-size: 18px !important;
}

.faq-search {
  font-size: 25px !important;
  height: 50px !important;
  padding: 18px 20px !important;
}

.faq-search-icon {
  font-size: 22px !important;
}


  /* ===== CONTACT ===== */
  .contact-section {
    padding: 40px 10px 10px;
    background-position: center;
    min-height: unset;
  }

  .contact-info h2 {
    font-size: 35px !important;
  }

  .contact-info > p {
    font-size: 20px !important;
  }

  .form-group label {
    font-size: 20px !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 20px !important;
  }

  .btn-submit {
    font-size: 20px !important;
    padding: 14px !important;
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    direction: rtl;
  }

  /* إخفاء العناصر الأصلية على الجوال */
  .contact-visual {
    display: none;
  }

  /* ترتيب: العنوان أولاً */
  .contact-info {
    order: 1;
    text-align: right;
  }

  /* إخفاء info-card والسوشيال من موضعهم الأصلي */
  .contact-info .info-card {
    display: none;
  }

  .contact-info .social-section {
    display: none;
  }

  /* الفورم ثانياً */
  .contact-form-card {
    order: 2;
  }

  /* مربعات الدعم ثالثاً */
  .contact-features {
    order: 3;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* بطاقة المعلومات رابعاً */
  .contact-info-mobile {
    display: flex;
    order: 4;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(18,44,101,0.08);
  }

  /* السوشيال خامساً */
  .contact-social-mobile {
    display: block;
    order: 5;
    text-align: center;
    padding: 10px 0;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .info-card {
    margin-top: 0;
  }

  .feature-item {
    padding: 14px 12px;
    gap: 10px;
  }

  .feature-text strong {
    font-size: 17px;
  }

  .feature-text span {
    font-size: 15px;
  }

  .phone-row {
    flex-direction: row;
    gap: 8px;
  }

  .phone-code {
    min-width: 80px;
    max-width: 95px;
    font-size: 12px;
    padding: 11px 8px;
    letter-spacing: 1px;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 36px 20px 0;
    background-color: #F9E1AF;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 24px;
  }

  .footer-logo {
    width: 160px;
    margin-bottom: 2px;
  }

  .footer-brand p {
    font-size: 20px !important;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 20px !important;
  }

  .footer-links ul li a {
    font-size: 20px !important;
  }

  .footer-contact-item strong {
    font-size: 20px !important;
  }

  .footer-contact-item span {
    font-size: 20px !important;
  }

  .footer-bottom {
    padding: 14px 0;
  }

  .footer-bottom p {
    font-size: 18px !important;
  }

  .contact-form-card {
    width: 100%;
    border-radius: 12px;
    margin: 0;
    padding: 20px 16px;
  }

  /* ===== SCROLL INDICATOR ===== */
  .scroll-indicator {
    bottom: 3px;
  }
}

/* ===== SMALL PHONES - MAX 400px ===== */
@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 50px !important;
  }

  .btn-primary,
  .btn-secondary {
    padding: 15px 16px;
    font-size: 13px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .contact-features {
    grid-template-columns: 1fr;
  }
  .feature-icon i {
  font-size: 30px !important;
}
.contact-info-mobile .info-icon i {
  font-size: 30px !important;
}

.contact-info-mobile strong {
  font-size: 15px !important;
}

.contact-info-mobile span,
.contact-info-mobile a {
  font-size: 14px !important;
}
}

/* ===== TABLET / IPAD - 769px to 1024px ===== */
@media (min-width: 769px) and (max-width: 1024px) {

  .nav-links li a {
    font-size: 11px;
    padding: 5px 5px;
  }

  .btn-join {
    font-size: 11px;
    padding: 7px 10px;
  }

  .hero-text h1 {
    font-size: 28px !important;
  }

  .hero-desc {
    font-size: 14px !important;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 30px !important;
    font-size: 14px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .journey-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }

  .journey-step {
    width: 40%;
  }

  .journey-step h3 {
    font-size: 16px !important;
  }

  .journey-step p {
    font-size: 13px !important;
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .about-text h2 {
    font-size: 36px !important;
  }

  .about-text p {
    font-size: 15px !important;
  }

  .faq-question span {
    font-size: 14px !important;
  }

  .faq-answer p {
    font-size: 13px !important;
  }

  .contact-top {
    flex-direction: column !important;
    gap: 20px;
  }

  .contact-visual {
    display: none !important;
  }

  .contact-features {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
  }

  .services-header h2 {
    font-size: 28px !important;
  }

  .services-header p {
    font-size: 15px !important;
  }

  .service-card h3 {
    font-size: 15px !important;
  }

  .service-card p {
    font-size: 12px !important;
  }
}
