
 .booking-progress {
  margin-bottom: 30px;
}
.progress-steps {
  position: relative;
  padding: 0 20px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  border: 3px solid #666;
  transition: all 0.3s ease;
}
.step.active .step-circle {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}




body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: white;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;

}

.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* ویدئو اتوپلی */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 100px; /* فاصله از navbar */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-title {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-subtitle {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .video-container {
    height: 70vh;
    margin-top: 80px;
  }
  
  .video-title {
    font-size: 2rem;
  }
  
  .video-subtitle {
    font-size: 1rem;
  }
  
  .info-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
}

/* بخش اطلاعات */
.info-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e1bb87;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #e1bb87;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.features-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 1.5rem;
  color: #e1bb87;
  margin-right: 1rem;
  margin-top: 0.2rem;
  min-width: 30px;
}

.feature-item span {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}

.final-description {
  font-size: 1.1rem;
  color: #2c3e50;
  font-style: italic;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #e1bb87;
}

/* بخش مؤسس */
.founder-section {
  padding: 2rem;
}

.founder-image {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 400px;
  height: 600px;
  background: linear-gradient(45deg, #e1bb87, #d4a574, #c89661, #e1bb87);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  overflow: visible;
}

.founder-image:hover {
  transform: scale(1.02);
}

.founder-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 10px;
  z-index: 1;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  border-radius: 8px;
  width: 350px;
  height: 580px;
  object-fit: cover;
  position: absolute;
  z-index: 3;
  transition: all 0.3s ease;
  transform: translate(-50px, -30px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.founder-info h3 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.founder-info p {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.read-more-btn {
  background-color: #e1bb87 !important;
  border-color: #e1bb87 !important;
  color: #000 !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #d4a574 !important;
  border-color: #d4a574 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(225, 187, 135, 0.4);
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .founder-image {
    width: 320px;
    height: 480px;
    padding: 15px;
  }
  
  .founder-image::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  
  .founder-image img {
    width: 280px;
    height: 460px;
    transform: translate(-40px, -25px);
  }
  
  .founder-info h3 {
    font-size: 1.8rem;
  }
  
  .founder-info p {
    font-size: 1.1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  /* ریست کامل برای موبایل */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .founder-image {
    width: 100% !important;
    height: 500px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    max-width: 100% !important;
    position: relative !important;
    box-sizing: border-box !important;
  }
  
  .founder-image::before {
    display: none !important;
  }
  
  .founder-image img {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border-radius: 15px !important;
    object-fit: cover !important;
    object-position: center top !important;
    max-width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    box-sizing: border-box !important;
  }
  
  .founder-section {
    padding: 0.5rem !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .founder-info {
    margin-top: 1rem !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* بخش پارالاکس */
.glass-slide {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.8s ease forwards, floatAnimation 3s ease-in-out infinite;
}

.glass-slide:nth-child(1) {
  animation-delay: 0.2s, 0s;
}

.glass-slide:nth-child(2) {
  animation-delay: 0.4s, 1s;
}

.glass-slide:nth-child(3) {
  animation-delay: 0.6s, 2s;
}

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

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.glass-slide:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.slide-icon {
  font-size: 3rem;
  color: #e1bb87;
  margin-bottom: 1rem;
}

.glass-slide h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.glass-slide p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* انیمیشن پارالاکس */
@media (prefers-reduced-motion: no-preference) {
  .parallax-image {
    will-change: transform;
  }
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .parallax-section {
    height: 60vh;
    min-height: 400px;
  }
  
  .parallax-image {
    height: 120%;
    top: -10%;
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
  }
  
  .glass-slide {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .slide-icon {
    font-size: 2.5rem;
  }
  
  .glass-slide h3 {
    font-size: 1.3rem;
  }
  
  .glass-box {
    padding: 1.5rem;
  }
  
  .glass-box h3 {
    font-size: 1.3rem;
  }
  
  .glass-box p {
    font-size: 0.9rem;
  }
}



/* Slideshow Styles */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.single-glass-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.8s ease forwards, floatAnimation 3s ease-in-out infinite;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}

.single-glass-box .slide-icon,
.single-glass-box h3,
.single-glass-box p {
  transition: all 0.5s ease;
}

.single-glass-box.changing .slide-icon,
.single-glass-box.changing h3,
.single-glass-box.changing p {
  opacity: 0;
  transform: translateY(20px);
}

.single-glass-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.single-glass-box .slide-icon {
  font-size: 4rem;
  color: #e1bb87;
  margin-bottom: 1.5rem;
}

.single-glass-box h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.single-glass-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}


/* Navigation Dots */
.slideshow-dots {
  text-align: center;
  margin-top: 2rem;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active,
.dot:hover {
  background-color: #e1bb87;
}

/* Navigation Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(225, 187, 135, 0.8);
}

/* Responsive slideshow */
@media (max-width: 768px) {
  .slideshow-container {
    min-height: 250px;
  }
  
  .single-glass-box {
    padding: 2rem;
    max-width: 400px;
  }
  
  .single-glass-box .slide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .single-glass-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .single-glass-box p {
    font-size: 1rem;
  }
  
  .prev, .next {
    padding: 12px;
    font-size: 16px;
  }
  
  .dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
  }
}

@media (max-width: 576px) {
  .slideshow-container {
    min-height: 200px;
  }
  
  .single-glass-box {
    padding: 1.5rem;
    max-width: 350px;
  }
  
  .single-glass-box .slide-icon {
    font-size: 2.5rem;
  }
  
  .single-glass-box h3 {
    font-size: 1.3rem;
  }
  
  .single-glass-box p {
    font-size: 0.9rem;
  }
}

/* بخش نظرات مشتریان */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 0;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #495057;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: #e1bb87;
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: serif;
}

.testimonial-text::after {
  content: '"';
  font-size: 4rem;
  color: #e1bb87;
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: serif;
}

.testimonial-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
}

.testimonial-cite {
  font-style: normal;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c3e50;
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e1bb87;
  background: white;
  color: #e1bb87;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #e1bb87;
  color: white;
  transform: scale(1.1);
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: #e1bb87;
  transform: scale(1.2);
}

.pagination-dot:hover {
  background: #e1bb87;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-title {
    font-size: 2rem;
  }
  
  .testimonial-slide {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 3rem;
  }
}

/* نوار شیشه‌ای */
.glass-navbar {
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(10px);
  height: 100px;
}

/* آیتم‌های منو سفید */
.glass-navbar .nav-link {
  color: #fff !important;
}

/* دکمه Book Now */
.btn-warning {
  background: transparent !important;
  border: 2px solid #d4af37 !important;
  color: #d4af37 !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  transition: all 0.4s ease !important;
  box-shadow: none !important;
  animation: none !important;
}

/* افکت هاور */
.btn-warning:hover {
background: linear-gradient(90deg, #ffd700, #ffec8b, #d4af37);
border-color: #ffd700;
color: #000;
transform: translateY(-2px);
box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.6);
}

/* انیمیشن حرکت نور روی دکمه */
@keyframes shine {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* لوگو سمت چپ */
.navbar-brand {
  float: left !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  clear: both !important;
  position: absolute !important;
  left: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1000 !important;
}

/* اطمینان از قرارگیری لوگو در سمت چپ */
.navbar .container-fluid {
  overflow: hidden !important;
  position: relative !important;
}

/* فاصله دادن به عناصر دیگر */


/* منو در سمت راست */
.navbar-collapse {
  margin-left: auto !important;
}

/* دکمه کال موبایل */
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  padding: 6px 10px !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* دکمه منو سمت راست */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}



/* منوی دسکتاپ */
@media (min-width: 992px) {
  .collapse.navbar-collapse {
    position: static;
    background: none;
    padding: 0;
    width: auto;
    height: auto;
    margin-left: auto !important;
}

.collapse.navbar-collapse .nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
  color: #fff !important;
  }
}

/* منوی موبایل - بازشونده از سمت راست */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed !important;
    top: 100px !important;
    right: 0 !important;
    left: auto !important;
    width: 300px !important;
    height: calc(100vh - 100px) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('../img/img9-1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    backdrop-filter: blur(10px) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    padding: 20px !important;
    z-index: 1000 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-collapse .nav-link {
    display: block !important;
    padding: 15px 0 !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .navbar-collapse.show .nav-link {
    transform: translateY(0);
    opacity: 1;
  }
  
  .navbar-collapse.show .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .navbar-collapse.show .nav-link:nth-child(2) { transition-delay: 0.15s; }
  .navbar-collapse.show .nav-link:nth-child(3) { transition-delay: 0.2s; }
  .navbar-collapse.show .nav-link:nth-child(4) { transition-delay: 0.25s; }
  .navbar-collapse.show .nav-link:nth-child(5) { transition-delay: 0.3s; }
  .navbar-collapse.show .nav-link:nth-child(6) { transition-delay: 0.35s; }
  
  .navbar-collapse .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  
  /* دکمه اینستاگرام */
  .instagram-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px auto !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    transform: translateY(20px);
    opacity: 0;
  }
  
  .navbar-collapse.show .instagram-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
  }
  
  .instagram-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6) !important;
  }
  
  .instagram-btn i {
    color: white !important;
    font-size: 24px !important;
  }
}

