.elementor-484 .elementor-element.elementor-element-1f435a3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ec19ee1 *//* ========== Hero Section: Improved ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

.hero-spool {
  position: relative;
  overflow: hidden;
  background: url('https://en.sysarang.com/wp-content/uploads/sites/3/2025/09/JEANS-002-scaled.jpg') center/cover no-repeat;
  padding: 90px 20px 55px;
  text-align: center;
  color: #525050;
  font-family: 'Poppins', sans-serif;
}

/* Floating bubbles */
.hero-spool .shape.circle,
.hero-spool .shape.blob {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  mix-blend-mode: screen;
  z-index: 2;
}
.hero-spool .shape.circle {
  width: 156px;
  height: 156px;
  top: 10%;
  left: 15%;
  animation: floatWide 8s ease-in-out infinite;
}
.hero-spool .shape.blob {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 15%;
  animation: floatAlt 6s ease-in-out infinite;
}

/* Frosted-glass text panel */
.hero-spool .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: rgb(255 255 255 / 53%);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
}

/* Overline */
.hero-spool .overline {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #525050;
  opacity: 0;
  animation: fadeUp 1s .3s both;
  padding: 0 0 12px 0;
}

/* Headline */
.hero-spool .title {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 4px 30px 3px 30px;
  color: #525050;
  opacity: 0;
  animation: fadeUp 1s .6s both;
}
.hero-spool .title-sub {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin: 13px 30px 20px 30px;
  color: #525050;
  opacity: 0;
  animation: fadeUp 1s .8s both;
}

/* Subtitle */
.hero-spool .subtitle {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #525050;
  opacity: 0;
  animation: fadeUp 1s 1s both;
}

/* CTA buttons */
.hero-spool .cta-group {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s both;
}
.hero-spool .cta-group2 {
  padding: 22px 0 0 0;
}
.hero-spool .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  line-height: 1;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  text-align: center;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.hero-spool .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* Primary button */
.hero-spool .btn-primary {
  background: #525050;
  color: #fff;
  border: none;
}
.hero-spool .btn-primary:hover {
  background: #444;
}
/* Secondary button */
.hero-spool .btn-secondary {
  background: transparent;
  color: #525050;
  border: 2px solid #525050;
}
.hero-spool .btn-secondary:hover {
  background: rgba(82,80,80,0.1);
}

/* Highlights */
.hero-spool .highlights {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 2rem;
  z-index: 3;
}
.hero-spool .highlights li {
  text-align: left;
  font-size: 0.9rem;
  color: #525050;
  opacity: 0;
  animation: fadeUp 0.8s ease-out both;
  animation-delay: calc(1.5s + (0.25s * var(--i)));
  border-left: 3px solid rgba(82,80,80,0.2);
  padding-left: 1rem;
}
.hero-spool .highlights strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Caviar Dreams', sans-serif;
  font-weight: 700;
  color: #525050;
}

/* Hide wave */
.hero-spool .wave {
  display: none;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatWide {
  0%,100% { transform: translate(0,0) rotate(0); }
  50%      { transform: translate(40px,-40px) rotate(5deg); }
}
@keyframes floatAlt {
  0%,100% { transform: translate(0,0) rotate(0); }
  25%     { transform: translate(-20px,15px) rotate(-3deg); }
  50%     { transform: translate(0,30px) rotate(0); }
  75%     { transform: translate(20px,15px) rotate(3deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-spool .title {
    font-size: 1.875rem;
  }
  .hero-spool .shape {
    display: none;
  }
  .hero-spool .highlights {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .hero-spool .cta-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-spool .btn {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.5rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b33594f *//* ---------- SECTION 02: SYS JEANS TEASER (3 columns) ---------- */
#section-2-jeans {
  padding: 28px 18px;
  background: transparent;
  color: #525050;
}

.teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 columns */
  gap: 20px;
  align-items: center;
  padding: 6px 12px;
}

/* copy column */
.teaser-overline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #525050;
  margin: 0 0 6px;
}

.teaser-title {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: #222;
}

.teaser-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #525050;
  margin: 0 0 14px;
  line-height: 1.5;
}

.teaser-cta .btn {
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
}

/* media column */
.teaser-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

/* slide-in-right effect */
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* responsive adjustments */
@media (max-width: 900px) {
  .teaser-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
  }
  .teaser-media {
    order: -1;
    margin-bottom: 14px;
  }
  .teaser-title {
    font-size: 1.35rem;
  }
  .teaser-desc {
    font-size: 0.95rem;
  }
  .teaser-cta .btn {
    width: 100%;
    max-width: 360px;
    display: inline-block;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c26c9c3 *//* ---------- SECTION 02: SYSTYLE TEASER (3 columns) ---------- */
#section-2-systyle {
  padding: 28px 18px;
  background: #f0f0f0;
  color: #525050;
}

.teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
  gap: 20px;
  align-items: center;
  padding: 6px 12px;
}

/* copy column */
.teaser-overline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #525050;
  margin: 0 0 6px;
}

