.elementor-452 .elementor-element.elementor-element-149a87c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f61e927 *//* =========================
   Golsar — CSS فوق‌پیشرفته
   (جایگزین/اضافه به CSS قبلی)
   ========================= */

:root{
  --bg0:#060512;
  --bg1:#120a2a;
  --bg2:#1a0f3a;

  --glass: rgba(170, 90, 255, .16);
  --glass2: rgba(255,255,255,.07);
  --stroke: rgba(210, 140, 255, .38);

  --text: rgba(255,255,255,.93);
  --muted: rgba(255,255,255,.70);

  --accent:#b56cff;
  --accent2:#6ee7ff;

  --shadow: 0 26px 90px rgba(0,0,0,.62);
  --shadow2: 0 10px 40px rgba(181,108,255,.18);

  --radius: 22px;
  --radius2: 16px;

  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(181,108,255,.42), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(110,231,255,.22), transparent 55%),
    radial-gradient(900px 700px at 50% 90%, rgba(181,108,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

/* ===== Noise + Light sweep ===== */
.noise{
  position:fixed; inset:-40%;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="120" height="120" filter="url(%23n)" opacity=".35"/></svg>');
  opacity:.08;
  pointer-events:none;
  mix-blend-mode:overlay;
  animation: drift 14s linear infinite;
  transform: translateZ(0);
}
@keyframes drift{
  0%{ transform:translate3d(-2%,-2%,0); }
  100%{ transform:translate3d(2%,2%,0); }
}

/* ===== Subtle animated aurora ===== */
body::before{
  content:"";
  position:fixed; inset:-20%;
  background:
    radial-gradient(closest-side at 20% 20%, rgba(181,108,255,.35), transparent 60%),
    radial-gradient(closest-side at 80% 30%, rgba(110,231,255,.22), transparent 60%),
    radial-gradient(closest-side at 50% 80%, rgba(181,108,255,.18), transparent 65%);
  filter: blur(22px);
  opacity:.55;
  pointer-events:none;
  animation: aurora 10s var(--ease) infinite alternate;
}
@keyframes aurora{
  from{ transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to{ transform: translate3d(1.5%, 1%, 0) scale(1.06); }
}

/* ===== Layout ===== */
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:28px 18px 40px;
}

/* ===== Glass panel base ===== */
.panel, .about, .topbar{
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(181,108,255,.12));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position:relative;
  overflow:hidden;
}
.panel::before, .about::before, .topbar::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(181,108,255,.45), transparent 60%),
    radial-gradient(520px 240px at 90% 20%, rgba(110,231,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  opacity:.85;
  pointer-events:none;
}
.panel::after, .about::after, .topbar::after{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.18),
    rgba(255,255,255,0));
  opacity:.0;
  transform: rotate(0deg);
  transition: opacity .35s var(--ease);
  pointer-events:none;
}
.panel:hover::after, .about:hover::after, .topbar:hover::after{
  opacity:.55;
  animation: spin 2.2s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg);} }

/* ===== Topbar ===== */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  position:sticky;
  top:14px;
  z-index:10;
  background: linear-gradient(135deg, rgba(181,108,255,.18), rgba(255,255,255,.06));
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:220px;
}
.logo{
  width:42px; height:42px;
  border-radius:14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.38), transparent 45%),
    linear-gradient(135deg, rgba(181,108,255,.95), rgba(110,231,255,.55));
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 30px rgba(181,108,255,.25);
  position:relative;
  overflow:hidden;
}
.logo::before{
  content:"";
  position:absolute; inset:-60%;
  background: conic-gradient(from 180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.35),
    rgba(255,255,255,0));
  opacity:.7;
  animation: spin 3.2s linear infinite;
}
.logo::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(18px 18px at 70% 70%, rgba(255,255,255,.18), transparent 60%);
  opacity:.9;
}

.nav{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-size:13px;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  user-select:none;
  box-shadow: 0 0 0 rgba(181,108,255,0);
}
.chip:hover{
  transform: translateY(-2px);
  background: rgba(181,108,255,.14);
  border-color: rgba(181,108,255,.45);
  box-shadow: 0 14px 40px rgba(181,108,255,.18);
}

