@font-face {
  font-family: 'BMorvarid';
  src: url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/other font/pixelboy-BMorvarid.woff') format('woff'),
       url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/other font/pixelboy-BMorvarid.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'BYagut';
  src: url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/other font/pixelboy-BYagut.woff') format('woff'),
       url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/other font/pixelboy-BYagut.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Vazir';
  src: url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/vazir-font-v18.0.0/Vazir.woff2') format('woff2'),
       url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/vazir-font-v18.0.0/Vazir.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Vazir';
  src: url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/vazir-font-v18.0.0/Vazir-Bold.woff2') format('woff2'),
       url('/assets/font/collection-persian-web-font-(www.pixelboy.ir)/vazir-font-v18.0.0/Vazir-Bold.ttf') format('truetype');
  font-weight: bold;
}

:root {
  --pink: #ff6fa5;
  --pink-deep: #e8457f;
  --pink-pale: #fff0f5;
  --pink-glass: rgba(255, 111, 165, 0.12);
  --dark: #1a1018;
  --text: #2c1a24;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: 'Vazir', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background:#fff;
  font-family: Tahoma, sans-serif;
  overflow-x:hidden;
}



.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;
  transition: all .4s ease;
}

.nav-inner{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 40px;
  transition: all .4s ease;
  
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.navbar.scrolled .nav-inner{
  padding:18px 40px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(255,111,165,0.14);
  border-bottom: 1px solid rgba(255,111,165,0.1);
}


.logo{
  font-family:'Playfair Display', serif;
  font-size:30px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:-0.5px;
  display:flex;
  align-items:center;
  gap:1px;
}
.logo .star{ color: #ffb6d9; }
.logo .beauty{ color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.25); }
.navbar.scrolled .logo .star{ color:var(--pink); }
.navbar.scrolled .logo .beauty{ color:var(--text); text-shadow:none; }
.logo:hover .beauty{ animation: bounce .6s ease; }
@keyframes bounce{
  0%,100%{transform:translateY(0);}
  35%{transform:translateY(-7px);}
  65%{transform:translateY(3px);}
}


.nav-links{
  list-style:none;
  display:flex;
  gap:40px;
}
.nav-links a{
  text-decoration:none;
  color: rgba(255,255,255,0.92);
  font-size:15px;
  position:relative;
  padding:6px 4px;
  transition: color .3s;
  border-radius:4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.navbar.scrolled .nav-links a{
  color: rgba(30,10,20,0.85);
  text-shadow: none;
}
.nav-links a::after{
  content:"";
  position:absolute;
  bottom:0; right:0;
  width:0; height:2px;
  background: var(--pink);
  transition: width .35s ease;
}
.nav-links a:hover{ color: var(--pink); }
.nav-links a:hover::after{ width:100%; }


.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  cursor:pointer;
  z-index:1100;
  position:relative;
}
.hamburger span{
  display:block;
  height:2.5px;
  background: rgba(255,255,255,0.9);
  border-radius:99px;
  transition: all .4s cubic-bezier(.77,0,.18,1);
  transform-origin: center;
}
.navbar.scrolled .hamburger span{
  background: var(--pink);
}
.hamburger span:nth-child(1){ width:26px; margin-right:auto; }
.hamburger span:nth-child(2){ width:20px; margin-right:auto; }
.hamburger span:nth-child(3){ width:26px; margin-right:auto; }

.hamburger.open span:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
  width:26px;
}
.hamburger.open span:nth-child(2){
  opacity:0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
  width:26px;
}


