/* ============================================
   باربری منصف — Monsef Cargo
   تم: نارنجی پرانرژی + سرمه‌ای عمیق
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* سرمه‌ای عمیق با تینت آبی روشن‌تر — جذاب‌تر و پرمایه‌تر */
  --navy-deep:   #0B1530;
  --navy:        #16275A;
  --navy-light:  #243B82;
  --navy-soft:   #34509E;
  /* نارنجی پرانرژی coral-flame — درخشان‌تر و گرم‌تر */
  --orange:      #FF5722;
  --orange-dark: #D9420F;
  --orange-light:#FF8A5B;
  --orange-glow: #FFB199;
  --orange-amber:#FFA726;
  --cream:       #FFF8F3;
  --sand:        #FFECE3;
  --white:       #FFFFFF;
  --gray:        #64748B;
  --gray-light:  #F1F5F9;
  --gray-border: rgba(22,39,90,0.1);
  --text-dark:   #0F1B2D;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --sh-sm: 0 2px 12px rgba(22,39,90,0.08);
  --sh-md: 0 10px 40px rgba(22,39,90,0.14);
  --sh-lg: 0 24px 70px rgba(22,39,90,0.22);
  --sh-orange: 0 8px 30px rgba(255,87,34,0.45);

  --tr: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Vazirmatn', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HEADER ===== */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sand); color: var(--orange-dark);
  font-size: 13px; font-weight: 800; padding: 7px 18px;
  border-radius: 50px; margin-bottom: 16px;
}
.eyebrow.light { background: rgba(255,107,44,0.15); color: var(--orange-light); }
.sec-title {
  font-size: clamp(26px, 3.6vw, 44px); font-weight: 900;
  line-height: 1.2; letter-spacing: -1px; color: var(--navy-deep);
}
.sec-title span { color: var(--orange); }
.sec-title.light { color: var(--white); }
.sec-desc { font-size: 16px; color: var(--gray); margin-top: 14px; line-height: 1.8; }
.sec-desc.light { color: rgba(255,255,255,0.7); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 800; transition: var(--tr);
  white-space: nowrap; cursor: pointer;
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); box-shadow: var(--sh-orange);
}
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,107,44,0.55); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-3px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); background: rgba(255,107,44,0.08); }
.btn-ghost {
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--gray-border);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  transition: var(--tr); padding: 14px 0;
}
.header.scrolled {
  background: rgba(255,248,243,0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-sm); padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 56px; width: auto; object-fit: contain; transition: var(--tr); }
.header.scrolled .logo img { height: 48px; }
.logo-fallback {
  display: none; width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--r-sm); align-items: center; justify-content: center;
  font-size: 26px;
}

