:root{
  --primary:#8b5cf6;
  --primary-dark:#7c3aed;
  --accent:#10b981;
  --accent-dark:#059669;
  --bg:#ffffff;
  --gray:#f9fafb;
  --soft-gray:#f3f4f6;
  --soft-border:#e5e7eb;
  --text:#1f2937;
  --muted:#6b7280;
  --white:#ffffff;
  --purple-light:#ede9fe;
  --green-light:#d1fae5;
  --shadow:0 18px 35px rgba(139,92,246,0.12);
  --radius-lg:26px;
  --radius:18px;
}

/* ============================================
   DESKTOP STYLES ONLY
   ============================================
   این فایل فقط شامل استایل‌های دسکتاپ است
   استایل‌های موبایل در فایل mobile-responsive.css هستند
   ============================================ */

*{box-sizing:border-box;}
html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  margin:0;
  padding:0;
  font-family:'Vazirmatn',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  /* Prevent horizontal scroll on iOS */
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
  position:relative;
  /* Fix for sticky header */
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
img{
  max-width:100%;
  display:block;
  height:auto;
}
a{
  text-decoration:none;
  color:inherit;
  -webkit-tap-highlight-color:rgba(139,92,246,0.2);
}
button{
  -webkit-tap-highlight-color:rgba(139,92,246,0.2);
  touch-action:manipulation;
}
.container{
  width:min(1180px,92%);
  margin:0 auto;
}
/* ============================================
   HEADER STYLES - طراحی مینیمال و زیبا
   ============================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  width:100%;
  background:#ffffff;
  box-shadow:0 2px 20px rgba(139,92,246,0.08);
  transition:all 0.3s ease;
  border-bottom:1px solid rgba(139,92,246,0.1);
}

.header-container{
  width:min(1400px,95%);
  margin:0 auto;
  padding:12px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  flex-wrap:nowrap;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  text-decoration:none;
  color:inherit;
}

.logo-visual{
  width:48px;
  height:48px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 12px rgba(139,92,246,0.25);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

.logo-visual::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity:0;
  transition:opacity 0.3s ease;
}

.logo:hover .logo-visual{
  transform:scale(1.05) rotate(5deg);
  box-shadow:0 6px 20px rgba(139,92,246,0.4);
}

.logo:hover .logo-visual::before{
  opacity:1;
}

.logo-icon{
  font-size:26px;
  line-height:1;
  z-index:1;
}

.logo-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.logo-title{
  font-weight:700;
  font-size:17px;
  margin:0;
  line-height:1.2;
  background:linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.logo-subtitle{
  font-size:10px;
  color:var(--muted);
  margin:0;
  line-height:1.3;
  font-weight:500;
}



.nav-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:4px;
  background:transparent;
  flex:1;
  justify-content:center;
  flex-wrap:wrap;
}

.nav-link{
  position:relative;
  display:flex;
  align-items:center;
  gap:5px;
  padding:8px 14px;
  color:var(--text);
  font-weight:500;
  font-size:14px;
  text-decoration:none;
  border-radius:8px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space:nowrap;
}

.nav-link svg{
  width:11px;
  height:11px;
  transition:transform 0.3s ease;
}

.nav-link::before{
  content:'';
  position:absolute;
  bottom:6px;
  right:50%;
  transform:translateX(50%);
  width:0;
  height:2px;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  border-radius:2px;
  transition:width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover{
  color:var(--primary);
  background:rgba(139,92,246,0.06);
}

.nav-link:hover::before{
  width:calc(100% - 36px);
}

.nav-link:hover svg{
  transform:rotate(180deg);
}

/* Submenu Styles */
.has-submenu{
  position:relative;
}

.submenu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  background:var(--white);
  border-radius:16px;
  padding:12px 0;
  min-width:220px;
  box-shadow:0 12px 40px rgba(139,92,246,0.15),
             0 4px 16px rgba(139,92,246,0.1);
  border:1px solid rgba(139,92,246,0.1);
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index:1000;
  list-style:none;
  margin:0;
}

.has-submenu:hover .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.submenu li{
  margin:0;
}

.submenu a{
  display:block;
  padding:12px 20px;
  color:var(--text);
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  transition:all 0.3s ease;
  border-right:3px solid transparent;
  position:relative;
}

.submenu a::before{
  content:'';
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:0;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  transition:width 0.3s ease;
  border-radius:0 4px 4px 0;
}

.submenu a:hover{
  background:rgba(139,92,246,0.08);
  color:var(--primary);
  padding-right:24px;
}

.submenu a:hover::before{
  width:3px;
}

/* ============================================
   HEADER ACTIONS
   ============================================ */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  flex-wrap:nowrap;
  overflow:visible;
  min-width:fit-content;
}

