@font-face {
  font-family: "IRANSansWeb(FaNum)";
  src: url("../fonts/IRANSansWebFaNum.eot");
  src: url("../fonts/IRANSansWebFaNum.eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWebFaNum.woff2") format("woff2"),
    url("../fonts/IRANSansWebFaNum.woff") format("woff"),
    url("../fonts/IRANSansWebFaNum.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Far.Yekan";
  src: url("../fonts/FarYekan.eot");
  src: url("../fonts/FarYekan.eot?#iefix") format("embedded-opentype"),
    url("../fonts/FarYekan.woff2") format("woff2"),
    url("../fonts/FarYekan.woff") format("woff"),
    url("../fonts/FarYekan.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "kalameh";
  src: url("../fonts/KalamehWebRegular.woff2");
  src: url("../fonts/FarYekan.woff2") format("woff2");
}

:root {
  --color-accent: #e4c490;
  --color-primary: #0c2423;
}

html {
  scroll-behavior: smooth !important;
}

body {
  background-color: var(--color-primary);
  background: linear-gradient(260deg, #353939d7 0%, #0a1716 100%);
  background: repeating-linear-gradient(260deg, #353939d7 0%, #0a1716 100%);
  color: #fff;
  font-family: "Far.Yekan";
  overflow-x: hidden;
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 200px; /
}

.kalameh {
  font-family: "kalameh", sans-serif;
}

.menu-item {
  position: relative;
  transition: all 0.3s ease;
}

.menu-item:hover::after,
.menu-item.active::after {
  width: 100%;
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

.hamburger span {
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* carousel */

.carousel {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.carousel .list {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel .list .item {
  width: 180px;
  height: 250px;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 70%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background-position: center;
  background-size: cover;
  z-index: 100;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.carousel .list .item:nth-child(3) {
  left: 67%;
}
.carousel .list .item:nth-child(4) {
  left: calc(67% + 200px);
}
.carousel .list .item:nth-child(5) {
  left: calc(67% + 400px);
}
.carousel .list .item:nth-child(6) {
  left: calc(67% + 600px);
}
.carousel .list .item:nth-child(n + 7) {
  left: calc(67% + 800px);
  opacity: 0;
}

/* محتوای اسلایدر با افکت گلسمورفیسم */
.list .item .content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: #fff;
  display: none;
  padding: 3rem 2rem;

  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%); */
  border-radius: 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1); */
}

.list .item:nth-child(2) .content {
  display: block;
}

/* عنوان کوچک (تایتل) */
.content .title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.2s forwards;
}

/* عنوان اصلی */
.content .name {
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.4s forwards;
}

/* توضیحات با باکس گلسمورفیک */
.content .des {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  max-width: 600px;

  /* باکس گلسمورفیسم برای توضیحات */
  background: linear-gradient(
    135deg,
    rgba(83, 83, 83, 0.5) 0%,
    rgba(12, 36, 35, 0.3) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.6s forwards;
}

/* دکمه‌ها */
.content .btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.8s forwards;
}

.content .btn button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

/* دکمه اول - پر شده */
.content .btn button:first-child {
  background: linear-gradient(135deg, #373737b4 0%, #2c2c2c69 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(10, 88, 83, 0.4);
}

.content .btn button:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 88, 83, 0.6);
  border-color: rgba(20, 255, 114, 0.8);
}

/* دکمه دوم - شفاف */
.content .btn button:last-child {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
}

.content .btn button:last-child:hover {
  background: rgba(10, 88, 83, 0.8);
  border-color: rgba(20, 255, 114, 0.8);
  transform: translateY(-2px);
}

/* انیمیشن ورود محتوا */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* دکمه‌های ناوبری */
.arrows {
  position: absolute;
  top: 80%;
  right: 72%;
  z-index: 1000;
  display: flex;
  gap: 1rem;
}

.arrows button {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(62, 62, 62, 0.7) 0%,
    rgba(48, 48, 48, 0.5) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.arrows button:hover {
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  color: #094a46;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.arrows button:active {
  transform: translateY(-1px);
}

/* نوار پیشرفت */
.carousel .timeRunning {
  position: absolute;
  z-index: 1001;
  height: 4px;
  background: linear-gradient(90deg, #094a46 0%, #14ff72 50%, #094a46 100%);
  left: 0;
  top: 0;
  border-radius: 0 0 4px 0;
  box-shadow: 0 2px 10px rgba(20, 255, 114, 0.5);
  animation: runningTime 7s linear forwards;
}

@keyframes runningTime {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .carousel {
    height: 95vh !important;
  }
  .content .des {
    padding: 1rem 1.5rem;
    font-size: 16px;
  }
  .content {
    top: 30% !important;
  }
  .content .btn {
    flex-direction: column;
    gap: 0.8rem;
  }

  .content .btn button {
    width: 100%;
    max-width: 250px;
  }

  .arrows {
    right: 50%;
    transform: translateX(50%);
    top: 75%;
  }
}

.main-nav {
  display: flex;
  width: 95%;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  /* border: 1px dotted white; */
}

.main-nav ul {
  display: flex;
  color: white;
  gap: 1rem;
}

.main-nav li a {
  color: white;
}

.main-nav .logo {
  filter: invert(100%);
  width: 100px;
}

.gallery-images {
  animation: fadeIn 0.5s ease-in-out;
}

.gallery-images .image-card {
  position: relative;
  z-index: 0;
  border: inset 2px solid #72383d;
}

.gallery-images .image-card::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border: 3px solid #d1c7bd;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* استایل تب فعال */
.tab-active {
  background: linear-gradient(135deg, #122221 0%, #1a3534 100%) !important;
  color: white;
  border-right: 5px solid #ffffff;
}

.tab-button {
  cursor: pointer !important;
  background: linear-gradient(135deg, #313938 0%, #1a3534 100%);
  border-bottom: 4px solid #324241;

  color: white;
}

/* افکت hover برای تصاویر */
.image-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

/* کارت‌های گلسمورفیسم */
.service-card {
  background: rgba(183, 183, 183, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 156, 156, 0.303);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 10%,
    rgba(20, 184, 166, 0.6) 10%,
    rgba(20, 184, 166, 0.6) 45%,
    transparent 45%,
    transparent 55%,
    rgba(14, 116, 144, 0.4) 55%,
    rgba(14, 116, 144, 0.4) 90%,
    transparent 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
} */

/* افکت hover */
/* .service-card:hover {
  transform: translateY(-12px);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
} */

/* انیمیشن آیکون */
.service-card:hover .icon-wrapper {
  transform: scale(1.1) rotateY(360deg);
}

.icon-wrapper {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

/* دکمه */
.service-card button {
  position: relative;
  overflow: hidden;
}

.service-card button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.service-card button:hover::before {
  width: 300px;
  height: 300px;
}

.service-card button span {
  position: relative;
  z-index: 1;
}

/* خط تقسیم کننده عنوان */
.title-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* انیمیشن ظاهر شدن */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .service-card {
  animation: fadeInUp 0.6s ease-out backwards;
} */

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.image-card:hover {
  transform: scale(1.05);
}

/* لایت‌باکس */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* اسکرول افقی برای تب‌ها در موبایل */
.tabs-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-container::-webkit-scrollbar {
  display: none;
}

/* تنظیمات Tailwind سفارشی */
.tab-button {
  transition: all 0.3s ease;
}
.package-card {
  position: relative;
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Two-tone Border System */
.package-card::before,
.package-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Light borders (top, left) - 60% opacity */
.package-card::before {
  top: 0;
  right: 5%;
  bottom: 5%;
  left: 0;
  border-top: 2px solid;
  border-left: 2px solid;
  border-radius: 24px 0 0 0;
}

/* Dark borders (bottom, right) - 40% opacity */
.package-card::after {
  top: 5%;
  right: 0;
  bottom: 0;
  left: 5%;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-radius: 0 0 0 24px;
}

/* Package 1: Luxury Wedding - Amber/Gold */
.package-luxury::before {
  border-color: rgba(251, 191, 36, 0.6);
}
.package-luxury::after {
  border-color: rgba(217, 119, 6, 0.4);
}

/* Package 2: Engagement - Emerald */
.package-engagement::before {
  border-color: rgba(52, 211, 153, 0.6);
}
.package-engagement::after {
  border-color: rgba(16, 185, 129, 0.4);
}

/* Package 3: Birthday - Rose */
.package-birthday::before {
  border-color: rgba(251, 113, 133, 0.6);
}
.package-birthday::after {
  border-color: rgba(244, 63, 94, 0.4);
}

/* Package 4: Corporate - Cyan */
.package-corporate::before {
  border-color: rgba(34, 211, 238, 0.6);
}
.package-corporate::after {
  border-color: rgba(6, 182, 212, 0.4);
}

/* Badge Styling */
.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

.badge-luxury {
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}
.badge-engagement {
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.badge-birthday {
  color: #fb7185;
  border: 1px solid rgba(251, 113, 133, 0.3);
}
.badge-corporate {
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

/* Icon Styling */
.package-icon {
  font-size: 4rem;
  opacity: 0.8;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.package-card:hover .package-icon {
  transform: scale(1.1);
  opacity: 1;
}

/* Feature Items */
.feature-item {
  padding: 8px 0;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(-4px);
}

.feature-checkmark {
  font-size: 1rem;
  opacity: 0.7;
}

/* CTA Button */
.cta-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cta-button-primary {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.3),
    rgba(34, 211, 238, 0.3)
  );
  border: 1px solid rgba(34, 211, 238, 0.5);
}

.cta-button-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.5),
    rgba(34, 211, 238, 0.5)
  );
  box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
}

/* Scrollbar Styling */
.feature-scroll::-webkit-scrollbar {
  width: 4px;
}

.feature-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.feature-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.feature-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Title Decorations */
.title-line {
  height: 2px;
  background: linear-gradient(to right, transparent, currentColor, transparent);
  opacity: 0.5;
}
.feature-item {
  opacity: 0;
  transform: translateX(-10px);
  animation: slideIn 0.5s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #72383d 0%, #ac9c8d 50%, #d1c7bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ac9c8d 50%,
    transparent 100%
  );
  margin: 2rem auto;
  max-width: 200px;
}

.badge {
  background: linear-gradient(135deg, #e4c490 0%, #8e7755 100%);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4e402b;
  display: inline-block;
  margin-bottom: 1rem;
}

.price-tag {
  background: linear-gradient(135deg, #0b4f4a 0%, #0a5853 100%);
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
  border: 2px solid #ac9c8d;
}

.cta-button {
  background: linear-gradient(135deg, #10726c 0%, #0a6a63 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(114, 56, 61, 0.3);
  border: 1px solid #094a46;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 56, 61, 0.4);
}

.service-card {
  /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
  position: relative;
  overflow: hidden;
  /* background: #181818; */
}

/* .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(172, 156, 141, 0.1) 0%,
    rgba(209, 199, 189, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
} */

.service-icon {
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.title-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ac9c8d, transparent);
  margin: 0 auto;
  margin-top: 8px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-gradient {
  background: linear-gradient(
    135deg,
    rgba(172, 156, 141, 0.9) 0%,
    rgba(114, 56, 61, 0.8) 100%
  );
}

.glass-effect {
  /* background: rgba(0, 0, 0, 0.95); */
  /* backdrop-filter: blur(90px); */
  box-shadow: 0 8px 32px 0 rgba(50, 45, 41, 0.15);
}

.gold-gradient {
  background: linear-gradient(135deg, #ac9c8d 0%, #efe9e1 100%);
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 233, 225, 0.3),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.hero-bg {
  position: relative;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 45, 41, 0.7) 0%,
    rgba(114, 56, 61, 0.6) 100%
  );
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.slider-content {
  position: relative;
  z-index: 2;
}

.slide {
  display: none;
  animation: slideIn 1s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(209, 199, 189, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #ac9c8d;
  width: 40px;
  border-radius: 6px;
}

.floating-animation {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(172, 156, 141, 0.3);
}

.bg-box {
  background-image: url("../img/texture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 2rem 0.2rem;
}
.bg-menu {
  background-image: url("../img/testimonial-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  /* height: 800px !important; */
  /* overflow-y: auto; */
}

/* menu */

.glass-bg {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.4) 0%,
    rgba(17, 24, 39, 0.6) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border: 1px solid rgba(156, 163, 175, 0.1); */
}

/* Two-tone Border Effect */
.card-border {
  position: relative;
  background: linear-gradient(135deg, #0c2423 0%, #0a585317 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(156, 163, 175, 0.6) 10%,
    rgba(156, 163, 175, 0.6) 45%,
    transparent 65%,
    transparent 55%,
    rgba(107, 114, 128, 0.4) 55%,
    rgba(107, 114, 128, 0.4) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hover Effects */
.card-border:hover {
  transform: translateY(-4px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-border:hover::before {
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.7) 0%,
    rgba(159, 134, 85, 0.7) 45%,
    transparent 45%,
    transparent 55%,
    rgba(181, 150, 83, 0.5) 55%,
    rgba(181, 150, 83, 0.5) 100%
  );
}

/* Tab Buttons */
.tab-btn {
  position: relative;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  background: rgba(31, 41, 55, 0.3);
  backdrop-filter: blur(8px);
}

.tab-btn.active {
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.2) 0%,
    rgba(181, 150, 83, 0.15) 100%
  );
  border-bottom: 2px solid #9f8655;
}

.tab-btn:hover {
  background: rgba(159, 134, 85, 0.1);
}

/* Category Title */
.category-title {
  position: relative;
  display: inline-block;
  padding: 0.5rem 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.15) 0%,
    rgba(181, 150, 83, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 0.2rem;
  border: 1px solid rgba(159, 134, 85, 0.3);
}

/* Price Separator */
.price-separator {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.3) 20%,
    rgba(156, 163, 175, 0.3) 80%,
    transparent 100%
  );
  margin: 0 0.75rem;
}

/* Check Icon */
.check-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid #9f8655;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.check-icon::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #9f8655;
  font-size: 12px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.card-border:hover .check-icon::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Image Styling */
.food-image {
  border-radius: 0.5rem;
  border: 1px solid rgba(159, 134, 85, 0.2);
  padding: 0.25rem;
  transition: all 0.3s ease;
}

.card-border:hover .food-image {
  border-color: rgba(159, 134, 85, 0.5);
  transform: scale(1.05);
}

/* Smooth Transitions */
.fade-enter {
  opacity: 0;
  transform: scale(0.95);
}

.fade-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: rgba(31, 41, 55, 0.3);
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: rgba(159, 134, 85, 0.5);
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(159, 134, 85, 0.7);
}

/* Title Decorations */
.title-decoration {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #9f8655 50%,
    transparent 100%
  );
}

/* footer */

.glass-footer {
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.5) 0%,
    rgba(17, 24, 39, 0.7) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(156, 163, 175, 0.2);
  position: relative;
  overflow: hidden;
}

.glass-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(159, 134, 85, 0.5) 50%,
    transparent 100%
  );
}

/* Two-tone Border Card */
.info-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.6) 0%,
    rgba(31, 41, 55, 0.4) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(156, 163, 175, 0.6) 0%,
    rgba(156, 163, 175, 0.6) 45%,
    transparent 45%,
    transparent 55%,
    rgba(107, 114, 128, 0.4) 55%,
    rgba(107, 114, 128, 0.4) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.info-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.15) 0%,
    rgba(181, 150, 83, 0.1) 100%
  );
}

.info-card:hover::before {
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.7) 0%,
    rgba(159, 134, 85, 0.7) 45%,
    transparent 45%,
    transparent 55%,
    rgba(181, 150, 83, 0.5) 55%,
    rgba(181, 150, 83, 0.5) 100%
  );
}