/* NAV */
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .dropdown > a {
  padding: 10px 16px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 600; color: var(--navy);
  transition: var(--tr); position: relative;
}
.header:not(.scrolled) .nav > a,
.header:not(.scrolled) .nav .dropdown > a { color: var(--white); }
.nav > a:hover, .nav .dropdown > a:hover { color: var(--orange); }
.nav > a.active { color: var(--orange); }
.header:not(.scrolled) .nav > a.active { color: var(--orange-light); }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown > a::after { content: '▾'; font-size: 10px; transition: var(--tr); }
.dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 250px;
  background: var(--white); border-radius: var(--r-md);
  padding: 10px; box-shadow: var(--sh-lg);
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: var(--tr); border: 1px solid var(--gray-border);
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; color: var(--navy); transition: var(--tr);
}
.dropdown-menu a:hover { background: var(--sand); color: var(--orange-dark); padding-right: 18px; }
.dropdown-menu a .dd-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0; transition: var(--tr);
}
.dropdown-menu a:hover .dd-ico { background: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; z-index: 1100; }
.hamburger span {
  width: 26px; height: 2.5px; background: var(--navy);
  border-radius: 3px; transition: var(--tr);
}
.header:not(.scrolled) .hamburger span { background: var(--white); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--navy-deep); padding: 100px 28px 40px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu > nav > a, .m-dd-toggle {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.85); font-size: 18px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--tr); cursor: pointer;
}
.mobile-menu > nav > a:hover, .m-dd-toggle:hover { color: var(--orange-light); padding-right: 8px; }
.m-dd-toggle .arr { font-size: 12px; transition: var(--tr); }
.m-dd-toggle.open .arr { transform: rotate(180deg); }
.m-submenu { display: none; padding: 8px 0 8px 16px; }
.m-submenu.open { display: block; }
.m-submenu a {
  display: block; color: rgba(255,255,255,0.6); font-size: 15px;
  padding: 11px 0; transition: var(--tr);
}
.m-submenu a:hover { color: var(--orange-light); }
.m-phones { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.m-phone {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,107,44,0.1); border: 1px solid rgba(255,107,44,0.2);
  padding: 15px 18px; border-radius: var(--r-md);
}
.m-phone .z { font-size: 13px; color: var(--orange-light); font-weight: 600; }
.m-phone a { font-size: 17px; font-weight: 800; color: var(--white); direction: ltr; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,44,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,44,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,44,0.15); border: 1px solid rgba(255,107,44,0.35);
  color: var(--orange-light); font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,44,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,107,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,44,0); }
}
.hero h1 {
  font-size: clamp(30px, 4.5vw, 58px); font-weight: 900;
  line-height: 1.15; letter-spacing: -1.5px; color: var(--white); margin-bottom: 22px;
}
.hero h1 .hl { color: var(--orange); position: relative; display: inline-block; }
.hero h1 .hl::after {
  content: ''; position: absolute; bottom: 6px; right: 0; left: 0;
  height: 12px; background: rgba(255,107,44,0.25); z-index: -1; border-radius: 4px;
}
.hero-text { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.9; margin-bottom: 34px; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat .n { font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat .l { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); position: relative; z-index: 2;
  border: 3px solid rgba(255,255,255,0.1);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-float-card {
  position: absolute; z-index: 3;
  background: var(--white); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card.top { top: 24px; left: -24px; animation: float1 4s ease-in-out infinite; }
.hero-float-card.bottom { bottom: 30px; right: -20px; animation: float2 5s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
.hfc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
}
.hfc-text .t { font-size: 14px; font-weight: 800; color: var(--navy); }
.hfc-text .s { font-size: 11px; color: var(--gray); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy-deep); padding: 28px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ti-ico { font-size: 28px; }
.trust-item .ti-txt { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 28px; transition: var(--tr);
  border: 1px solid var(--gray-border); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.service-ico {
  width: 68px; height: 68px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--sand), var(--orange-glow));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 22px; transition: var(--tr);
}
.service-card:hover .service-ico {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: scale(1.05) rotate(-5deg);
}
.service-card h3 { font-size: 19px; font-weight: 800; color: var(--navy-deep); margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--gray); line-height: 1.8; }

/* ===== ABOUT / FEATURE ===== */
.feature { padding: 100px 0; background: var(--white); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-visual { position: relative; }
.feature-visual img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-md); }
.feature-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); padding: 22px 28px; border-radius: var(--r-lg);
  box-shadow: var(--sh-orange);
}
.feature-badge .fb-n { font-size: 30px; font-weight: 900; line-height: 1; }
.feature-badge .fb-l { font-size: 13px; opacity: 0.9; margin-top: 4px; }
.feature-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item .fi-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.feature-item h4 { font-size: 16px; font-weight: 800; color: var(--navy-deep); margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== PROCESS ===== */
.process { padding: 100px 0; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; top: 50%; right: -10%;
  width: 500px; height: 500px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,107,44,0.12) 0%, transparent 70%);
}
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.process-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  transition: var(--tr); backdrop-filter: blur(10px);
}
.process-step:hover { background: rgba(255,107,44,0.1); border-color: rgba(255,107,44,0.3); transform: translateY(-6px); }
.process-num {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--white); box-shadow: var(--sh-orange);
}
.process-step h4 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: pointer; box-shadow: var(--sh-sm);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
  opacity: 0; transition: var(--tr);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .go-cat { font-size: 11px; font-weight: 700; color: var(--orange-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.gallery-overlay .go-title { font-size: 15px; font-weight: 700; color: var(--white); }

/* ===== ZONES ===== */
.zones { padding: 100px 0; background: var(--white); }
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.zone-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--gray-border); transition: var(--tr); background: var(--white);
}
.zone-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--orange-glow); }
.zone-top {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 26px 24px; position: relative; overflow: hidden;
}
.zone-top::after {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px; background: rgba(255,107,44,0.15); border-radius: 50%;
}
.zone-ico { font-size: 34px; margin-bottom: 12px; position: relative; }
.zone-name { font-size: 20px; font-weight: 900; color: var(--white); position: relative; }
.zone-body { padding: 22px 24px; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.zone-tag { background: var(--sand); color: var(--orange-dark); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 50px; }
.zone-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); padding: 14px 18px; border-radius: var(--r-md);
  font-weight: 800; transition: var(--tr);
}
.zone-cta:hover { transform: scale(1.02); box-shadow: var(--sh-orange); }
.zone-cta .zc-num { font-size: 16px; direction: ltr; font-weight: 900; }