/* ===== Hero grid ===== */
.hero{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; }
}

/* ===== Panel inner ===== */
.panel-inner{
  position:relative;
  padding:18px;
  height:100%;
}

/* ===== Map stage ===== */
.mapStage{
  height:420px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 320px at 50% 20%, rgba(181,108,255,.22), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.35));
  position:relative;
  overflow:hidden;
}

/* 3D grid */
.grid3d{
  position:absolute; inset:-60px;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(900px) rotateX(64deg) translateY(140px);
  opacity:.30;
  animation: gridMove 7s var(--ease) infinite;
  filter: drop-shadow(0 18px 40px rgba(181,108,255,.12));
}
@keyframes gridMove{
  0%,100%{ transform: perspective(900px) rotateX(64deg) translateY(140px) translateX(0); }
  50%{ transform: perspective(900px) rotateX(64deg) translateY(140px) translateX(22px); }
}

/* map hint */
.mapHint{
  position:absolute; left:14px; top:14px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.78);
  font-size:12px;
  display:flex; gap:8px; align-items:center;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.mapHint svg{ opacity:.95; }

/* Countries (placeholder) */
.country{
  position:absolute;
  width:160px; height:110px;
  border-radius:28px;
  background: linear-gradient(135deg, rgba(181,108,255,.30), rgba(110,231,255,.12));
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  transform-style:preserve-3d;
  animation: floaty 4.8s var(--ease) infinite;
}
.country::before{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg, rgba(255,255,255,0), rgba(255,255,255,.22), rgba(255,255,255,0));
  opacity:.35;
  transform: rotate(0deg);
  animation: spin 3.6s linear infinite;
  pointer-events:none;
}
.country::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(120px 70px at 30% 20%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(120px 70px at 70% 80%, rgba(255,255,255,.10), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0) translateZ(0) rotateZ(-1deg); }
  50%{ transform: translateY(-12px) translateZ(22px) rotateZ(1deg); }
}
.country .label{
  position:absolute; left:14px; bottom:12px;
  font-size:12px; color:rgba(255,255,255,.90);
  letter-spacing:.02em;
  text-shadow: 0 18px 40px rgba(0,0,0,.55);
  font-weight:700;
}

/* positions */
.ru{ left:18%; top:22%; width:210px; height:130px; }
.am{ left:46%; top:42%; width:150px; height:95px; }
.az{ left:58%; top:30%; width:170px; height:105px; }
.ge{ left:62%; top:46%; width:140px; height:90px; }
.tr{ left:34%; top:58%; width:220px; height:130px; }

/* ===== Products ===== */
.productsHeader{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.kicker{
  font-size:12px;
  color:rgba(255,255,255,.72);
  letter-spacing:.16em;
  text-transform:uppercase;
  margin:0 0 6px;
}
.title{ margin:0; font-size:22px; letter-spacing:.2px; }
.subtitle{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  max-width:52ch;
}

.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color:rgba(255,255,255,.78);
  font-size:12px;
  white-space:nowrap;
}

.productGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 520px){
  .productGrid{ grid-template-columns:1fr; }
}

/* Product card */
.productCard{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(181,108,255,.10));
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: transform .26s var(--ease), border-color .26s var(--ease), background .26s var(--ease), box-shadow .26s var(--ease);
  min-height:170px;
  box-shadow: 0 0 0 rgba(181,108,255,0);
  transform: translateZ(0);
}
.productCard:hover{
  transform: translateY(-6px);
  border-color: rgba(181,108,255,.55);
  background: linear-gradient(135deg, rgba(181,108,255,.18), rgba(110,231,255,.08));
  box-shadow: 0 26px 90px rgba(0,0,0,.45), 0 18px 60px rgba(181,108,255,.14);
}

/* glossy sweep */
.productCard::after{
  content:"";
  position:absolute; inset:-60%;
  background: conic-gradient(from 180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.26),
    rgba(255,255,255,0));
  opacity:0;
  transform: rotate(0deg);
  transition: opacity .25s var(--ease);
  pointer-events:none;
}
.productCard:hover::after{
  opacity:.75;
  animation: spin 1.35s linear infinite;
}

