@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');
@font-face {
  font-family: 'IRANSans';
  src: url('IRANSans.woff2'); /* در صورت نیاز به فونت سفارشی */
}
body {
  background: #fff;
  font-family: 'IRANSans', sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  text-align: right;
  outline: none;
  font-size: 13px;
  line-height: 1.5rem;
  direction: rtl;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
}
/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  margin-top: 0;
  padding: 10px 0px 15px 0px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  width: 140px;
  height: 46px;
  object-fit: contain;
  margin-left: 10px;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1rem;
  color: #444;
}
.header-icons span {
  cursor: pointer;
}
.icon-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #5F5E5E;
}
.icon-group + .icon-group {
  border-right: 2px solid #e8e8e8;
}
.icon-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #5F5E5E;
}
/* Menu */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 0;
  min-height: 42px;
  margin-top: 15px;
}
.menu {
  flex: 1;
  min-width: 0;
  margin-left: 0;
  border-left: none;
  position: relative;
  font-size: 14px;
  color: black;
}
.menu-buttons {
  display: flex;
  gap: 8px;
}
.menu-buttons button {
  width: 69px;
  height: 37px;
  min-width: unset;
  min-height: unset;
  padding: 9px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0084FF;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  line-height: 18.75px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Samim', sans-serif;
  font-weight: bold;
  transition: background 0.2s;
}
.menu-buttons button:hover {
  background: #006acc;
}
.menu a {
  text-decoration: none;
  color: #222;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.2s;
  display: inline-block;
  font-family: 'Samim', sans-serif;
  font-weight: bold;
}
.menu a.active, .menu a:hover {
  color: #2176ae;
}

.menu a.active {
  position: relative;
  color: #0084ff !important;
  padding-right: 0px;
  padding-left: 10px;
  background-repeat: no-repeat !important;
  background-position: right -1px !important;
  background-size: 45%;
  border-left: 2px solid #e8e8e8;
}