.parallax {
transform: translateY(0);
will-change: transform;
}

.glass-box {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
color: white;
}

.carousel-item {
transition: transform 0.8s ease, opacity 0.8s ease;
}


.service-title {
  margin-top: 25px;
  text-align: center;
  font-size: 90px;
  font-weight: 900;
  color: #E1BB8733;
}



.custom-image-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin: 40px 0;
  flex-wrap: wrap;
  flex-direction: row;
}
.custom-image-card {
  flex: 1 1 320px;
  max-width: 480px;
  min-width: 260px;
  display: flex;
  justify-content: center;
}
.custom-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: #222;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}
.custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.custom-image-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: background 0.3s;
  z-index: 1;
}
.custom-image-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px 20px 20px 20px;
  color: #fff;
  text-align: left;
  direction: ltr;
}
.custom-image-content.left-align {
  align-items: flex-start;
  text-align: left;
  direction: ltr;
}
.glass-icon-box {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.glass-icon-box i {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.custom-image-text h5 {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: left;
  direction: ltr;
}
.custom-image-text p {
  margin: 0 0 8px 0;
  font-size: 0.98rem;
  color: #e0e0e0;
  line-height: 1.5;
  text-align: left;
  direction: ltr;
}
.read-more-btn {
 display: block !important;
  margin-top: 10px;
  background: rgba(255,255,255,0.22);
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-align: left;
  direction: ltr;
}
.custom-image-wrapper:hover .custom-img {
  transform: scale(1.04);
}
.custom-image-wrapper:hover .read-more-btn {
  display: inline-block;
}
.custom-image-wrapper:hover .custom-image-mask {
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.65) 100%);
}
.custom-image-wrapper:hover .glass-icon-box {
  background: rgba(255,255,255,0.28);
}
@media (max-width: 1200px) {
  .custom-image-card {
    max-width: 48vw;
  }
}
@media (max-width: 900px) {
  .custom-image-grid {
    gap: 18px;
  }
  .custom-image-card {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .custom-image-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .custom-image-card {
    max-width: 98vw;
    min-width: 0;
  }
  .custom-image-wrapper {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .img-fluid {
    max-width: 90vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  /* Optional: add some horizontal padding to the container as well */
  .service-img-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}


.gold-container {
  position: relative;
  display: inline-block;
}

.gold-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background: linear-gradient(45deg, #b8860b, #ffd700, #ffec8b, #b8860b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-ellipse {
  width: 150px;
  height: 120px;
  fill: none;
  stroke: url(#goldGradient);
  stroke-width: 3;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawEllipse 4s ease-in-out infinite;
}

@keyframes drawEllipse {
  0%   { stroke-dashoffset: 800; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 800; }
}








/* Luxury Section Styles */
.luxury-section {
  position: relative;
  overflow: hidden;
}

.luxury-text {
  position: absolute;
  bottom: 200px;
  right: 80px;
  transform: translate(-50%, -50%);
  color: #e1bb87;
  font-size: 5rem;
  font-family: 'Great Vibes', cursive;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  pointer-events: none;
  margin: 0;
  white-space: nowrap;
}

.luxury-button {
  position: absolute;
  bottom: 150px;
  right: 100px;
  background: transparent;
  color: #e1bb87;
  border: 2px solid #e1bb87;
  padding: 10px 28px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  border-radius: 6px;
}

.luxury-button:hover {
  background: #e1bb87;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 187, 135, 0.3);
}

/* Responsive Design for Luxury Section */
@media (max-width: 1200px) {
  .luxury-text {
    font-size: 3.5rem;
    bottom: 180px;
    right: 70px;
  }

  .luxury-button {
    bottom: 130px;
    right: 90px;
    padding: 8px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .luxury-text {
    font-size: 3rem;
    bottom: 160px;
    right: 60px;
  }

  .luxury-button {
    bottom: 110px;
    right: 80px;
    padding: 8px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .luxury-text {
    font-size: 2.5rem;
    bottom: 140px;
    right: 50px;
    transform: translate(-50%, -50%);
  }

  .luxury-button {
    bottom: 90px;
    right: 70px;
    padding: 6px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .luxury-text {
    font-size: 2rem;
    bottom: 120px;
    right: 40px;
    transform: translate(-50%, -50%);
  }

  .luxury-button {
    bottom: 70px;
    right: 60px;
    padding: 5px 15px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .luxury-text {
    font-size: 1.8rem;
    bottom: 100px;
    right: 30px;
    transform: translate(-50%, -50%);
  }

  .luxury-button {
    bottom: 50px;
    right: 50px;
    padding: 4px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .luxury-text {
    font-size: 1.5rem;
    bottom: 80px;
    right: 25px;
    transform: translate(-50%, -50%);
  }

  .luxury-button {
    bottom: 40px;
    right: 40px;
    padding: 3px 10px;
    font-size: 0.75rem;
  }
}

/* بخش تیم */
.team-section {
  padding: 80px 0 !important;
  background: #f8f9fa !important;
  margin: 0 !important;
  position: relative !important;
}

/* Carousel MDB Styles */
.team-section .carousel {
  padding: 0 60px !important;
}

.team-section .carousel-inner {
  padding: 20px 0 !important;
}

.team-section .carousel-control-prev,
.team-section .carousel-control-next {
  width: 50px !important;
  height: 50px !important;
  background: rgba(225, 187, 135, 0.9) !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border: none !important;
  opacity: 0.9 !important;
}

.team-section .carousel-control-prev:hover,
.team-section .carousel-control-next:hover {
  background: #e1bb87 !important;
  opacity: 1 !important;
}

.team-section .carousel-control-prev {
  left: 10px !important;
}

.team-section .carousel-control-next {
  right: 10px !important;
}

.team-section .carousel-control-prev-icon,
.team-section .carousel-control-next-icon {
  width: 20px !important;
  height: 20px !important;
  background-size: 20px 20px !important;
}

.team-section .carousel-indicators {
  bottom: -50px !important;
}

.team-section .carousel-indicators [data-mdb-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(225, 187, 135, 0.5) !important;
  border: none !important;
  margin: 0 5px !important;
}

.team-section .carousel-indicators .active {
  background-color: #e1bb87 !important;
}

.team-member {
  text-align: center !important;
  background: white !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  height: 100% !important;
  border: none !important;
}

.team-member:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.team-image {
  position: relative !important;
  overflow: hidden !important;
  height: 400px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.team-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: grayscale(100%) !important;
  transition: all 0.3s ease !important;
  display: block !important;
  border-bottom: 5px solid #f8f6f6 !important;
}

.team-member:hover .team-image img {
  filter: grayscale(0%) !important;
  transform: scale(1.02) !important;
}

.team-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
  border-bottom: 5px solid #f8f6f6 !important;
  
}

.team-member:hover .team-overlay {
  opacity: 1 !important;
}

.instagram-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 24px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  transform: scale(0.8) !important;
}

.team-member:hover .instagram-link {
  transform: scale(1) !important;
}

.instagram-link:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 5px 20px rgba(188, 24, 136, 0.6) !important;
}

.team-info {
  border-top: 5px solid #000000 !important;
  padding: 30px 20px !important;
  background-color: #e1bb87 !important;

}

.team-info h4 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #2c3e50 !important;
  margin-bottom: 8px !important;
  font-family: 'Raleway', sans-serif !important;
  letter-spacing: 0.5px !important;
}

.team-info p {
  font-size: 1rem !important;
  color: #131211 !important;
  font-weight: 400 !important;
  margin: 0 !important;
  font-family: 'Raleway', sans-serif !important;
  letter-spacing: 0.3px !important;
}

/* بخش شطرنجی */
.chess-section {
  padding: 0 !important;
  margin: 0 !important;
}

.chess-section .container-fluid {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.chess-row {
  margin: 0 !important;
  min-height: 500px !important;
}

.chess-row .col-lg-6 {
  padding: 0 !important;
  margin: 0 !important;
}

.chess-text-box {
  padding: 50px 40px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;

}

.chess-text-box h3 {
  font-family: 'Great Vibes', cursive;
  font-weight: 700 !important;
  color: #b8860b !important;
  font-size: 2.2rem !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px !important;
}

.chess-text-box p {
  font-size: 1.2rem !important;
  color: #444 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-family: 'Raleway', sans-serif !important;
}

.chess-image-box {
  height: 500px !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.chess-image-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: all 0.3s ease !important;
}

.chess-image-box:hover img {
  transform: scale(1.05) !important;
}

/* بخش تصویر ویژه */
.special-image-section {
  padding: 60px 0 !important;

}

.special-image {
  max-width: 500px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 16px !important;

  transition: all 0.3s ease !important;
}

.special-image:hover {
  transform: scale(1.02) !important;
  
}

/* ریسپانسیو برای بخش تیم */
@media (max-width: 992px) {
  .team-section .carousel {
    padding: 0 50px !important;
  }
  
  .team-image {
    height: 350px !important;
  }
  
  .team-info {
    padding: 25px 20px !important;
  }
  
  .team-info h4 {
    font-size: 1.4rem !important;
  }
  
  .team-info p {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0 !important;
  }
  
  .team-section .carousel {
    padding: 0 20px !important;
  }
  
  
  .team-section .carousel-control-prev,
  .team-section .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
  }
  
  .team-section .carousel-control-prev-icon,
  .team-section .carousel-control-next-icon {
    width: 16px !important;
    height: 16px !important;
    background-size: 16px 16px !important;
  }
  
  .team-section .carousel-control-prev {
    left: 5px !important;
  }
  
  .team-section .carousel-control-next {
    right: 5px !important;
  }
  
  .team-image {
    height: 300px !important;
  }
  
  .team-info {
    padding: 20px 15px !important;
  }
  
  .team-info h4 {
    font-size: 1.2rem !important;
  }
  
  .team-info p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .team-section .carousel {
    padding: 0 15px !important;
  }
  
  .team-image {
    height: 280px !important;
  }
  
  .team-info {
    padding: 18px 12px !important;
  }
  
  .team-info h4 {
    font-size: 1.1rem !important;
  }
  
  .team-info p {
    font-size: 0.85rem !important;
  }
  
  .instagram-link {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }
}

/* ریسپانسیو برای بخش شطرنجی */
@media (max-width: 992px) {
  .chess-row {
    min-height: 400px !important;
  }
  
  .chess-text-box {
    padding: 40px 30px !important;
  }
  
  .chess-text-box h3 {
    font-size: 1.8rem !important;
  }
  
  .chess-text-box p {
    font-size: 1.1rem !important;
  }
  
  .chess-image-box {
    height: 400px !important;
  }
}

@media (max-width: 768px) {
  .chess-row {
    min-height: 350px !important;
  }
  
  .chess-text-box {
    padding: 30px 25px !important;
  }
  
  .chess-text-box h3 {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
  }
  
  .chess-text-box p {
    font-size: 1rem !important;
  }
  
  .chess-image-box {
    height: 300px !important;
  }
}

@media (max-width: 576px) {
  .chess-row {
    min-height: 300px !important;
  }
  
  .chess-text-box {
    padding: 25px 20px !important;
  }
  
  .chess-text-box h3 {
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
  }
  
  .chess-text-box p {
    font-size: 0.95rem !important;
  }
  
  .chess-image-box {
    height: 250px !important;
  }
}

/* فوتر اصلی */
.main-footer {
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 60px 0 20px !important;
  margin-top: 0 !important;
  direction: ltr !important;

}

.footer-main {
  margin-bottom: 40px !important;
}

.footer-section {
  margin-bottom: 30px !important;
}

.footer-title {
  color: #e1bb87 !important;
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px !important;
}

.footer-description {
  color: #cccccc !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-family: 'Raleway', sans-serif !important;
}

.footer-subtitle {
  color: #aaaaaa !important;
  font-size: 0.9rem !important;
  margin-bottom: 15px !important;
  font-family: 'Raleway', sans-serif !important;
}

/* فرم اشتراک */
.newsletter-form .input-group {
  display: flex !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.newsletter-form .form-control {
  background: #2a2a2a !important;
  border: 1px solid #444 !important;
  color: #ffffff !important;
  padding: 12px 15px !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
}

.newsletter-form .form-control:focus {
  background: #333 !important;
  border-color: #e1bb87 !important;
  box-shadow: 0 0 0 0.2rem rgba(225, 187, 135, 0.25) !important;
  color: #ffffff !important;
}

.newsletter-form .form-control::placeholder {
  color: #888 !important;
}

.btn-subscribe {
  background: linear-gradient(45deg, #e1bb87, #d4a574) !important;
  border: none !important;
  color: #1a1a1a !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}

.btn-subscribe:hover {
  background: linear-gradient(45deg, #d4a574, #c79961) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(225, 187, 135, 0.4) !important;
}

/* منوی فوتر */
.footer-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-menu li {
  margin-bottom: 8px !important;
}

.footer-menu a {
  color: #cccccc !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
  font-family: 'Raleway', sans-serif !important;
}

.footer-menu a:hover {
  color: #e1bb87 !important;
  padding-left: 5px !important;
}

/* اطلاعات تماس */
.footer-contact {
  margin-bottom: 30px !important;
}

.contact-title,
.social-title {
  color: #e1bb87 !important;
  font-family: 'Raleway', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  margin-bottom: 15px !important;
}

.contact-item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  color: #cccccc !important;
  font-size: 0.9rem !important;
}

.contact-item i {
  color: #e1bb87 !important;
  margin-right: 10px !important;
  width: 16px !important;
  font-size: 0.9rem !important;
}

.whatsapp-link {
  color: #cccccc !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.whatsapp-link:hover {
  color: #25d366 !important;
  text-decoration: none !important;
}

/* شبکه‌های اجتماعی */
.social-link {
  display: flex !important;
  align-items: center !important;
  color: #cccccc !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 0.9rem !important;
}

.social-link:hover {
  color: #e1bb87 !important;
  transform: translateX(5px) !important;
}

.social-link i {
  color: #e1bb87 !important;
  margin-right: 10px !important;
  font-size: 1.1rem !important;
}

/* خط جداکننده */
.footer-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, #e1bb87, transparent) !important;
  margin: 30px 0 !important;
}

/* کپی رایت */
.footer-bottom {
  margin-top: 20px !important;
}

.footer-copyright p {
  color: #888 !important;
  font-size: 0.85rem !important;
  margin-bottom: 10px !important;
  font-family: 'Raleway', sans-serif !important;
}

.footer-legal {
  margin-top: 10px !important;
}

.footer-legal a {
  color: #aaaaaa !important;
  text-decoration: none !important;
  font-size: 0.8rem !important;
  transition: all 0.3s ease !important;
  font-family: 'Raleway', sans-serif !important;
}

.footer-legal a:hover {
  color: #e1bb87 !important;
}

.separator {
  color: #666 !important;
  margin: 0 10px !important;
}

/* ریسپانسیو برای فوتر */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 15px !important;
  }
  
  .footer-title {
    font-size: 1.3rem !important;
  }
  
  .footer-description {
    font-size: 0.9rem !important;
  }
  
  .newsletter-form .form-control {
    padding: 10px 12px !important;
    font-size: 0.85rem !important;
  }
  
  .btn-subscribe {
    padding: 10px 15px !important;
    font-size: 0.85rem !important;
  }
  
  .contact-item,
  .social-link {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 576px) {
  .main-footer {
    padding: 30px 0 15px !important;
  }
  
  .footer-main {
    margin-bottom: 30px !important;
  }
  
  .footer-title {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
  }
  
  .footer-description {
    font-size: 0.85rem !important;
  }
  
  .footer-menu a {
    font-size: 0.85rem !important;
  }
  
  .contact-title,
  .social-title {
    font-size: 1.1rem !important;
  }
  
  .footer-copyright p {
    font-size: 0.8rem !important;
  }
  
  .footer-legal a {
    font-size: 0.75rem !important;
  }
}

/* Gallery Page Styles */
.gallery-section {
  background: #f8f9fa;
  min-height: 100vh;
}

.gallery-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #2c3e50;
  font-size: 2.5rem;
}

/* Filter Menu */
.gallery-filter-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.filter-btn {
  background: white;
  border: 2px solid #e1bb87;
  color: #e1bb87;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  position: relative;
  overflow: hidden;
}

.filter-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: left 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  background: #e1bb87;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(225, 187, 135, 0.4);
}

.filter-btn.active {
  animation: pulse 0.6s ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Gallery Loading Animation */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-grid.loading {
  opacity: 0.7;
}

.gallery-grid.loading .gallery-item {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1) translateY(0);
  display: block;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease-in;
  display: none !important;
}

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

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 187, 135, 0.9), rgba(184, 134, 11, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  color: white;
  padding: 20px;
}

.gallery-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
}

.gallery-info p {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Raleway', sans-serif;
}

/* Contact Page Styles */
.contact-section {
  background: #f8f9fa;
  
}

.contact-item-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 200px;
  margin-bottom: 20px;
}

.contact-item-page:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-info h5 {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: 'Raleway', sans-serif;
}

.contact-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
}

