
@font-face {
  font-family: 'Vazir';
  src: url('../fonts/Vazir-Regular.eot');
  src: url('../fonts/Vazir-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Vazir-Regular.woff2') format('woff2'),
       url('../fonts/Vazir-Regular.woff') format('woff'),
       url('../fonts/Vazir-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Vazir';
  src: url('../fonts/Vazir-Bold.eot');
  src: url('../fonts/Vazir-Bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Vazir-Bold.woff2') format('woff2'),
       url('../fonts/Vazir-Bold.woff') format('woff'),
       url('../fonts/Vazir-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Vazir';
  src: url('../fonts/Vazir-Medium.eot');
  src: url('../fonts/Vazir-Medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Vazir-Medium.woff2') format('woff2'),
       url('../fonts/Vazir-Medium.woff') format('woff'),
       url('../fonts/Vazir-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}


body {
  direction: rtl; 
  font-family: 'Vazir', sans-serif;
}

/* Subtle Grain/Noise Texture Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* =============================================
   Section Decorative SVG Elements — Ultra Subtle
   ============================================= */

/* Shared base for all deco SVGs */
.deco-hero-route,
.deco-feature-radar,
.deco-timeline-map,
.deco-dest-compass,
.deco-blog-lines {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Hero — dotted flight route, bottom-right */
.deco-hero-route {
  bottom: 20px;
  right: 30px;
  width: 280px;
  height: 220px;
  color: rgba(5, 150, 105, 0.1);
}

/* Features — radar circles, top-left */
.deco-feature-radar {
  top: -40px;
  left: -60px;
  width: 300px;
  height: 300px;
  color: rgba(5, 150, 105, 0.1);
}

/* Timeline — world map dots, center-right */
.deco-timeline-map {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 480px;
  height: 240px;
  color: rgba(0, 0, 0, 0.08);
}

/* Destinations — compass rose, right side */
.deco-dest-compass {
  top: 60px;
  right: -40px;
  width: 260px;
  height: 260px;
  color: rgba(5, 150, 105, 0.1);
}

/* Blog — diagonal lines, bottom-left */
.deco-blog-lines {
  bottom: 0;
  left: 0;
  width: 250px;
  height: 200px;
  color: rgba(0, 0, 0, 0.08);
}

.ltr {
  direction: ltr; 
}

h1, h2, h3, h4, h5, h6, p, a, li, input, textarea, button, .btn, strong, b, .main-menu .navigation > li > a {
    font-family: 'Vazir', sans-serif !important;
}


/* ============================================================
   NEW MODERN HEADER STYLES
   ============================================================ */

/* --- Main Header Container --- */
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.main-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  width: 100%;
  padding: 0 48px;
}

.header-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
}

/* --- Logo --- */
.header-logo {
  flex-shrink: 0;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 42px;
  width: auto;
  transition: opacity 0.3s ease;
}

.header-logo a:hover img {
  opacity: 0.8;
}

/* --- Navigation --- */
.header-nav {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}

.nav-links li a:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.06);
}

.nav-links li.current a {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  font-weight: 600;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: #059669;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover::after,
.nav-links li.current a::after {
  width: 20px;
}

/* --- Auth Button --- */
.header-action {
  flex-shrink: 0;
  margin-right: auto;
}

.btn-auth {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #059669;
  background: transparent;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-auth:hover {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.05);
  color: #059669;
}

.btn-auth:active {
  background: rgba(5, 150, 105, 0.1);
}

.btn-auth i {
  font-size: 14px;
  opacity: 0.7;
}

/* --- Mobile Toggle Button --- */
.main-header .mobile-nav-toggler {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 20px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #374151;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-visible .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-visible .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-visible .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.4s, opacity 0s 0.4s;
}

.mobile-menu-visible .mobile-menu {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0s 0s;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 5;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu-visible .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-logo img {
  height: 36px;
  width: auto;
}

.mobile-menu .close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.mobile-menu .close-btn:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.25s ease;
  border-right: 3px solid transparent;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li.current a {
  color: #059669;
  background: rgba(5, 150, 105, 0.04);
  border-right-color: #059669;
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid #f3f4f6;
}

.btn-auth-mobile {
  width: 100%;
  justify-content: center;
  padding: 10px 24px;
  font-size: 14px;
  margin-bottom: 16px;
  background: rgba(5, 150, 105, 0.06);
  border-color: #059669;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.mobile-contact p i {
  color: #059669;
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.mobile-contact p a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-contact p a:hover {
  color: #059669;
}

/* --- Body padding for fixed header --- */
.boxed_wrapper {
  padding-top: 72px;
}

/* --- Hide old header elements (backwards compatibility) --- */
.header-top,
.sticky-header,
.nav-right,
.search-box-outer {
  display: none !important;
}


/** hero-section **/

.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    linear-gradient(180deg, 
      #e6f9f0 0%,
      #ecfdf5 20%,
      #f0fdf6 40%,
      #f5fef9 60%,
      #fafffe 80%,
      #ffffff 100%
    );
}

/* Mesh gradient blobs for depth */
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroBlobDrift 18s ease-in-out infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroBlobDrift 22s ease-in-out infinite alternate-reverse;
}

@keyframes heroBlobDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 15px) scale(0.97); }
}

/* Geometric grid pattern overlay */
.hero-section .hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(5,150,105,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,150,105,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
}

/* Sparkle particles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(5, 150, 105, 0.2);
  border-radius: 50%;
  animation: sparkleTwinkle 3s ease-in-out infinite;
}

.sparkle:nth-child(2) { animation-delay: 0.5s; width: 2px; height: 2px; }
.sparkle:nth-child(3) { animation-delay: 1s; width: 4px; height: 4px; background: rgba(16, 185, 129, 0.15); }
.sparkle:nth-child(4) { animation-delay: 1.5s; }
.sparkle:nth-child(5) { animation-delay: 2s; width: 2px; height: 2px; }
.sparkle:nth-child(6) { animation-delay: 0.8s; width: 3px; height: 3px; background: rgba(16, 185, 129, 0.12); }
.sparkle:nth-child(7) { animation-delay: 2.3s; width: 2px; height: 2px; }
.sparkle:nth-child(8) { animation-delay: 1.2s; width: 4px; height: 4px; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* --- Hero Content (Right in RTL) --- */
.hero-content {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 500;
  color: #059669;
  line-height: 1;
}

.hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.35;
  color: #111827;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.title-highlight {
  position: relative;
  color: #059669;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 100%;
  height: 8px;
  background: rgba(5, 150, 105, 0.12);
  border-radius: 4px;
  z-index: -1;
  animation: expandWidth 0.6s ease 0.9s both;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.7s ease 0.3s both;
  margin-left: auto;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.45s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #059669;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
  color: #fff;
}

.hero-btn-primary i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
  transform: translateX(-4px);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  background: transparent;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-outline:hover {
  border-color: #059669;
  color: #059669;
  background: rgba(5, 150, 105, 0.03);
}

.hero-btn-outline i {
  font-size: 17px;
  color: #059669;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 0.7s ease 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #e5e7eb;
}