.action-btn{
  width:38px;
  height:38px;
  border-radius:9px;
  border:1.5px solid rgba(139,92,246,0.15);
  background:var(--white);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  flex-shrink:0;
}

.action-btn svg{
  width:18px;
  height:18px;
}

.action-btn:hover{
  background:rgba(139,92,246,0.08);
  color:var(--primary);
  border-color:rgba(139,92,246,0.3);
  transform:translateY(-1px);
}

.cart-badge{
  position:absolute;
  top:-6px;
  left:-6px;
  background:var(--accent);
  color:var(--white);
  font-size:11px;
  font-weight:700;
  width:20px;
  height:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--white);
  box-shadow:0 2px 8px rgba(16,185,129,0.4);
}

.btn-primary{
  padding:10px 20px;
  border-radius:10px;
  border:none;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:var(--white);
  font-weight:600;
  font-size:13px;
  cursor:pointer;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 3px 12px rgba(139,92,246,0.25);
  font-family:inherit;
  white-space:nowrap;
  flex-shrink:0;
  min-width:fit-content;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(139,92,246,0.35);
  background:linear-gradient(135deg, #7c3aed, #059669);
}

.btn-primary:active{
  transform:translateY(0);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-around;
  width:44px;
  height:44px;
  background:transparent;
  border:2px solid rgba(139,92,246,0.2);
  border-radius:12px;
  cursor:pointer;
  padding:0;
  z-index:1000;
  gap:5px;
  transition:all 0.3s ease;
}

.mobile-menu-toggle span{
  width:24px;
  height:3px;
  background:var(--primary);
  border-radius:3px;
  transition:all 0.3s ease;
  display:block;
  margin:0 auto;
}

.mobile-menu-toggle:hover{
  border-color:var(--primary);
  background:rgba(139,92,246,0.08);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform:rotate(45deg) translate(7px,7px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
  transform:translateX(-10px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform:rotate(-45deg) translate(7px,-7px);
}

/* Desktop Only */
@media(min-width:1025px){
  .mobile-menu-toggle{
    display:none !important;
  }
  
  .main-nav{
    display:flex !important;
  }
  
  .header-actions{
    display:flex !important;
  }
}
.cta-btn{
  background:#ffffff;
  color:#8b5cf6;
  padding:12px 28px;
  border-radius:999px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
  box-shadow:0 8px 24px rgba(139,92,246,0.3);
  min-height:44px;
  min-width:120px;
  cursor:pointer;
  border:none;
  font-family:inherit;
  font-size:15px;
}
.cta-btn.small{padding:10px 24px;min-width:100px;}
.cta-btn:hover,.cta-btn:focus{
  background:#f3f4f6;
  color:#7c3aed;
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(139,92,246,0.4);
  outline:none;
}
.cta-btn:active{
  transform:translateY(0);
}
.outline-btn.light{
  border:2px solid var(--primary);
  color:var(--primary);
  padding:10px 24px;
  border-radius:999px;
  font-weight:600;
  background:rgba(139,92,246,0.1);
}
/* ============================================
   HERO SECTION - طراحی مینیمال
   ============================================ */
.hero-wrap{
  position:relative;
  background:linear-gradient(135deg, 
    rgba(139,92,246,0.05) 0%,
    rgba(16,185,129,0.05) 100%);
  padding:80px 0 60px;
  min-height:600px;
  display:flex;
  align-items:center;
  z-index:0;
  overflow:hidden;
}
.hero{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:36px;
  align-items:center;
}
.hero-content h1{
  margin:0 0 20px;
  font-size:48px;
  line-height:1.3;
  font-weight:700;
  color:var(--text);
}
.gradient-text{
  background:linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #c4b5fd 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  text-shadow:none;
  filter:drop-shadow(0 0 20px rgba(139,92,246,0.6));
}
.brand-name{
  color:var(--text);
  display:block;
  margin-top:10px;
  font-size:48px;
  line-height:1.3;
}
.hero-content p{
  color:var(--muted);
  margin-bottom:32px;
  font-size:17px;
  line-height:1.75;
  max-width:560px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:36px;
}
.cta-btn{
  padding:12px 28px;
  font-size:15px;
  font-weight:600;
  background:#ffffff;
  color:#8b5cf6;
  box-shadow:
    0 8px 30px rgba(255,255,255,0.3),
    0 0 20px rgba(139,92,246,0.2);
}
.cta-btn:hover{
  background:#f8f9fa;
  color:#7c3aed;
  box-shadow:
    0 12px 40px rgba(255,255,255,0.4),
    0 0 30px rgba(139,92,246,0.3);
}
.outline-btn{
  border:2px solid rgba(139,92,246,0.5);
  color:#ffffff;
  padding:12px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  transition:all 0.3s;
  background:rgba(139,92,246,0.2);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  min-height:44px;
  min-width:120px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:inherit;
  text-shadow:0 1px 10px rgba(139,92,246,0.5);
  box-shadow:0 4px 20px rgba(139,92,246,0.3);
}
.outline-btn:hover,.outline-btn:focus{
  background:rgba(139,92,246,0.4);
  color:#ffffff;
  border-color:rgba(139,92,246,0.8);
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(139,92,246,0.5);
  outline:none;
  text-shadow:0 2px 15px rgba(139,92,246,0.7);
}
.outline-btn:active{
  transform:translateY(0);
}
.hero-stats{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:0;
}
.stat-item{
  display:flex;
  flex-direction:column;
  gap:6px;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  padding:16px 24px;
  border-radius:16px;
  border:1px solid rgba(139,92,246,0.3);
  box-shadow:
    0 8px 32px rgba(139,92,246,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 20px rgba(139,92,246,0.1);
  border:1px solid rgba(255,255,255,0.9);
  box-shadow:0 8px 24px rgba(0,0,0,0.15),inset 0 1px 0 rgba(255,255,255,0.9);
  transition:all 0.3s ease;
  flex:1;
  min-width:120px;
}
.stat-item:hover{
  transform:translateY(-4px);
  box-shadow:
    0 12px 40px rgba(139,92,246,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 30px rgba(139,92,246,0.2);
  background:rgba(255,255,255,0.15);
  border-color:rgba(139,92,246,0.5);
}
.stat-number{
  font-size:24px;
  font-weight:700;
  background:linear-gradient(135deg, #ffffff 0%, #e0d4ff 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
  filter:drop-shadow(0 0 10px rgba(139,92,246,0.5));
}
.stat-label{
  font-size:12px;
  color:rgba(255,255,255,0.8);
  font-weight:500;
  letter-spacing:0.3px;
}
.hero-image-wrapper{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(139,92,246,0.15);
  display:flex;
  align-items:center;
  border:1px solid rgba(139,92,246,0.1);
  background:#ffffff;
}

.hero-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
}
.hero-image-wrapper:hover{
  box-shadow:0 15px 50px rgba(139,92,246,0.2);
  transform:translateY(-3px);
  transition:all 0.3s ease;
}

.features-strip{
  background:var(--bg);
  padding:80px 0;
  position:relative;
  z-index:0;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:40px;
}
.feature-card{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-radius:22px;
  padding:32px;
  border:1px solid rgba(255,255,255,0.85);
  box-shadow:0 6px 20px rgba(23,32,42,0.05),inset 0 1px 0 rgba(255,255,255,0.95);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  display:flex;
  flex-direction:column;
  gap:20px;
  position:relative;
  overflow:hidden;
}
.feature-header{
  display:flex;
  align-items:center;
  gap:16px;
  flex-shrink:0;
}
.feature-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s ease;
}
.feature-card:hover::before{
  transform:scaleX(1);
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 32px rgba(23,32,42,0.1),inset 0 1px 0 rgba(255,255,255,0.95);
  background:rgba(255,255,255,0.85);
  border-color:rgba(139,92,246,0.15);
}
.feature-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  transition:all 0.4s ease;
}
.feature-icon::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:14px;
  padding:1.5px;
  background:linear-gradient(135deg,var(--accent),var(--primary));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask-composite:exclude;
  opacity:0;
  transition:opacity 0.4s ease;
}
.feature-card:hover .feature-icon::before{
  opacity:1;
}
.icon-1{
  background:linear-gradient(135deg,rgba(139,92,246,0.15),rgba(139,92,246,0.08));
  color:var(--primary);
}
.icon-2{
  background:linear-gradient(135deg,rgba(16,185,129,0.15),rgba(16,185,129,0.08));
  color:var(--accent);
}
.icon-3{
  background:linear-gradient(135deg,rgba(139,92,246,0.15),rgba(16,185,129,0.08));
  color:var(--primary);
}
.feature-icon svg{
  width:28px;
  height:28px;
  stroke-width:2;
  transition:transform 0.4s ease;
}
.feature-card:hover .feature-icon svg{
  transform:scale(1.08) rotate(3deg);
}
.feature-card h3{
  margin:0;
  font-size:20px;
  font-weight:700;
  color:var(--text);
  line-height:1.4;
  letter-spacing:-0.2px;
  flex:1;
}
.feature-card p{
  margin:0;
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
  letter-spacing:0;
  flex:1;
}

.section{
  padding:68px 0;
  position:relative;
  z-index:0;
}
.light-bg{background:var(--gray);}
.gray-strip{background:linear-gradient(180deg,#f8f9fb 0%,#e4e7ef 100%);}
.section-header{text-align:center;margin-bottom:42px;}
.section-header span{
  font-size:16px;
  font-weight:700;
  color:var(--primary);
  letter-spacing:1px;
  position:relative;
  display:inline-block;
  padding-bottom:10px;
  line-height:1.4;
}
.section-header span::after{
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:50px;
  height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:2px;
}
.section-header h2{margin:18px 0 12px;font-size:30px;font-weight:700;line-height:1.3;}
.section-header p{color:var(--muted);max-width:620px;margin:0 auto;}
.align-right{text-align:right;}
.align-right span::after{
  left:auto;
  right:0;
  transform:none;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.service-card{
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 32px rgba(23,32,42,0.08),
             0 2px 8px rgba(23,32,42,0.04),
             inset 0 1px 0 rgba(255,255,255,0.9),
             inset 0 -1px 0 rgba(255,255,255,0.5);
  border:1px solid rgba(255,255,255,0.9);
  transform:translateZ(0);
  will-change:transform;
  display:flex;
  flex-direction:column;
  transition:all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  position:relative;
}
.service-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  opacity:0;
  transition:opacity 0.5s ease;
  z-index:1;
}
.service-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 16px 48px rgba(23,32,42,0.12),
             0 4px 16px rgba(139,92,246,0.1),
             inset 0 1px 0 rgba(255,255,255,0.95),
             inset 0 -1px 0 rgba(255,255,255,0.6);
  background:rgba(255,255,255,0.95);
  border-color:rgba(139,92,246,0.2);
}
.service-card:hover::before{
  opacity:1;
}
.service-image{
  width:100%;
  height:240px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(135deg,#f1f3f8 0%,#eef1f5 100%);
}
.service-image::after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(180deg,
             rgba(255,255,255,0) 0%,
             rgba(139,92,246,0.08) 50%,
             rgba(16,185,129,0.06) 100%);
  pointer-events:none;
  transition:opacity 0.5s ease;
  z-index:1;
}
.service-card:hover .service-image::after{
  opacity:0.7;
}
.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.7s cubic-bezier(0.4,0,0.2,1),filter 0.5s ease;
  filter:brightness(0.98) contrast(1.02);
}
.service-card:hover img{
  transform:scale(1.08);
  filter:brightness(1.05) contrast(1.05);
}
.service-content{
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:18px;
  flex:1;
  position:relative;
}
.service-content h3{
  margin:0;
  font-size:22px;
  font-weight:700;
  color:var(--text);
  line-height:1.3;
  transition:color 0.3s ease;
  letter-spacing:-0.3px;
}
.service-card:hover .service-content h3{
  color:var(--primary);
}
.service-content p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
  flex:1;
  transition:color 0.3s ease;
}
.service-card:hover .service-content p{
  color:#556172;
}
.service-link{
  color:var(--primary);
  font-weight:600;
  font-size:15px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  margin-top:auto;
  position:relative;
  width:fit-content;
}
.service-link::after{
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  transition:width 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius:2px;
}
.service-link:hover{
  color:var(--accent);
  gap:12px;
  transform:translateX(-4px);
}
.service-link:hover::after{
  width:100%;
}

.quality-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;align-items:center;
}
.quality-card{
  background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow);display:grid;
  grid-template-columns:160px 1fr;
}
.quality-card img{height:100%;object-fit:cover;}
.quality-card div{padding:30px;}
.quality-card h3{margin:0 0 14px;}
.quality-card p{color:var(--muted);}
.quality-list{
  display:grid;gap:18px;
}
.quality-item{
  background:var(--white);border-radius:var(--radius);
  padding:22px;display:flex;gap:18px;align-items:center;
  box-shadow:var(--shadow);
}
.quality-item span{
  width:46px;height:46px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:var(--accent);color:var(--white);font-weight:700;
}
.about-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
  align-items:center;
}
.about-content{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.about-content .section-header{
  margin-bottom:0;
  text-align:right;
}
.about-content .section-header span{
  font-size:16px;
}
.about-content .section-header h2{
  margin:12px 0 8px;
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.5px;
}
.about-content p{
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
  margin:0;
  text-align:right;
}
.about-image{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 12px 40px rgba(23,32,42,0.12),
             0 4px 12px rgba(23,32,42,0.08);
  transition:transform 0.4s ease,box-shadow 0.4s ease;
  max-width:90%;
  margin:0 auto;
}
.about-image:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 48px rgba(23,32,42,0.15),
             0 6px 16px rgba(139,92,246,0.1);
}
.about-image::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg,
             rgba(139,92,246,0.05) 0%,
             rgba(16,185,129,0.06) 100%);
  pointer-events:none;
  z-index:1;
  opacity:0;
  transition:opacity 0.4s ease;
}
.about-image:hover::before{
  opacity:1;
}
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:var(--radius-lg);
  transition:transform 0.6s cubic-bezier(0.4,0,0.2,1),filter 0.4s ease;
  filter:brightness(0.98) contrast(1.02);
}
.about-image:hover img{
  transform:scale(1.05);
  filter:brightness(1.05) contrast(1.05);
}
.logo-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:24px;
  padding:0;
}
.brand-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 20px;
  min-height:120px;
  background:rgba(255,255,255,0.7);
  border-radius:16px;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  border:1px solid rgba(255,255,255,0.9);
  position:relative;
  overflow:hidden;
}
.brand-logo::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg,
             rgba(139,92,246,0.03) 0%,
             rgba(255,61,68,0.03) 100%);
  opacity:0;
  transition:opacity 0.4s ease;
}
.brand-logo:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(23,32,42,0.1),
             0 2px 8px rgba(139,92,246,0.08);
  background:rgba(255,255,255,0.9);
  border-color:rgba(139,92,246,0.15);
}
.brand-logo:hover::before{
  opacity:1;
}
.logo-strip img{
  height:60px;
  width:auto;
  max-width:100%;
  max-height:60px;
  object-fit:contain;
  filter:grayscale(40%) opacity(0.85);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  z-index:1;
  display:block;
}
.brand-logo:hover img{
  filter:grayscale(0%) opacity(1);
  transform:scale(1.08);
}