.teaser-title {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: #222;
}

.teaser-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #525050;
  margin: 0 0 14px;
  line-height: 1.5;
}

.teaser-cta .btn {
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
}

/* media column */
.teaser-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

/* slide-in-left effect */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

/* responsive adjustments */
@media (max-width: 900px) {
  .teaser-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
  }
  .teaser-media {
    order: -1;
    margin-bottom: 14px;
  }
  .teaser-title {
    font-size: 1.35rem;
  }
  .teaser-desc {
    font-size: 0.95rem;
  }
  .teaser-cta .btn {
    width: 100%;
    max-width: 360px;
    display: inline-block;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d4c0b53 */.sys-fabrics-section {
  background: #fff;
  padding: 5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  color: #333;
  margin-bottom: 1rem;
}

.why-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

.why-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 4rem;
}

.benefit h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.benefit p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.fabric-carousel {
  max-width: 1200px;
  margin: auto;
}

.carousel-title {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.fabric-card {
  flex: 0 0 270px;
  background: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  scroll-snap-align: start;
  text-align: center;
}

.fabric-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.fabric-meta p {
  font-size: 0.95rem;
  color: #444;
  margin: 0.25rem 0;
}

@media (max-width: 768px) {
  .why-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fabric-card {
    flex: 0 0 80%;
  }
}

.fabric-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.75rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b356d6 *//* ---------- ABOUT: SYS Group ---------- */
.about-sys {
  background: #f0f0f0 !important;
  padding: 48px 18px !important;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.about-sys .about-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 4fr 2.5fr 2.5fr 2.5fr; /* TEXT + 3 IMAGES */
  gap: 24px;
  align-items: start;
}

/* TEXT COLUMN */
.about-sys .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.about-sys .about-title {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 2.25rem;
  margin: 0 0 1rem;
  color: #333;
}

.about-sys .about-lead,
.about-sys .about-features li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #525050;
  margin: 0 0 0.75rem;
}

/* IMAGE COLUMNS */
.about-sys .about-image-wrapper {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 300px;
  border-radius: 10px;
  box-sizing: border-box;
}

.about-sys .about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* Fade & slide animations */
.fade-up, .slide-in-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right { transform: translateX(40px); }
.fade-up.animate { opacity: 1; transform: translateY(0); }
.slide-in-right.animate { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-sys .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .about-sys .about-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-sys .about-text {
    text-align: center;
    padding: 0 12px;
  }
  .about-sys .about-image-wrapper { min-height: 220px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d7d79f5 */.made-in-iran-section {
  background: #fff;
  padding: 4rem 1rem;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.heritage-calltoaction {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* --- FIXED vertical image sizing --- */
.image-vertical {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.image-vertical img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

/* --- Landscape image --- */
.image-landscape img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.heritage-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.heritage-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .heritage-calltoaction {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .image-vertical img {
    max-width: 100px;
    max-height: 200px;
    margin: 0 auto;
  }

  .image-landscape img {
    max-height: 220px;
  }

  .heritage-text h2 {
    font-size: 1.6rem;
  }
}/* End custom CSS */