/* ===== CUSTOMERS SLIDER ===== */
.customers { padding: 100px 0; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); overflow: hidden; }
.slider-viewport { overflow: hidden; margin-top: 48px; }
.slider-track { display: flex; gap: 20px; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.slide-card {
  flex: 0 0 calc(25% - 15px); position: relative;
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid rgba(255,107,44,0.2); background: var(--navy-light);
  transition: var(--tr);
}
.slide-card:hover { border-color: rgba(255,107,44,0.6); transform: translateY(-5px); }
.slide-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.slide-cap {
  position: absolute; bottom: 0; right: 0; left: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
  padding: 28px 18px 18px;
}
.slide-cap .stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 6px; }
.slide-cap .quote { color: rgba(255,255,255,0.9); font-size: 13px; line-height: 1.6; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--tr); }
.slider-dot.active { background: var(--orange); width: 28px; border-radius: 5px; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1000px; margin: 48px auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-md); overflow: hidden; transition: var(--tr); }
.faq-item.open { border-color: var(--orange); box-shadow: var(--sh-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; cursor: pointer; font-size: 15px; font-weight: 700;
  color: var(--navy-deep); gap: 14px;
}
.faq-item.open .faq-q { color: var(--orange-dark); }
.faq-toggle {
  width: 30px; height: 30px; flex-shrink: 0; background: var(--sand);
  color: var(--orange-dark); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 20px; transition: var(--tr);
}
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }
.faq-a p { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* ===== BLOG ===== */
.blog { padding: 100px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--gray-border); transition: var(--tr);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-thumb { height: 210px; overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-cat {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 50px;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.blog-body h3 { font-size: 17px; font-weight: 800; color: var(--navy-deep); line-height: 1.5; margin-bottom: 10px; }
.blog-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-dark); font-size: 14px; font-weight: 700; transition: var(--tr); }
.blog-more:hover { gap: 12px; }

/* ===== CTA ===== */
.cta { padding: 90px 0; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta h2 { font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; color: var(--white); line-height: 1.25; margin-bottom: 14px; }
.cta p { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.8; }
.cta-phones { display: flex; flex-direction: column; gap: 12px; }
.cta-phone {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  padding: 16px 22px; border-radius: var(--r-md); transition: var(--tr);
}
.cta-phone:hover { background: var(--white); }
.cta-phone:hover .cp-z, .cta-phone:hover .cp-n { color: var(--orange-dark); }
.cp-z { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); display: block; }
.cp-n { font-size: 20px; font-weight: 900; color: var(--white); direction: ltr; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 17px; transition: var(--tr);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-col h4 { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--tr); }
.footer-col ul li a:hover { color: var(--orange-light); padding-right: 5px; }
.footer-phones .fp-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.footer-phones .fp-z { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-phones .fp-n { font-size: 15px; font-weight: 800; color: var(--orange-light); direction: ltr; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom .fb-links { display: flex; gap: 18px; }
.footer-bottom .fb-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--tr); }
.footer-bottom .fb-links a:hover { color: var(--orange-light); }

/* ===== FLOATING BUTTON ===== */
.float-wrap { position: fixed; bottom: 28px; right: 24px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.float-wrap.lifted { bottom: 96px; }
.float-panel {
  background: var(--white); border-radius: var(--r-lg); padding: 14px;
  box-shadow: var(--sh-lg); width: 256px; display: none;
}
.float-panel.show { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fp-title { font-size: 12px; font-weight: 700; color: var(--gray); text-align: center; margin-bottom: 10px; }
.fp-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--sand); padding: 12px 14px; border-radius: var(--r-sm);
  margin-bottom: 8px; transition: var(--tr);
}
.fp-item:last-child { margin-bottom: 0; }
.fp-item:hover { background: var(--orange); }
.fp-item:hover .fpi-z, .fp-item:hover .fpi-n { color: var(--white); }
.fpi-z { font-size: 12px; font-weight: 600; color: var(--gray); }
.fpi-n { font-size: 15px; font-weight: 800; color: var(--navy); direction: ltr; }
.float-btn {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--orange-amber), var(--orange) 55%, var(--orange-dark));
  color: var(--white); padding: 0 24px; height: 64px; border-radius: 50px;
  box-shadow: 0 10px 34px rgba(255,87,34,0.55);
  position: relative; z-index: 1;
  animation: heartbeat 1.2s ease-in-out infinite;
}
.float-btn::before, .float-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  border: 2px solid rgba(255,138,91,0.7);
  z-index: -1; pointer-events: none;
  animation: ringPulse 1.2s cubic-bezier(0.4,0,0.6,1) infinite;
}
.float-btn::after { animation-delay: 0.4s; border-color: rgba(255,167,38,0.55); }
@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 0.9; }
  80%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.09); }
  30% { transform: scale(0.98); }
  45% { transform: scale(1.06); }
  60% { transform: scale(1); }
}
.float-btn .fb-ico {
  font-size: 26px;
  animation: iconWiggle 1.2s ease-in-out infinite;
}
@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(0deg); }
}
.float-btn .fb-txt { display: flex; flex-direction: column; line-height: 1.25; }
.float-btn .fb-main { font-size: 14px; font-weight: 900; }
.float-btn .fb-sub { font-size: 11px; opacity: 0.9; font-weight: 600; }
.scroll-top {
  position: fixed; bottom: 28px; left: 24px; z-index: 899;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); transition: var(--tr); box-shadow: var(--sh-md);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange); }