.cities-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
  direction:rtl;
}
.cities-content > *{
  direction:rtl;
}
.testimonials-slider{
  direction:ltr;
}
.testimonials-slider .slider-container{
  direction:ltr;
}
.testimonials-section{
  display:flex;
  flex-direction:column;
  gap:20px;
  height:100%;
  min-height:100%;
}
.testimonials-section h3{
  font-size:20px;
  font-weight:700;
  color:var(--text);
  margin:0 0 12px;
  padding-bottom:8px;
  border-bottom:2px solid var(--primary);
}
.testimonials-slider{
  position:relative;
  width:100%;
  flex:1;
  display:flex;
  flex-direction:column;
  min-height:200px;
}
.slider-container{
  overflow:hidden;
  position:relative;
  width:100%;
  border-radius:12px;
  flex:1;
  min-height:160px;
  display:block;
}
.slider-track{
  display:flex;
  flex-direction:row;
  transition:transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
  position:relative;
  width:auto;
  height:100%;
  direction:ltr;
  gap:0;
  left:0;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform:translate3d(0,0,0);
}
.slider-track .testimonial-item{
  flex:0 0 100%;
  width:100%;
  max-width:100%;
  min-width:100%;
  box-sizing:border-box;
  direction:rtl;
  opacity:1;
  flex-shrink:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
  min-height:160px;
}
.slider-controls{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:12px;
}
.slider-btn{
  width:44px;
  height:44px;
  min-width:44px;
  min-height:44px;
  border-radius:50%;
  border:2px solid var(--accent);
  background:rgba(255,255,255,0.95);
  color:var(--accent);
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  line-height:1;
  box-shadow:0 2px 8px rgba(23,32,42,0.08),
             0 1px 3px rgba(139,92,246,0.1);
  position:relative;
  overflow:hidden;
  z-index:10;
  pointer-events:auto;
  user-select:none;
  touch-action:manipulation;
  -webkit-tap-highlight-color:rgba(139,92,246,0.3);
}
.slider-btn::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:var(--accent);
  transform:translate(-50%,-50%);
  transition:width 0.3s ease,height 0.3s ease;
}
.slider-btn:hover,.slider-btn:focus{
  background:var(--accent);
  color:var(--white);
  transform:scale(1.08);
  box-shadow:0 4px 12px rgba(139,92,246,0.25),
             0 2px 6px rgba(139,92,246,0.15);
  outline:none;
  border-color:var(--accent);
}
.slider-btn:hover::before{
  width:100%;
  height:100%;
}
.slider-btn > *{
  position:relative;
  z-index:2;
}
.slider-btn:active{
  transform:scale(0.96);
}
.slider-btn:disabled{
  opacity:1;
  cursor:pointer;
  pointer-events:auto;
}
.testimonials-section h3{
  font-size:22px;
  font-weight:700;
  color:var(--text);
  margin:0 0 24px;
  padding-bottom:12px;
  border-bottom:2px solid var(--accent);
}
.testimonial-item{
  background:linear-gradient(135deg,
             rgba(255,255,255,0.75) 0%,
             rgba(255,255,255,0.6) 100%);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:14px;
  padding:18px;
  border:1px solid rgba(255,255,255,0.9);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  width:100%;
  box-sizing:border-box;
  height:100%;
  display:flex;
  flex-direction:column;
  box-shadow:0 4px 16px rgba(23,32,42,0.06),
             0 1px 4px rgba(23,32,42,0.04),
             inset 0 1px 0 rgba(255,255,255,0.8);
  position:relative;
  overflow:hidden;
}
.testimonial-item::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:60px;
  height:60px;
  background:radial-gradient(circle,
             rgba(139,92,246,0.1) 0%,
             transparent 70%);
  border-radius:50%;
  transform:translate(20%,-20%);
  pointer-events:none;
}
.testimonial-item:hover{
  background:linear-gradient(135deg,
             rgba(255,255,255,0.9) 0%,
             rgba(255,255,255,0.8) 100%);
  box-shadow:0 6px 20px rgba(23,32,42,0.1),
             0 2px 8px rgba(139,92,246,0.12),
             inset 0 1px 0 rgba(255,255,255,0.9);
  border-color:rgba(139,92,246,0.2);
}
.slider-track .testimonial-item:hover{
  transform:none;
}
.testimonial-content{
  display:flex;
  flex-direction:column;
  height:100%;
  justify-content:space-between;
  position:relative;
  z-index:1;
}
.testimonial-text{
  margin-bottom:16px;
  flex:1;
  display:flex;
  align-items:flex-start;
}
.testimonial-text p{
  color:var(--text);
  font-size:16px;
  line-height:1.7;
  font-style:italic;
  position:relative;
  padding-right:20px;
  margin:0;
  font-weight:400;
}
.testimonial-text p::before{
  content:'"';
  position:absolute;
  right:0;
  top:-8px;
  font-size:36px;
  color:var(--primary);
  opacity:0.25;
  font-family:serif;
  line-height:1;
  font-weight:300;
}
.testimonial-author{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(23,32,42,0.08);
}
.author-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,
             var(--primary) 0%,
             rgba(139,92,246,0.8) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 2px 8px rgba(139,92,246,0.25),
             0 1px 3px rgba(139,92,246,0.15);
  position:relative;
  overflow:hidden;
}
.author-avatar::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  background:radial-gradient(circle,
             rgba(255,255,255,0.3) 0%,
             transparent 70%);
  transform:translate(-50%,-50%);
  pointer-events:none;
}
.author-avatar span{
  color:var(--white);
  font-size:14px;
  font-weight:700;
  position:relative;
  z-index:1;
  letter-spacing:0.5px;
}
.author-info{
  display:flex;
  flex-direction:column;
  gap:3px;
  flex:1;
}
.author-info strong{
  color:var(--text);
  font-size:13px;
  font-weight:700;
  letter-spacing:0.2px;
}
.author-info span{
  color:var(--muted);
  font-size:11px;
  font-weight:500;
}
.cities-list{
  background:linear-gradient(135deg,
             rgba(255,255,255,0.7) 0%,
             rgba(255,255,255,0.5) 100%);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:12px;
  padding:16px;
  border:1px solid rgba(255,255,255,0.9);
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:200px;
  box-shadow:0 4px 16px rgba(23,32,42,0.06),
             0 1px 4px rgba(23,32,42,0.04),
             inset 0 1px 0 rgba(255,255,255,0.8);
  position:relative;
  overflow:hidden;
}
.cities-list::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:100px;
  height:100px;
  background:radial-gradient(circle,
             rgba(139,92,246,0.08) 0%,
             transparent 70%);
  border-radius:50%;
  transform:translate(30%,-30%);
  pointer-events:none;
}
.cities-list h3{
  font-size:20px;
  font-weight:700;
  color:var(--text);
  margin:0 0 12px;
  padding-bottom:8px;
  border-bottom:2px solid var(--primary);
  position:relative;
  z-index:1;
}
.cities-items{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  flex:1;
  position:relative;
  z-index:1;
}
.cities-items li{
  color:var(--text);
  font-size:14px;
  padding:10px 14px;
  background:linear-gradient(135deg,
             rgba(255,255,255,0.8) 0%,
             rgba(255,255,255,0.6) 100%);
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.9);
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  padding-right:36px;
  font-weight:500;
  box-shadow:0 2px 6px rgba(23,32,42,0.05),
             0 1px 2px rgba(23,32,42,0.03);
  display:flex;
  align-items:center;
  overflow:hidden;
}
.cities-items li::before{
  content:'';
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  opacity:0.8;
  transition:all 0.3s ease;
}
.cities-items li::after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:3px;
  height:100%;
  background:linear-gradient(180deg,
             var(--primary) 0%,
             rgba(139,92,246,0.7) 100%);
  opacity:0;
  transition:opacity 0.3s ease;
}
.cities-items li:hover{
  background:linear-gradient(135deg,
             rgba(255,255,255,0.95) 0%,
             rgba(255,255,255,0.85) 100%);
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(23,32,42,0.1),
             0 2px 6px rgba(139,92,246,0.15);
  border-color:rgba(139,92,246,0.3);
}
.cities-items li:hover::before{
  opacity:1;
  transform:translateY(-50%) scale(1.1);
}
.cities-items li:hover::after{
  opacity:1;
}