/* --- Hero Visual (Left in RTL) --- */
.hero-visual {
  flex: 1;
  position: relative;
  min-height: 520px;
  animation: fadeInLeft 0.9s ease 0.3s both;
}

/* Airplane Orbit */
.airplane-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;
  overflow: visible;
}

.orbit-path {
  animation: orbitDashSpin 40s linear infinite;
}

.airplane-g {
  /* Motion handled by SVG animateMotion */
}

/* Contrail vapor puffs - appear occasionally */
.contrail {
  animation: contrailCycle 8s ease-in-out infinite;
}
@keyframes contrailCycle {
  0%, 100% { opacity: 0; }
  15%, 70% { opacity: 1; }
  85% { opacity: 0; }
}

.airplane-icon {
  fill: #059669;
  filter: drop-shadow(0 2px 6px rgba(5,150,105,0.35));
}

@keyframes orbitDashSpin {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 200; }
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
  position: relative;
  z-index: 7;
}

.grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.grid-item:hover {
  box-shadow: 0 8px 36px rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.25);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Shine sweep effect */
.grid-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 2;
}

.grid-item:hover .grid-shine {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.grid-main {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  animation: scaleIn 0.8s ease 0.5s both;
}

.grid-main::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(5,150,105,0.3), transparent, rgba(16,185,129,0.2));
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.4; }
  100% { opacity: 0.9; }
}

.grid-top {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  animation: scaleIn 0.8s ease 0.65s both;
}

.grid-bottom {
  grid-row: 2 / 2;
  grid-column: 1 / 2;
  animation: scaleIn 0.8s ease 0.8s both;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: floatIn 0.7s ease both;
  border: 1px solid rgba(255,255,255,0.7);
}

.card-passport {
  bottom: 30px;
  right: -20px;
  animation-delay: 1s;
  animation: floatIn 0.7s ease 1s both, floatCardY 3s ease-in-out 1.7s infinite;
}

.card-globe {
  top: 20px;
  left: -10px;
  animation-delay: 1.2s;
  animation: floatIn 0.7s ease 1.2s both, floatCardY 3.5s ease-in-out 1.9s infinite;
}

@keyframes floatCardY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  font-size: 18px;
  color: #059669;
}

.floating-card .card-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.floating-card .card-text span {
  font-size: 11px;
  color: #9ca3af;
}

/* Floating Dots */
.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: #059669;
  opacity: 0.15;
  z-index: 5;
}

.dot-1 {
  width: 12px;
  height: 12px;
  top: 0;
  left: 40%;
  animation: floatY 4s ease-in-out infinite;
}

.dot-2 {
  width: 8px;
  height: 8px;
  bottom: 80px;
  left: 10%;
  animation: floatY 3.5s ease-in-out 0.5s infinite;
}

.dot-3 {
  width: 6px;
  height: 6px;
  top: 40%;
  right: -30px;
  animation: floatY 3s ease-in-out 1s infinite;
  opacity: 0.25;
}