/* Social Icons */
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.6) 0%,
    rgba(17, 24, 39, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(156, 163, 175, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.2) 0%,
    rgba(181, 150, 83, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 134, 85, 0.5);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon svg {
  position: relative;
  z-index: 1;
}

/* Decorative Lines */
.decorative-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.3) 20%,
    rgba(156, 163, 175, 0.3) 80%,
    transparent 100%
  );
}

/* Copyright Section */
.copyright-section {
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.8) 0%,
    rgba(10, 14, 13, 0.9) 100%
  );
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(156, 163, 175, 0.1);
}

/* Link Hover Effect */
.footer-link {
  position: relative;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #9f8655 0%, #b59653 100%);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #d4af37;
}

.footer-link:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

/* Icon Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.float-icon {
  animation: float 3s ease-in-out infinite;
}

/* Glow Effect */
.glow-text {
  text-shadow: 0 0 20px rgba(159, 134, 85, 0.3);
}

/* Contact Info Icons */
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(159, 134, 85, 0.15) 0%,
    rgba(181, 150, 83, 0.1) 100%
  );
  border: 1px solid rgba(159, 134, 85, 0.3);
}

/* blog */

.blog-card {
  background: rgba(20, 184, 166, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 10%,
    rgba(20, 184, 166, 0.6) 10%,
    rgba(20, 184, 166, 0.6) 45%,
    transparent 45%,
    transparent 55%,
    rgba(14, 116, 144, 0.4) 55%,
    rgba(14, 116, 144, 0.4) 90%,
    transparent 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-12px);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

.category-badge {
  background: rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.category-badge:hover {
  background: rgba(20, 184, 166, 0.3);
  transform: scale(1.05);
}

/* دکمه */
.blog-card button {
  position: relative;
  overflow: hidden;
}

.blog-card button:hover::before {
  width: 300px;
  height: 300px;
}

.blog-card button span {
  position: relative;
  z-index: 1;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #14b8a6, transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.meta-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-info svg {
  width: 16px;
  height: 16px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.blog-card:nth-child(1) {
  animation-delay: 0.1s;
}
.blog-card:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-card:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(15, 23, 42, 0.95) 100%
  );
}

/* محتوای اصلی */
.content-box {
  background: rgba(20, 184, 166, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  position: relative;
  overflow: hidden;
}

/* استایل محتوای متن */
.article-content {
  color: #cbd5e1;
  line-height: 2;
  font-size: 1.125rem;
}

.article-content h2 {
  color: #fbbf24;
  font-size: 1.875rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}

.article-content h3 {
  color: #14b8a6;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-right: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  position: relative;
}

.article-content li::before {
  content: "◆";
  position: absolute;
  right: -1.5rem;
  color: #14b8a6;
}

.article-content blockquote {
  border-right: 4px solid #14b8a6;
  padding: 1.5rem;
  margin: 2rem 0;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  font-style: italic;
}

/* سایدبار */
.sidebar-box {
  background: rgba(20, 184, 166, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-box:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

/* تگ‌ها */
.tag {
  background: rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(20, 184, 166, 0.3);
  transform: scale(1.05);
  border-color: rgba(20, 184, 166, 0.5);
}

/* بخش نظرات */
.comment-box {
  background: rgba(20, 184, 166, 0.03);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.comment-box:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.4);
}

/* دکمه‌ها */
.btn-primary-blog {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

/* نوار پیشرفت خواندن */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #fbbf24);
  z-index: 1000;
  transition: width 0.1s ease;
}

/* آیکون‌های شبکه اجتماعی */
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(20, 184, 166, 0.3);
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.5);
}

.custom-border {
  position: relative;
  border: none;
}

.custom-border::before,
.custom-border::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* بوردر بالا و چپ - روشن‌تر */
.custom-border::before {
  top: 0;
  left: 0;
  right: 10%;
  bottom: 10%;
  border-top: 2px solid rgba(20, 184, 166, 0.6);
  border-left: 2px solid rgba(20, 184, 166, 0.6);
  border-top-left-radius: 24px;
}

/* بوردر پایین و راست - تیره‌تر */
.custom-border::after {
  top: 10%;
  left: 10%;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid rgba(20, 184, 166, 0.4);
  border-right: 2px solid rgba(20, 184, 166, 0.4);
  border-bottom-right-radius: 24px;
}

/* Checkbox Styling */
input[type="checkbox"]:checked {
  background-color: #14b8a6;
  border-color: #14b8a6;
}

/* Smooth Animations */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(13, 42, 58, 0.3);
}