.goals-strip{background:linear-gradient(180deg,#fef7f7 0%,#ffe5e5 100%);}
.goals-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:24px;
}
.goal-card{
  background:var(--white);border-radius:22px;
  padding:28px;text-align:center;box-shadow:var(--shadow);
}
.goal-card img{width:60px;margin:0 auto 12px;}
.goal-card p{color:var(--muted);font-size:14px;}

.stats-section{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:var(--white);
  padding:54px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:30px;
  text-align:center;
}
.stat h3{margin:0;font-size:38px;}
.stat span{display:block;margin-top:10px;font-weight:500;}

.contact-strip{
  background:var(--bg);
  position:relative;
  overflow:hidden;
}
.contact-strip::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:400px;
  height:400px;
  background:radial-gradient(circle,
             rgba(139,92,246,0.06) 0%,
             transparent 70%);
  border-radius:50%;
  transform:translate(25%,-25%);
  pointer-events:none;
}
.contact-strip::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:300px;
  height:300px;
  background:radial-gradient(circle,
             rgba(255,61,68,0.05) 0%,
             transparent 70%);
  border-radius:50%;
  transform:translate(-20%,20%);
  pointer-events:none;
}
.contact-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
  position:relative;
  z-index:1;
}
.contact-card,
.contact-form{
  background:linear-gradient(135deg,
             rgba(255,255,255,0.85) 0%,
             rgba(255,255,255,0.7) 100%);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:20px;
  padding:36px;
  border:1px solid rgba(255,255,255,0.9);
  box-shadow:0 8px 32px rgba(23,32,42,0.08),
             0 2px 8px rgba(23,32,42,0.04),
             inset 0 1px 0 rgba(255,255,255,0.9);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}