.contact-link:hover {
  color: #b8860b;
  text-decoration: none;
}

.contact-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #2c3e50;
}

/* ریسپانسیو برای Contact */
@media (max-width: 768px) {
  .contact-section {
    padding-top: 100px !important;
  }
  
  .contact-item-page {
    min-width: 180px;
    padding: 15px 10px;
    margin-bottom: 15px;
  }
  
  .contact-info h5 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .contact-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding-top: 80px !important;
    padding-bottom: 30px !important;
  }
  
  .contact-item-page {
    min-width: 160px;
    padding: 12px 8px;
    margin-bottom: 12px;
  }
  
  .contact-info h5 {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
  
  .contact-link {
    font-size: 0.75rem;
  }
}

/* ریسپانسیو برای Gallery */
@media (max-width: 768px) {
  .gallery-section {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .filter-buttons {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  .gallery-info h4 {
    font-size: 1.3rem;
  }
  
  .gallery-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding-top: 80px !important;
    padding-bottom: 30px !important;
  }
  
  .gallery-title {
    font-size: 1.8rem;
  }
  
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

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

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.close-btn::before {
  content: '×';
  font-size: 30px;
  line-height: 1;
}

/* Mobile Modal Adjustments */
@media (max-width: 576px) {
  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .modal-image {
    max-height: 70vh;
  }
  
  .close-btn {
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  
  .close-btn::before {
    font-size: 25px;
  }
}

/* Video Gallery Styles */
.video-gallery-section {
  background: #f8f9fa;
  min-height: 100vh;
}

/* Video Filter Menu */
.video-filter-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
}

.video-filter-btn {
  background: white;
  border: 2px solid #e1bb87;
  color: #e1bb87;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  margin: 5px;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  min-height: 44px;
  min-width: 80px;
}

.video-filter-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: left 0.5s;
}

.video-filter-btn:hover::before {
  left: 100%;
}

.video-filter-btn:hover,
.video-filter-btn.active {
  background: #e1bb87;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(225, 187, 135, 0.4);
}

.video-filter-btn.active {
  animation: pulse 0.6s ease-out;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  touch-action: pan-y;
}

.video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1) translateY(0);
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.video-item.hidden {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease-in;
  display: none !important;
}