/* --- Hero Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100%; }
}

/* --- Hero Responsive --- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-container {
    gap: 40px;
  }
  .visual-grid {
    height: 440px;
  }
  .hero-visual {
    min-height: 440px;
  }
  /* Feature section */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-title {
    font-size: 26px;
  }
  /* About section */
  .about-new-grid {
    gap: 50px;
  }
  .about-new-title {
    font-size: 26px;
  }
  .about-img-main img {
    height: 360px;
  }
  /* Migration path */
  .migration-path-title {
    font-size: 26px;
  }
  .step-circle {
    width: 56px;
    height: 56px;
  }
  .timeline-svg-line {
    top: 28px;
  }
  .step-circle svg {
    width: 20px;
    height: 20px;
  }
  .step-desc {
    font-size: 13px;
  }
  .consult-inline {
    padding: 36px 32px;
  }
  /* Destinations */
  .dest-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .dest-title {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    gap: 48px;
    text-align: right;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 560px;
    min-height: 380px;
  }
  .airplane-orbit {
    width: 120%;
    height: 120%;
  }
  .visual-grid {
    height: 380px;
  }
  .hero-desc {
    max-width: 100%;
    margin-left: 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-stats {
    justify-content: flex-start;
  }
  .hero-badge {
    margin-left: 0;
    margin-right: 0;
  }
  .card-passport {
    right: 10px;
    bottom: -10px;
  }
  .card-globe {
    left: 10px;
    top: -10px;
  }
  /* About section */
  .about-new {
    padding: 50px 0 40px;
  }
  .about-new-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual-col {
    max-width: 560px;
    margin: 0 auto;
  }
  .about-new-title {
    font-size: 24px;
  }
  .about-actions {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  /* Feature section */
  .feature-section-new {
    padding: 50px 0 40px;
  }
  .feature-cta-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }
  .feature-cta-text {
    flex-direction: column;
  }
  .feature-cta-actions {
    width: 100%;
    justify-content: center;
  }
  /* Migration path */
  .migration-path {
    padding: 50px 0 40px;
  }
  .timeline-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .timeline-svg-line {
    display: none;
  }
  .migration-path-header {
    margin-bottom: 50px;
  }
  .consult-inline {
    padding: 32px 28px;
  }
  .cif-row {
    flex-wrap: wrap;
  }
  .cif-field {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
  }
  .cif-submit-field {
    flex: 1 1 100%;
  }
  /* Destinations */
  .dest-section {
    padding: 50px 0 40px;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .dest-tab {
    padding: 8px 18px;
    font-size: 13px;
  }
  /* Blog */
  .blog-new {
    padding: 50px 0 40px;
  }
  .blog-new-title {
    font-size: 26px;
  }
  .blog-post-row .blog-post-img {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 30px;
  }
  .hero-container {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 18px;
  }
  .stat-item strong {
    font-size: 18px;
  }
  .visual-grid {
    height: 300px;
  }
  .hero-visual {
    min-height: 300px;
  }
  .floating-card {
    display: none;
  }
  .airplane-orbit {
    display: none;
  }
  /* About section */
  .about-new {
    padding: 40px 0 30px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-img-main img {
    height: 300px;
  }
  .about-img-secondary {
    width: 170px;
    height: 140px;
  }
  .about-exp-badge {
    padding: 16px 18px;
  }
  .exp-number {
    font-size: 28px;
  }
  .about-new-title {
    font-size: 22px;
  }
  /* Feature section */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-title {
    font-size: 22px;
  }
  .feature-subtitle {
    font-size: 15px;
  }
  .feature-header {
    margin-bottom: 40px;
  }
  .feature-section-new {
    padding: 40px 0 30px;
  }
  .feature-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn-primary,
  .cta-btn-phone {
    width: 100%;
    justify-content: center;
  }
  /* Migration path */
  .migration-path {
    padding: 40px 0 30px;
  }
  .migration-path-title {
    font-size: 22px;
  }
  .migration-path-subtitle {
    font-size: 14px;
  }
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .timeline-step:last-child {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .step-title {
    font-size: 15px;
  }
  .consult-inline {
    padding: 28px 22px;
  }
  .consult-inline-title {
    font-size: 18px;
  }
  .cif-field {
    flex: 1 1 100%;
    min-width: 100%;
  }
  /* Destinations */
  .dest-section {
    padding: 40px 0 30px;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .dest-title {
    font-size: 22px;
  }
  .dest-subtitle {
    font-size: 14px;
  }
  .dest-card-img {
    height: 160px;
  }
  .dest-tabs {
    gap: 6px;
  }
  .dest-tab {
    padding: 8px 16px;
    font-size: 12px;
  }
  .dest-cta {
    flex-direction: column;
    gap: 12px;
  }
  /* Blog */
  .blog-new {
    padding: 40px 0 30px;
  }
  .blog-new-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-new-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .blog-new-title {
    font-size: 22px;
  }
  .blog-post-featured .blog-post-img {
    height: 200px;
  }
  .blog-post-featured .blog-post-title {
    font-size: 16px;
  }
  .blog-post-row {
    flex-direction: row;
  }
  .blog-post-row .blog-post-img {
    width: 130px;
  }
  .blog-post-row .blog-post-title {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  .visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }
  .grid-main { grid-row: auto; grid-column: auto; height: 200px; }
  .grid-top { display: none; }
  .grid-bottom { display: none; }
  /* About section */
  .about-img-main img {
    height: 240px;
  }
  .about-img-secondary {
    width: 140px;
    height: 120px;
  }
  .about-exp-badge {
    padding: 14px 14px;
    gap: 8px;
  }
  .exp-number {
    font-size: 24px;
  }
  .exp-label {
    font-size: 11px;
  }
  .about-deco-dots {
    display: none;
  }
  .about-img-stack {
    padding-left: 15px;
  }
  /* Feature section */
  .feature-card-inner {
    padding: 28px 20px 24px;
  }
  .icon-circle {
    width: 56px;
    height: 56px;
    font-size: 26px;
    border-radius: 14px;
  }
  .card-number {
    font-size: 38px;
  }
  .feature-cta-content {
    padding: 28px 20px;
  }
  .feature-cta-title {
    font-size: 18px;
    text-align: right;
  }
  /* Migration path */
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline-step {
    flex-direction: row;
    text-align: right;
    gap: 18px;
  }
  .timeline-step:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .step-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .step-circle {
    width: 52px;
    height: 52px;
  }
  .step-content {
    padding: 0;
    text-align: right;
  }
  .step-desc {
    max-width: none;
    margin: 0;
  }
  .migration-path-title {
    font-size: 22px;
  }
  .migration-path-header {
    margin-bottom: 36px;
  }
  .consult-inline {
    padding: 24px 16px;
    border-radius: 14px;
  }
  .consult-inline-title {
    font-size: 16px;
  }
  .consult-inline-sub {
    font-size: 12px;
  }
  .cif-submit-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
  /* Destinations */
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dest-card-img {
    height: 180px;
  }
  .dest-title {
    font-size: 22px;
  }
  .dest-header {
    margin-bottom: 32px;
  }
  .dest-tabs {
    margin-bottom: 28px;
  }
  /* Blog */
  .blog-new-title {
    font-size: 22px;
  }
  .blog-post-featured .blog-post-img {
    height: 180px;
  }
  .blog-post-featured .blog-post-title {
    font-size: 15px;
  }
  .blog-post-featured .blog-post-body {
    padding: 16px;
  }
  .blog-post-row {
    flex-direction: column;
  }
  .blog-post-row .blog-post-img {
    width: 100%;
    height: 140px;
  }
  .blog-post-row .blog-post-body {
    padding: 12px 16px;
  }
  .blog-posts-stack {
    gap: 14px;
  }
  .blog-new-all-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Old banner section (hidden) --- */
.banner-section { display: none !important; }


/* ============================================
   NEW FEATURE SECTION
   ============================================ */

.feature-section-new {
  position: relative;
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
  overflow: hidden;
}

.feature-section-new::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.feature-section-new::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.feature-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.feature-header {
  text-align: center;
  margin-bottom: 60px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 20px;
}

.feature-badge i {
  font-size: 12px;
  color: #f59e0b;
}

.feature-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  line-height: 1.45;
  margin-bottom: 16px;
}

.feature-title-accent {
  color: #059669;
  position: relative;
}

.feature-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 100%;
  height: 8px;
  background: rgba(5, 150, 105, 0.12);
  border-radius: 4px;
  z-index: -1;
}

.feature-subtitle {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Feature Card */
.feature-card {
  position: relative;
}

.feature-card-inner {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: right;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  will-change: transform;
}

.feature-card-inner:hover {
  border-color: rgba(5, 150, 105, 0.2);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
  /* transform handled by JS tilt */
}

.card-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5,150,105,0.02) 0%, rgba(16,185,129,0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 20px;
}

.feature-card-inner:hover .card-hover-bg {
  opacity: 1;
}

/* Card Icon */
.feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #059669, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

.icon-circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 21px;
  border: 2px dashed rgba(5, 150, 105, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.8s linear;
}

.feature-card-inner:hover .icon-circle {
  border-radius: 50%;
  transform: rotate(-10deg) scale(1.05);
}

.feature-card-inner:hover .icon-circle::after {
  opacity: 1;
  animation: iconDash 10s linear infinite;
}

@keyframes iconDash {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-circle i {
  line-height: 1;
}

.card-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: color 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

.feature-card-inner:hover .card-number {
  color: rgba(5, 150, 105, 0.08);
}

/* Card Content */
.feature-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.feature-card-inner:hover .feature-card-title {
  color: #059669;
}

.feature-card-desc {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Card Link */
.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 0;
  height: 2px;
  background: #059669;
  transition: width 0.3s ease;
}

.feature-card-inner:hover .feature-card-link::after {
  width: 100%;
}

.feature-card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.feature-card-inner:hover .feature-card-link i {
  transform: translateX(-5px);
}

/* CTA Banner */
.feature-cta {
  position: relative;
}

.feature-cta-content {
  background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.feature-cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.feature-cta-content::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.feature-cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
}

.feature-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  text-align: right;
}

.feature-cta-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.feature-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #059669;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-btn-primary:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  direction: ltr;
}

.cta-btn-phone:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-btn-phone i,
.cta-btn-primary i {
  font-size: 16px;
}


/** OLD feature-section (hidden) **/
.feature-section { display: none !important; }

.feature-block-one .inner-box{
  overflow: hidden;
  border: 1px solid #d6d4dd;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 0%;
  left: 0px;
  top: 0px;
  border-radius: 10px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover:before{
  width: 100%;
  height: 100%;
}

.feature-block-one .inner-box .icon-box{
  background: #d6d4dd;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  left:-130px;
  top: -130px;
  width: 260px;
  height: 260px;
  line-height: 260px;
  z-index: 1;
}

.feature-block-one .inner-box .icon-box i{
  position: relative;
  left: 54px;
  top: 67px;
}

.feature-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scaleY(0) scaleX(0);
  z-index: -1;
  border-radius: 50%;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box:before{
  transform: scaleY(1) scaleX(1);
}

.feature-block-one .inner-box .link i{
  position: absolute;
  left: 0px;
  top: 11px;
}

.feature-block-one .inner-box .link a{
  text-transform: uppercase;
}


/* ============================================
   NEW ABOUT SECTION
   ============================================ */

.about-new {
  position: relative;
  padding: 60px 0 50px;
  background: #ffffff;
  overflow: hidden;
}

.about-new-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Visual Column ---- */
.about-visual-col {
  position: relative;
}

.about-img-stack {
  position: relative;
  padding-bottom: 40px;
  padding-left: 30px;
}

.about-img-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-stack:hover .about-img-main img {
  transform: scale(1.04);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 150, 105, 0.08) 100%);
  pointer-events: none;
  border-radius: 24px;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: transform 0.4s ease;
}

.about-img-stack:hover .about-img-secondary {
  transform: translateY(-4px);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Experience Badge */
.about-exp-badge {
  position: absolute;
  top: 30px;
  left: 0;
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.25);
  transition: transform 0.4s ease;
}

.about-img-stack:hover .about-exp-badge {
  transform: translateY(-3px);
}

.exp-number {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.exp-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.9;
}

/* Decorative Dots */
.about-deco-dots {
  position: absolute;
  bottom: 60px;
  right: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(5,150,105,0.15) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 1;
}

/* ---- Content Column ---- */
.about-content-col {
  text-align: right;
}

.about-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.badge-line {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #059669, #10b981);
  border-radius: 3px;
}

.about-new-badge span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-new-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  line-height: 1.45;
  margin-bottom: 22px;
}