.contact-card::before,
.contact-form::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:100px;
  height:100px;
  background:radial-gradient(circle,
             rgba(139,92,246,0.1) 0%,
             transparent 70%);
  border-radius:50%;
  transform:translate(20%,-20%);
  pointer-events:none;
}
.contact-card:hover,
.contact-form:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(23,32,42,0.12),
             0 4px 12px rgba(139,92,246,0.1),
             inset 0 1px 0 rgba(255,255,255,0.95);
  border-color:rgba(139,92,246,0.2);
}
.contact-card h3,
.contact-form h3{
  font-size:24px;
  font-weight:700;
  color:var(--text);
  margin:0 0 12px;
  padding-bottom:16px;
  border-bottom:2px solid var(--primary);
  position:relative;
  z-index:1;
}
.contact-card p{
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  margin:0 0 24px;
  position:relative;
  z-index:1;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
  position:relative;
  z-index:1;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,255,255,0.6);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.8);
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  padding-right:50px;
}
.contact-list li::before{
  content:'';
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  opacity:0.7;
  transition:opacity 0.3s ease;
}
.contact-list li:nth-child(1)::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}
.contact-list li:nth-child(2)::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E");
}
.contact-list li:nth-child(3)::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.contact-list li:nth-child(4)::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}
.contact-list li:nth-child(5)::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}
.contact-list li.instagram-item{
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
}
.contact-list li.instagram-item:hover{
  transform:none;
  box-shadow:none;
  background:transparent;
}
.instagram-link-inline{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,255,255,0.6);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.8);
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration:none;
  width:100%;
  position:relative;
  padding-right:50px;
}
.instagram-link-inline:hover{
  background:rgba(255,255,255,0.9);
  transform:translateX(-4px);
  box-shadow:0 4px 12px rgba(23,32,42,0.08),
             0 1px 4px rgba(139,92,246,0.15);
  border-color:rgba(139,92,246,0.2);
}
.instagram-link-inline::before{
  content:'';
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B84FF'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  opacity:0.8;
  transition:opacity 0.3s ease;
}
.instagram-link-inline:hover::before{
  opacity:1;
}
.instagram-link-inline strong{
  color:var(--text);
  font-weight:600;
  font-size:14px;
  min-width:100px;
}
.instagram-link-inline span{
  color:var(--muted);
  font-size:14px;
}
.contact-list li:hover{
  background:rgba(255,255,255,0.9);
  transform:translateX(-4px);
  box-shadow:0 4px 12px rgba(23,32,42,0.08),
             0 1px 4px rgba(139,92,246,0.1);
  border-color:rgba(139,92,246,0.2);
}
.contact-list li:hover::before{
  opacity:1;
}
.contact-list li strong{
  color:var(--text);
  font-weight:600;
  font-size:14px;
  min-width:100px;
}
.contact-list li span,
.contact-list li{
  color:var(--muted);
  font-size:14px;
}
.contact-form h3{
  position:relative;
  z-index:1;
}
.contact-form form{
  display:grid;
  gap:18px;
  position:relative;
  z-index:1;
}
input,textarea{
  width:100%;
  padding:16px 18px;
  min-height:44px;
  border:1px solid rgba(217,224,236,0.8);
  border-radius:12px;
  font-family:inherit;
  font-size:15px;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  background:rgba(255,255,255,0.8);
  color:var(--text);
  box-shadow:0 2px 4px rgba(23,32,42,0.03);
  -webkit-appearance:none;
  appearance:none;
  direction:rtl;
  text-align:right;
}
input[type="tel"]{
  direction:rtl;
  text-align:right;
}
input::placeholder,
textarea::placeholder{
  color:var(--muted);
  opacity:0.7;
}
input:focus,textarea:focus{
  border-color:var(--accent);
  outline:none;
  background:rgba(255,255,255,0.95);
  box-shadow:0 0 0 4px rgba(139,92,246,0.12),
             0 4px 12px rgba(23,32,42,0.08);
  transform:translateY(-2px);
}
textarea{
  resize:vertical;
  min-height:140px;
  font-family:inherit;
  line-height:1.6;
}
button.cta-btn{
  border:none;
  cursor:pointer;
  margin-top:4px;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}