.mobile-overlay{
  position:fixed;
  inset:0;
  background: rgba(20,5,15,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity:0;
  visibility:hidden;
  transition: all .4s ease;
  z-index:950;
}
.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-drawer{
  position:fixed;
  top:0; right:0;
  width:320px;
  height:100vh;
  z-index:1000;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);

  
  background: rgba(255, 250, 253, 0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-left: 1px solid rgba(255,111,165,0.2);
  box-shadow: -20px 0 60px rgba(255,111,165,0.13);
  border-radius: 0 0 0 40px;

  display:flex;
  flex-direction:column;
  padding:50px 35px;
  gap:8px;
}
.mobile-drawer.open{
  transform:translateX(0);
}

.drawer-logo{
  font-family:'Playfair Display',serif;
  font-size:26px;
  font-weight:900;
  margin-bottom:40px;
}
.drawer-logo .star{ color:var(--pink); }
.drawer-logo .beauty{ color:var(--text); }

.drawer-link{
  text-decoration:none;
  color: var(--text);
  font-size:17px;
  padding:14px 18px;
  border-radius:14px;
  transition: all .3s ease;
  display:flex;
  align-items:center;
  gap:10px;
  position:relative;
  overflow:hidden;
}
.drawer-link::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,111,165,0.12), rgba(255,192,217,0.06));
  opacity:0;
  transition: opacity .3s;
  border-radius:14px;
}
.drawer-link:hover::before{ opacity:1; }
.drawer-link:hover{
  color: var(--pink);
  transform: translateX(-4px);
}

.drawer-link .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--pink);
  opacity:0;
  transition: opacity .3s;
  flex-shrink:0;
}


@media(max-width:960px){
  .hamburger{ display:flex; }
  .nav-links{ display:none; }
}
@media(max-width:768px){
  .nav-inner{ padding:22px 22px; }
  .navbar.scrolled .nav-inner{ padding:15px 22px; }
  .mobile-drawer{ width:290px; padding:45px 28px; }
}
@media(max-width:420px){
  .hero-star{ font-size:18px; letter-spacing:0.3em; }
}

.drawer-link:hover .dot{ opacity:1; }

.drawer-divider{
  height:1px;
  background: linear-gradient(to left, transparent, rgba(255,111,165,0.25), transparent);
  margin:10px 0;
}

.drawer-cta{
  margin-top:auto;
  text-align:center;
}
.drawer-cta a{
  display:inline-block;
  padding:14px 35px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-size:15px;
  box-shadow: 0 8px 25px rgba(255,111,165,0.35);
  transition: all .3s ease;
}
.drawer-cta a:hover{
  transform:translateY(-2px);
  box-shadow: 0 14px 35px rgba(255,111,165,0.45);
}

:root{
  --p1:#ff6fa5;
  --p2:#e8457f;
  --p3:#c0175d;
  --v1:#7b2ff7;
  --v2:#4a0e8f;
  --gold:#f9d976;
  --white:rgba(255,255,255,0.95);
}


.hero{
  position:relative;
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding: 120px 40px 80px;
}


.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(123,47,247,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(232,69,127,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(192,23,93,0.4) 0%, transparent 70%),
    linear-gradient(135deg, #1a0535 0%, #2d0847 40%, #1a0535 100%);
  z-index:0;
}


#starsCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
}


.sparkles{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
}
.sparkle{
  position:absolute;
  border-radius:50%;
  animation: sparkleAnim var(--dur) ease-in-out var(--delay) infinite;
  opacity:0;
}
@keyframes sparkleAnim{
  0%,100%{opacity:0; transform:scale(0) translateY(0);}
  50%{opacity:1; transform:scale(1) translateY(-20px);}
}


.hero-content{
  position:relative;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 80px;
  max-width:1200px;
  width:100%;
  flex-wrap:wrap;
}


.hero-text{
  flex:1;
  min-width:280px;
  max-width:500px;
  text-align:right;
  direction:rtl;
}

.hero-tag{
  font-family:'Dancing Script', cursive;
  font-size:16px;
  color: rgba(255,200,225,0.85);
  letter-spacing:0.05em;
  margin-bottom:16px;
  opacity:0;
  animation: slideUp .6s ease .2s forwards;
}

.hero-title{
  line-height:1;
  margin-bottom:16px;
  opacity:0;
  animation: slideUp .8s cubic-bezier(.16,1,.3,1) .4s forwards;
}
.title-line1{
  display:block;
  font-family:'Dancing Script', cursive;
  font-size: clamp(52px,8vw,90px);
  font-weight:700;
  color: var(--gold);
  text-shadow:
    0 0 30px rgba(249,217,118,0.7),
    0 0 60px rgba(249,217,118,0.3);
  letter-spacing:0.04em;
}
.title-line2{
  display:block;
  font-family:'Cinzel Decorative', serif;
  font-size: clamp(36px,6vw,68px);
  font-weight:900;
  color:#fff;
  text-shadow:
    0 0 40px rgba(255,111,165,0.9),
    0 0 80px rgba(232,69,127,0.5);
  letter-spacing:0.15em;
}