.about-title-accent {
  color: #059669;
  position: relative;
  display: inline;
}

.about-new-lead {
  font-size: 17px;
  color: #059669;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.about-new-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Feature List */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.about-feat-item:hover {
  background: #f0fdf4;
  border-color: rgba(5, 150, 105, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.06);
}

.feat-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon i {
  font-size: 18px;
  color: #059669;
}

.feat-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.feat-text span {
  font-size: 12.5px;
  color: #9ca3af;
  line-height: 1.4;
}

/* Actions */
.about-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #ffffff;
  padding: 8px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.2);
}

.about-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.3);
}

.about-btn-primary i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.about-btn-primary:hover i {
  transform: translateX(-5px);
}

.about-contact-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #059669;
  flex-shrink: 0;
}

.contact-info span {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 2px;
}

.contact-info a {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  direction: ltr;
  display: inline-block;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #059669;
}

/* Hide old about section */
.about-section { display: none !important; }


/** OLD about-section **/

.content_block_1 .content-box .text h5{
  font-style: italic;
  line-height: 34px;
}

.content_block_1 .content-box .list-style-one li{
  width: 50%;
}

.list-style-one li{
  padding-left: 28px;
}

.list-style-one li:before{
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  left: 0px;
  top: 0px;
  font-size: 15px;
  font-weight: 700;
}

.about-section .pattern-layer{
  top: -135px;
  width: 401px;
  height: 515px;
  background-repeat: no-repeat;
}

.image_block_1 .image-box .image-2{
  bottom: -60px;
}

.image_block_1 .image-box img{
  width: 100%;
  border-radius: 10px;
}

.image_block_1 .image-box .text{
  width: 290px;
  left: -55px;
  border-bottom-right-radius: 0px;
}

.image_block_1 .image-box .text h5{
  line-height: 26px;
}

.image_block_1 .image-box:before{
  position: absolute;
  content: '';
  width: 26px;
  height: 133px;
  left: 15px;
  top: 0px;
  border-radius: 10px;
}

.image_block_1 .image-box .image-1{
  overflow: hidden;
}

.image_block_1 .image-box:hover .image-1 img{
  transform: scale(1.05);
}

.image_block_1 .image-box .text:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 28px;
  height: 19px;
  right: 0px;
  bottom: -19px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
}


/* Hide old service section */
.service-section { display: none !important; }

/** ============================================================
    MIGRATION PATH SECTION (Timeline + Inline Form)
    ============================================================ **/

.migration-path {
  padding: 60px 0 50px;
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}

.migration-path::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5,150,105,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.migration-path-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.migration-path-header {
  text-align: center;
  margin-bottom: 70px;
}

.migration-path-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.migration-path-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #059669, #10b981);
  border-radius: 2px;
}

.migration-path-badge span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  letter-spacing: -0.2px;
}

.migration-path-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.4;
}

.migration-path-title .accent {
  color: #059669;
}

.migration-path-subtitle {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  padding: 0 20px;
  margin-bottom: 70px;
}

/* ---- Animated SVG Icons ---- */
.step-icon {
  display: block;
}

.icon-draw,
.icon-draw-delay,
.icon-draw-delay2 {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-draw-delay {
  transition-delay: 0.4s;
}

.icon-draw-delay2 {
  transition-delay: 0.7s;
}

/* Animate icons when section is in view */
.migration-path.in-view .icon-draw {
  stroke-dashoffset: 0 !important;
}

.migration-path.in-view .icon-draw-delay {
  stroke-dashoffset: 0 !important;
}

.migration-path.in-view .icon-draw-delay2 {
  stroke-dashoffset: 0 !important;
}

/* Also animate on hover */
.timeline-step:hover .icon-draw,
.timeline-step:hover .icon-draw-delay,
.timeline-step:hover .icon-draw-delay2 {
  stroke-dashoffset: 0 !important;
}

/* Enhanced step circle */
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.step-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(16, 185, 129, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.timeline-step:hover .step-circle::before {
  opacity: 1;
}

.timeline-step:hover .step-circle {
  border-color: #059669;
  color: #fff;
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.28);
  transform: scale(1.1);
}

.timeline-svg-line {
  position: absolute;
  top: 32px; /* center of 64px circle */
  left: 10%;
  width: 80%;
  height: 6px;
  z-index: 0;
}

.timeline-progress-line {
  transition: stroke-dashoffset 2s ease;
}

.migration-path.in-view .timeline-progress-line {
  stroke-dashoffset: 0 !important;
}

/* Desktop animated traveling dot on horizontal line (RTL: right to left) */
.timeline-wrapper::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 10%;
  left: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.6), 0 0 28px rgba(16, 185, 129, 0.3);
  z-index: 3;
  animation: travelRTL 4s ease-in-out infinite;
}

@keyframes travelRTL {
  0% { right: 10%; opacity: 1; }
  90% { right: calc(90% - 10px); opacity: 1; }
  95% { opacity: 0; }
  100% { right: 10%; opacity: 0; }
}

/* Steps Grid */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* Individual Step */
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.migration-path.in-view .timeline-step {
  opacity: 1;
  transform: translateY(0);
}

.migration-path.in-view .timeline-step[data-step="1"] { transition-delay: 0.1s; }
.migration-path.in-view .timeline-step[data-step="2"] { transition-delay: 0.3s; }
.migration-path.in-view .timeline-step[data-step="3"] { transition-delay: 0.5s; }
.migration-path.in-view .timeline-step[data-step="4"] { transition-delay: 0.7s; }
.migration-path.in-view .timeline-step[data-step="5"] { transition-delay: 0.9s; }

/* Step Node (circle) */
.step-node {
  position: relative;
  margin-bottom: 24px;
}

.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0);
  transition: background 0.4s ease;
}