.video-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Samsung Browser Thumbnail Fixes */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* Samsung Browser Additional Fixes */
.video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1) translateY(0);
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  margin: 0;
  padding: 0;
  background: white;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

/* Samsung Android Video Prevention */
.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    pointer-events: none;
    -webkit-pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

.video-item:hover .video-thumbnail video {
    opacity: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(225, 187, 135, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(225, 187, 135, 0.4);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}

.play-button:hover {
  background: #e1bb87;
  transform: scale(1.1);
}

.play-button:active {
  transform: scale(0.95);
}

.play-button i {
  color: white;
  font-size: 2rem;
  margin-left: 4px;
}

.video-info {
  display: none;
}

/* Samsung Browser Specific Fixes */
@supports (-webkit-appearance: none) {
  .video-item {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
  }
  
  .video-thumbnail {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
  }
  
  .video-poster {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
    display: block;
  }
  
  .video-thumbnail video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
  }
  
  .video-filter-btn {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 5px;
    padding: 12px 25px;
    display: inline-block;
  }
}

/* Samsung Browser Additional Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .video-item {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    margin: 0;
    padding: 0;
  }
  
  .video-thumbnail {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
  }
  
  .video-poster {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
    display: block;
  }
  
  .video-thumbnail video {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
  }
  
  .play-button {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .video-filter-btn {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 5px;
    padding: 12px 25px;
    display: inline-block;
  }
}

/* Samsung Browser Modal Fixes */
@supports (-webkit-appearance: none) {
  .video-modal {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .video-modal-content {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .video-modal-content video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* Samsung Browser Force Display */
.video-modal.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Samsung Browser Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Samsung Android Browser Force Styles */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .video-filter-btn {
    background: white !important;
    border: 2px solid #e1bb87 !important;
    color: #e1bb87 !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Raleway', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    tap-highlight-color: transparent !important;
    touch-callout: none !important;
    user-select: none !important;
    touch-action: manipulation !important;
    margin: 5px !important;
    display: inline-block !important;
    text-align: center !important;
    line-height: 1.2 !important;
    min-height: 44px !important;
    min-width: 80px !important;
  }
  
  .video-filter-btn:hover,
  .video-filter-btn.active {
    background: #e1bb87 !important;
    color: white !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(225, 187, 135, 0.4) !important;
  }
  
  .video-thumbnail {
    position: relative !important;
    width: 100% !important;
    height: 250px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    touch-callout: none !important;
    user-select: none !important;
    tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
  
  .video-poster {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    transform: translateZ(0) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
  }
  
  .play-button {
    width: 80px !important;
    height: 80px !important;
    background: rgba(225, 187, 135, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(225, 187, 135, 0.4) !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    tap-highlight-color: transparent !important;
  }
  
  .video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 3 !important;
    transform: translateZ(0) !important;
  }
  
/* Samsung Browser Video Loading Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .video-thumbnail video {
    preload: metadata !important;
    -webkit-playsinline: true !important;
    playsinline: true !important;
  }
  
  .video-modal-content video {
    preload: auto !important;
    -webkit-playsinline: true !important;
    playsinline: true !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .video-item:hover .video-thumbnail video {
    opacity: 0;
  }
  
  .video-item:hover .video-overlay {
    opacity: 1;
  }
  
  .play-button:hover {
    transform: none;
  }
  
  .play-button:active {
    transform: scale(0.9);
  }
  
  /* Samsung Android touch optimizations */
  .video-thumbnail {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
  }
  
  .video-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
  }
  
  /* Samsung Android Video Controls Prevention */
  video::-webkit-media-controls {
    display: none !important;
  }
  
  video::-webkit-media-controls-panel {
    display: none !important;
  }
  
  video::-webkit-media-controls-play-button {
    display: none !important;
  }
  
  video::-webkit-media-controls-start-playback-button {
    display: none !important;
  }
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.video-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.video-modal-content video {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.video-modal-info {
  display: none;
}

.video-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-close-btn::before {
  content: '×';
  font-size: 30px;
  line-height: 1;
}

/* ریسپانسیو برای Video Gallery */
@media (max-width: 768px) {
  .video-gallery-section {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .video-thumbnail {
    height: 200px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.5rem;
  }
  
  .video-info {
    display: none;
  }
}

@media (max-width: 576px) {
  .video-gallery-section {
    padding-top: 80px !important;
    padding-bottom: 30px !important;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .video-thumbnail {
    height: 180px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 1.2rem;
  }
  
  .video-info {
    display: none;
  }
  
  .video-modal-content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .video-modal-content video {
    max-height: 60vh;
  }
  
  .video-modal-info {
    display: none;
  }
  
  .video-close-btn {
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  
  .video-close-btn::before {
    font-size: 25px;
  }
}

/* ریسپانسیو برای تصویر ویژه */
@media (max-width: 576px) {
  .special-image-section {
    padding: 40px 0 !important;
  }
  
  .special-image {
    max-width: 220px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 360px) {
  .special-image {
    max-width: 150px !important;
    border-radius: 10px !important;
  }
}


}


.booking-step{

width: 100%;

}

.iti--inline-dropdown .iti__dropdown-content {

position: static !important;

direction: ltr !important;
}



#iti-0__search-input{
  padding-left: 10px !important;
}

/* تنظیم دکمه‌های کاروسل برای بخش تیم */
.team-section .carousel-control-prev,
.team-section .carousel-control-next {
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50% !important;

  transform: translateY(-50%) !important;
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
}

.team-section .carousel-control-prev:hover,
.team-section .carousel-control-next:hover {
  opacity: 1 !important;
}

.team-section .carousel-control-prev {
  left: 20px !important;
}

.team-section .carousel-control-next {
  right: 20px !important;
}

.team-section .carousel-control-prev-icon,
.team-section .carousel-control-next-icon {
  width: 20px !important;
  height: 20px !important;
  position: absolute !important;
 
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* افزایش ارتفاع عکس‌های تیم در همه دستگاه‌ها */
.team-section .team-image {
  height: 550px !important;
}

.team-section .team-image img {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}