.hero-divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:20px 0;
  opacity:0;
  animation: fadeIn .5s ease .85s forwards;
  flex-direction:row-reverse;
}
.hero-divider span:not(.gem){
  flex:1;
  height:1px;
  background:linear-gradient(to left, transparent, rgba(249,217,118,0.5), transparent);
}
.gem{ font-size:18px; }

.hero-desc{
  font-family:'Vazir', Tahoma, sans-serif;
  font-size: clamp(16px,2vw,20px);
  color:rgba(255,220,235,0.9);
  line-height:2.2;
  margin-bottom:36px;
  opacity:0;
  animation: slideUp .6s ease 1.05s forwards;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 36px;
  background: linear-gradient(135deg, var(--p1), var(--p2), var(--v1));
  background-size:200% 200%;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-family:'Vazir', Tahoma, sans-serif;
  font-size:15px;
  font-weight:bold;
  box-shadow:
    0 8px 30px rgba(255,111,165,0.5),
    0 0 0 0 rgba(255,111,165,0.3);
  animation: slideUp .6s ease 1.3s both, btnPulse 3s ease 2s infinite;
  transition: transform .3s, box-shadow .3s;
}
.hero-btn svg{ width:18px; height:18px; transition:transform .3s; }
.hero-btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(255,111,165,0.65);
}
.hero-btn:hover svg{ transform:translateX(-4px); }
@keyframes btnPulse{
  0%,100%{ box-shadow:0 8px 30px rgba(255,111,165,0.5), 0 0 0 0 rgba(255,111,165,0.3); }
  50%{ box-shadow:0 8px 30px rgba(255,111,165,0.5), 0 0 0 12px rgba(255,111,165,0); }
}


.hero-photo-wrap{
  position:relative;
  width:380px;
  height:380px;
  flex-shrink:0;
  opacity:0;
  animation: fadeScale .9s cubic-bezier(.16,1,.3,1) .6s forwards;
}

@keyframes fadeScale{
  from{opacity:0; transform:scale(.85);}
  to{opacity:1; transform:scale(1);}
}


.ring{
  position:absolute;
  border-radius:50%;
  border-style:solid;
}
.ring1{
  inset:-30px;
  border-width:1.5px;
  border-color: rgba(249,217,118,0.35);
  animation: spinSlow 18s linear infinite;
  background: radial-gradient(ellipse at 30% 30%, rgba(249,217,118,0.04), transparent 60%);
}
.ring2{
  inset:-14px;
  border-width:1px;
  border-color: rgba(255,111,165,0.4);
  border-style: dashed;
  animation: spinSlow 12s linear infinite reverse;
}
.ring3{
  inset:10px;
  border-width:2px;
  border-color: rgba(255,111,165,0.2);
  animation: spinSlow 25s linear infinite;
}
@keyframes spinSlow{ to{ transform:rotate(360deg); } }


.orbit{
  position:absolute;
  inset:-35px;
  border-radius:50%;
  animation: spinSlow 8s linear infinite;
}
.orbit2{ animation-duration:14s; animation-direction:reverse; }
.orb-dot{
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  width:10px; height:10px;
  border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(249,217,118,0.9), 0 0 24px rgba(249,217,118,0.5);
}
.orb-pink{ background:var(--p1); box-shadow:0 0 12px rgba(255,111,165,0.9); top:auto; bottom:0; }