button.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(0,0,0,0.25);
}

.site-footer{
  background:var(--bg);
  color:var(--text);
  padding:40px 0 28px;
  margin-top:0;
  position:relative;
  border-top:1px solid rgba(217,224,236,0.5);
}
.footer-top{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:32px;
  margin-bottom:32px;
}
.footer-logo{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.footer-logo .logo-visual{
  width:52px;
  height:52px;
  border-radius:50%;
  box-shadow:0 4px 16px rgba(23,32,42,0.08);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--white);
}
.footer-logo p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  margin:0;
  max-width:280px;
}
.site-footer h4{
  color:var(--text);
  font-size:16px;
  font-weight:700;
  margin:0 0 14px;
  padding-bottom:10px;
  border-bottom:2px solid var(--primary);
  position:relative;
}
.site-footer h4::after{
  content:'';
  position:absolute;
  bottom:-2px;
  right:0;
  width:35px;
  height:2px;
  background:var(--primary);
}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.site-footer ul li{
  transition:all 0.3s ease;
}
.site-footer ul li a{
  color:var(--muted);
  font-size:14px;
  transition:all 0.3s ease;
  display:inline-block;
  position:relative;
  padding-right:18px;
}
.site-footer ul li a::before{
  content:'→';
  position:absolute;
  right:0;
  opacity:0;
  transform:translateX(-5px);
  transition:all 0.3s ease;
  color:var(--primary);
  font-weight:bold;
  font-size:12px;
}
.site-footer ul li:hover a{
  color:var(--primary);
  transform:translateX(-4px);
}
.site-footer ul li:hover a::before{
  opacity:1;
  transform:translateX(0);
}
.site-footer p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  margin:0;
}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  border-top:1px solid rgba(217,224,236,0.6);
  padding-top:20px;
  font-size:13px;
  color:var(--muted);
}
.footer-bottom span{
  transition:color 0.3s ease;
}
.footer-bottom span:hover{
  color:var(--primary);
}

