/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  direction: rtl;
  background-color: #f4f4f9;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.nav-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links ul li {
  margin-left: 20px;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffdd57;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links ul li a:hover::after {
  width: 100%;
}

.nav-links ul li a:hover {
  color: #ffdd57;
  transform: translateY(-3px);
}

.user-profile {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.1) rotate(10deg);
}

.username,
.credit {
  font-size: 16px;
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #ffffff;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

.dropdown-header {
  display: flex;
  align-items: center;
  padding: 15px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 10px 10px 0 0;
}

.dropdown-profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.dropdown-user-info {
  margin-right: 10px;
}

.dropdown-username {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.dropdown-credit {
  font-size: 14px;
  color: #ffdd57;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.user-profile:hover .dropdown-content {
  display: block;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  animation: spin 2s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

footer {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 40px 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffdd57;
}

.footer-section.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffdd57;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #444;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #6a11cb;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px;
    animation: slideDown 0.5s ease;
  }

  .nav-links ul {
    flex-direction: column;
  }

  .nav-links ul li {
    margin: 10px 0;
  }

  .menu-icon {
    display: block;
  }

  .nav-links.active {
    display: flex;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* طراحی بهینه شده برای سفرهای زمینی */
.tayxi-search-card {
  max-width: 800px;
  margin: 30px auto;
  background: linear-gradient(135deg, #ffffff, #f8faff);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(37, 117, 252, 0.15);
  border: 1px solid rgba(106, 17, 203, 0.1);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tayxi-search-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37, 117, 252, 0.25);
}

.tayxi-search-header {
  background: linear-gradient(135deg, #2575fc, #1a5bbf);
  padding: 20px 30px;
  color: white;
  position: relative;
}

.tayxi-search-ribbon {
  position: absolute;
  top: 15px;
  left: -5px;
  background: #ffdd57;
  color: #2c3e50;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
}

.tayxi-search-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tayxi-search-icon {
  font-size: 28px;
  animation: bounce 2s infinite;
}

.tayxi-search-body {
  padding: 30px;
}

.tayxi-search-description {
  font-size: 18px;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}

.tayxi-search-action {
  text-align: center;
  margin-top: 20px;
}

.tayxi-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2575fc, #1a5bbf);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 117, 252, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tayxi-search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.tayxi-search-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 117, 252, 0.4);
}

.tayxi-search-btn:hover::before {
  left: 100%;
}

.tayxi-btn-icon {
  font-size: 20px;
  transition: all 0.3s ease;
}

.tayxi-search-btn:hover .tayxi-btn-icon {
  transform: translateX(5px);
}

.tayxi-search-footer {
  background: #f5f7ff;
  padding: 15px 30px;
  border-top: 1px solid rgba(37, 117, 252, 0.1);
}

.tayxi-search-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.tayxi-feature-item {
  font-size: 14px;
  color: #2575fc;
  background: rgba(37, 117, 252, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* کارت اطلاعات سفر */
.tayxi-trip-card {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.tayxi-trip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tayxi-trip-header {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  padding: 20px 30px;
  color: white;
}

.tayxi-trip-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tayxi-trip-icon {
  font-size: 24px;
}

.tayxi-trip-body {
  padding: 25px 30px;
}

.tayxi-trip-description {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.tayxi-trip-action {
  text-align: center;
}

.tayxi-trip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2c3e50;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tayxi-trip-btn:hover {
  background: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* باکس تاریخ */
.tayxi-date-box {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #2575fc;
  font-weight: 500;
}

.tayxi-current-date {
  font-weight: 700;
  color: #1a5bbf;
}

/* انیمیشن‌ها */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .tayxi-search-card,
  .tayxi-trip-card {
    margin: 20px 15px;
    border-radius: 15px;
  }

  .tayxi-search-header,
  .tayxi-trip-header {
    padding: 15px 20px;
  }

  .tayxi-search-title,
  .tayxi-trip-title {
    font-size: 20px;
  }
  .tayxi-search-ribbon {
    font-size: 9px;
    margin-top: 11%;
  }

  .tayxi-search-body,
  .tayxi-trip-body {
    padding: 20px;
  }

  .tayxi-search-description,
  .tayxi-trip-description {
    font-size: 16px;
  }

  .tayxi-search-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .tayxi-search-features {
    flex-direction: column;
    align-items: center;
  }
}

.btn-submit {
  padding: 12px 30px;
  background: linear-gradient(135deg, #2575fc, #1a5bbf);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 117, 252, 0.3);
  margin-top: 23px;
  align-items: center;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #1a5bbf, #2575fc);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 117, 252, 0.4);
}

@media (max-width: 768px) {
  .search-container {
    padding: 15px;
  }

  .search-title {
    font-size: 20px;
  }

  .search-form .form-row {
    flex-direction: column;
  }

  .search-form select {
    font-size: 12px;
  }

  .btn-submit {
    width: 100%;
    font-size: 14px;
  }
}

/*  ایتیم ها ایندیکس   */
.flex-containeritem {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.search-containeritem {
  max-height: 60px;
  max-width: 250px;
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.search-title {
  font-size: 17px;
  color: #2575fc;
}

@media (max-width: 768px) {
  .flex-containeritem {
    flex-direction: column;
    align-items: center;
  }

  .search-containeritem {
    width: 100%;
    margin-bottom: 5px;
  }
}
/*  ایتیم ها ایندیکس   */

.custom-div {
  max-width: 800px;
  margin: 20px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.custom-div h2 {
  font-family: "Vazir", sans-serif;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .custom-div {
    padding: 20px;
  }

  .custom-div h2 {
    font-size: 1.5rem;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Vazirmatn", sans-serif;
}

main {
  padding: 30px;
  background-color: #f8f9fa;
}

.transport-company {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.transport-company:hover {
  transform: translateY(-5px);
}

.company-header {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.company-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.company-details {
  padding: 30px;
}

.company-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.features-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-title i {
  color: #3498db;
}

.features-items {
  list-style: none;
  margin: 20px 0;
}

.features-items li {
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.features-items li:hover {
  background-color: #e9f7fe;
  transform: translateX(5px);
}

.features-items li i {
  color: #27ae60;
  font-size: 1.2rem;
  margin-top: 3px;
}

.feature-name {
  font-weight: 700;
  color: #e74c3c;
  display: inline-block;
  min-width: 120px;
}

.feature-text {
  color: #555;
  line-height: 1.6;
}

.innovation-details {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-right: 4px solid #3498db;
}

.company-summary {
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
  border-radius: 8px;
  text-align: center;
}

.summary-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  font-weight: 500;
}

.company-contact {
  background-color: #2c3e50;
  padding: 20px;
  text-align: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e74c3c;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
  .company-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .company-icon {
    position: static;
    transform: none;
    margin-bottom: 15px;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .company-details {
    padding: 20px;
  }

  .feature-name {
    display: block;
    margin-bottom: 5px;
  }

  .features-items li {
    flex-direction: column;
    gap: 5px;
  }
}
/* استایل‌های جدید برای بخش‌های هدر */
.header-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* استایل بخش انتخاب زبان */
.language-selector {
  position: relative;
}

.language-dropdown {
  position: relative;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.language-toggle i {
  font-size: 16px;
}

.language-options {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 1000;
  overflow: hidden;
}

.language-dropdown:hover .language-options {
  display: flex;
}

.language-options button {
  background: none;
  border: none;
  padding: 10px 15px;
  text-align: right;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
}

.language-options button:hover {
  background: #f5f5f5;
}

.language-options button.active {
  background: #f0f0f0;
  font-weight: bold;
}

/* استایل‌های جدید برای بخش پروفایل */
.user-profile {
  position: relative;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.profile-info:hover {
  background: rgba(255, 255, 255, 0.1);
}

.profile-pic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.username {
  font-size: 14px;
  color: white;
}

.dropdown-arrow {
  font-size: 12px;
  color: white;
  transition: transform 0.3s ease;
}

.profile-info.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 250px;
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.dropdown-profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.dropdown-user-info {
  display: flex;
  flex-direction: column;
  color: white;
}

.dropdown-username {
  font-weight: bold;
  font-size: 16px;
}

.dropdown-user-code {
  font-size: 12px;
  opacity: 0.8;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-content a i {
  width: 20px;
  text-align: center;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  padding-right: 20px;
}

.dropdown-content a.logout-btn {
  color: #e74c3c;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* رسپانسیو */
@media (max-width: 768px) {
  .header-controls {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .nav-links.active + .header-controls {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.1);
  }

  .language-selector {
    width: 100%;
    margin-bottom: 15px;
  }

  .language-options {
    position: static;
    margin-top: 5px;
  }
}
/* استایل‌های بخش لینک‌های سریع */
.quick-links {
  padding: 40px 0;
  background: #f8f9fa;
}

.links-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.quick-link {
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #2c3e50;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #6a11cb;
}

.quick-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #2575fc;
}

.quick-link i {
  width: 40px;
  height: 40px;
  background: rgba(106, 17, 203, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a11cb;
  font-size: 18px;
  flex-shrink: 0;
}

.quick-link span {
  font-weight: 500;
  line-height: 1.4;
}

.messages {
  list-style-type: none;
  padding: 0;
}

.message {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: #ff723b;
  color: #000;
  max-width: 40%;
}

/*======================================================*/
/*======================================================*/
/*======================================================*/
/*======================================================*/
/*======================================================*/
/*======================================================*/
.messenger-btn {
  position: fixed;
  bottom: 24px;
  width: 65px;
  height: 65px;
  background-color: transparent;
  border: 3px solid #3b82f6; /* حلقه آبی زیبا */
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.25s ease;
}
.messenger-btn:hover {
  transform: scale(1.06);
}
.messenger-btn.rtl {
  right: 24px;
}
.messenger-btn.ltr {
  left: 24px;
}

.tayexi-icon {
  width: 36px;
  height: 36px;
}

.notification-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: crimson;
  color: #fff;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* toast */
.messenger-toast {
  position: fixed;
  bottom: 100px;
  background: #1e293b;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.3s ease;
}

.messenger-toast[dir="rtl"] {
  right: 24px;
}
.messenger-toast[dir="ltr"] {
  left: 24px;
}

.toast-content a {
  color: #60a5fa;
  font-weight: bold;
  text-decoration: underline;
}
.toast-content a:hover {
  text-decoration: none;
}

.close-toast {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