.photo-frame{
  position:absolute;
  inset:0;
  border-radius:50%;
  overflow:hidden;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.08),
    0 0 60px rgba(232,69,127,0.5),
    0 0 120px rgba(123,47,247,0.3),
    inset 0 0 30px rgba(0,0,0,0.3);
}
.photo-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter: saturate(1.15) contrast(1.05);
  transition: transform .6s ease;
}
.hero-photo-wrap:hover .photo-frame img{
  transform:scale(1.05);
}
.photo-shimmer{
  position:absolute;
  inset:0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.15) 0%,
    transparent 50%,
    rgba(255,111,165,0.1) 100%
  );
  border-radius:50%;
  pointer-events:none;
}


.float-badge{
  position:absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:30px;
  padding:8px 16px;
  font-family:'Vazir', Tahoma, sans-serif;
  font-size:12px;
  color:#fff;
  white-space:nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  direction:rtl;
}
.badge1{
  top:10%; left:-70px;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge2{
  bottom:15%; left:-80px;
  animation: floatBadge 5s ease-in-out .8s infinite;
}
.badge3{
  top:40%; right:-75px;
  animation: floatBadge 4.5s ease-in-out 1.4s infinite;
}
@keyframes floatBadge{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}


.hero-wave{
  position:absolute;
  bottom:-1px; left:0; right:0;
  z-index:5;
  line-height:0;
}
.hero-wave svg{ display:block; width:100%; height:70px; }


@keyframes slideUp{
  from{opacity:0; transform:translateY(24px);}
  to{opacity:1; transform:translateY(0);}
}
@keyframes fadeIn{
  from{opacity:0;} to{opacity:1;}
}


@media(max-width:900px){
  .hero-content{ flex-direction:column-reverse; gap:50px; text-align:center; }
  .hero-text{ text-align:center; }
  .hero-divider{ justify-content:center; }
  .hero-photo-wrap{ width:280px; height:280px; }
  .badge1{ left:-50px; font-size:11px; }
  .badge2{ left:-55px; font-size:11px; }
  .badge3{ right:-50px; font-size:11px; }
}
@media(max-width:480px){
  .hero{ padding:100px 20px 70px; }
  .hero-photo-wrap{ width:220px; height:220px; }
  .float-badge{ display:none; }
}















.about {
  position: relative;
  background: linear-gradient(145deg, #fff8fb 0%, #fdeef4 50%, #fff4f8 100%);
  padding: 110px 40px;
  overflow: hidden;
  font-family: 'Vazir', Tahoma, sans-serif;
  direction: rtl;
  scroll-margin-top: 90px;
}


.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,111,165,0.08) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.about::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,69,127,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}


.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}


.about-text {
  position: relative;
  z-index: 2;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #e8457f;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(to left, #ff6fa5, #e8457f);
  border-radius: 2px;
}

.about-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: #1a0a14;
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: 'BMorvarid', 'Vazir', Tahoma, sans-serif;
}
.about-title .pink {
  color: #ff6fa5;
  position: relative;
}

.about-title .pink::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, #ff6fa5, transparent);
  border-radius: 2px;
}

.about-desc {
  font-size: 16px;
  line-height: 2;
  color: #5a3a4a;
  margin-bottom: 36px;
}


.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,111,165,0.15);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255,111,165,0.15);
}
.stat-icon {
  font-size: 26px;
  color: #ff6fa5;
  margin-bottom: 6px;
  display: block;
}
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #e8457f;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 12px;
  color: #8a6070;
}


.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #ff6fa5, #e8457f);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-family: 'Vazir', Tahoma, sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(255,111,165,0.3);
  transition: all 0.3s ease;
}
.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255,111,165,0.42);
}
.about-btn svg {
  transition: transform 0.3s ease;
}
.about-btn:hover svg {
  transform: translateX(-4px);
}


.about-image-wrap {
  position: relative;
  z-index: 2;
}


.about-img-card {
  position: relative;
  border-radius: 28px 6px 28px 6px; 
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(232,69,127,0.18),
    0 8px 20px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #fde8f0, #ffc5db); 
}

.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.about-img-card:hover img {
  transform: scale(1.04);
}


.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(232,69,127,0.5);
  font-size: 14px;
  background: linear-gradient(135deg, #fde8f0 0%, #ffd6e8 50%, #ffe4f0 100%);
}
.about-img-placeholder svg {
  opacity: 0.4;
}