.productMedia{
  height:108px;
  background: rgba(0,0,0,.18);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.productMedia img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.06);
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.productCard:hover .productMedia img{
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.10);
}
.productMedia .shine{
  position:absolute; inset:-50%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.26) 50%, transparent 70%);
  transform: translateX(-35%) rotate(10deg);
  opacity:0;
  transition: opacity .2s var(--ease);
}
.productCard:hover .productMedia .shine{
  opacity:1;
  animation: sweep 1.1s var(--ease);
}
@keyframes sweep{
  0%{ transform: translateX(-45%) rotate(10deg); }
  100%{ transform: translateX(45%) rotate(10deg); }
}

.productBody{
  padding:12px 12px 14px;
  display:flex; flex-direction:column; gap:8px;
}
.productName{
  font-weight:800;
  font-size:14px;
  letter-spacing:.2px;
  margin:0;
}
.productDesc{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
  min-height:34px;
}

.productCTA{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  margin-top:auto;
}
.ctaBtn{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:rgba(255,255,255,.90);
  font-size:12px;
  user-select:none;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.productCard:hover .ctaBtn{
  transform: translateY(-1px);
  border-color: rgba(181,108,255,.45);
  background: rgba(181,108,255,.12);
}
.ctaBtn svg{ width:16px; height:16px; opacity:.95; }

/* ===== About ===== */
.about{
  margin-top:16px;
  padding:18px;
  border-radius:var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(181,108,255,.10));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position:relative;
  overflow:hidden;
}
.about h2{ margin:0 0 8px; font-size:18px; }
.about p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}
.about .row{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:12px;
  align-items:center;
  justify-content:space-between;
}
.about .links{ display:flex; gap:10px; flex-wrap:wrap; }
.linkPill{
  text-decoration:none;
  color:rgba(255,255,255,.86);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-size:12px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.linkPill:hover{
  transform: translateY(-2px);
  border-color: rgba(181,108,255,.55);
  background: rgba(181,108,255,.12);
}

/* ===== Footer ===== */
.footer{
  margin-top:14px;
  color:rgba(255,255,255,.55);
  font-size:12px;
  text-align:center;
}

/* ===== Modal ===== */
.modalOverlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:50;
  backdrop-filter: blur(10px);
}
.modalOverlay.show{ display:flex; }

.modal{
  width:min(560px, 100%);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(181,108,255,.16));
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 120px rgba(0,0,0,.75);
  overflow:hidden;
  position:relative;
  transform: translateY(10px) scale(.98);
  opacity:0;
  animation: pop .22s var(--ease) forwards;
}
@keyframes pop{
  to{ transform: translateY(0) scale(1); opacity:1; }
}

.modalHead{
  padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.modalHead .h{ display:flex; gap:10px; align-items:center; }
.modalHead .h strong{ font-size:14px; }

.closeBtn{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:rgba(255,255,255,.92);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.closeBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(181,108,255,.55);
  background: rgba(181,108,255,.12);
}

.modalBody{
  padding:16px;
  display:flex; flex-direction:column; gap:12px;
}
.modalBody p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.phoneBox{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  padding:14px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.phoneBox .num{
  font-weight:900;
  letter-spacing:.02em;
  font-size:16px;
  text-shadow: 0 18px 50px rgba(181,108,255,.18);
}

.actions{
  display:flex; gap:10px; flex-wrap:wrap;
}
.actionBtn{
  flex:1;
  min-width:180px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  cursor:pointer;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
  display:flex; align-items:center; justify-content:center; gap:10px;
  text-decoration:none;
  font-size:13px;
  user-select:none;
}
.actionBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(181,108,255,.55);
  background: rgba(181,108,255,.12);
  box-shadow: 0 18px 60px rgba(181,108,255,.14);
}
.actionBtn svg{ width:16px; height:16px; opacity:.95; }

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior:auto !important; }
}/* End custom CSS */