.menu .home-icon {
  font-size: 1rem;
  margin-left: 2px;
}
/* Top Buttons */
.top-buttons {
  display: flex;
  gap: 8px;
  margin: 18px 0 0 0;
  justify-content: flex-start;
  padding-right: 18px;
}
.top-buttons button {
  background: #2176ae;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 6px 18px;
  font-size: 0.98rem;
  cursor: pointer;
  font-family: 'Samim', sans-serif;
  font-weight: bold;
  transition: background 0.2s;
}
.top-buttons button:hover {
  background: #155a8a;
}
/* Message Box */
.message-box {
  width: 95vw;
  max-width: 700px;
  min-height: 180px;
  background: repeating-linear-gradient(120deg, #f8eaea 0 8px, #fff 8px 24px);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  margin: 18px auto 0 auto;
}
.message-box p {
  color: #2176ae;
  font-size: 1.15rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 0;
}
/* Global Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding-bottom: 20px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b3e0fa;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots .dot.active {
  background: #21b6ae;
}
/* Bottom Buttons */
.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0 0 0;
  flex-wrap: wrap;
  margin-bottom: 10px; /* 64px footer height + 20px extra space */
}
.bottom-btn {
  background: #eaf6fd;
  border-radius: 22px;
  width: 214px;
  height: 50px;
  text-align: center;
  color: #222;
  font-size: 0.98rem;
  border: none;
  box-shadow: 0 1px 4px rgba(33,118,174,0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Samim', sans-serif;
  font-weight: bold;
}
.bottom-btn:hover {
  background: #d2eafd;
}
.bottom-btn .icon {
  font-size: 1.2rem;
  color: #2176ae;
}
@media (max-width: 900px) {
  .container {
    padding: 0 4vw;
  }
  .header {
    margin-top: 8px;
  }
  .menu {
    padding: 0 10px;
    gap: 10px;
    font-size: 0.97rem;
    height: 38px;
  }
  .logo {
    height: 30px;
    margin-left: 6px;
  }
  .header-icons {
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .menu-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: unset;
    padding: 0;
  }
  .menu {
    margin-left: 0;
    border-left: none;
    margin-bottom: 8px;
  }
  .menu-buttons {
    justify-content: flex-start;
    margin-bottom: 6px;
  }
  .header {
    padding: 4px 4vw 2px 4vw;
    min-height: 32px;
  }
  .header-left {
    gap: 4px;
  }
  .logo {
    height: 22px;
    margin-left: 3px;
  }
  .header-icons {
    font-size: 0.9rem;
    gap: 4px;
  }
  .menu {
    padding: 0 2vw;
    gap: 6px;
    font-size: 0.93rem;
    height: 32px;
  }
  .menu a {
    padding: 3px 6px;
    font-size: 0.93rem;
  }
  .image-slider {
    margin-bottom: 0;
  }
  .slider-dots {
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 10px;
    padding: 10px;
  }
  .slider-dots .dot {
    width: 20px;
    height: 20px;
  }
  .bottom-buttons {
    margin: 0;
  }
}
.message-slider {
  width: 95vw;
  max-width: 700px;
  min-height: 180px;
  background: repeating-linear-gradient(120deg, #f8eaea 0 8px, #fff 8px 24px);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  margin: 18px auto 0 auto;
  position: relative;
  flex-direction: column;
}
.message-slider .slide {
  display: none;
}
.message-slider .slide.active {
  display: block;
}
.message-slider .slide p {
  color: #2176ae;
  font-size: 1.15rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 1px 4px rgba(33,118,174,0.08);
  color: #2176ae;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slider-btn.prev {
  right: 10px;
}
.slider-btn.next {
  left: 10px;
}
.slider-btn:hover {
  background: #e3f0fa;
}
@media (max-width: 700px) {
  .message-slider {
    width: 99vw;
    padding: 10px 2vw;
    min-height: 120px;
  }
  .slider-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .slider-btn.prev {
    right: 2px;
  }
  .slider-btn.next {
    left: 2px;
  }
  .slider-dots {
    margin-top: 10px;
  }
  .message-slider .slide p {
    font-size: 0.98rem;
    line-height: 1.7rem;
  }
}
.image-slider {
  width: 1170px;
  height: 340px;
  max-width: 100%;
  min-height: unset;
  aspect-ratio: unset;
  background: #f7fafd;
  border-radius: 10px;
  margin: 15px auto 0 auto;
  box-shadow: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.image-slider .caption {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  color: #2176ae;
  background: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 8px;
  margin: 0 auto;
  padding: 6px 18px;
  width: fit-content;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 4px rgba(33,118,174,0.04);
}
.image-slider .slider-btn {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  background: #fff;
  color: #2176ae;
  border-radius: 50%;
  border: none;
  box-shadow: 0 1px 4px rgba(33,118,174,0.04);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
}
.image-slider .slider-btn.prev { right: 10px; }
.image-slider .slider-btn.next { left: 10px; }
.image-slider .slider-btn:hover { background: #e3f0fa; opacity: 1; }
.image-slider .slider-dots {
  position: static;
  bottom: unset;
  left: unset;
  right: unset;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}
.image-slider .slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b3e0fa;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}
.image-slider .slider-dots .dot.active {
  background: #21b6ae;
}
@media (max-width: 1200px) {
  .container {
    width: 98%;
    padding: 0 1%;
  }
  .image-slider {
    width: 100%;
    height: auto;
    aspect-ratio: 1170/340;
  }
  .image-slider img {
    border-radius: 8px;
  }
  .image-slider .caption {
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0;
  }
  .image-slider {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 600px) {
  .image-slider {
    width: 99vw;
    height: calc(99vw * 340 / 1170);
    min-height: 90px;
    border-radius: 5px;
  }
  .image-slider img {
    border-radius: 5px;
  }
  .image-slider .slider-btn {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  .image-slider .slider-btn.prev { right: 2px; }
  .image-slider .slider-btn.next { left: 2px; }
  .image-slider .slider-dots {
    bottom: 4px;
    gap: 3px;
  }
  .image-slider .slider-dots .dot {
    width: 6px;
    height: 6px;
  }
  .image-slider .caption {
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
  }
}
.separator {
  width: 100%;
  height: 3px;
  background: #222;
  margin: 18px 0;
  border: none;
}

/* Footer Styles */
.footer {
    background-color: #dff0fd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1440px;
    height: 64px;
    margin: 0 auto;
    z-index: 1000;
}

.footer-text {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    margin: 0 20px;
    font-family: 'Samim', sans-serif;
    font-weight: bold;
}

.footer-button {
    background-color: #008cff;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Samim', sans-serif;
    font-weight: bold;
    transition: background-color 0.2s;
    height: 44px;
}

.footer-button:hover {
    background-color: #0073cc;
}

.footer-logo {
    width: 40px;
    height: 30px;
    object-fit: contain;
}

.footer-right {
    display: flex;
    align-items: center;
}
@media (max-width: 1440px) {
    .footer {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        height: auto;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .bottom-buttons {
        margin-bottom: 120px; /* Increased for stacked footer */
    }
}

h2 {
   text-align: center;
   font-size: 24px;
   font-weight: bold;
   margin: 0px 0;
   color: #000;
   font-family: 'Samim', sans-serif;
}

h2 a {
   text-decoration: none;
   color: inherit;
   transition: color 0.3s ease;
   font-family: 'Samim', sans-serif;
   font-weight: bold;
}

h2 a:hover {
   color: #007BFF;
}

p {
   max-width: 800px;
   margin: 20px auto 40px;
   color: #333;
   line-height: 1.6;
   font-size: 14px;
   padding: 0 20px;
   text-align: justify;
   font-family: 'Samim', sans-serif;
   font-weight: bold;
}

.card-image {
   display: flex;
   justify-content: center;
   margin-bottom: 40px;
}

.card-image img {
   max-width: 400px;
   width: 100%;
   height: auto;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button-group {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 15px;
   margin-bottom: 60px;
}

.button-group button {
   background-color: #ffffff;
   color: #007BFF;
   border: 2px solid #007BFF;
   border-radius: 20px;
   padding: 10px 20px;
   font-size: 14px;
   cursor: pointer;
   transition: 0.3s ease;
   font-family: 'Samim', sans-serif;
   font-weight: bold;
}

.button-group button:hover {
   background-color: #007BFF;
   color: white;
}

/* دکمه اصلی */
.primary-button {
   background-color: #007BFF;
   color: white;
}

.primary-button:hover {
   background-color: #0056b3;
}

.premium-services {
   max-width: 1200px;
   margin: 0 auto;
   padding: 20px;
}

/* Reservation Section Styles */
.reservation-section {
   padding: 40px 20px;
   background-color: #fff;
}

.reservation-section .container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-direction: row-reverse;
   gap: 40px;
   align-items: center;
}

.reservation-section img {
   width: 351px;
   height: 351px;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   object-fit: cover;
}

.text-box {
   flex: 1;
   color: #333;
   font-family: 'Samim', sans-serif;
   font-weight: bold;
}

.text-box p {
   font-size: 14px;
   line-height: 1.6;
   margin-bottom: 20px;
   text-align: justify;
   padding-right: 0;
   font-weight: bold;
}

.more-link {
   color: #007BFF;
   text-decoration: none;
   font-weight: bold;
   transition: color 0.3s ease;
   font-family: 'Samim', sans-serif;
}

.more-link:hover {
   color: #0056b3;
}

/* Responsive styles for reservation section */
@media (max-width: 768px) {
   .reservation-section .container {
      flex-direction: column-reverse;
      text-align: center;
   }

   .reservation-section img {
      width: 100%;
      max-width: 351px;
      height: auto;
   }

   .text-box p {
      font-size: 13px;
      text-align: center;
   }
}

.service-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f7f7f7;
}

.service-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.service-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.service-header p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 480px;
  height: 320px;
  text-align: right;
  position: relative;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 0 0 480px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1rem;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.arrow {
  font-size: 1.2rem;
  color: #fff;
}

.pink {
  background: #ffe4ec;
}

.card-footer {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: right;
  z-index: 2;
}

.card-footer p {
  margin: 0 0 10px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.details-btn {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #c10050;
  color: #c10050;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.details-btn:hover {
  background-color: #c10050;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-container {
    flex-wrap: wrap;
  }
  
  .card {
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .service-header h2 {
    font-size: 1.4rem;
  }
  
  .service-header p {
    font-size: 0.85rem;
    padding: 0 15px;
  }
  
  .card {
    max-width: 100%;
    height: auto;
    min-height: 280px;
  }
}

/* New Footer Styles */
.footer-new {
  background-color: white;
  padding: 30px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-new .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-new .footer-nav {
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-new .footer-nav:hover {
  background-color: #007bff;
  color: white;
}

.footer-new .footer-nav:hover .arrow {
  color: white;
}

.footer-new .footer-phone {
  background-color: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: bold;
}

.footer-new .arrow {
  font-size: 1.1rem;
  color: #007bff;
  transition: color 0.3s ease;
}

.footer-new .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.footer-new .footer-col {
  flex: 1 1 200px;
  min-width: 150px;
}

.footer-new .footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
}

.footer-new .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-new .footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-new .footer-col ul li:hover {
  color: #007bff;
}

.footer-new .footer-col ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-new .footer-col ul li a:hover {
  color: #007bff;
}

.footer-new .footer-nav {
  text-decoration: none;
  color: inherit;
}

.footer-new .app-box {
  text-decoration: none;
  color: inherit;
}

.footer-new .mobile-apps {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.footer-new .app-box {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 120px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-new .app-box:hover {
  transform: translateY(-5px);
}

.footer-new .app-box img {
  width: 90px;
  height: 116px;
  margin-bottom: 10px;
}

.footer-new .app-box p {
  font-size: 0.85rem;
  color: #333;
  margin: 0;
}

.footer-new .app-box span {
  font-size: 0.75rem;
  color: #777;
}

/* Responsive styles for new footer */
@media (max-width: 1200px) {
  .footer-new .footer-bottom {
    justify-content: flex-start;
  }
  
  .footer-new .footer-col {
    flex: 1 1 180px;
  }
}

@media (max-width: 768px) {
  .footer-new {
    padding: 20px 15px;
  }

  .footer-new .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .footer-new .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-new .footer-col {
    text-align: center;
    width: 100%;
  }

  .footer-new .mobile-apps {
    justify-content: center;
  }

  .footer-new .footer-nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-new .app-box {
    width: 100px;
    padding: 15px;
  }

  .footer-new .app-box img {
    width: 70px;
    height: 90px;
  }
}