.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px; 
  background: #fff;
  border-radius: 18px;
  padding: 14px 20px;
  box-shadow: 0 8px 25px rgba(255,111,165,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  border: 1px solid rgba(255,111,165,0.12);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6fa5, #e8457f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a0a14;
  line-height: 1.2;
}
.badge-text span {
  font-size: 11px;
  color: #9a6070;
}


.about-deco-circle {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px dashed rgba(255,111,165,0.25);
  animation: spinSlow 20s linear infinite;
  z-index: 1;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}


.about-dots {
  position: absolute;
  bottom: 30px;
  left: -30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  z-index: 1;
}
.about-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,111,165,0.3);
  display: block;
}




.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-img {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal-img.visible {
  opacity: 1;
  transform: translateX(0);
}




@media (max-width: 900px) {
  .about {
    padding: 80px 24px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-wrap {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .reveal-img {
    transform: translateY(35px);
  }
  .reveal-img.visible {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .about-title { font-size: 26px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 14px 8px; }
  .stat-num { font-size: 22px; }
  .about-badge { right: -8px; bottom: -14px; padding: 10px 14px; }
  .about-deco-circle { width: 120px; height: 120px; top: -16px; left: -16px; }
}















.consult {
  position: relative;
  padding: 120px 40px;
  background: #1a0a14;
  overflow: hidden;
  font-family: 'Vazir', Tahoma, sans-serif;
  direction: rtl;
  scroll-margin-top: 90px;
}


.consult-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.consult-bg .g1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,69,127,0.22) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: meshMove1 12s ease-in-out infinite;
}
.consult-bg .g2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,111,165,0.15) 0%, transparent 65%);
  bottom: -180px; left: -100px;
  animation: meshMove2 15s ease-in-out infinite;
}
.consult-bg .g3 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,30,80,0.18) 0%, transparent 65%);
  top: 40%; left: 30%;
  animation: meshMove3 10s ease-in-out infinite;
}

@keyframes meshMove1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px, 25px) scale(1.08); }
}
@keyframes meshMove2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(25px, -20px) scale(1.05); }
}
@keyframes meshMove3 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-20px, 30px); }
}


.consult-glow-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,111,165,0.6), transparent);
  z-index: 1;
}


.consult-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}


.consult-img-wrap {
  position: relative;
}


.consult-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(255,111,165,0.25) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

.consult-img-card {
  position: relative;
  z-index: 1;
  border-radius: 32px 8px 32px 8px;
  overflow: hidden;
}

.consult-img-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  filter: drop-shadow(0 20px 50px rgba(255,111,165,0.3));
}
.consult-img-card:hover img {
  transform: scale(1.03) translateY(-5px);
}


.consult-chip {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,111,165,0.25);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 3;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}
.chip-1 {
  top: 18px;
  left: -20px;
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-2 {
  bottom: 28px;
  right: -16px;
  animation: chipFloat 6s ease-in-out infinite 1.5s;
}
.chip-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6fa5, #e8457f);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}


.consult-text {
  color: #fff;
}

.consult-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ff6fa5;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.consult-label .label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff6fa5;
  box-shadow: 0 0 10px rgba(255,111,165,0.8);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.consult-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'BMorvarid', 'Vazir', Tahoma, sans-serif;
}
.consult-title .hl {
  background: linear-gradient(135deg, #ff6fa5, #ffb6d9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.consult-desc {
  font-size: 16px;
  line-height: 2.1;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}


.consult-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.consult-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}
.feat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,111,165,0.12);
  border: 1px solid rgba(255,111,165,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #ff6fa5;
  font-size: 18px;
  transition: all 0.3s ease;
}
.consult-features li:hover .feat-icon {
  background: rgba(255,111,165,0.25);
  transform: scale(1.1);
}


.consult-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #ff6fa5, #e8457f);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-family: 'Vazir', Tahoma, sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255,111,165,0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255,111,165,0.5);
}
.consult-btn i { font-size: 20px; }


