* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: right;
  font-family: 'Vazirmatn', sans-serif;
  --Brown_color:#6b4423;
  --Creamy_white_color:#f5f0e6;
  --Olive_color:#556b2f;
  --white-color:white;
}
body {
  background-color: var(--Creamy_white_color);
}
/* header */

header {
  background-color: var(--Brown_color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header ul {
  display: flex;
  list-style-type: none;
}
header li {
  margin: 0 0 0 40px;
}
#logo {
  width: 280px;
  height: 160px;
}
#logo img {
  width: 100%;
  height: 100%;
}
.header_a {
  text-decoration: none;
  color: var(--Creamy_white_color);
  font-size: 20px;
}
.home_a {
  text-decoration: none;
  color: var(--Olive_color);
  font-size: 20px;
}
.header_a:hover {
  color: var(--Olive_color);
}
#a_Calendar {
  text-decoration: none;
  background-color: var(--Creamy_white_color);
  color: var(--Brown_color);
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5px;
  margin: 0 40px 0 0;
  font-size: 20px;
}
#a_Calendar:hover {
  background-color: var(--Olive_color);
  color: var(--Creamy_white_color);
  animation: ripple 0.6s ease-out;
}
.hamburger {
  display: none;
  font-size: 30px;
  color: var(--Creamy_white_color);
  cursor: pointer;
}
/* .slider */

#slide {
  width: 100%;
  height: 76vh;
  display: flex;
  align-items: center;
  background-color: var(--Creamy_white_color);
  margin-top: 160px;
  transition: margin-top 0.3s ease;
}
.slider {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: var(--white-color);
  background-color: rgba(0,0,0,0.5);
  padding: 16px 24px;
  border-radius: 10px;
  max-width: 70%;
}
.cta-button {
  margin-top: 10px;
  background-color: var(--Olive_color);
  color: var(--white-color);
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.cta-button:hover {
  background-color: var(--Brown_color);
  animation: ripple 0.6s ease-out;
}
/* services */

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
}

.services-section-div-h2{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.services-section-div{
  display: flex;
  gap: 24px;
}

.service-card {
  width: 400px;
  background: var(--white-color);
  padding: 24px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.service-icon {
  font-size: 48px;
  color: var(--Brown_color);
  margin-bottom: 16px;
  transition: transform 0.6s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
  color: var(--Olive_color);
}

.service-card h3 {
  color: var(--Brown_color);
  margin-bottom: 12px;
  font-family: 'Vazirmatn', sans-serif;
}

.service-card p {
  color: #444;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 14px;
}
/* container */

.slider-container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
.slider-track {
  display: flex;
  transition: transform 1s ease-in-out;
}
.slide-1 {
  min-width: calc(100% / 3);
  padding: 10px;
}
.slide-content {
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.slide-content:hover {
  transform: translateY(-5px);
}
.slide-content-img{
  width: 100%;
  height: 200px;
}
.slide-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-1 h3 {
  padding: 15px;
  font-size: 18px;
  color: var(--Brown_color);
}
.btn {
  display: inline-block;
  margin: 0 15px 15px 15px;
  padding: 10px 20px;
  background-color: var(--Olive_color);
  color: var(--white-color);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.5s;
}
.btn:hover {
  background-color: var(--Brown_color);
  animation: ripple 0.6s ease-out;
}
@keyframes ripple {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* start packages */
.service-packages {
  padding: 40px;
  text-align: center;
}

.subtitle {
  margin-bottom: 30px;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.package-card {
  background-color: var(--white-color);
  width: 300px;
  padding: 20px;
  border-radius: 12px;
  text-align: right;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.package-card h3 {
  margin-bottom: 10px;
}

.package-card ul {
  list-style-type: none;
}

.price {
  color: var(--Brown_color);
  font-weight: bold;
  margin-top: 15px;
  text-align: left;
}

.price.free {
  color: var(--Olive_color);
}









#aw-stock-widget {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

#aw-stock-widget.visible {
  opacity: 1;
  transform: translateY(0);
}

#aw-stock-widget {
  max-width: 480px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #ddd;
  font-family: Tahoma, sans-serif;
  direction: rtl;
}

#aw-stock-widget h3 {
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 15px;
}

#aw-stock-widget select, #aw-stock-widget button {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
}

#aw-stock-widget select, #aw-currency {
  border: 1px solid #ccc;
}

#aw-stock-widget button {
  background: var(--Olive_color);
  color: white;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#aw-stock-widget button:hover {
  background: var(--Brown_color);
  animation: ripple 0.6s ease-out;
}

#aw-result {
  text-align: center;
  margin-top: 15px;
}

.aw-label {
  font-size: 0.95em;
  color: #555;
}

.aw-price {
  font-size: 2em;
  margin: 10px 0;
  font-weight: bold;
}

.aw-change {
  font-size: 1em;
  margin-bottom: 10px;
}

.aw-error {
  color: red;
  font-size: 0.9em;
}

#aw-chart {
  margin-top: 25px;
}