.timeline-step:hover .step-pulse {
  background: rgba(5, 150, 105, 0.06);
  animation: stepPulseAnim 1.5s ease infinite;
}

@keyframes stepPulseAnim {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* Step Content */
.step-content {
  padding: 0 8px;
}

.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.timeline-step:hover .step-title {
  color: #059669;
}

.step-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}


/** ============================================================
    INLINE CONSULTATION FORM (under timeline)
    ============================================================ **/

.consult-inline {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 44px 48px;
  min-height: auto;
}

.consult-inline-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.consult-inline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.88) 0%, rgba(5,150,105,0.72) 100%);
  z-index: 1;
}

.consult-inline-inner {
  position: relative;
  z-index: 2;
}

.consult-inline-header {
  text-align: center;
  margin-bottom: 28px;
}

.consult-inline-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.consult-inline-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Form Row */
.cif-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.cif-field {
  flex: 1;
  min-width: 0;
}

.cif-field input,
.cif-field select {
  width: 100%;
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Vazirmatn', 'Vazir', sans-serif;
  color: #fff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  outline: none;
  direction: rtl;
  height: 100%;
  box-sizing: border-box;
}

.cif-field input::placeholder {
  color: rgba(255,255,255,0.5);
}

.cif-field select {
  appearance: none;
  -webkit-appearance: none;
  color: rgba(255,255,255,0.5);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='rgba(255,255,255,0.5)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: left 14px center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 38px;
}

.cif-field select option {
  background: #1b182f;
  color: #fff;
}

.cif-field input:focus,
.cif-field select:focus {
  border-color: #10b981;
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.cif-submit-field {
  flex: 0 0 auto;
}

.cif-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Vazirmatn', 'Vazir', sans-serif;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
  white-space: nowrap;
  height: 100%;
}

.cif-submit-btn:hover {
  background: linear-gradient(135deg, #047857, #059669);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.45);
  transform: translateY(-2px);
}

.cif-submit-btn svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.cif-submit-btn:hover svg {
  transform: rotate(180deg) translateX(4px);
}

/* Hide old consult section */
.consult-section { display: none !important; }


/** service-section (OLD - hidden) **/

.service-section .bg-layer{
  background: #f1f0f7;
  width: 100%;
  height: 597px;
  z-index: -1;
}

.service-block-one .inner-box .image-box{
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.service-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box img{
  transform: scaleY(1.05);
}

.service-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: #1b182f;
  z-index: 1;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;

}

.service-block-one .inner-box:hover .image-box:before{
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.service-block-one .inner-box .lower-content .icon-box{
  top: -70px;
}

.service-block-one .inner-box .link i{
  position: absolute;
  left: 0px;
  top: 11px;
}

.service-block-one .inner-box .link a{
  text-transform: uppercase;
}

.service-block-one .inner-box .lower-content{
  border: 1px solid #d6d4dd;
  border-radius: 0px 0px 10px 10px;
  border-top: none;
}

.service-section .more-text a{
  line-height: 20px;
}

.service-section .more-text p{
  line-height: 20px;
}

.service-section .inner-container{
  border-bottom: 1px solid #d6d4dd;
}

.service-block-one .inner-box{
  overflow: hidden;
}

.service-block-one .inner-box .lower-content:before{
  position: absolute;
  content: '';
  background: #d6d4dd;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  right: -43px;
  bottom: -43px;
}

.service-block-one .inner-box .lower-content:after{
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  border-radius: 50%;
  right: -43px;
  bottom: -43px;
  transform: translateY(0) translateX(0);
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content:after{
  transform: translateY(1) translateX(1);
  width: 95px;
  height: 95px;
}

.bg-color-1{
  background: #1b182f;
}

.service-section .pattern-layer{
  top: -70px;
  width: 119px;
  height: 247px;
  background-repeat: no-repeat;
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */

.dest-section {
  position: relative;
  padding: 60px 0 50px;
  background: #ffffff;
  overflow: hidden;
}

.dest-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.dest-header {
  text-align: center;
  margin-bottom: 48px;
}

.dest-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.dest-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #059669;
  border-radius: 2px;
}

.dest-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.3;
}

.dest-title .accent {
  color: #059669;
}

.dest-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}

/* Filter Tabs */
.dest-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.dest-tab {
  padding: 3px 24px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dest-tab:hover {
  border-color: #059669;
  color: #059669;
}

.dest-tab.active {
  background: #059669;
  border-color: #059669;
  color: #ffffff;
}

/* Cards Grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  will-change: transform;
}

.dest-card:hover {
  /* transform handled by JS tilt */
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

/* Featured Card — subtle accent only */
.dest-card.dest-featured {
  border: 1.5px solid #059669;
  box-shadow: 0 4px 16px rgba(5,150,105,0.10);
}

.dest-card.dest-featured .dest-card-name {
  color: #059669;
  text-align: right;
}

/* Card Image */
.dest-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Flag */
.dest-card-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Popular Tag */
.dest-popular-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #059669;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

/* Card Body */
.dest-card-body {
  padding: 20px;
}

.dest-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  text-align: right;
}

.dest-card-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 14px;
  text-align: right;

}

/* Tags */
.dest-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.dest-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.dest-tag:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}

/* Card Link */
.dest-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dest-card-link:hover {
  gap: 10px;
  color: #047857;
}

.dest-card-link svg {
  transition: transform 0.3s ease;
}

.dest-card-link:hover svg {
  transform: translateX(-4px);
}

/* CTA at bottom */
.dest-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dest-cta p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

.dest-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: #059669;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(5,150,105,0.25);
}

.dest-cta-btn:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,150,105,0.3);
  color: #ffffff;
}

.dest-cta-btn svg {
  transition: transform 0.3s ease;
}

.dest-cta-btn:hover svg {
  transform: translateX(-4px);
}

/* Card filter animation */
.dest-card.hiding {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.dest-card.showing {
  animation: destCardIn 0.4s ease forwards;
}

@keyframes destCardIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Old country-section (hidden) --- */
.country-section { display: none !important; }

/** country-section **/

.country-section .inner-content{
  position: relative;
  margin-right: -500px;
}

.country-section .inner-content .single-item{
  overflow: hidden;
}

.country-section .inner-content .single-item .image-box{
  overflow: hidden;
}

.country-section .inner-content .single-item .image-box img{
  width: 100%;
  border-radius: 10px;
}

.country-section .inner-content .single-item .flag{
  width: 57px;
  height: 57px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.country-section .inner-content .single-item .flag img{
  border-radius: 50%;
}

.country-section .inner-content .single-item .flag:before{
  position: absolute;
  content: '';
  border: 3px solid #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.country-section .inner-content .single-item .image-box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(-90deg, rgba(16,14,28,0.10) 50%, rgba(16,14,28,0.95) 100%);
  top: 0px;
  right: 0px;
  z-index: 1;
}

.country-section .owl-dots{
  position: absolute;
  left: -505px;
  bottom: 33px;
}

.country-section .owl-theme .owl-dots .owl-dot span{
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.country-section .owl-theme .owl-dots .owl-dot.active span,
.country-section .owl-theme .owl-dots .owl-dot span:hover{
  background: #fff;
  transform: scale(1.5);
}

.bg-color-2{
  background: #f1f0f7;
}

/* ============================================
   BLOG SECTION (NEW)
   ============================================ */

.blog-new {
  position: relative;
  padding: 60px 0 50px;
  background: #f9fafb;
  overflow: hidden;
}

.blog-new-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.blog-new-header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 12px;
  justify-content: center;
}

.blog-new-badge .badge-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #059669;
  border-radius: 2px;
}

.blog-new-title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.3;
}