.consult-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  direction: ltr;
}
.consult-phone:hover {
  border-color: rgba(255,111,165,0.4);
  color: #fff;
  background: rgba(255,111,165,0.1);
  transform: translateY(-2px);
}
.consult-phone i {
  color: #ff6fa5;
  font-size: 20px;
  animation: phonePulse 2.5s ease-in-out infinite;
}
@keyframes phonePulse {
  0%,100% { transform: rotate(0deg); }
  20%      { transform: rotate(-12deg); }
  40%      { transform: rotate(12deg); }
  60%      { transform: rotate(0deg); }
}




.c-reveal {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
}
.c-reveal-text {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
}
.c-reveal.visible,
.c-reveal-text.visible {
  opacity: 1;
  transform: translateX(0);
}




@media (max-width: 900px) {
  .consult { padding: 80px 24px; }
  .consult-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .consult-img-wrap {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .c-reveal, .c-reveal-text {
    transform: translateY(35px);
  }
  .c-reveal.visible, .c-reveal-text.visible {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .consult-title { font-size: 26px; }
  .consult-cta { flex-direction: column; align-items: flex-end; }
  .consult-btn, .consult-phone { width: 100%; justify-content: center; }
  .chip-1, .chip-2 { display: none; }
}






















.products-teaser {
  position: relative;
  padding: 130px 40px;
  background: #fff;
  overflow: hidden;
  font-family: 'Vazir', Tahoma, sans-serif;
  direction: rtl;
  scroll-margin-top: 90px;
}


.products-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%,   rgba(255,111,165,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 85% 100%,  rgba(232,69,127,0.06) 0%, transparent 65%),
    linear-gradient(180deg, #fff9fb 0%, #fff4f8 30%, #fff9fc 70%, #ffffff 100%);
  pointer-events: none;
  z-index: 0;
}


.products-teaser::after { display: none; }

.products-teaser > * { position: relative; z-index: 1; }


.pt-header {
  text-align: center;
  margin-bottom: 80px;
}

.pt-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8457f;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pt-label::before,
.pt-label::after {
  content: '';
  width: 35px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #ff6fa5);
  border-radius: 2px;
}
.pt-label::after {
  background: linear-gradient(to left, transparent, #ff6fa5);
}

.pt-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #1a0a14;
  line-height: 1.4;
  margin-bottom: 18px;
  font-family: 'BMorvarid', 'Vazir', Tahoma, sans-serif;
}
.pt-title .hl {
  position: relative;
  display: inline-block;
  color: #ff6fa5;
}

.pt-title .hl::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, #ff6fa5, #ffb6d9, transparent);
  border-radius: 99px;
}

.pt-sub {
  font-size: 17px;
  color: #8a6070;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}


.pt-grid {
  max-width: 1200px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


.pt-card {
  position: relative;
  border-radius: 24px;
  padding: 36px 28px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,111,165,0.12);
  box-shadow: 0 4px 24px rgba(255,111,165,0.06);
  transition: all 0.45s cubic-bezier(.22,1,.36,1);
  cursor: default;
  overflow: hidden;
}


.pt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,111,165,0.06), rgba(255,182,210,0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}
.pt-card:hover::before { opacity: 1; }

.pt-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,111,165,0.3);
  box-shadow:
    0 20px 50px rgba(255,111,165,0.14),
    0 4px 12px rgba(255,111,165,0.08);
}


.pt-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(to left, #ff6fa5, #ffb6d9, transparent);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.pt-card:hover::after { transform: scaleX(1); }


.pt-card-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0f5, #ffe0ec);
  border: 1px solid rgba(255,111,165,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #e8457f;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}
.pt-card:hover .pt-card-icon {
  background: linear-gradient(135deg, #ff6fa5, #e8457f);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(255,111,165,0.35);
}

.pt-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a0a14;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.pt-card:hover h3 { color: #e8457f; }

.pt-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #8a6070;
}


.pt-card.featured {
  background: linear-gradient(145deg, #fff0f6, #fff8fb);
  border-color: rgba(255,111,165,0.25);
  box-shadow: 0 8px 32px rgba(255,111,165,0.12);
  grid-row: span 1;
}
.pt-card.featured::after {
  transform: scaleX(1);
  background: linear-gradient(to left, #e8457f, #ff6fa5);
}


.pt-banner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 32px;
  background: linear-gradient(135deg, #1a0a14 0%, #2d0e20 50%, #1a0a14 100%);
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}


.pt-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pt-banner-bg .bb1 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,111,165,0.2), transparent 65%);
  top: -100px; right: -80px;
}
.pt-banner-bg .bb2 {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,69,127,0.15), transparent 65%);
  bottom: -80px; left: 20%;
}