/* ===== COOKIE ===== */
.cookie {
  position: fixed; bottom: 20px; left: 20px; z-index: 950;
  max-width: 360px; background: var(--white); border-radius: var(--r-md);
  padding: 18px 20px; box-shadow: var(--sh-lg); display: none;
  align-items: center; gap: 14px; border: 1px solid var(--gray-border);
}
.cookie.show { display: flex; }
.cookie-txt { font-size: 13px; color: var(--gray); line-height: 1.6; flex: 1; }
.cookie-txt a { color: var(--orange-dark); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-ok { background: var(--orange); color: var(--white); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 50px; }
.cookie-no { background: var(--gray-light); color: var(--gray); font-size: 13px; padding: 8px 12px; border-radius: 50px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 150px 0 70px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,44,0.15) 0%, transparent 70%); border-radius: 50%;
}
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 18px; position: relative; }
.page-hero .breadcrumb a { color: var(--orange-light); }
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); position: relative; letter-spacing: -1px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); margin-top: 14px; max-width: 600px; position: relative; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-wrap { padding: 80px 0; display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-md); padding: 22px; display: flex; gap: 16px; margin-bottom: 16px; transition: var(--tr); }
.contact-card:hover { box-shadow: var(--sh-sm); border-color: var(--orange-glow); }
.contact-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.contact-card h4 { font-size: 13px; font-weight: 700; color: var(--gray); text-transform: uppercase; margin-bottom: 6px; }
.contact-card .v { font-size: 17px; font-weight: 800; color: var(--navy-deep); }
.contact-card .v a { color: var(--orange-dark); direction: ltr; display: inline-block; }
.form-box { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--sh-sm); }
.form-box h3 { font-size: 22px; font-weight: 800; color: var(--navy-deep); margin-bottom: 8px; }
.form-box .fs { font-size: 14px; color: var(--gray); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  padding: 13px 16px; border: 1.5px solid var(--gray-border); border-radius: var(--r-sm);
  font-family: var(--font); font-size: 14px; background: var(--gray-light);
  transition: var(--tr); outline: none; color: var(--navy-deep);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }

