.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-15698 .elementor-element.elementor-element-e92239e img{border-radius:15px 15px 15px 15px;}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-alert .elementor-alert-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-alert .elementor-alert-description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-15698 .elementor-element.elementor-element-b592a97 .elementor-alert-title{color:#FF0000;font-family:"IRANSans", Sans-serif;font-size:24px;font-weight:600;}.elementor-15698 .elementor-element.elementor-element-b592a97 .elementor-alert-description{color:#FF0000;font-size:22px;font-weight:700;}.elementor-15698 .elementor-element.elementor-element-b592a97{--dismiss-icon-size:0px;}/* Start custom CSS for text-editor, class: .elementor-element-59f0e2b */@import url('https://cdn.fontcdn.ir/Font/Persian/IranSans/IranSans.css');

:root {
  --blue: #1766d1;
  --teal: #0ea5a4;
  --gradient: linear-gradient(135deg, #dceffd, #e6fdf9);
  --bg: #f7fafc;
  --text: #263240;
  --muted: #64748b;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* 🌟 ساختار کلی */
.shk-wrapper {
  font-family: 'IRANSans', Tahoma, sans-serif;
  direction: rtl;
  background: var(--bg);
  padding: 22px;
  max-width: 980px;
  margin: 0 auto;
  box-sizing: border-box;
  line-height: 1.95;
}

/* 💬 مقدمه */
.shk-intro {
  background: var(--gradient);
  border: 1px solid rgba(23, 102, 209, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 22px;
}
.shk-intro h2 {
  color: var(--blue);
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 12px;
}
.shk-intro p {
  color: var(--text);
  font-size: 16px;
  line-height: 2.1;
}

/* 🧱 آکاردئون */
.shk-accordion {
  display: block;
}

.shk-item {
  background: linear-gradient(180deg, #ffffff, #f2f9ff);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: 0 6px 22px rgba(23, 102, 209, 0.08);
  overflow: hidden;
  border-right: 6px solid #cde7ff;
  transition: all 0.3s ease;
}
.shk-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(23, 102, 209, 0.15);
}
.shk-item.active {
  border-right: 6px solid var(--teal);
  background: linear-gradient(180deg, #f8fffe, #e8fbf9);
  box-shadow: 0 8px 32px rgba(14, 165, 164, 0.18);
}

/* 🧩 سربرگ آکاردئون */
.shk-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(23,102,209,0.05), rgba(14,165,164,0.04));
  transition: all 0.25s ease;
}
.shk-item.active .shk-head {
  background: linear-gradient(90deg, rgba(14,165,164,0.15), rgba(23,102,209,0.08));
}
.shk-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #dbeafe, #ccfbf1);
  color: var(--blue);
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(23, 102, 209, 0.1);
}
.shk-title {
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
  margin: 0;
}

/* 📖 محتوای آکاردئون */
.shk-body {
  display: none;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 2.1;
  padding: 20px 26px;
  border-top: 1px solid #e2e8f0;
  animation: slideDown 0.4s ease forwards;
}
.shk-item.active .shk-body {
  display: block;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 🔘 دکمه‌ها */
.shk-actions {
  margin-top: 18px;
}
.shk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(23, 102, 209, 0.2);
  transition: all 0.2s ease;
}
.shk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14, 165, 164, 0.25);
}

/* 📱 فوتر */
.shk-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 15px;
  background: linear-gradient(90deg, #f0fdfa, #e0f2fe);
  border-radius: 10px;
  padding: 14px;
  color: var(--text);
  box-shadow: 0 3px 12px rgba(14,165,164,0.08);
  font-weight: 600;
}

/* 📱 تنظیمات موبایل */
@media (max-width: 768px) {
  .shk-wrapper { padding: 16px; line-height: 2.05; }
  .shk-icon { width: 42px; height: 42px; font-size: 20px; }
  .shk-title { font-size: 17px; }
  .shk-body { font-size: 15px; padding: 16px 18px; }
  .shk-btn { font-size: 14px; padding: 9px 14px; }
  .shk-intro h2 { font-size: 22px; }
  .shk-intro p { font-size: 15px; line-height: 2.1; }
}/* End custom CSS */
/* Start custom CSS */.shirgodai-realestate-section {
    font-family: 'IRANSans', 'Roboto', Arial, sans-serif;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 25px;
    background: linear-gradient(135deg, #f6f9fc 0%, #e0e8f0 100%);
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    direction: rtl;
    text-align: right;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shirgodai-realestate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(52, 152, 219, 0.12), transparent 70%);
    z-index: 0;
}

.intro-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.intro-header h2 {
    font-size: 2.8rem;
    color: #e74c3c;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.intro-header p {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 2.3;
    padding: 0 20px;
    font-weight: 500;
}

.steps {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e6eb;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.steps:hover {
    transform: translateY(-5px);
}

.steps h3 {
    font-size: 2.1rem;
    color: #e74c3c;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
}

.steps h3 span {
    background: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.steps h4 {
    font-size: 1.6rem;
    color: #e74c3c;
    font-weight: 700;
    margin: 25px 0 20px;
    padding-right: 10px;
}

p, li {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 2.5;
    margin-right: 15px;
    min-height: 2.2rem;
    font-weight: 400;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 20px;
    position: relative;
    padding-right: 25px;
}

ul li::before {
    content: '';
}

ul ul {
    margin-right: 30px;
}

@media (max-width: 768px) {
    .shirgodai-realestate-section {
        padding: 35px 15px;
    }
    .intro-header h2 {
        font-size: 2.2rem;
        line-height: 1.5;
    }
    .intro-header p {
        font-size: 1.1rem;
        line-height: 2.6;
    }
    .steps h3 {
        font-size: 1.8rem;
    }
    .steps h4 {
        font-size: 1.4rem;
    }
    .steps {
        padding: 30px;
        margin-bottom: 40px;
    }
    p, li {
        font-size: 1.05rem;
        line-height: 2.8;
    }
    .intro-header, .steps {
        margin-bottom: 35px;
    }
    ul li {
        margin-bottom: 15px;
    }
}/* End custom CSS */