.elementor-8470 .elementor-element.elementor-element-25f001b{--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;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-34b5ed0 *//* ============================================
   INSULATION FOAM (فوم عایق) - RTL Persian Website
   Color Palette:
     - Industrial Blue:      #1B3A5C
     - Slate Grey:           #546E7A
     - Construction Orange:  #E8712A (CTA/Energy)
     - Light backgrounds:    #F5F7FA, #FFFFFF
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-blue: #1B3A5C;
  --color-blue-dark: #0F2540;
  --color-blue-light: #2A5580;
  --color-slate: #546E7A;
  --color-slate-light: #78909C;
  --color-orange: #E8712A;
  --color-orange-dark: #D45A1A;
  --color-orange-light: #F28A4A;
  --color-bg: #F5F7FA;
  --color-bg-alt: #FFFFFF;
  --color-text: #2D3748;
  --color-text-light: #718096;
  --color-border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Vazir', 'Yekan', 'Tahoma', sans-serif;
  direction: rtl;
  text-align: right;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
}

.btn--primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 113, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn--outline:hover {
  background: var(--color-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue);
}

.header__logo-accent {
  color: var(--color-orange);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--color-orange);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 0.88rem;
  padding: 10px 22px;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-blue);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__menu-toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle--active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #F5F7FA 0%, #EBF0F5 50%, #F0F4F8 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.hero__badge {
  display: inline-block;
  background: rgba(27, 58, 92, 0.08);
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-blue-dark);
  margin-bottom: 20px;
}

.text-accent {
  color: var(--color-orange);
  position: relative;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-orange);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero__image-placeholder {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  padding: 20px;
}

.hero__image-placeholder svg {
  width: 100%;
  height: auto;
}

.hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232, 113, 42, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header__tag {
  display: inline-block;
  background: rgba(232, 113, 42, 0.1);
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.section-header__text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card__list li {
  font-size: 0.88rem;
  color: var(--color-text);
  padding-right: 20px;
  position: relative;
}

.feature-card__list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.6;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #EBF0F5 100%);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card:hover .product-card__image {
  background: rgba(232, 113, 42, 0.04);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}

.product-card__badge--blue {
  background: var(--color-blue);
}

.product-card__image {
  padding: 24px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.product-card__image svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.product-card__body {
  padding: 28px;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-blue-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-card__spec {
  font-size: 0.8rem;
  background: var(--color-bg);
  color: var(--color-slate);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.product-card__price {
  display: flex;
  flex-direction: column;
}

.product-card__price-label {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.product-card__price-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-blue-dark);
}

.product-card__price-value small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.product-card__footer .btn {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content .section-header__tag {
  display: inline-block;
  margin-bottom: 16px;
}

.about__content .section-header__title {
  text-align: right;
  margin-bottom: 20px;
}

.about__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 36px;
}

.about__counters {
  display: flex;
  gap: 40px;
}

.about__counter {
  display: flex;
  flex-direction: column;
}

.about__counter-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-orange);
}

.about__counter-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.about__image-placeholder {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--color-border);
}

.about__image-placeholder svg {
  width: 100%;
  height: auto;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
  color: #fff;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact .section-header__title {
  color: #fff;
  text-align: right;
  margin-bottom: 16px;
}

.contact__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__detail svg {
  flex-shrink: 0;
}

.contact__detail-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact__detail-value {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.contact__form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  direction: rtl;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(232, 113, 42, 0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10L6 8z' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

.form-group select option {
  background: var(--color-blue-dark);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__form .btn--block {
  margin-top: 8px;
  font-size: 1rem;
  padding: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .header__logo {
  margin-bottom: 16px;
}

.footer__brand .header__logo-text {
  color: #fff;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__links span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-orange);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.2rem;
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 32px 24px;
    gap: 20px;
    z-index: 999;
  }

  .header__nav--open {
    display: flex;
  }

  .header__nav-link {
    font-size: 1.1rem;
    padding: 8px 0;
  }

  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image-wrapper {
    max-width: 360px;
  }

  .features__grid,
  .products__grid {
    grid-template-columns: 1fr;
  }

  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__counters {
    gap: 24px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero__stat {
    flex-basis: calc(50% - 10px);
  }

  .section-header__title {
    font-size: 1.6rem;
  }

  .features,
  .products,
  .about,
  .contact {
    padding: 56px 0;
  }

  .product-card__footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .product-card__footer .btn {
    text-align: center;
  }

  .contact__form {
    padding: 24px;
  }

  .about__counters {
    flex-wrap: wrap;
  }

  .about__counter {
    flex-basis: calc(50% - 12px);
  }
}/* End custom CSS */