:root {
  --primary-color: #cf9164;
  --secondary-color: #D9B38C;
  --accent-color: #FFD699;
  --text-color: #68563f;
  --hover-color: #aa753f;
  --white: #ffffff;
  --black: #000;
}

html {
  scroll-behavior: smooth;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #FAF3EC;
  color: var(--text-color);
}

/* ===============================
   TOP BAR
==================================*/
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 50px;
  background: var(--white);
  font-size: 0.9rem;
  border-bottom: 0.5px solid #dcdcdc;
  z-index: 1001;
}

.top-left p {
  display: inline-block;
  margin-right: 20px;
}

.top-left i {
  margin-right: 5px;
  color: var(--primary-color);
}

.phone-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: var(--black);
  gap: 5px;
  transition: color 0.3s;
  margin-right: 20px;
}
.phone-link:hover {
  color: var(--accent-color);
}

.work-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-color);
}
.work-time i {
  color: var(--primary-color);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* Wrapper لتسهيل الوضع داخل الهيدر */
.search-wrapper {
  position: relative;
  display: inline-block;
}

/* صندوق البحث المنبثق على شكل مستطيل */
.search-popup {
  display: none;
  position: absolute;
  top: 50%;  /* في نفس خط الأيقونات */
  right: 0;
  transform: translateY(-50%);
  background: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

/* تنسيق حقل البحث */
.search-popup input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.search-popup input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 6px rgba(207,145,100,0.3);
}

/* زر الإغلاق */
#closeSearch {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1rem;
  padding: 6px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#closeSearch:hover {
  color: var(--accent-color);
  background-color: rgba(255, 214, 153, 0.15);
  transform: scale(1.1);
}


.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  color: var(--accent-color);
  background-color: rgba(255, 214, 153, 0.15);
  transform: scale(1.1);
}

.cart-btn .cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 50%;
}

/* ===============================
   MAIN HEADER
==================================*/
.main-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.logo img {
  width: 100px;
  transition: transform 0.3s;
  cursor: pointer;
}
.logo img:hover {
  transform: scale(1.10) rotate(-4deg);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-color);
  transition: 0.3s;
}
.nav ul li a:hover::after {
  width: 100%;
}
.nav ul li a:hover {
  color: var(--hover-color);
}

.nav.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95); /* خلفية شبه شفافة أنيقة */
  position: absolute;
  top: 95px;
  right: 20px;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-10px);
  animation: slideDown 0.4s forwards;
  z-index: 1002;
}

/* حركة دخول القائمة */
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* روابط القائمة */
.nav.active ul {
  flex-direction: column;
  gap: 15px;
}

.nav.active ul li a {
  font-size: 1.1rem;
  padding: 10px 0;
  color: var(--text-color);
  transition: color 0.3s, transform 0.3s;
}

.nav.active ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}



.header-actions .btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  padding: 10px 25px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.header-actions .btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.btn-mobile-book {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: 0.3s;
}


/* ===============================
   SOCIAL SIDEBAR
==================================*/
.social-sidebar {
  position: absolute;
  top: 60%;
  left: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 999;
}