::-webkit-scrollbar-thumb {
  background: rgba(20, 184, 166, 0.6);
  border-radius: 4px;
}

/* reserve modal */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  animation: slideUp 0.4s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-inner {
  background: #1e293b;
  border-radius: 18px;
  padding: 40px;
}

.close {
  color: #fff;
  float: left;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}

.services-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.services-btn button {
  padding: 15px 40px;
  background: linear-gradient(135deg, #373737 0%, #034740 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.services-btn button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 87, 108, 0.5);
}

.close:hover {
  color: #f5576c;
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .carousel .list .item .content .name {
    font-size: 2.5rem;
  }
  .carousel .list .item .content .des {
    font-size: 1rem;
  }
  .arrows {
    bottom: 100px;
  }
}

/* From Uiverse.io by adamgiebl */
.cssbuttons-io-button {
  background: #034740;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.4em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  /* box-shadow: inset 0 0 1.6em -0.6em #714da6; */
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.5em;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: #0a1716;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  /* box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9; */
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #fff;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}
#menu h3 {
  font-weight: 400 !important;
  font-size: 17px;
}
.tabs-wrapper {
  position: relative; /* محل sticky */
}

.tabs-container {
  position: sticky;
  top: 70px; /* فاصله از بالای صفحه وقتی فیکس شد */
  background-color: rgba(
    56,
    63,
    65,
    0.8
  ); /* حتما رنگ پس‌زمینه بده تا محتوای زیرش معلوم نشه */
  z-index: 50;
  padding-top: 8px; /* اختیاری برای فاصله */
  padding-bottom: 8px;
}
button#prev-btn {
    left: 15%;
}
button#next-btn {
    right: 15%;
}
/* ============================================
   Last Minute Discounts Section
   ============================================ */
 .talar-discounts-section {
    padding: 5rem 0;
    /* background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 45%),
                radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.4), transparent 55%),
                linear-gradient(135deg, #04141f, #082026); */
    color: var(--white);
}

