.elementor-2 .elementor-element.elementor-element-9d54b01{--display:flex;--margin-top:-50px;--margin-bottom:-60px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:-0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2 .elementor-element.elementor-element-9d54b01{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-aaaaf5e */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.sarmayesh-home {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  direction: rtl;
  text-align: right;
  color: #333;
  overflow-x: hidden;
}

.sarmayesh-home * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========== هیرو ========== */
.hero-section {
  position: relative;
  background: url('http://sarmayesh24.ir/wp-content/uploads/home-01-scaled.jpg') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 30, 60, 0.88) 0%, rgba(0, 120, 150, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.hero-content h2 {
  font-size: 22px;
  font-weight: 500;
  color: #80deea;
  margin-bottom: 20px;
  line-height: 1.8;
}

.hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,188,212,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,188,212,0.5);
  background: linear-gradient(135deg, #0097a7, #00838f);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ========== هدر بخش‌ها ========== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 15px;
}

.header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00bcd4, #0097a7);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.header-line-right {
  margin: 0 0 20px 0;
}

.section-header p {
  font-size: 15px;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ========== خدمات ========== */
.services-section {
  padding: 80px 20px;
  background: #f8fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e8eef2;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bcd4, #0097a7);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,188,212,0.15);
  border-color: #00bcd4;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 2;
}

/* ========== گالری ========== */
.gallery-section {
  padding: 80px 20px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,30,60,0.9), transparent);
  padding: 40px 20px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* ========== مشکلات رایج ========== */
.problems-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f9fa 0%, #e8f5f7 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  border: 1px solid #e0eff2;
  position: relative;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,188,212,0.12);
}

.problem-number {
  font-size: 42px;
  font-weight: 900;
  color: rgba(0,188,212,0.15);
  margin-bottom: 10px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0097a7;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0f7fa;
}

.problem-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 2.1;
}

/* ========== چرا ما ========== */
.why-us-section {
  padding: 80px 20px;
  background: #fff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 25px 20px;
}

.why-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.9;
}

/* ========== تماس ========== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d2137 0%, #0a3d5c 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.contact-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-top: 3px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #80deea;
}

.contact-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
}

.contact-text a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  direction: ltr;
  display: inline-block;
}

.contact-text a:hover {
  color: #80deea;
}

.cta-box {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}

.cta-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-box > p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 25px;
  line-height: 1.8;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  direction: ltr;
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-button:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.03);
  border-color: rgba(255,255,255,0.6);
}

.cta-button.cta-mobile {
  font-size: 16px;
  background: transparent;
  border-color: rgba(255,255,255,0.2);
}

/* ========== نوار اطلاعات ========== */
.info-bar {
  padding: 50px 20px;
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.info-bar-item {
  padding: 10px;
}

.info-bar-number {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.info-bar-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ========== ریسپانسیو ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-content h2 {
    font-size: 18px;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .info-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-section {
    min-height: 420px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .info-bar-grid {
    grid-template-columns: 1fr;
  }
  .info-bar-number {
    font-size: 34px;
  }
}/* End custom CSS */