/* ===== ARTICLE (blog post) ===== */
.article { padding: 70px 0 100px; }
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-hero-img { width: 100%; border-radius: var(--r-lg); margin-bottom: 36px; box-shadow: var(--sh-md); max-height: 420px; object-fit: cover; }
.article-wrap h2 { font-size: 26px; font-weight: 800; color: var(--navy-deep); margin: 36px 0 14px; }
.article-wrap h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 28px 0 12px; }
.article-wrap p { font-size: 16px; color: #334155; line-height: 2; margin-bottom: 18px; }
.article-wrap ul { margin: 0 0 18px; padding-right: 24px; }
.article-wrap ul li { font-size: 16px; color: #334155; line-height: 1.9; margin-bottom: 10px; list-style: disc; }
.article-wrap blockquote {
  background: var(--sand); border-right: 4px solid var(--orange);
  padding: 20px 24px; border-radius: var(--r-sm); margin: 24px 0;
  font-size: 16px; color: var(--navy); font-weight: 500;
}
.article-tip {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); padding: 24px 28px; border-radius: var(--r-md); margin: 28px 0;
}
.article-tip h4 { color: var(--orange-light); font-size: 16px; margin-bottom: 8px; }
.article-tip p { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; }

/* ===== PRIVACY/TERMS CONTENT ===== */
.legal { padding: 60px 0 100px; }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap h2 { font-size: 21px; font-weight: 800; color: var(--navy-deep); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--sand); }
.legal-wrap p { font-size: 15px; color: #475569; line-height: 1.9; margin-bottom: 14px; }
.legal-wrap ul { padding-right: 22px; margin-bottom: 14px; }
.legal-wrap ul li { font-size: 15px; color: #475569; line-height: 1.85; margin-bottom: 8px; list-style: disc; }
.legal-note { background: var(--sand); border: 1px solid var(--orange-glow); border-radius: var(--r-md); padding: 16px 20px; margin-bottom: 30px; }
.legal-note p { font-size: 14px; color: var(--navy); margin: 0; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-lg); padding: 30px 20px; text-align: center; transition: var(--tr); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.team-av { width: 80px; height: 80px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.team-card h4 { font-size: 16px; font-weight: 800; color: var(--navy-deep); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--orange-dark); font-weight: 600; }

/* ===== POLICY BAR ===== */
.policy-bar { background: var(--gray-light); padding: 12px 0; text-align: center; font-size: 12px; color: var(--gray); }
.policy-bar a { color: var(--navy); margin: 0 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .slide-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .slide-card { flex: 0 0 calc(50% - 10px); }
  .hero-float-card.top { left: 0; }
  .hero-float-card.bottom { right: 0; }
  .float-btn { height: 58px; padding: 0 16px; gap: 9px; }
  .float-btn .fb-ico { font-size: 22px; }
  .float-btn .fb-main { font-size: 12px; white-space: nowrap; }
  .float-btn .fb-sub { display: none; }
}

/* ===========================================
   TESTIMONIALS — نظرات متنی واقعی مشتریان
   =========================================== */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 8px;
}
.testimonial-card {
  background: var(--cream); border: 1px solid var(--gray-border);
  border-radius: var(--r-lg); padding: 28px; transition: var(--tr);
  display: flex; flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); border-color: var(--orange-glow); }
.testimonial-stars { color: var(--orange); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14.5px; line-height: 1.95; color: #3D4A5C;
  margin-bottom: 22px; flex: 1;
}
.testimonial-text::before { content: '“'; color: var(--orange-glow); font-size: 28px; font-weight: 900; line-height: 0; vertical-align: -10px; margin-left: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--white);
}
.testimonial-name { font-size: 14.5px; font-weight: 800; color: var(--navy-deep); }
.testimonial-loc { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ===========================================
   FULL SERVICE A-TO-Z — خدمات صفر تا صد
   =========================================== */
.fullservice { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.fs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 8px; counter-reset: fsstep;
}
.fs-item {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--r-lg); padding: 26px 22px; position: relative;
  transition: var(--tr); counter-increment: fsstep;
}
.fs-item:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--orange-glow); }
.fs-item::before {
  content: counter(fsstep);
  position: absolute; top: -14px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-orange);
}
.fs-ico { font-size: 30px; margin-bottom: 14px; display: block; }
.fs-item h4 { font-size: 15.5px; font-weight: 800; color: var(--navy-deep); margin-bottom: 8px; line-height: 1.5; }
.fs-item p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* ===========================================
   EXTRA IMAGES MOSAIC — گالری تصاویر بیشتر
   =========================================== */
.img-mosaic { padding: 90px 0; background: var(--navy-deep); position: relative; overflow: hidden; }
.img-mosaic::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,87,34,0.12) 0%, transparent 70%);
}
.mosaic-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 14px; position: relative; z-index: 1;
}
.mosaic-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.mosaic-item.big { grid-column: span 2; grid-row: span 2; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-item:hover img { transform: scale(1.07); }
.mosaic-tag {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(11,21,48,0.75); backdrop-filter: blur(6px);
  color: var(--white); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(255,138,91,0.3);
}

/* ===========================================
   RESPONSIVE — new components
   =========================================== */
@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .mosaic-item.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .fs-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .mosaic-item.big { grid-column: span 2; grid-row: span 1; height: 220px; }
}