.pt-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,111,165,0.6), transparent);
}

.pt-banner-text { position: relative; z-index: 1; }

.pt-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,111,165,0.12);
  border: 1px solid rgba(255,111,165,0.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 12px;
  color: #ffb6d9;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.pt-banner-tag i { font-size: 15px; color: #ff6fa5; }

.pt-banner h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
}
.pt-banner h2 span {
  background: linear-gradient(135deg, #ff6fa5, #ffb6d9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pt-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 420px;
}


.pt-banner-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 40px;
  background: linear-gradient(135deg, #ff6fa5, #e8457f);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-family: 'Vazir', Tahoma, sans-serif;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(255,111,165,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}
.pt-banner-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 22px 50px rgba(255,111,165,0.55),
    inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #ff85b8, #e8457f);
}
.pt-banner-btn i { font-size: 22px; transition: transform 0.3s ease; }
.pt-banner-btn:hover i { transform: translateX(-4px); }




.pt-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,1,.36,1);
}
.pt-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.pt-banner-reveal {
  opacity: 0;
  transform: scale(0.97) translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1);
}
.pt-banner-reveal.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}




@media (max-width: 960px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pt-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 36px;
  }
  .pt-banner p { max-width: 100%; }
  .pt-banner-btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .products-teaser { padding: 80px 20px; }
  .pt-grid { grid-template-columns: 1fr; }
  .pt-header { margin-bottom: 50px; }
  .pt-banner { padding: 40px 24px; border-radius: 24px; }
}