/* start banner */
.hero-banner {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 20px;
  text-align: center;
  color: var(--white-color);
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(30, 20, 10, 0.6); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  font-family: 'Vazir', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h2 {
  font-size: 28px;
  color: var(--Creamy_white_color);
  margin-bottom: 10px;
}

.hero-content p {
  margin: 5px 0;
  font-size: 16px;
}

.hero-content .phone {
  font-weight: bold;
  font-size: 20px;
  direction: ltr;
  margin: 10px 0;
}

.banner-btn {
  margin-top: 15px;
  display: inline-block;
  background-color: var(--Olive_color);
  color: var(--white-color);
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.banner-btn:hover {
  background-color: var(--Brown_color);
  animation: ripple 0.6s ease-out;
}   

/* start gallery */
.gallery-section {
  padding: 40px 20px;
  text-align: center;

}

.gallery-section h2 {
  font-size: 28px;
}

.gallery-section p {
  margin-bottom: 30px;
}

.filter-buttons {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.btn-gallery {
  background-color: #e9ddd0;
  color: var(--Brown_color);
  border: none;
  padding: 10px 18px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease; 
}

.btn-gallery:hover, .btn-gallery.active {
  background-color: #6e4f27;
  color: var(--white-color);
}

.gallery {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: auto;
  padding-bottom: 30px;
}

.item {
  width: 350px;
  display: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}

.view-more {
  margin-top: 30px;
}

.view-more button {
  background-color: transparent;
  border: 2px solid #6e4f27;
  color: #6e4f27;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}

.view-more button:hover {
  background-color: #6e4f27;
  color: var(--white-color);
}

/* start team */
.team-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.team-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.member {
  width: 22%;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.member:hover {
  transform: scale(1.05);
}

.member img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.member h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.role {
  font-size: 1rem;
  color: #999;
}

@media (max-width: 768px) {
  .member {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .member {
      width: 100%;
  }
}

/* start people */
.testimonials-container {
  max-width: 1200px;
  margin:  auto;
  text-align: center;
  display: flex;
  gap: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.people-love-us {
  font-size: 20px;
}

.testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.testimonial-content {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.testimonial p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.testimonial h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.rating {
  display: inline-block;
}

.star {
  color: #ffcc00;
  font-size: 18px;
  margin-right: 2px;
  cursor: pointer;
}   

/* rating-section */
.rating-section {
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 600px;
  margin: auto;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.star-rating{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.star-rating i {
  font-size: 36px;
  color: #ccc;
  cursor: pointer;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.star-rating i.active {
  color: #FFD700; 
}

.comment-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  resize: vertical;
}

.comment-form .btn {
  background-color: #556b2f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: auto;
}

.comment-form .btn:hover {
  background-color: #4b2e17;
}

/* start image */
.image-container {
  display: flex;
  width: 90%;
  margin: auto;
  align-items: center;
  padding: 20px;
  background-color: var(--white-color);
  border-radius: 12px;
  justify-content: space-around;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
}

.image-container img {
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, border 0.3s ease; 
}

.image-container img:hover {
  transform: scale(1.05);
  border: 1px solid var(--Olive_color);
} 

/* start footer */
.footer {
  background-color: var(--Brown_color);
  color: var(--Creamy_white_color);
  padding: 40px 20px 10px;
  font-family: 'Vazir', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer-about {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-about, .footer-links, .footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-about .logo {
  width: 60%;
}

.footer-about p {
  margin: 10px 0;
  font-size: 15px;
}

.social-icons a {
  color: var(--Creamy_white_color);
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
}

.footer-links h3, .footer-contact h3 {
  border-bottom: 2px solid var(--Creamy_white_color);
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: var(--Creamy_white_color);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin: 5px 0;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--Olive_color);
}

.footer-contact p {
  font-size: 14px;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #d4c2a5;
  padding-top: 10px;
  font-size: 13px;
}
.footer-bottom p{

  text-align: center;
  margin: 30px 0 30px 0;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: var(--Brown_color);
  color: var(--Creamy_white_color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
}

#scrollToTopBtn:hover {
  background-color: var(--Olive_color);
}

/* start booking */
.booking-hero-banner {
  background-color: var(--Brown_color);
  display: flex;
  align-items: center;
  color: var(--Creamy_white_color);
}
.booking-hero-img {
  width: 40%;
  padding-left: 35px;
}
.booking-form {
  max-width: 800px;
  width: 90%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--white-color);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Vazirmatn', sans-serif;
}

.booking-form input,
.booking-form textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--Olive_color);
  outline: none;
  box-shadow: 0 0 6px rgba(85, 107, 47, 0.4);
}

.booking-form label {
  font-weight: bold;
  color: var(--Brown_color);
  margin-bottom: 5px;
}

.booking-form .btn {
  background-color: var(--Olive_color);
  color: var(--white-color);
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: center;
}

.booking-form .btn:hover {
  background-color: var(--Brown_color);
  transform: scale(1.05);
}

/* موبایل و تبلت کوچک */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    background-color: var(--Brown_color);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  header nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px 0;
  }

  header ul {
    flex-direction: column;
    align-items: center;
  }

  header li {
    margin: 10px 0;
  }

  #a_Calendar {
    width: 100%;
    margin: 0;
  }

  .services-section-div {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  .slider-container {
    width: 100%;
  }

  .slide-1 {
    min-width: 100%;
  }

  .packages {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    width: 90%;
  }

  .gallery {
    width: 100%;
  }

  .item {
    width: 90%;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }

  .member {
    width: 90% !important;
  }

  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    flex-direction: column;
    gap: 20px;
  }

  .image-container img {
    width: 90%;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about, .footer-links, .footer-contact {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .booking-form {
    padding: 20px;
  }

  .booking-form input,
  .booking-form textarea {
    font-size: 15px;
    padding: 12px;
  }

  .booking-form .btn {
    width: 100%;
  }
}