.blog-new-title .accent {
  color: #059669;
}

.blog-new-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.blog-new-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: #059669;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  border: 1.5px solid #059669;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.blog-new-all-btn:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5,150,105,0.2);
}

.blog-new-all-btn svg {
  transition: transform 0.3s ease;
}

.blog-new-all-btn:hover svg {
  transform: translateX(-4px);
}

/* Grid: Featured left + stacked right */
.blog-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Post Card Base */
.blog-post {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

/* Post Image */
.blog-post-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-post:hover .blog-post-img img {
  transform: scale(1.06);
}

.blog-post-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Category Badge */
.blog-post-category {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: #059669;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

/* Post Body */
.blog-post-body {
  padding: 18px;
}

/* Meta */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
}

.blog-meta-item svg {
  color: #d1d5db;
  flex-shrink: 0;
}

/* Title */
.blog-post-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 8px;
  text-align: right;
}

.blog-post-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-post-title a:hover {
  color: #059669;
}

/* Excerpt */
.blog-post-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 12px;
  text-align: right;
}

/* Read More Link */
.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-post-link:hover {
  gap: 10px;
  color: #047857;
}

.blog-post-link svg {
  transition: transform 0.3s ease;
}

.blog-post-link:hover svg {
  transform: translateX(-4px);
}

/* Featured Post - Full height left column */
.blog-post-featured {
  display: flex;
  flex-direction: column;
}

.blog-post-featured .blog-post-img {
  height: 220px;
  flex-shrink: 0;
}

.blog-post-featured .blog-post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
}

.blog-post-featured .blog-post-title {
  font-size: 18px;
}

.blog-post-featured .blog-post-link {
  margin-top: auto;
}

/* Stacked Posts */
.blog-posts-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Row Post (horizontal) */
.blog-post-row {
  display: flex;
  flex-direction: row;
}

.blog-post-row .blog-post-img {
  width: 150px;
  min-height: 100%;
  flex-shrink: 0;
}

.blog-post-row .blog-post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
}

.blog-post-row .blog-post-title {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.5;
}

.blog-post-row .blog-post-meta {
  margin-bottom: 6px;
  gap: 10px;
}

.blog-post-row .blog-meta-item {
  font-size: 11px;
}

.blog-post-row .blog-post-link {
  margin-top: auto;
  padding-top: 2px;
  font-size: 13px;
}

/* --- Old news-section (hidden) --- */
.news-section { display: none !important; }

/** news-section **/

.news-block-one .inner-box .image-box .post-date{
  text-transform: uppercase;
  text-align: center;
  line-height: 42px;
  border-radius: 8px 8px 0px 0px;
}
.news-block-one .inner-box{
  overflow: hidden;
}

.news-block-one .inner-box .image-box{
  overflow: hidden;
}

.news-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  right: 0px;
  flex-wrap: wrap;
  background: #1b182f;
  z-index: 1;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;

}

.news-block-one .inner-box:hover .image-box:before{
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.news-block-one .inner-box .image-box .image a{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  font-size: 0px;
  color: #fff;
  z-index: 1;
}

.news-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box .image img{
  transform: scaleY(1.05);
}

.news-block-one .inner-box .post-info li a{
  color: #73727c;
}

.news-block-one .inner-box:hover{
  box-shadow: 0 10px 30px 0px rgb(0 0 0 / 06%);
}

.news-block-one .inner-box .post-info li:before{
  position: absolute;
  content: '';
  background: #a09fa5;
  width: 5px;
  height: 1px;
  top: 16px;
  right: -15px;
}

.news-block-one .inner-box .post-info li:last-child:before{
  display: none;
}

.news-block-one .inner-box .link a{
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  z-index: 1;
  transform: scaleX(0);
}

.news-block-one .inner-box:hover .link a{
  opacity: 1;
  transform: scaleX(1);
}

.news-block-one .inner-box:hover .post-info{
  opacity: 0;
}

.news-section .bg-layer{
  width: 100%;
  height: 350px;
}

.border-top{
  border-top: 1px solid #d8d8df !important;
}

/** checkbox **/

.check-box label {
  position: relative;
  font-size: 15px;
  line-height: 26px;
  color: #9390a7;
  padding-left: 30px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}

.check-box label:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 4px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  border-color: #484558;
  background: transparent;
}

.check-box label:after {
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-size: 9px;
  left: 0px;
  top: 4px;
  width: 19px;
  height: 19px;
  line-height: 19px;
  color: #7f7c96;
  opacity: 0;
  text-align: center;
}

.check-box input:checked + label:after {
  opacity: 1;
}

.check-box input{
  display: none;
}

/** team-section **/

.team-block-one .inner-box .designation{
  text-transform: uppercase;
}

.team-block-one .inner-box .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 3.5px;
}

.team-block-one .inner-box .social-links li a{
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: #73727c;
  font-size: 14px;
  background: #f1f0f7;
  text-align: center;
  border-radius: 50%;
}

.team-block-one .inner-box .social-links li a:hover{
  color: #fff;
}

.team-block-one .inner-box .overlay-content{
  position: absolute;
  left: 0px;
  bottom: -30px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.team-block-one .inner-box:hover .overlay-content{
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}

.team-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.team-section .owl-item{
  opacity: 0;
}

.team-section .owl-item.active{
  opacity: 1;
}

.team-section .inner-content{
  margin-right: -400px;
}

.team-block-one .inner-box .image-box{
  overflow: hidden;
  border-radius: 10px;
}

.team-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  background: #1b182f;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0);
  opacity: 0.7;
  z-index: 1;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box:before{
  transform: scale(1);
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.team-section .owl-dots{
  position: absolute;
  top: -120px;
  left: 0px;
  width: 1170px;
  text-align: right;
}

.team-section .owl-theme .owl-dots .owl-dot span{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.30);
  transition: all 500ms ease;
}

.team-section .owl-theme .owl-dots .owl-dot.active span,
.team-section .owl-theme .owl-dots .owl-dot span:hover{
  transform: scale(1.5);
  background: #000;
}

.team-block-one .inner-box{
  padding-bottom: 25px;
}


/** process-section **/

.processing-block-one .inner-box .icon-box{
  border: 1px solid #d8d7df;
  overflow: hidden;
}

.processing-block-one .inner-box .icon-box span{
  background: #d8d7df;
}

.processing-block-one .inner-box .icon-box span:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 0%;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
}

.processing-block-one .inner-box:hover .icon-box span:before{
  width: 100%;
  height: 100%;
}

.processing-block-one .inner-box .arrow{
  right: -65px;
  top: 87px;
  width: 101px;
  height: 18px;
  background-repeat: no-repeat;
}

.google-map-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 550px;
}