.contact {
  position: relative;
  padding: 120px 40px 100px;
  background: linear-gradient(180deg, #fff9fb 0%, #fff4f8 40%, #fdeef4 100%);
  overflow: hidden;
  font-family: 'Vazir', Tahoma, sans-serif;
  direction: rtl;
}


.contact-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.cb1 { width:500px; height:500px; background:rgba(255,111,165,0.08); top:-180px; right:-150px; }
.cb2 { width:400px; height:400px; background:rgba(232,69,127,0.06); bottom:-120px; left:-100px; }
.cb3 { width:250px; height:250px; background:rgba(255,182,210,0.1);  top:40%; left:35%; }

.contact > * { position: relative; z-index: 1; }


.ct-header {
  text-align: center;
  margin-bottom: 70px;
}
.ct-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e8457f;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ct-label::before, .ct-label::after {
  content: '';
  width: 30px; height: 1.5px;
  background: linear-gradient(to right, transparent, #ff6fa5);
  border-radius: 2px;
}
.ct-label::after { background: linear-gradient(to left, transparent, #ff6fa5); }

.ct-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: #1a0a14;
  line-height: 1.4;
  margin-bottom: 14px;
}
.ct-title .hl {
  color: #ff6fa5;
  position: relative;
}
.ct-title .hl::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to left, #ff6fa5, #ffcce0, transparent);
  border-radius: 99px;
}
.ct-sub {
  font-size: 16px;
  color: #8a6070;
  line-height: 1.9;
}


.ct-grid {
  max-width: 1100px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ct-card {
  position: relative;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,111,165,0.13);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255,111,165,0.06);
}


.ct-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.ct-card:hover::before { transform: scaleX(1); }
.ct-card.telegram::before  { background: linear-gradient(to left, #29b6f6, #0288d1); }
.ct-card.instagram::before { background: linear-gradient(to left, #f77737, #c13584, #833ab4); }
.ct-card.channel::before   { background: linear-gradient(to left, #29b6f6, #0288d1); }
.ct-card.phone::before     { background: linear-gradient(to left, #ff6fa5, #e8457f); }

.ct-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(255,111,165,0.15);
  border-color: rgba(255,111,165,0.25);
}


.ct-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.ct-card.telegram  .ct-icon { background: linear-gradient(135deg, #e3f6fd, #b3e5fc); color: #0288d1; }
.ct-card.instagram .ct-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: #c13584; }
.ct-card.channel   .ct-icon { background: linear-gradient(135deg, #e3f6fd, #b3e5fc); color: #0288d1; }
.ct-card.phone     .ct-icon { background: linear-gradient(135deg, #fff0f5, #ffd6e8); color: #e8457f; }

.ct-card:hover .ct-icon {
  transform: scale(1.12) rotate(-6deg);
}
.ct-card.telegram:hover  .ct-icon { background: linear-gradient(135deg, #29b6f6, #0288d1); color: #fff; box-shadow: 0 8px 20px rgba(2,136,209,0.35); }
.ct-card.instagram:hover .ct-icon { background: linear-gradient(135deg, #f77737, #c13584); color: #fff; box-shadow: 0 8px 20px rgba(193,53,132,0.35); }
.ct-card.channel:hover   .ct-icon { background: linear-gradient(135deg, #29b6f6, #0288d1); color: #fff; box-shadow: 0 8px 20px rgba(2,136,209,0.35); }
.ct-card.phone:hover     .ct-icon { background: linear-gradient(135deg, #ff6fa5, #e8457f); color: #fff; box-shadow: 0 8px 20px rgba(255,111,165,0.4); }

.ct-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a0a14;
}
.ct-card-value {
  font-size: 14px;
  color: #9a6070;
  direction: ltr;
  word-break: break-all;
  line-height: 1.5;
}


.ct-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,111,165,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #ff6fa5;
  font-size: 18px;
  margin-top: auto;
  transition: all 0.3s ease;
}
.ct-card:hover .ct-arrow {
  background: #ff6fa5;
  color: #fff;
  transform: translateX(-3px);
}












footer {
  background: #120608;
  font-family: 'Vazir', Tahoma, sans-serif;
  direction: rtl;
  position: relative;
  overflow: hidden;
}


.footer-glow {
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,111,165,0.5), transparent);
}


.footer-blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,111,165,0.07), transparent 65%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}


.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px 50px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}


.footer-brand .f-logo {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.05em;
}
.footer-brand .f-logo span { color: #ff6fa5; }

.footer-brand p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 28px;
}


.footer-socials {
  display: flex;
  gap: 12px;
}
.f-social {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}
.f-social:hover {
  border-color: rgba(255,111,165,0.4);
  background: rgba(255,111,165,0.1);
  color: #ff6fa5;
  transform: translateY(-3px);
}


.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.42);
  font-size: 14px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,111,165,0.4);
  flex-shrink: 0;
  transition: background 0.25s;
}
.footer-col ul li a:hover {
  color: #ffb6d9;
  transform: translateX(-4px);
}
.footer-col ul li a:hover::before { background: #ff6fa5; }


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom p span { color: rgba(255,111,165,0.7); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: rgba(255,111,165,0.7); }


.designer-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid transparent;
}
.designer-credit:hover {
  color: #ff6fa5;
  border-color: rgba(255,111,165,0.25);
  background: rgba(255,111,165,0.06);
}
.designer-credit i {
  font-size: 15px;
  color: #ff6fa5;
}




.ct-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,1,.36,1);
}
.ct-reveal.visible { opacity:1; transform:translateY(0); }




@media (max-width: 960px) {
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; text-align: center; }
  .footer-brand p { margin: 0 auto 28px; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 600px) {
  .contact { padding: 80px 20px 70px; }
  .ct-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ct-card { padding: 26px 16px; }
  .ct-icon { width: 54px; height: 54px; font-size: 26px; }
  
  
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px 40px; }
  .footer-brand { grid-column: span 1; text-align: center; }
  .footer-brand p { margin: 0 auto 28px; }
  .footer-socials { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul li a { justify-content: center; }
  .footer-col ul li a::before { display: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  
  
  .designer-credit { margin-top: 5px; }
}

@media (max-width: 400px) {
  .ct-grid { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}