.talar-discounts-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.talar-discounts-header {
    text-align: right;
    margin-bottom: 1.5rem;
}

.talar-discounts-eyebrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.talar-discounts-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.talar-discounts-badge {
    position: relative;
    flex-shrink: 0;
}

.talar-discounts-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: radial-gradient(circle at top left, #ffffff, #ffe6e6);
    color: #b21824;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.talar-discounts-badge-inner i {
    font-size: 1rem;
}

.badge-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-percent {
    font-size: 1rem;
    font-weight: 800;
}

.talar-discounts-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
  .talar-discounts-subtitle {
}


  /* Force badge and header block to the physical left on RTL pages */
  .talar-discounts-badge {
    align-self: flex-end;
  }

  .talar-discounts-header {
    align-self: flex-end;
    text-align: left;
    width: 100%;
  }

  .talar-discount-card {
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.icon-circle i {
    font-size: 0.95rem;
}

.talar-discounts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.talar-discount-card {
    min-width: 120px;
    padding: 1.5rem 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.talar-discount-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

.talar-discount-month {
    font-size: 0.9rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.talar-discount-day {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.talar-discount-weekday {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.talar-discounts-footer-text {
    text-align: left;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .talar-discounts-section {
        padding: 3.5rem 0;
    }

    .talar-discounts-top {
        flex-direction: column;
        align-items: flex-start;
    }

    /* In RTL pages `flex-start` is the right side; force badge to physical left */
    .talar-discounts-badge {
      align-self: flex-end;
    }

    .talar-discounts-subtitle {
        font-size: 1.2rem;
    }

    .talar-discount-card {
        padding: 1.25rem 1.5rem;
        min-width: 110px;
    }

    .talar-discount-day {
        font-size: 2rem;
    }
}

