.elementor-25848 .elementor-element.elementor-element-e49a16e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--border-radius:15px 15px 15px 15px;--margin-top:-80px;--margin-bottom:80px;--margin-left:0px;--margin-right:0px;--padding-top:25px;--padding-bottom:25px;--padding-left:25px;--padding-right:25px;}.elementor-25848 .elementor-element.elementor-element-e49a16e:not(.elementor-motion-effects-element-type-background), .elementor-25848 .elementor-element.elementor-element-e49a16e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-25848 .elementor-element.elementor-element-1c7edcc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-around;--gap:40px 40px;--row-gap:40px;--column-gap:40px;}.elementor-25848 .elementor-element.elementor-element-1c7edcc.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-25848 .elementor-element.elementor-element-bd11b6e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--wd-sticky-offset:50px;}@media(max-width:1024px){.elementor-25848 .elementor-element.elementor-element-e49a16e{--flex-direction:column-reverse;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-20px;--margin-bottom:60px;--margin-left:0px;--margin-right:0px;}}@media(max-width:768px){.elementor-25848 .elementor-element.elementor-element-e49a16e{--flex-direction:column-reverse;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:40px;--margin-left:0px;--margin-right:0px;}}@media(min-width:769px){.elementor-25848 .elementor-element.elementor-element-1c7edcc{--width:60%;}.elementor-25848 .elementor-element.elementor-element-bd11b6e{--width:42%;}}@media(max-width:1024px) and (min-width:769px){.elementor-25848 .elementor-element.elementor-element-1c7edcc{--width:100%;}.elementor-25848 .elementor-element.elementor-element-bd11b6e{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-63493a1 *//* إعدادات الألوان لهوية اللاندسكيب */
:root {
  --land-primary: #172E56;
  --land-secondary: #C5AB78;
  --land-text: #2c3e50;
  --land-bg-white: #ffffff;
  --land-bg-gray: #f2f7f5; /* لون مائل للخضرة الفاتحة جداً يناسب الطبيعة */
}

/* حل مشكلة الترحيل والإزاحة في الشاشات الصغيرة */
.dawam-land-wrapper, 
.dawam-land-wrapper * {
  box-sizing: border-box;
}

/* الحاوية الرئيسية */
.dawam-land-wrapper {

  direction: rtl;
  text-align: right;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--land-text);
  line-height: 1.8;
  overflow-x: hidden;
}

/* الأقسام العامة */
.land-section {
  padding: 60px 30px;
  margin-bottom: 40px;
  background: var(--land-bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(23, 46, 86, 0.05);
}

.land-section-title {
  color: var(--land-primary);
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}

.land-section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.15rem;
  margin-bottom: 45px;
}

/* القسم الأول: Hero */
.land-hero {
  text-align: center;
  background: linear-gradient(135deg, var(--land-primary) 0%, #0c1a30 100%);
  color: #fff;
  border-bottom: 6px solid var(--land-secondary);
}

.land-hero .land-main-title {
  color: var(--land-secondary);
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 25px;
}

.land-hero .land-lead-text {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 950px;
  margin: 0 auto;
}

.land-hero strong {
  color: #fff;
  border-bottom: 2px solid var(--land-secondary);
}

/* القسم الثاني: شبكة الخدمات */
.land-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.land-card {
  background: var(--land-bg-gray);
  border: 1px solid #eef2f6;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
}

.land-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--land-secondary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.land-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(197, 171, 120, 0.15);
  background: #fff;
}

.land-card:hover::before {
  transform: scaleY(1);
}

.land-icon {
  font-size: 3.5rem;
  color: var(--land-primary);
  margin-bottom: 15px;
}

.land-card-title {
  color: var(--land-primary);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.land-card-text {
  font-size: 0.95rem;
  color: #555;
}

/* القسم الثالث: المنهجية (Features) */
.land-methodology {
  background: var(--land-bg-gray);
  border-right: 5px solid var(--land-primary);
}

.land-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 850px;
  margin: 0 auto;
}

.land-feature-item {
  background: var(--land-bg-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  font-size: 1.05rem;
  border-right: 4px solid var(--land-secondary);
}

.land-feature-item strong {
  display: block;
  color: var(--land-primary);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* القسم الرابع: الأسئلة الشائعة (Accordion) */
.land-faq-main-title {
  color: var(--land-primary);
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.1rem;
  font-weight: 900;
}

.land-faq-item {
  background: var(--land-bg-white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.land-faq-question {
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--land-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.land-faq-question::-webkit-details-marker {
  display: none;
}

.land-faq-question::after {
  content: '+';
  color: var(--land-secondary);
  font-size: 1.6rem;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.land-faq-item[open] .land-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.land-faq-item[open] {
  border-color: var(--land-secondary);
  box-shadow: 0 4px 15px rgba(23, 46, 86, 0.08);
}

.land-faq-answer {
  padding: 0 25px 25px 25px;
  color: #555;
  border-top: 1px solid #f1f5f9;
  margin-top: 5px;
  padding-top: 20px;
}

/* استعلامات الموبايل المتوافقة */
@media (max-width: 768px) {
  .land-section { 
    padding: 40px 15px; 
  }
  .land-grid {
    grid-template-columns: 1fr; /* يمنع أي ترحيل ويجبر العمود الواحد */
  }
  .land-section-title, .land-hero .land-main-title { 
    font-size: 1.8rem; 
  }
  .land-hero .land-lead-text { 
    font-size: 1rem; 
  }
  .land-faq-question { 
    font-size: 1.05rem; 
    padding: 15px 20px; 
  }
  .land-faq-answer { 
    padding: 0 20px 20px 20px; 
    padding-top: 15px; 
  }
}/* End custom CSS */