.news-block-two .inner-box .post-info li a{
  color: #73727c;
}

.news-block-two .inner-box .post-info li:before{
  position: absolute;
  content: '';
  background: #a09fa5;
  width: 5px;
  height: 1px;
  top: 16px;
  right: -15px;
}

.news-block-two .inner-box .post-info li:last-child:before{
  display: none;
}

/** page-title **/

.page-title:before{
  position: absolute;
  content: '';
  background: #1b182f;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.8;
}

.page-title .bread-crumb{
  border-radius: 8px 8px 0px 0px;
}

.page-title .bread-crumb li{
  color: #73727c;
  text-transform: uppercase;
}

.page-title .bread-crumb li a{
  color: #73727c;
}


.page-title .bread-crumb li:before{
  position: absolute;
  content: '';
  background: #73727c;
  width: 4px;
  height: 1px;
  top: 13px;
  right: 0px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}

/** about-style-three **/

.about-style-three .image_block_1 .image-box:before{
  display: none;
}

.about-style-three .image_block_1 .image-box .text{
  left: -160px;
}

.image_block_1 .image-box .text-two{
  width: calc(100% - 60px);
}

.image_block_1 .image-box .text-two h4{
  font-style: italic;
}

.content_block_3 .content-box .inner .single-item:before{
  position: absolute;
  content: '';
  background: #d6d4dd;
  width: 1px;
  height: 116px;
  top: 0px;
  right: 0px;
}

.content_block_3 .content-box .inner .single-column:last-child .single-item:before{
  display: none;
}

.content_block_3 .content-box .author-box .author-thumb{
  top: -12px;
}

.content_block_3 .content-box .author-box .author-thumb img{
  border-radius: 50%;
  width: 100%;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:7px;
  background:#f4f4fa;
  border-radius:0px;
}

.progress-box .bar-inner{
  position:relative;
  display:block;
  border-radius:0px;
  width:0px;
  height:7px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box p{
  color: #141417;
}

.default-form .form-group input[type='text'],
.default-form .form-group input[type='email'],
.default-form .form-group textarea{
  position: relative;
  width: 100%;
  height: 70px;
  background: #fff;
  border: 1px solid #d8d8df;
  font-size: 14px;
  color: #797989;
  padding: 15px 30px;
}

.default-form .form-group textarea{
  display: block;
  resize: none;
  height: 170px;
}

.accordion-box .block{
  background: #f4f4fa;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 500ms ease;
}

.accordion-box .block.active-block{
  background: transparent;
  border-color: #d8d8df;
}

.accordion-box .block .acc-btn .icon-outer:before{
  position: absolute;
  content: '\f106';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  top: 0px;
  right: 0px;
  font-size: 18px;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon-outer:before{
  content: '\f107';
}

.accordion-box .block .acc-btn{
  cursor: pointer;
}

.accordion-box .block .acc-content{
  display:none;
  border-top: 1px solid #d8d8df;
}

.accordion-box .block .acc-content.current{
  display:block;  
}

/** contact-section **/

.contact-section #contact-form input,
.contact-section #contact-form textarea{
  background: #f1f0f7;
  border-color: #f1f0f7;
  border-radius: 10px;
}

.contact-section #contact-form .theme-btn{
  padding: 22.5px 68px;
}

.contact-section #contact-form .form-group{
  padding: 0px 10px;
}

.contact-section .form-inner{
  margin: 0px 5px;
}

.contact-section .info-inner{
  overflow: hidden;
}

.contact-section .info-inner .support-box span{
  text-transform: uppercase;
}

.contact-section .info-inner .inner{
  border: 1px solid #d5d3dd;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
}

.contact-section .info-inner .info-list li{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 36px;
  color: #73727c;
  margin-bottom: 25px;
}

.contact-section .info-inner .info-list li:last-child{
  margin-bottom: 0px;
}

.contact-section .info-inner .info-list li a{
  display: inline-block;
  color: #73727c;
}
.contact-section .info-inner .social-links li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.contact-section .info-inner .social-links li:last-child{
  margin: 0px !important;
}

.contact-section .info-inner .social-links li a{
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #f1f0f7;
  font-size: 15px;
  color: #73727c;
  text-align: center;
  border-radius: 50%;
}

.contact-section .info-inner .social-links li a:hover{
  color: #fff;
}

.google-map-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 540px;
}

.footer-logo{
  max-width: 143px;
}

/* rtl */



/* Exclude icon fonts from Vazir font application */
.fa, .fas, .far, .fal, .fab {
    font-family: 'Font Awesome 5 Pro' !important;
}

.fab {
    font-family: 'Font Awesome 5 Brands' !important;
}

.flaticon-, [class^="flaticon-"], [class*=" flaticon-"] {
    font-family: flaticon !important;
}

.pull-left{
  float: right;
}

.pull-right{
  float: left;
}

.owl-carousel{
  direction: ltr;
}

.main-menu .navigation > li{
  float: right;
}

.main-menu{
  float: right;
}

.main-menu .navigation > li:first-child{
  margin-left: 15px !important;
  margin-right: 0px;
}

.main-menu .navigation > li:last-child{
  margin-right: 15px !important;
  margin-left: 0px;
}

.main-menu .navigation > li > ul > li > a, 
.main-menu .navigation > li > .megamenu li > a{
  text-align: right;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  text-align: right;
}

.main-menu .navigation > li > ul > li > ul > li > a{
  text-align: right;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  right: inherit;
  left: 20px;
  content: "\f104";
}

.mobile-menu{
  text-align: right;
}

.mobile-menu .nav-logo{
  text-align: right;
}

.mobile-menu .navigation li > a:before{
  left: inherit;
  right: 0px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  right: inherit;
  left: 6px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  transform: rotate(-90deg);
}

.scroll-top{
  right: inherit;
  left: 30px;
}

.header-top .info-list li{
  padding-left: 25px;
  padding-right: 0px;
}

.header-top .info-list li i{
  left: 5px !important;
  top: 14px !important;
  right: auto;
}

.header-top .social-links, 
.header-top .btn-box{
  float: right;
}

.header-top .social-links{
  margin-right: 0px;
  margin-left: 40px;
}

.header-top{
  padding-left: 0px;
  padding-right: 200px;
}

.header-top .top-inner:before{
  left: inherit;
  right: 0px;
  border-bottom-right-radius: 8px;
}

.header-top .top-inner{
  padding-left: 0px;
  padding-right: 40px;
  border-bottom-right-radius: 8px;
}

.header-lower .outer-box{
  padding-left: 0px;
  padding-right: 200px;
}

.header-lower .logo-box{
  left: inherit;
  right: 0px;
}

.main-header .nav-right{
  float: left;
  padding-left: 0px;
  padding-right: 30px;
  margin-right: 30px;
}

.main-header .nav-right:before{
  left: inherit;
  right: 0px;
}

.main-header .search-box-outer .dropdown-menu{
  left: 0px !important;
  right: inherit;
}

.feature-block-one .inner-box{
  text-align: right;
}

.image_block_1 .image-box .text h5{
  text-align: right;
}

.content_block_1 .content-box{
  margin-right: 0px;
  margin-left: 70px;
  text-align: right;
}