/* ============================================
   تمام استایل‌های موبایل حذف شده‌اند
   استایل‌های موبایل در فایل mobile-responsive.css هستند
   فقط استایل‌های دسکتاپ در این فایل باقی مانده‌اند
   ============================================ */

/* ===== SUBMENU STYLES ===== */
nav ul li.has-submenu {
  position: relative;
}
nav ul li.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.submenu-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}
nav ul li.has-submenu:hover .submenu-arrow {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(23, 32, 42, 0.15),
              0 4px 12px rgba(23, 32, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 12px;
}
nav ul li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li {
  margin: 0;
}
.submenu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
  border-right: 3px solid transparent;
}
.submenu a:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  border-right-color: var(--primary);
  padding-right: 24px;
}

/* ===== SEARCH & CART BUTTONS ===== */
.search-btn,
.cart-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}
.search-btn:hover,
.cart-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}
.cart-count {
  position: absolute;
  top: -6px;
  left: -6px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(23, 32, 42, 0.08),
              0 2px 8px rgba(23, 32, 42, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(23, 32, 42, 0.12),
              0 4px 16px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.25);
}
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}
.product-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f3f8 0%, #eef1f5 100%);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.quick-view-btn,
.add-to-cart-btn {
  padding: 10px 20px;
  border-radius: 24px;
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.quick-view-btn:hover,
.add-to-cart-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}
.rating-count {
  color: var(--muted);
  font-size: 12px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.price-old {
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
}
.price-current {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}
.add-to-cart-btn-mobile {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: auto;
}
.add-to-cart-btn-mobile:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}