.social-sidebar .line {
  width: 1.5px;
  height: 45px;
  background: var(--accent-color);
  opacity: 0.6;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(243, 189, 134, 0.15);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: var(--accent-color) solid 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



/* ===============================
   HERO SLIDER
==================================*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  padding: 0 80px;
  background: #FAF3EC;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 5;
}

.slide-content {
  width: 45%;
  animation: fadeInLeft 1.2s ease;
  margin-left: 40px;
}

.slide-content h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.slide-content p {
  font-size: 1.15rem;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.7;
}

.slide-content .btn {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  padding: 12px 35px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.slide-content .btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slide-image {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
.slide-image img {
  width: 75%;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s ease;
}
.slide-image img:hover {
  transform: scale(1.10);
}


/* نقاط التحكم */
.slider-navigation {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 500px;
  z-index: 30;
}
.slider-navigation span {
  width: 45px;
  height: 4px;
  background: rgba(210, 160, 110, 0.4);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.slider-navigation span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: left 0.4s ease;
}
.slider-navigation span.active::before {
  left: 0;
}

/* حركة الدخول */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ===============================
   SERVICES SECTION
==================================*/
.services {
  background-color: #fff;
  padding: 100px 80px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  background: #FAF3EC;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}

.service-card:hover {
  background: linear-gradient(145deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover i {
  transform: scale(1.2);
  color: #fff;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}



.gallery {
  padding: 80px 50px;
  background-color: #FAF3EC;
  text-align: center;
}

.gallery .section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.gallery .section-subtitle {
  color: var(--text-color);
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}



.contact {
  padding: 80px 50px;
  background-color: #fff;
  text-align: center;
}

.contact .section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact .section-subtitle {
  color: var(--text-color);
  margin-bottom: 50px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--text-color);
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form .btn {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  padding: 12px 30px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.footer {
  background: linear-gradient(135deg, #684b34, #cf9164);
  color: #fff;
  padding: 60px 50px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FFD699;
  font-weight: 600;
}

.footer-section p,
.footer-section ul li {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #FFD699;
}

.footer-section p i {
  margin-right: 10px;
  color: #FFD699;
}

/* Social Icons */
.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-socials .social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.footer-socials .social-icon:hover {
  background: #FFD699;
  color: #684b34;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.footer-bottom a.devart-link {
  color: #FFD699;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-bottom a.devart-link:hover {
  color: #fff;
  text-decoration: underline;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  background-color: #684b34;
  color: var(--white);
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

#backToTop:hover {
  transform: scale(1.1);
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Show button when active */
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Background */
.modal {
  display: none; /* مخفي افتراضياً */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.7); /* داكن أكثر لأناقة */
  backdrop-filter: blur(5px); /* تأثير ضبابي خلف المودال */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

/* Modal Content */
.modal-content {
  background-color: #fff8f0; /* لون فاتح دافئ يتماشى مع ألوان الموقع */
  margin: auto;
  padding: 40px 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  animation: slideUp 0.4s ease;
}

/* Close Button */
.modal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #cf9164; /* لون متناسق مع الموقع */
  cursor: pointer;
  transition: color 0.3s;
}
.modal .close:hover {
  color: #FFD699;
}

/* Modal Heading */
.modal-content h2 {
  font-size: 1.8rem;
  color: #684b34;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Form Inputs */
.modal-content form input,
.modal-content form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #d6b38c;
  font-size: 1rem;
  transition: all 0.3s;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
  outline: none;
  border-color: #cf9164;
  box-shadow: 0 0 8px rgba(207,145,100,0.4);
}

/* Submit Button */
.modal-content form .btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #D9B38C, #FFD699);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-content form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(50px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}


.btn-mobile-book {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  padding: 10px 25px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.btn-mobile-book:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Login Modal inherits modal styles */
#loginModal .modal-content h2 {
  color: #684b34;
  margin-bottom: 25px;
  font-weight: 700;
}

#loginModal .modal-content form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #d6b38c;
  font-size: 1rem;
}

#loginModal .modal-content form input:focus {
  outline: none;
  border-color: #cf9164;
  box-shadow: 0 0 8px rgba(207,145,100,0.4);
}

#loginModal .modal-content form .btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #D9B38C, #FFD699);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#loginModal .modal-content form .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#loginModal .modal-content p {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-color);
}

#loginModal .modal-content p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

#loginModal .modal-content p a:hover {
  text-decoration: underline;
}


/* ===============================
   Cart Item
==================================*/
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #e0d7ce;
  border-radius: 12px;
  margin-bottom: 12px;
  background-color: #FAF3EC;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: linear-gradient(145deg, var(--secondary-color), var(--accent-color));
  color: #fff;
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: var(--secondary-color);
  border: none;
  color: #fff;
  font-weight: 600;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: scale(1.1);
}

.qty {
  width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.item-price {
  font-weight: 600;
  color: var(--primary-color);
  min-width: 50px;
  text-align: right;
}

.remove-item {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.remove-item:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* ===============================
   Cart Actions
==================================*/
.cart-actions {
  margin-top: 20px;
  text-align: right;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-actions p {
  margin: 0;
  color: var(--text-color);
}

.cart-actions #checkoutBtn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-actions #checkoutBtn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ===============================
   Checkout Modal
================================== */
#checkoutModal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

#checkoutModal .modal-content {
  background-color: #fff8f0;
  padding: 30px 25px;
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  font-family: 'Poppins', sans-serif;
}

#checkoutModal .modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.checkout-items {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 20px;
  text-align: left;
  padding-right: 10px;
}

.checkout-items div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0d7ce;
  font-size: 1rem;
  color: var(--text-color);
}

#checkoutModal .modal-content p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

#checkoutModal .modal-content .btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#checkoutModal .modal-content .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* زر الإغلاق */
#checkoutModal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s;
}

#checkoutModal .close:hover {
  color: var(--accent-color);
}

/* Scrollbar لطيف */
.checkout-items::-webkit-scrollbar {
  width: 6px;
}

.checkout-items::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 3px;
}

.checkout-items::-webkit-scrollbar-track {
  background: #f0e7df;
  border-radius: 3px;
}







/* Responsive */
@media (max-width: 576px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-content h2 {
    font-size: 1.5rem;
  }
}





/* ===============================
   Media Queries للسلايدر
==================================*/
@media (max-width: 1200px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slide-content .btn {
    padding: 10px 25px;
  }
  .slide-image img {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .slide-content,
  .slide-image {
    width: 100%;
    margin: 0;
  }
  .slide-content {
    order: 2;
  }
  .slide-image {
    order: 1;
    justify-content: center;
    margin-bottom: 20px;
  }
  .slide-image img {
    width: 70%;
    max-width: 250px;
  }
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 0.95rem;
  }
  .slide-content .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 1.6rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }
  .slide-content .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  .slide-image img {
    width: 80%;
    max-width: 200px;
  }
  .slider-navigation{
    margin-bottom: 50px;
  }
  .slider-navigation {
    margin-top: 20px;   /* المسافة بين النص وخطوط السلايدر */
    margin-bottom: 30px; /* يمكن تعديل حسب الحاجة */
  }

  .slider-navigation span {
    width: 35px;  /* تصغير طول الخطوط قليلاً على الموبايل */
    height: 4px;
  }
}


@media (max-width: 992px) {
  .nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .top-bar {
    align-items: flex-start;
    gap: 5px;
    padding: 8px 20px;
  }
  .top-left p {
    margin-right: 10px;
  }
  .top-right {
    margin-top: 5px;
  }
  .header-actions .btn {
    display: none;
  }

  /* إظهار زر الموبايل */
  .btn-mobile-book {
    display: inline-flex;
  }
}


@media (max-width: 992px) {
  .slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .slide-content,
  .slide-image {
    width: 100%;
  }
  
  .slide-image {
    display: flex;
    justify-content: center; /* مركز أفقي */
    align-items: center; /* مركز عمودي إذا تريد */
}
.slide-image img {
    width: 80%;
    margin-top: 20px; /* يمكن تعديلها حسب الحاجة */
}

}


@media (max-width: 768px) {
  .services {
    padding: 60px 20px;
  }
}


@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
}




@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .footer-section p i {
    margin-right: 5px;
  }
  .footer-socials{
    margin-left: 50px;
  }
}