.list-style-one li{
  padding-left: 0px;
  padding-right: 28px;
}

.list-style-one li:before{
  left: inherit;
  right: 0px;
}

.service-block-one .inner-box .lower-content{
  text-align: right;
  padding-right: 40px;
  padding-left: 30px;
}

.news-block-one .inner-box{
  text-align: right;
}

.news-block-one .inner-box .link{
  left: inherit;
  right: 30px;
}

.news-block-one .inner-box .post-info li{
  float: right;
  margin-right: 0px;
  margin-left: 25px;
}

.news-block-one .inner-box .post-info li:before{
  right: inherit;
  left: -15px;
}

.main-footer .top-inner .info-box{
  text-align: right;
  padding-left: 0px;
  padding-right: 50px;
}

.main-footer .top-inner .info-box .icon-box{
  left: inherit;
  right: 0px;
}

.main-footer .widget-section{
  text-align: right;
}

.main-footer .widget-section .newsletter-widget .form-group button{
  right: inherit;
  left: 10px;
}

.check-box label{
  padding-left: 0px;
  padding-right: 30px;
}

.check-box label:before{
  left: inherit;
  right: 0px;
}

.check-box label:after{
  left: inherit;
  right: 0px;
}

.main-footer .widget-section .social-links li{
  margin-right: 0px;
  margin-left: 10px;
  float: right;
}

.main-footer .widget-section .newsletter-widget{
  margin-left: 0px;
  margin-right: -60px;
}

.main-footer .widget-section .about-widget{
  margin-right: 0px;
  margin-left: -30px;
}

.footer-widget.links-widget.ml_80{
  margin-left: 0px;
  margin-right: 80px;
}

.country-section .inner-content{
  margin-right: 0px;
  margin-left: -300px;
  text-align: center !important; 
}

.country-section .inner-content .single-item .text {
    text-align: center !important;
    left: 0;
    right: 0;
}

.country-section .sec-title{
  margin-right: 0px;
  margin-left: 30px; /* Reduced from 60px */
  text-align: right;
}

.header-top .info-list li{
  margin-right: 0px;
  margin-left: 30px;
}
/* Custom Button Sizes */
.banner-carousel .content-box .theme-btn {
  padding: 10px 40px !important;
}

.theme-btn {
  padding: 6px 25px;
}

/* Hide old footer */
.main-footer {
  display: none !important;
}

/* ===============================================
   FOOTER - Modern Minimal
   =============================================== */

.footer-modern {
  position: relative;
  font-family: 'Vazirmatn', 'Vazir', sans-serif;
}

/* --- CTA Bar — Floating creative card overlapping footer --- */
.footer-cta-bar {
  position: relative;
  z-index: 5;
  padding: 0 40px;
  margin-bottom: -60px; /* overlap into footer */
  background: none;
}

.footer-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 52px;
  background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(5, 150, 105, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Decorative shapes inside the CTA */
.footer-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated floating dots pattern */
.footer-cta-bar::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 80px;
  width: 120px;
  height: 120px;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 6;
  pointer-events: none;
  opacity: 0.6;
  animation: ctaDotsFloat 6s ease-in-out infinite;
}

.footer-cta-bar::after {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 100px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transform: rotate(45deg);
  z-index: 6;
  pointer-events: none;
  animation: ctaDiamondSpin 12s linear infinite;
}

@keyframes ctaDotsFloat {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-8px); opacity: 0.9; }
}

@keyframes ctaDiamondSpin {
  0% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(225deg) scale(1.1); }
  100% { transform: rotate(405deg) scale(1); }
}

.footer-cta-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.4;
  text-align: justify;
}

.footer-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-weight: 400;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #fff;
  color: #059669;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.footer-cta-btn:hover {
  background: #f0fdf4;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.footer-cta-btn svg {
  transition: transform 0.3s ease;
}

.footer-cta-btn:hover svg {
  transform: translateX(-4px);
}

.footer-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  direction: ltr;
  position: relative;
  z-index: 2;
}

.footer-cta-phone:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* --- Main Footer --- */
.footer-main {
  background: #111827;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

/* Decorative SVG Globe — bottom-left corner */
.footer-deco-globe {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 340px;
  height: 340px;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}

.footer-deco-globe .flight-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawFlightPath 4s ease-out forwards;
  animation-delay: 1s;
  color: rgba(16, 185, 129, 0.08);
}

.footer-deco-globe .flight-plane {
  opacity: 0;
  animation: showPlane 0.5s ease forwards;
  animation-delay: 4.5s;
  color: rgba(16, 185, 129, 0.1);
}

.footer-deco-globe .flight-dot-origin,
.footer-deco-globe .flight-dot-dest {
  color: rgba(16, 185, 129, 0.07);
}

.footer-deco-globe .flight-dot-dest {
  animation: pulseDot 3s ease-in-out infinite;
  animation-delay: 5s;
}

@keyframes drawFlightPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes showPlane {
  to {
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%, 100% { r: 4; opacity: 0.07; }
  50% { r: 6; opacity: 0.12; }
}

.footer-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 0 48px;
  padding-top: 84px; /* extra space for CTA overlap */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Brand Column */
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  display: flex;
}

.footer-brand .footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: #9ca3af;
  margin: 0 0 24px 0;
  font-weight: 400;
  text-align: justify;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #9ca3af;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-3px);
}

/* Column Titles */
.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
  position: relative;
  padding-bottom: 12px;
  text-align: right;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: #059669;
  border-radius: 2px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: #059669;
  margin-left: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  gap: 8px;
}

.footer-links a:hover::before {
  width: 16px;
  margin-left: 0;
}

/* Contact Items */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-contact-item svg {
  flex-shrink: 0;
  stroke: #059669;
}

.footer-contact-item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.25s ease;
  direction: ltr;
  display: inline-block;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* --- Footer Bottom --- */
.footer-bottom-new {
  background: #0d1117;
  padding: 0 40px;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-new p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}

.footer-bottom-new p a {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-bottom-new p a:hover {
  color: #10b981;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #9ca3af;
}

.footer-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4b5563;
}

/* --- Footer Responsive --- */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-brand .footer-logo {
    width: 100%;
  }
  .footer-about {
    flex: 1;
    margin-bottom: 0;
    min-width: 200px;
    text-align: justify;
  }
  .footer-socials {
    padding-top: 4px;
  }
}

@media (max-width: 991px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 0;
    gap: 24px;
  }
  .footer-cta-actions {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-about {
    flex: none;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .footer-cta-bar {
    padding: 0 20px;
  }
  .footer-cta-text h3 {
    font-size: 18px;
    text-align: right;
  }
  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .footer-cta-btn,
  .footer-cta-phone {
    width: 100%;
    justify-content: center;
  }
  .footer-main {
    padding: 0 20px;
  }
  .footer-main-inner {
    padding: 48px 0 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom-new {
    padding: 0 20px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .footer-cta-text h3 {
    font-size: 16px;
  }
  .footer-cta-text p {
    font-size: 13px;
  }
  .footer-cta-inner {
    padding: 28px 0;
  }
  .footer-main-inner {
    padding: 40px 0 28px;
  }
}

