/* ============================================
   Root Variables
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
:root {
    --font-family: 'Cairo', sans-serif;
    --color-white: #ffffff;
    --color-bg: #ffffff;
    --color-primary: #5baa91;
    --color-primary-hover: #4a9980;
    --color-secondary: rgba(102, 161, 133, 1);
    --color-secondary-hover: rgba(82, 141, 113, 1);
    --color-text: #333;
    --color-light-gray: #ccc;
    --transition: 0.3s ease;
    --border-radius: 0.5rem; /* 8px */
    --nav-padding: 0.9375rem 1.875rem; /* 15px 30px */
    --btn-padding: 0.5rem 1rem; /* approx 8px 16px */
  }
  
  /* ============================================
     General Reset
  ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
  }
  
  body {
    direction: rtl;
    background-color: var(--color-bg);
      overflow-x: hidden;
  }
  
  /* Hide scrollbar for WebKit and Firefox */
  #cardContainer::-webkit-scrollbar {
    display: none;
  }
  #cardContainer {
    scrollbar-width: none;
  }
  
  /* Ensure Full Height */
  html,
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg);
    direction: rtl;
  }
  
  /* ============================================
   Navigation Bar
============================================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg);
  padding: var(--nav-padding);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}
#menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 20px;
}

#arrowIcon {
  transition: transform 0.4s ease;
}

.rotate-up {
  transform: rotate(180deg);
}

#menu.active {
  display: flex;
}

#menuToggleBtn {
  background-color: white;
  border: none;
  /* border-radius: 12px; */
  padding: 12px 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
}

#menuToggleBtn:hover {
  background-color: #e0ebf5;
  transform: scale(1.05);
}

#menuToggleBtn:active {
  background-color: white;
  transform: scale(0.98);
}
#menuToggleBtn svg {
  transition: transform 0.3s ease;
}

#menuToggleBtn:active svg {
  transform: scale(0.95);
}

/* Optional: make it only show on mobile */
@media (min-width: 1026px) {
  #menuToggleBtn {
    display: none;
  }

  #menu {
    display: flex !important; /* show always on desktop */
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
  }
}
.nav-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-logo img {
  transition: transform 0.3s ease; /* Smooth animation */
  width: 130px;
  height: auto;
}
.nav-logo img:hover {
  transform: scale(1.8); /* Increases the size by 80% on hover */
}
.nav-left {
  display: flex;
  gap: 0.625rem; 
  margin-top: 1rem;
}

.nav-left button {
  padding: 0.625rem 0.9375rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-right {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5625rem; /* 25 px */
  flex-wrap: wrap;
}

.nav-right li {
  display: inline;
  padding: 0.4rem;
  margin-top: 1.2rem;
}

.nav-right li .first {
  margin-right: 7.8125rem; /* 125px */
}

.nav-right a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
  margin: 0.4375rem; /* ~7px */
}

.nav-right a.active {
  font-weight: bold;
  color: var(--color-primary);
}

.nav-right a:hover {
  border-radius: var(--border-radius);
}

.nav-user {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns content to the right for RTL */
  gap: 1rem;
  background: var(--color-bg);
  padding: 0.8rem;
  direction: rtl; /* Right-to-left support */
}

.nav-user a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-family);
  transition: var(--transition);
}

.nav-user hr {
  display: block;
  width: 0.1rem;
  height: 2rem;
  background-color: var(--color-primary);
  border: none;
  margin:  0.5rem;
}

.nav-user .notification-icon i,
.nav-user .user-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.user-icon span {
  color: var(--color-primary);
  margin: 0 0.5rem;
}
/* User Menu Container */
.user-menu {
  position: relative;
  display: inline-block;
}

/* User Icon */
.user-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  color: #333;
}

.user-icon i {
  font-size: 18px;
}

/* Dropdown Menu */
.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  background: white;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  overflow: hidden;
}

/* Dropdown Items */
.user-dropdown a, .user-dropdown button {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
  text-decoration: none;
  color: #333;
  background: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.user-dropdown a i, .user-dropdown button i {
  color : var(--color-primary);
}

.user-dropdown a:hover, .user-dropdown button:hover {
  background: #f4f4f4;
}

/* Show Dropdown */
.user-dropdown.show {
  display: block;
}
/* Google Sign-In Button Styles - Custom Green Design */
#googleSignInBtn,
#mobileGoogleSignInBtn {

  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-left: 1rem !important;
}

.btn_register,
.btn_lgn {
  align-self: center;
  margin-left: 1rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50rem;
  border: 2px solid transparent;
  padding: 10px 16px;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.btn_register::before,
.btn_lgn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50rem;
  padding: 2px;
  background: linear-gradient(90deg, #5baa91, var(--color-primary-hover), #5baa91);
  background-size: 300%;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderMove 3s linear infinite;
  pointer-events: none;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.google-btn {
  background-color: white;
  color: black;
  border: 1px solid #5baa91;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  direction: rtl;
  border-radius: 8px;
}

/* Hover effect */
.google-btn:hover {
  background-color: #5baa91;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(91, 170, 145, 0.3);
}

/* Click (active) effect */
.google-btn:active {
  transform: scale(0.97);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .google-btn {
    font-size: 13px;
    padding: 8px 12px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .google-btn {
    font-size: 12px;
    padding: 7px 10px;
    gap: 8px;
  }

  .google-btn span {
    display: none; /* Hide text on very small screens if needed */
  }
}

.btn_register:hover,
.btn_lgn:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: scale(1.05);
}

.forgot-password-link{
  color: var(--color-primary);
}


/* ============================================
   Footer
============================================ */
.footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 1.875rem;
  text-align: right;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo img {
  width: 7.5rem;
  height: auto;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1); /* Makes the logo white for better visibility on dark footer */
}

.logo img:hover {
  transform: scale(1.05);
}

footer {
  width: 100%;
  margin-top: auto;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.625rem 0;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction: column;
  align-items: center;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:focus {
  font-weight: bold;
  font-size: 1rem;
}

/* ============================================
   Newsletter & Input Button
============================================ */
.newsletter {
  max-width: 21.875rem;
  text-align: center;
}

.newsletter p {
  margin-bottom: 0.9375rem;
  font-size: 0.875rem;
  font-weight: bold;
}

.input-button-container {
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  border: 0.125rem solid var(--color-bg);
  border-radius: 50rem;
  overflow: hidden;
  width: 100%;
  padding: 0.3125rem;
}

.input-field {
  flex: 1;
  border: none;
  padding: 0.625rem;
  font-size: 0.875rem;
  outline: none;
  color: #666;
  direction: rtl;
}

.input-field::placeholder {
  color: #aaa;
}

.newsletter .social .icons {
  color: var(--color-white);
  font-size: 1.125rem;
  margin: 0 0.03125rem;
}

.newsletter .social .icons:hover {
  color: silver !important;
  font-size: 1.25rem;
}

.btn_send {
  background-color: var(--color-bg);
  color: var(--color-primary);
  border: 0.0625rem solid var(--color-primary);
  border-radius: 1.5625rem;
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn_send:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   Footer Bottom Section
============================================ */
.footer-bottom {
  text-align: center;
  padding: 0.9375rem 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer-bottom hr {
  width: 90%;
  border: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.584);
  margin: 0.625rem auto;
}

.footer-bottom p {
  font-size: 0.875rem;
  margin: 0.3125rem 0;
}

/* ============================================
   Responsive Media Queries for Navigation & Footer
============================================ */
@media (max-width: 64rem) { /* 1024px */
  .navbar {
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-around;
  }
  .nav-left {
    margin-right: 1rem;
  }
  .nav-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
  }
  .nav-right li .first {
    margin-right: 0;
  }
}

@media (max-width: 48rem) { /* 768px */
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .logo img {
    width: 8rem;
  }
  .newsletter {
    margin: 0 auto;
  }
  .input-button-container {
    flex-direction: column;
    align-items: center;
    width: 65%;
    margin: 0 auto;
  }
  .input-field {
    width: 100%;
  }
  .btn_send {
    width: 50%;
    margin-top: 0.625rem;
  }
}

@media (max-width: 30rem) { /* 480px */
  .navbar {
    padding: 0.625rem;
  }
  .nav-user{
    flex-direction: row;
    align-items: center;
  }
  .logo img {
    width: 8rem;
  }
  .nav-left button {
    width: 100%;
    text-align: center;
  }
  .nav-right {
    flex-direction: column;
    text-align: center;
    gap: 0.3125rem;
  }
  .footer {
    padding: 1.25rem;
  }
  .footer-bottom p {
    font-size: 0.75rem;
  }
  .newsletter .social .icons {
    font-size: 1.125rem;
  }
  .footer-bottom hr {
    margin: 0.3125rem auto;
  }
}

  
  /* ============================================
     Main Content & Landing Page
  ============================================ */
  /* Base styles */
.all {
  padding: 0.9375rem; /* 15px */
  background-color: var(--color-bg);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.landing-page {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0.3125rem; /* 5px */
  padding: 1.25rem; /* 20px */
}

.contain {
  max-width: 44.5rem; /* 712px */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  margin: 1rem;
}

.contain img {
  width: 100%;
  height: auto;
}

.content {
  width: 50%;
  max-width: 35.6875rem; /* 571px */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  font-size: 2.5rem; /* 40px */
  font-weight: bold;
  color: var(--color-primary);
}

.description {
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  color: rgba(134, 133, 133, 1);
}

.btn_search {
  height: 4.3125rem; /* 69px */
  width: 11.5rem; /* 184px */
  font-size: 1.25rem; /* 20px */
  border-radius: 2.625rem; /* 42px */
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 0.9375rem 1.25rem; /* 15px 20px */
  cursor: pointer;
  margin-top: 1.25rem; /* 20px */
}

.btn_search:hover {
  background-color: var(--color-bg);
  color: var(--color-primary);
  border: 0.0625rem solid var(--color-primary);
}

.search-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.faq-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 6rem 8rem;
}

.faq-intro {
  flex: 1;
  max-width: 35%;
}

.faq-intro h1 {
  color: #3c8c6c;
  font-size: 32px;
  margin-bottom: 16px;
}

.faq-intro p {
  font-size: 16px;
  color: #333;
}

.faq-list {
  flex: 2;
  max-width: 60%;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  color: var(--color-primary);
  width: 100%;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '＋';
  position: absolute;
  left: 0;
  font-size: 20px;
  transition: transform 0.2s;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 15px;
  color: #444;
}

.faq-answer.show {
  display: block;
}
.hero-section {
  max-width: 1000px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 44px;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid var(--color-primary);
  color: #3c8c6c;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #3c8c6c;
  color: white;
}
.flexispace-promo {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.promo-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.promo-title span {
  display: inline-block;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.promo-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.promo-button {
  background-color: var(--color-primary);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}

.promo-button:hover {
  background-color: var(--color-primary-hover);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .promo-title {
    font-size: 32px;
  }

  .promo-text {
    font-size: 16px;
  }

  .promo-button {
    padding: 10px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .promo-title {
    font-size: 24px;
  }

  .promo-text {
    font-size: 15px;
  }

  .promo-button {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-button {
    font-size: 15px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 1024px) {
  .faq-container {
    flex-direction: column;
    margin: 0 3rem;
    margin-top: 6rem;
    padding: 0;
  }

  .faq-intro,
  .faq-list {
    max-width: 100%;
  }

  .faq-intro h1 {
    font-size: 28px;
  }

  .faq-intro p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    margin: 0 2rem;
    margin-top: 4rem;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-question::after {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .faq-container {
    margin: 0 1rem;
    margin-top: 3rem;
  }

  .faq-intro h1 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }
}

/* For tablet screens and below */
@media (max-width: 48rem) { /* 768px */
  .landing-page {
      flex-direction: column;
      padding: 1rem; /* 16px */
  }

  .content {
      width: 70%; /* Full width */
      max-width: none; /* No max-width restriction */
      padding: 0 1rem; /* Add padding */
  }

  .title {
      font-size: 2rem; /* Slightly smaller title font on smaller screens */
  }

  .description {
      font-size: 1.125rem; /* Slightly smaller description font on smaller screens */
  }

  .btn_search {
      width: 100%; /* Full width for the button */
      max-width: 6rem; /* Button max width */
      margin-bottom: 1rem;
  }

  .contain {
      width: 80%;
      max-width: 100%; /* Make image container full width */
      margin-bottom: 1rem; /* Add margin between image and content */
  }
}

/* For mobile screens */
@media (max-width: 30rem) { /* 480px */
  .title {
      font-size: 1.75rem; /* Even smaller title font on very small screens */
  }

  .description {
      font-size: 1rem; /* Smaller description font on very small screens */
  }

  .btn_search {
      font-size: 1.125rem; /* Smaller font size for button text */
      padding: 0.75rem 1rem; /* Adjust padding for the button */
  }

  .landing-page {
      padding: 0.5rem; /* Reduce padding */
  }

  /* Adjust the image container */
  .contain {
      width: 80%; /* Full width */
      max-width: 100%; /* No max-width restriction */
      margin-bottom: 1rem; /* Bottom margin */
  }

  .content {
      padding: 0 1rem; /* Add padding around the content */
  }

  .btn_search {
      padding: 0.75rem 1rem; /* Adjust padding for small screens */
  }
}

/* For very small devices (up to 320px) */
@media (max-width: 20rem) { /* 320px */
  .title {
      font-size: 1.5rem; /* Further reduce title size */
  }

  .description {
      font-size: 0.875rem; /* Further reduce description size */
  }

  .btn_search {
      font-size: 1rem; /* Reduce font size for the button */
      padding: 0.5rem 1rem; /* Adjust padding */
  }

  .landing-page {
      padding: 0.25rem; /* Reduce padding further */
  }

  .content {
      padding: 0.5rem; /* Add more padding around content */
  }

  .contain {
      margin-bottom: 0.5rem; /* Smaller margin between image and text */
  }
}

.forgot-password-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: auto;
  padding: 2rem;
  flex-wrap: wrap;
}

.forgot-password-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  height: 30rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  color: var(--color-primary);
  cursor: pointer;
}

.forgot-password-title {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.forgot-password-description {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.email-input,
.send-button {
  width: 80%;
  max-width: 300px;
  margin: 0 auto 2rem;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 1rem;
  box-sizing: border-box;
}

.email-input {
  background-color: #f0f0f0;
  border: none;
  text-align: center;
}

.send-button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
}

.send-button:hover {
  background-color: var(--color-primary-hover);
}
.verification-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  height: auto;
}

.verification-card {
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.verification-back {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
}

.verification-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.verification-description {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.verification-code-label {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.verification-code-inputs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.verification-code-inputs input {
  width: 3rem;
  height: 3.5rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1.25rem;
  outline: none;
}

.verification-resend {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.verification-resend a {
  color: var(--color-primary);
  text-decoration: none;
  margin-left: 0.25rem;
  cursor: pointer;
}

.verification-timer {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 2rem;
}

.verify-button {
  width: 80%;
  margin: 0 auto;
  max-width: 300px;
  padding: 12px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.verify-button:hover {
  background-color: var(--color-primary-hover);
}
.user-info{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
}
.user-complete-info {
  width: 30rem;
  padding: 20px;
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: right;
}

.user-complete-info h1 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.user-complete-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.user-complete-info h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.radio-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.radio-group input[type="radio"] {
  margin-right: 10px;
  accent-color: var(--color-primary); /* Green color for radio buttons */
}

.phone-input {
  position: relative;
  margin-bottom: 20px;
}

.phone-input label {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 12px;
  color: #999;
  background-color: #fff;
  padding: 0 5px;
}

.phone-input input[type="tel"] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
}

.activate-button {
  width: 100%;
  padding: 10px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.activate-button:hover {
  background-color: var(--color-primary-hover);
}
.reset-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
}

.reset-card {
  background: #fff;
  padding: 2rem;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.reset-back {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
}

.reset-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.reset-description {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: right;
}

.form-group input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  outline: none;
}

.form-group .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
}

.reset-button {
  width: 100%;
  padding: 12px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 1rem;
}

.reset-button:hover {
  background-color: var(--color-primary-hover);
}


@media (max-width: 480px) {
  .reset-card {
    padding: 1.5rem 1rem;
  }

  .form-group input {
    font-size: 0.95rem;
  }

  .reset-button{
    font-size: 0.95rem;
  }
}
/* Responsive tweaks */
@media (max-width: 480px) {
  .verification-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }

  .verification-code-inputs input {
    width: 2.5rem;
    height: 3rem;
    font-size: 1rem;
  }

  .verify-button {
    width: 90%;
    font-size: 0.95rem;
  }
}

/* Responsive tweaks for smaller screens */
@media (max-width: 480px) {
  .forgot-password-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }

  .back-button {
    font-size: 24px;
    top: 10px;
    left: 10px;
  }

  .forgot-password-title {
    font-size: 1.25rem;
  }

  .email-input,
  .send-button {
    width: 90%;
    font-size: 0.95rem;
  }
}

  /* ============================================
     Features Section
  ============================================ */
  .features {
    display: block;
    margin-top: 7.5rem; /* 120px */
  }
  
  .features h1 {
    font-size: 3rem; /* 48px */
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
  }
  
  .features .features-container {
    margin-top: 1.25rem; /* 20px */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .features .features-container .feature {
    margin: 2.5rem; /* 40px */
    width: 26%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .features .features-container .feature img {
    width: 3.125rem; /* 50px */
    height: 2.5rem; /* 40px */
    margin-bottom: 1.25rem; /* 20px */
  }
  
  .features .features-container .feature p {
    font-size: 0.875rem; /* 14px */
  }
  
  /* Responsive for Features */
  @media screen and (max-width: 64rem) {
    .features h1 {
      font-size: 2.5rem; /* 40px */
    }
    .features .features-container {
      flex-direction: column;
      align-items: center;
    }
    .features .features-container .feature {
      width: 80%;
      margin: 1.25rem 0;
    }
  }
  
  @media screen and (max-width: 48rem) {
    .features {
      margin-top: 5rem; /* 80px */
    }
    .features h1 {
      font-size: 2.25rem; /* 36px */
    }
    .features .features-container .feature {
      width: 70%;
      margin: 0.9375rem 0; /* 15px */
    }
    .features .features-container .feature img {
      width: 2.5rem; /* 40px */
      height: 1.875rem; /* 30px */
    }
  }
  
  /* ============================================
     About Us Section
  ============================================ */
  .about-us {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    padding: 2.5rem 1.5rem;
    background: #f8fafc;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(91, 170, 145, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    direction: rtl;
  }

  .about-us-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .about-us-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(91,170,145,0.07);
  }

  .about-us-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
  }

  .about-us-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #218c5b;
    margin-bottom: 0.7rem;
  }

  .about-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5baa91 0%, #e6f9f0 100%);
    border: none;
    border-radius: 2px;
    margin-bottom: 2rem;
  }

  .about-us-content h3 {
    font-size: 1.3rem;
    color: #4a9980;
    margin-bottom: 0.7rem;
    margin-top: 1.2rem;
    font-weight: 600;
  }

  .about-us-content p {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 0.7rem;
    line-height: 2.1;
  }

  .about-meaning {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .about-list {
    padding-right: 1.2rem;
    margin: 0.5rem 0 0 0;
  }

  .about-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    color: #218c5b;
    list-style: none;
  }

  .about-list li::before {
    content: '\2022';
    color: #5baa91;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: 0.1rem;
  }

  @media (max-width: 600px) {
    .about-us {
      padding: 1.2rem 0.5rem;
      border-radius: 1rem;
    }
    .about-us-image img {
      max-width: 220px;
      border-radius: 0.7rem;
    }
    .about-us-content h1 {
      font-size: 1.3rem;
    }
    .about-us-content h3 {
      font-size: 1.05rem;
    }
    .about-us-content p, .about-list li {
      font-size: 0.95rem;
    }
    .about-divider {
      height: 2px;
      margin-bottom: 1rem;
    }
  }
  
  /* ============================================
     Contact Us Section
  ============================================ */
  .contact-us {
    max-width: 100%;
    margin: 3.125rem auto;
    padding: 2.5rem;
    background: var(--color-bg);
    border-radius: 0.625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  }
  
  .contact-us-icons {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
  }
  
  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact img {
    width: 3.125rem;
    height: 3.125rem;
    margin-bottom: 0.625rem;
    border-radius: 50%;
  }
  
  .contact h4 {
    margin: 0.625rem 0;
    font-size: 1.125rem;
    color: var(--color-secondary);
  }
  
  .contact p {
    margin: 0;
    color: #666;
    font-size: 0.9375rem;
  }
  
  .contact-us-header{
    color: #666;
  }
  .contact-us-form {
    width: 100%;
    background: var(--color-bg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
  
  .contact-form {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 1.25rem;
  }
  
  .contact-form h2 {
    color: var(--color-secondary);
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }
  
  .contact-form p {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
  
  .contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.9375rem;
    border: 0.0625rem solid var(--color-light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: #f9f9f9;
  }
  
  .contact-form textarea {
    resize: none;
    height: 7.5rem;
  }
  
  .contact-form button {
    width: 100%;
    max-width: 12.5rem;
    height: 3rem;
    padding: 0.75rem;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .contact-form button:hover {
    background: var(--color-primary-hover);
  }
  
  /* Responsive for Contact Us */
  @media (max-width: 62rem) {
    .contact-us-icons {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .contact-us-form {
      flex-direction: column;
      align-items: center;
    }
    .contact-form {
      width: 90%;
      align-items: center;
      text-align: center;
    }
  }
  
  @media (max-width: 36rem) {
    .contact-us-icons {
      flex-direction: column;
      align-items: center;
    }
    .contact-form {
      width: 100%;
      margin: 0.625rem;
    }
    .contact-form input,
    .contact-form textarea {
      font-size: 0.875rem;
      padding: 0.625rem;
    }
    .contact-form button {
      width: 100%;
      font-size: 0.875rem;
    }
  }
  
  /* ============================================
     Sidebar & Menu
  ============================================ */
  .sidebar {
    width: 19.5rem;
    height: 35rem;
    background: rgba(253, 251, 251, 1);
    border-radius: 0.625rem;
    box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    text-align: center;
    margin: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
  }
  .profile{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Other existing styles remain unchanged */
  .profile img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
  }
  
  .profile h3 {
    margin: 0.625rem 0;
    font-size: 1.125rem;
  }
  
  .menu {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    direction: ltr;
  }
  
  .menu li {
    padding: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .menu li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  
  .menu li a:hover {
    color: var(--color-primary);
  }
  
  .menu li a img {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 1rem;
  }
  
  a.notification {
    cursor: none;
  }
  a.notification:hover {
    color: var(--color-text);
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 1.875rem;
    height: 0.9375rem;
  }
  
  .switch input {
    display: none;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 0.9375rem;
    transition: var(--transition);
  }
  
  .slider:before {
    content: "";
    position: absolute;
    height: 0.75rem;
    width: 0.75rem;
    left: 0.125rem;
    bottom: 0.09375rem;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
  }
  
  input:checked + .slider {
    background-color: #4caf50;
  }
  
  input:checked + .slider:before {
    transform: translateX(0.9375rem);
  }
  
  /* Responsive Drawer Styles */
  @media (max-width: 600px) {
    .sidebar {
      position: fixed;
      top: 0;
      /* Since the layout is RTL, we slide the drawer from the right */
      right: 0;
      width: 19.5rem;
      height: 100vh;
      margin: 0;
      border-radius: 0;
      box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.1);
      transform: translateX(100%);
      z-index: 1000;
    }
    
    /* When the .open class is added, the drawer slides into view */
    .sidebar.open {
      transform: translateX(0);
    }
  }
  
  
  /* ============================================
     Home Page Intro Section
  ============================================ */
  .home-page {
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    margin: 2.5rem 3.4375rem 5.375rem 3.5625rem;
  }
  
  .intro {
    width: 100%;
    max-width: 120rem;
    /* height: 21.5rem; */
    position: relative;
    background-color: rgba(230, 246, 236, 1);
    padding: 1.125rem;
    border-radius: 2.5rem;
    text-align: center;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Decorative Circles */
  .circle {
    position: absolute;
    background-color: #4A7D58;
    border-radius: 75%;
    z-index: 1;
    
  }
  
  /* Top Right Circle */
  .top-right {
    width: 17.125rem;
    height: 17.125rem;
    background-color: var(--color-primary);
    top: -4.6875rem;
    right: -4.6875rem;
  }
  
  /* Bottom Left Circle */
  .bottom-left {
    background-color: var(--color-primary);
    width: 17.125rem;
    height: 17.125rem;
    bottom: -4.6875rem;
    left: -4.6875rem;
  }
  
  /* Intro Headings */
  .intro h1 {
    font-size: 2.5rem;
    color: rgba(61, 61, 61, 1);
    text-align: center;
    font-weight: 600;
  }
  
  .intro p {
    color: rgba(109, 109, 109, 1);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2rem;
    text-align: center;
    max-width: 37.5rem;
    margin: 0 auto 1.5625rem;
  }
  /* Hide decorative circles */
.decore {
    position: relative;
    overflow: hidden;
    padding:1.125rem;
}

/* Enhanced Search Box Styles */
.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.search-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 8px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: #5baa91;
    background: white;
    box-shadow: 0 0 0 3px rgba(91, 170, 145, 0.1);
}

#search-ws {
    border: none;
    background: transparent;
    flex: 1;
    padding: 8px;
    font-size: 16px;
    outline: none;
    direction: rtl;
    color: #333;
}

#search-ws::placeholder {
    color: #999;
}

.search-btn {
    background: #5baa91;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-btn:hover {
    background: #4a8c7a;
    transform: scale(1.05);
}

.filter-btn, .map-btn {
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #5baa91;
    font-size: 16px;
}

.filter-btn:hover, .map-btn:hover {
    background: #5baa91;
    color: white;
    transform: scale(1.05);
}

.map-btn {
    background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
    color: white;
}

/* Filter Panel Styles */
.filter-panel {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 15px auto;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
    position: relative;
    z-index: 1000;
    overflow: visible;
    display: none;
}

/* Ensure parent containers don't hide the filter panel */
.intro {
    overflow: visible;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
}

.home-page {
    overflow: visible;
    position: relative;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro h1 {
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
}

.intro p {
    opacity: 0;
    animation: fadeIn 1s 0.8s forwards;
}

.intro .search-box {
    opacity: 0;
    animation: fadeIn 1s 1.1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Filter options container */
.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    overflow: visible;
    position: relative;
}

/* Individual filter options */
.filter-option {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    z-index: 1001;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-option {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.filter-option:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.filter-option.active {
    background: #5baa91;
    color: white;
    border-color: #5baa91;
    box-shadow: 0 2px 8px rgba(91, 170, 145, 0.3);
}

.distance-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

#distanceRange {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

#distanceRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5baa91;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#distanceRange::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #5baa91;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#distanceValue {
    font-weight: 600;
    color: #5baa91;
    min-width: 50px;
    text-align: center;
}

/* Enhanced Card Styles */
.card {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card .distance-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(91, 170, 145, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Room Type Links Styling */
.room-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.room-links .link {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-links .link:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.room-links .link.active {
    background: #5baa91;
    color: white;
    border-color: #5baa91;
    box-shadow: 0 4px 12px rgba(91, 170, 145, 0.3);
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #5baa91;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px 0;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.no-results h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .search-wrapper {
        width: 100%;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .room-links {
        gap: 10px;
    }
    
    .room-links .link {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Responsive Intro Section */
.intro {
    width: 100% !important;
    max-width: 100rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 48rem) {
  .intro p {
    width: auto !important;
  }
}

.circle {
    box-shadow: 0 0 0 0 rgba(91,170,145,0.5), 0 0 30px 10px rgba(91,170,145,0.2);
    border: 4px solid #5baa91;
    animation: circlePulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: box-shadow 0.3s;
}
@keyframes circlePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(91,170,145,0.5), 0 0 30px 10px rgba(91,170,145,0.2);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(91,170,145,0), 0 0 60px 20px rgba(91,170,145,0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(91,170,145,0.5), 0 0 30px 10px rgba(91,170,145,0.2);
    }
}
  /* Search Box Container */
  .search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
  }
  
  .search-box input {
    width: 95%;
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
    border-radius: 1.5625rem;
    border: 0.0625rem solid var(--color-light-gray);
    outline: none;
  }
  
  .filter-btn {
    height: 3rem;
    width: 4.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem;
    font-size: 1.125rem;
    border-radius: 50rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /*.filter-btn:hover {*/
  /*  background-color: #3A5A40;*/
  /*}*/
  
  .filter-btn img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: cover;
  }
  .filter-btn {
    height: clamp(2.5rem, 2vw + 1.5rem, 3rem);
    width: clamp(3.5rem, 3vw + 1rem, 4.5rem);
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  }
  @media (max-width: 1280px){
      .intro p {
          font-size: 13px;
          line-height: 1.4rem;
      }
      .search-box{
          max-width: 400px;
      }
      .filter-panel{
          max-width: 400px;
      }
  }
  /* Responsive for Home Page Intro */
  @media (max-width: 64rem) {
    .home-page {
      margin: 1.875rem 3%;
    }
    .intro {
      padding: 2.5rem;
      border-radius: 1.875rem;
    }
    .top-right, .bottom-left {
      width: 9.375rem;
      height: 9.375rem;
    }
    .intro h1 {
      font-size: 1.8rem;
    }
    .intro p {
      font-size: 1rem;
      line-height: 1.6;
    }
    .search-box {
      flex-direction: column;
    }
    .search-box input {
      width: 100%;
    }
  }
  
  @media (max-width: 48rem) {
    .home-page {
      margin: 1.25rem 3%;
    }
    .intro {
      padding: 1.875rem;
      border-radius: 1.5625rem;
    }
    .top-right, .bottom-left {
      width: 7.5rem;
      height: 7.5rem;
    }
    .intro h1 {
      font-size: 1.6rem;
    }
    .intro p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 30rem) {
    .intro {
      padding: 1.25rem;
      border-radius: 1.25rem;
    }
    .top-right, .bottom-left {
      display: none;
    }
    .intro h1 {
      font-size: 1.4rem;
    }
    .intro p {
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .search-box input {
      width: 100%;
    }
  }
  
  /* ============================================
     Room Links & Cards
  ============================================ */
  .room-type {
    width: 100%;
    padding: 0.625rem;
  }
  
  .room-links {
    display: flex;
    justify-content: center;
    gap: 0.9375rem;
    padding: 0.625rem;
    width: 100%;
  }
  
  .room-links a {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.9375rem;
    transition: var(--transition);
  }
  
  .room-links a:hover {
    color: #4A7D58;
    background-color: #e2e6ea;
    border-radius: var(--border-radius);
  }
  
  hr {
    border: none;
    height: 0.0625rem;
    background: var(--color-primary);
    margin-top: 0.3125rem;
    width: 100%;
  }
  
  .card {
    width: 20rem;
    height: 25rem;
    background: var(--color-bg);
    border-radius: 1rem;
    border: 0.0625rem solid rgba(232, 230, 230, 1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  }
  
  .card img {
    width: 100%;
    height: 11.25rem;
    border-radius: 0.75rem;
    margin: 0.25rem;
    object-fit: fill;
  }
  
  .card h3 {
    margin: 0.25rem;
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--color-text);
  }
  
  .card p {
    margin: 0.25rem;
    font-size: 0.875rem;
    color: #666;
  }
  
  .rating {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: bold;
  }
  
  .rating img {
    width: 1rem;
    height: 1rem;
  }
  
  .users {
    display: flex;
    align-items: center;
    gap: -0.3125rem;
  }
  
  .users img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 0.125rem solid var(--color-white);
  }
  
  .card-footer {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
  }
  
  /* ============================================
     Workspaces & Slider
  ============================================ */
  .workspaces-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
  }
  .amenity{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: left;
    line-height: normal;
  }
  .workspaces-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  
  .workspaces-gallery::-webkit-scrollbar {
    height: 8px;
  }
  
  .workspaces-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  .workspaces-gallery::-webkit-scrollbar-thumb {
    background: #5baa91;
    border-radius: 4px;
  }
  
  .workspaces-gallery::-webkit-scrollbar-thumb:hover {
    background: #4a8c7a;
  }
  
  .slider-btns {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }
  
  .slider-btn {
    margin: 0.9375rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 0.1rem solid var(--color-primary);
    padding: 0.625rem 0.9375rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    pointer-events: auto;
  }
  
  .slider-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
/* ============================================
   Login & Registration Forms
============================================ */
.login-box,
.reg-box {
  border-radius: 3rem;
  width: 34.875rem;
  height: 48.4375rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f7fafc;
  padding: 1rem;
}

.login-box .title,
.reg-box .title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.login-box .subtitle,
.reg-box .subtitle {
  color: #6B7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.form,
.reg-box .content {
  width: 29.5625rem;
  max-width: 100%;
}

.input-group {
  margin-bottom: 0.75rem;
}

.form label {
  display: block;
  color: #4a5568;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-align: right;
}

.input {
  width: 100%;
  padding: 0.5rem;
  border: 0.0625rem solid #e2e8f0;
  border-radius: 50rem;
  font-size: 1rem;
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1rem;
}

.button {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 50rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0.5rem;
}

p.terms {
  margin-top: 0.5rem;
  color: var(--color-text);
}

p.login-link {
  margin: 0.5rem;
  color: var(--color-primary);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
}

.btn-secondary {
  background-color: #f7fafc;
  color: var(--color-primary);
  border: 0.0625rem solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

/* ============================================
   Sign In Page
============================================ */
.sign-in-page {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 2.5rem;
  flex-wrap: wrap;
}

.sign-in-img {
  max-width: 100%;
  height: auto;
}
/* @media(max-width:1280){
  .sign-in-img {
    display: none;
  }
} */
@media(max-width: 1024px) {
  .login-box,
  .reg-box {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
  }

  .form,
  .reg-box .content {
    width: 100%;
  }
 .sign-in-img {
    display: none;
  }
}

@media(max-width: 768px) {
  .sign-in-page {
    flex-direction: column;
    align-items: center;
    margin: 1rem;
  }

 

  .login-box,
  .reg-box {
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .form,
  .reg-box .content {
    width: 100%;
  }

  .input {
    font-size: 0.95rem;
  }

  .button {
    font-size: 0.95rem;
  }

  .login-box .title,
  .reg-box .title {
    font-size: 1rem;
  }

  .login-box .subtitle,
  .reg-box .subtitle {
    font-size: 0.8rem;
  }
}

@media(max-width: 480px) {
  .login-box,
  .reg-box {
    padding: 1rem;
  }

  .input {
    padding: 0.4rem;
  }

  .button {
    padding: 0.4rem;
  }
}
/*=================================
     Miscellaneous
  ============================================ */
  .text-danger {
    color: #e60023 !important;
  }
  
  .small-img {
    width: 5rem;
    height: 3.75rem;
    margin-right: 0.625rem;
    border-radius: 0.5rem;
  }
  
  .rating-bars progress {
    width: 100%;
    height: 0.5rem;
    appearance: none;
  }
  
  /* ============================================
     Details & Workspace Information
  ============================================ */
  /* General Styles */
.details-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.25rem;
  flex-wrap: wrap;
}

.workspace-information {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1.25rem;
}

.workspace-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workspace-header h1 {
  color: rgba(255, 0, 60, 0.808);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.workspace-pros{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.workspace-pros >ul{
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  width: 100%;
}
.workspace-pros > ul > li {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.6rem;
  border-radius: 8px;
  text-align: center;
}
.workspace-header ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
  gap: 0.625rem;
}

.workspace-description h2,
.workspace-images h2,
.workspace-pros h2 {
  color: var(--color-secondary);
  font-size: 1.5rem;
  font-weight: 500;
}

.workspace-description p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}
.workspace-pros ul {
  list-style: none;
  padding: 0;
}

.workspace-pros li {
  font-size: 1.125rem;
  margin-bottom: 0.3125rem;
  text-align: center;
}

.workspace-tone {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.workspace-images{
  width: 100%;
  margin: 2rem;
}
/* .workspace-profile{
  width: 33%;
} */
@media screen and (min-width: 820px) {
    .workspace-profile {
        width: 30%;
    }
    .workspace-co {
        width: 70%;
    }
}

.workspace-profile img {
  width: 30rem;
  height: 26rem;
  border-radius: 0.625rem;
}
.ws-location{
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: #aaa2a2;
}
.workspace-rate {
  text-align: center;
  margin-top: 1.25rem;
  gap: 3.125rem;
}

.workspace-rate h1 {
  font-size: 3.125rem;
  color: rgba(255, 0, 61, 1);
}

.workspace-rate h2 {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.rating-progress {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  direction: rtl;
}

.progress-container {
  width: 29.3125rem;
  height: 0.625rem;
  background-color: rgba(200, 200, 200, 0.5);
  border-radius: 0.3125rem;
  overflow: hidden;
  position: relative;
  transform: scaleX(-1);
}

.progress-bar {
  height: 100%;
  width: 85%;
  background-color: var(--color-secondary);
  border-radius: 0.3125rem;
  transition: width var(--transition);
  transform: scaleX(-1);
}

.workspace-rooms h2 {
  color: rgba(255, 0, 61, 1);
  font-size: 2.75rem;
  font-weight: 700;
  align-self: flex-start;
  gap: 4rem;
}
.day-available{
  color: var(--color-text);
  font-size: 1.652rem;
  font-weight: 500;
  margin-top: 0.625rem;
}
.workspace-RT {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.workspace-room h3 {
  font-size: 1.25rem;
  margin-top: 0.625rem;
}
.workspace-rate p i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin: 0 0.125rem;
}

/* Media Queries for Responsiveness */
@media  (max-width : 1024px) {
  .ws-location h2{
    font-size: 0.85rem;
  }
  .ws-location p{
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .details-container {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
  }
  .workspace-pros >ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .workspace-information {
      width: 100%;
      gap: 1rem;
      display: flex;
      flex-direction: column;
  }

  .workspace-header {
      align-items: center;
  }

  .workspace-header h1 {
      font-size: 2rem;
      text-align: center;
  }
  .ws-location h2{
    font-size: 0.8rem;
  }
  .ws-location p{
    font-size: 0.6rem;
  }
  .workspace-header ul {
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
  }

  .workspace-description h2,
  .workspace-images h2,
  .workspace-pros h2,
  .workspace-rate h2 {
      font-size: 1.25rem;
      text-align: center;
      margin: 0.5rem;
  }
  .ws-location{
    display: flex;
    flex-direction: column;
    justify-self: center;
  }
  .workspace-description p{
      font-size: 1rem;
      text-align: justify;
      width: 85%;
      margin: 0 auto;
      text-align: center;
  }
  .workspace-pros li{
    font-size: 0.8rem;
      text-align: justify;
  }
  .workspace-tone {
      flex-direction: column;
      width: 100%;
      align-items: center;
  }

  .workspace-profile img {
      width: 100%;
      height: auto;
      max-width: 100%;
  }

  .workspace-rate {
      gap: 1rem;
      margin-top: 1rem;
  }

  .workspace-rate h1 {
      font-size: 2.25rem;
  }

  .rating-progress {
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
  }

  .progress-container {
      width: 100%;
  }

  .workspace-rooms {
      padding: 1rem;
  }

  .workspace-room {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .workspace-room img {
      width: 100%;
      max-width: 100%;
      height: auto;
  }

  #openModal {
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
      margin-top: 1rem;
  }

  #modalContainer {
      padding: 1rem;
  }
}
.workspace-imgs{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.workspace-images-container {
  direction:rtl;
  width: 100%;
  display: flex;
  justify-self: flex-start;
  flex-direction: row-reverse;
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: auto; /* controlled by JS */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  gap: 10px;
  padding: 10px 0;
}

.workspace-images-container img {
  flex: 0 0 auto;
  width: 250px; /* adjust as needed */
  height: 200px;
  border-radius: 8px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.3s ease;

}

/* Optional: hide scroll bar in webkit browsers */
.workspace-images-container::-webkit-scrollbar {
  display: none;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .workspace-images h2 {
      font-size: 1.2rem;
  }

  .workspace-images-container img {
      width: 200px;
  }
}

@media (max-width: 480px) {
  .workspace-header h1 {
      font-size: 1.75rem;
  }

  .workspace-rate h1 {
      font-size: 2rem;
  }

  .workspace-description p,
  .workspace-pros li {
      font-size: 0.95rem;
  }

  .rating-progress span {
      font-size: 0.875rem;
  }

  .workspace-images img {
      width: 90%;
  }
}

@media (max-width: 768px) {
  img {
      height: auto;
  }

  
  .workspace-profile img,
  .workspace-room img {
      width: 45%;
      margin: auto;
      height: auto;
      object-fit: fill;
      border-radius: 40px;
  }
}

    
  /* ============================================
     Calendar
  ============================================ */
  .calendar-container {
    width: 32.4375rem;
    height: 24.375rem;
    margin: 0 auto;
    background: var(--color-bg);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
  }
  
  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }
  
  .nav-btn {
    color: rgba(41, 45, 50, 1);
    border: none;
    border-radius: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
  }
  
  .month-year {
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.5rem;
  }
  
  .weekday {
    font-weight: bold;
    color: #555;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 0.625rem;
    column-gap: 0.3125rem;
  }
  
  .day {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 0.875rem;
  }
  
  .day.completed::after {
    content: "";
    position: absolute;
    width: 0.125rem;
    height: 3.125rem;
    background-color: var(--color-white);
    transform: rotate(45deg);
  }
  
  .day.today {
    background-color: #ff3b3b;
  }
  
  .day.today::after {
    content: none;
  }
  
  .day.empty {
    background-color: transparent;
    cursor: default;
  }
  
  /* ============================================
     Booking Box & Form
  ============================================ */
  .booking-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 35.5rem;
    margin: 1.25rem auto;
    padding: 1.25rem;
    /* background-color: #f9f9f9; */
    border: 0.0625rem solid #ddd;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  select {
    width: 100%;
    padding: 0.5rem;
    border: 0.0625rem solid #ccc;
    border-radius: 0.25rem;
  }
  
  .number-picker {
    display: inline-flex;
    align-items: center;
  }
  
  .number-picker button {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1.125rem;
    border: 0.0625rem solid #ccc;
    background-color: #f8f8f8;
    cursor: pointer;
    border-radius: 0.25rem;
  }
  
  .number-picker input {
    width: 3.125rem;
    text-align: center;
    border: 0.0625rem solid #ccc;
    margin: 0 0.3125rem;
    border-radius: 0.25rem;
    font-size: 1rem;
  }
  
  .date-buttons {
    display: flex;
    gap: 0.5rem;
  }
  
  .date-buttons button {
    flex: 1;
    padding: 0.625rem;
    background-color: #eee;
    border: 0.0625rem solid #ccc;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
  }
  
  .date-buttons button:hover {
    background-color: #ddd;
  }
  
  /* ============================================
     Form Wrapper & Profile Card
  ============================================ */
  .wrapper {
    width: 90%;
    max-width: 50rem;
    margin: 1rem auto;
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .explore-card {
    height: 25rem !important;
    width: 20rem !important;
  }
  
  .wrapper .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .header .title {
    font-size: 1.8rem;
  }
  
  .header .description {
    font-size: 1rem;
    color: #777;
  }
  
  .avatar {
    display: block;
    margin: 0 auto;
  }
  
  .profile-icon {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    text-align: center;
    margin: 1rem;
  }
  
  .form-container {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
  }
  
  .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 15rem; /* Ensure columns don't become too narrow */
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
  }
  
  .input-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
  }
  
  .input-group input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 0.0625rem solid #ccc;
    border-radius: 0.25rem;
    height: 3rem;
  }
  
  .input-group input::placeholder {
    color: #aaa;
  }
  
  /* Media Query for Tablets (max-width: 768px) */
  @media (max-width: 768px) {
    .wrapper {
      padding: 1.5rem;
    }
  
    .form-container {
      flex-direction: column;
      gap: 1rem;
    }
  
    .header .title {
      font-size: 1.5rem;
    }
  
    .header .description {
      font-size: 0.9rem;
    }
  }
  
  /* Media Query for Mobile Devices (max-width: 480px) */
  @media (max-width: 480px) {
    .wrapper {
      padding: 1rem;
    }
  
    .header {
      align-items: center;
      text-align: center;
    }
  
    .header .title {
      font-size: 1.4rem;
    }
  
    .header .description {
      font-size: 0.85rem;
    }
  
    .form-container {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .input-group label {
      font-size: 0.9rem;
    }
  
    .input-group input {
      font-size: 0.95rem;
      height: 2.75rem;
    }
  }
  
  .profile-cover {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .profile-card {
    direction: ltr;
    max-width: 67.625rem;
    margin: 2.5rem auto;
    background-color: var(--color-bg);
    border-radius: 0.5rem;
    padding: 1rem;
  }
  
  .profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .profile-header .profile-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .profile-brief {
    display: flex;
    flex-direction: column;
  }
  
  .profile-header .profile-info img {
    width: 9.3125rem;
    height: 9.3125rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.0625rem solid #ddd;
  }
  
  .profile-header .profile-info .name {
    font-size: 2.1rem;
    font-weight: bold;
    color: var(--color-secondary);
  }
  
  .edit-btn {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--color-bg);
    border: 0.0625rem solid var(--color-secondary);
    border-radius: 0.25rem;
    cursor: pointer;
  }
  
  .stats {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .stats .stat {
    text-align: center;
  }
  
  .stats .stat .number {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    color: rgba(255, 0, 61, 1);
  }
  
  .stats .stat .label {
    font-size: 0.85rem;
    color: rgba(116, 118, 136, 1);
  }
  
  .stats hr {
    width: 0.0625rem;
    height: 3.75rem;
    background-color: rgba(221, 221, 221, 1);
    border: none;
    margin: 0 0.625rem;
  }
  
  .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(29, 30, 28, 1);
    margin-bottom: 0.5rem;
  }
  
  .extra-label {
    color: #e00;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: right;
    display: block;
  }
  
  /* Responsive for Profile Card */
  @media screen and (max-width: 48rem) {
    .profile-card {
      margin: 1.25rem auto;
      padding: 0.75rem;
    }
    .profile-header {
      flex-direction: column;
      align-items: center;
    }
    .profile-header .profile-info {
      flex-direction: column;
      align-items: center;
    }
    .profile-header .profile-info img {
      width: 7.5rem;
      height: 7.5rem;
    }
    .profile-brief .name {
      font-size: 1.8rem;
      text-align: center;
    }
    .stats {
      justify-content: center;
    }
    .edit-btn {
      margin-top: 0.75rem;
    }
  }
  
  @media screen and (max-width: 30rem) {
    .profile-card {
      margin: 0.625rem auto;
      padding: 0.5rem;
    }
    .profile-header .profile-info img {
      width: 6.25rem;
      height: 6.25rem;
    }
    .profile-brief .name {
      font-size: 1.5rem;
    }
    .stats .stat .number {
      font-size: 1.3rem;
    }
    .stats .stat .label {
      font-size: 0.75rem;
    }
    .edit-btn {
      padding: 0.375rem 0.5rem;
      font-size: 0.8rem;
    }
  }
  .notification-container {
    max-width: 25rem; /* 400px */
    margin: 2.5rem auto; /* 40px */
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1); /* 2px 5px */
    overflow: hidden;
  }
  
  /* Header */
  .notification-header {
    background-color: #fafafa;
    padding: 1rem;
    border-bottom: 0.0625rem solid var(--color-light-gray); /* 1px */
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* Notification Cards */
  .notification-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 0.0625rem solid var(--color-light-gray);
  }
  .notification-card:last-child {
    border-bottom: none;
  }
  
  .notification-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* 4px */
  }
  
  /* "Co-Work" + Image */
  .notification-source {
    display: flex;
    align-items: center;
    font-weight: bold;
  }
  .notification-source img {
    width: 2rem; /* 32px */
    height: 2rem; /* 32px */
    border-radius: 50%;
    margin-left: 0.5rem; /* 8px */
  }
  
  .notification-time {
    color: #555;
    font-size: 0.9rem;
  }
  
  .notification-message {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* Notification Button */
  .notification-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: var(--btn-padding);
    border-radius: var(--border-radius);
    cursor: not-allowed;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition);
  }
  
  .notification-btn:hover {
    opacity: 0.8;
  }
  .user-setting{
    display: flex;
  }

  .offer-box {
  /* If you want multiple boxes in a slider, 800px might be too large.
     Adjust as needed. */
  width: 800px;
  background-color: #FAFAFA;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 20px auto; /* Add some space around if needed */
}

.offer-content {
  display: flex;
  flex-direction: row;
}

/* Image Section */
.offer-image {
  width: 50%;
  /* Optionally set a fixed height if you want a uniform look:
     height: 300px; 
     Then, keep object-fit: cover on the img to crop the image properly.
  */
}

.offer-image img {
  width: 100%;
  height: auto;           /* Ensures correct aspect ratio */
  object-fit: cover;      /* Crops if parent has fixed height; remove if not needed */
  display: block;
}

/* Text/Info Section */
.offer-details {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* If your site is in Arabic, you may also want text-align: right; */
}

.offer-details h2 {
  color: #e23b3b;
  font-size: 24px;
  margin-bottom: 10px;
}

.offer-details p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.offer-details p span {
  font-weight: bold;
  color: #e23b3b;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin: 0 8px;
}

/* Countdown Timer */
.timer {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.time-box {
  text-align: center;
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 10px 15px;
}

.time-box .time {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.time-box .time-label {
  font-size: 14px;
  color: #555;
}

/* Button */
.offer-button {
  background-color: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-start;
}

.offer-button:hover {
  background-color: var(--color-primary-hover);
}

.offer-icons{
  display: flex;
  align-self: center;
  margin:1rem;
}
/* --- SLIDER-RELATED STYLES (unchanged) --- */
/* Parent container for the visible area */
.offer-gallery {
  width: 100%;
  overflow: hidden;
}

/* Fixed slider container defines the visible viewport */
.offer-slider-fixed {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Scrollable offers list */
.offers {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.offers::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Prevent boxes from shrinking by setting flex-basis */
.offers .offer-box {
  flex: 0 0 800px; /* fixed width for each box */
  /* Optionally, remove the explicit width inside .offer-box if present */
  /* width: 800px; */
  margin: 0; /* adjust margin if needed */
}

/* Offer box styling */
.offer-box {
  background-color: #FAFAFA;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Offer content */
.offer-content {
  display: flex;
}

/* Offer details (50% width) */
.offer-details {
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right; /* for RTL layout */
}

/* Offer image (50% width) */
.offer-image {
  width: 50%;
}

.offer-image img {
  display: block;
  width: 100%;
  height: auto; /* maintain aspect ratio */
  object-fit: cover;
}

/* Countdown Timer, Button, etc. remain unchanged */
/* ... (rest of your styles) ... */

/* Navigation Buttons positioned relative to .offer-slider-fixed */
.nav-button {
  position: absolute;
  top: 50%;

  transform: translateY(-50%);
  
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 0.1rem solid var(--color-primary);
  border-radius: 50%;
  padding: 0.6rem;
  cursor: pointer;
  z-index: 1000;
}

.nav-button.prev {
  left: 0px;
  /* z-index: 1000; */
}

.nav-button.next {
  right: 0px;
}
/* Modal Background */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none; /* Initially Hidden */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  display: flex; /* This is needed to center the modal content */
  overflow: hidden; /* Prevents scrolling when modal is open */
}

/* Modal Content */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 36rem;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto; /* Center the content horizontally */
  display: block; /* Ensure the modal content is displayed */
  max-height: 90vh; /* Ensures the modal doesn't take too much vertical space */
  overflow-y: auto; /* Allow vertical scrolling if the content is too tall */
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

/* .link {
  text-decoration: none;
  color: black;
  padding-bottom: 5px;
}

.link.active {
  text-decoration: underline;
} */
.link {
  position: relative;
  color: gray;
  text-decoration: none;
  font-weight: bold;
}

.link.active {
  color: seagreen; /* active link color */
}

.link.active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px; /* adjust underline position */
  width: 100%;
  height: 2px;
  background-color: seagreen; /* underline color */
}
/* .underline {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  display: none;
} */

/* .underline.show {
  display: block;
} */
.book-btn{
  display: flex;
  justify-self: center;
  align-self: center;
  /* margin: 0 auto; */
  gap: 1rem;
}
.day.selected {
  background-color: #2196f3;
  color: white;
  font-weight: bold;
  border-radius: 50%;
}

.day:hover {
  background-color: #e0f7fa;
  cursor: pointer;
}
/* Coupon Container */
.coupon {
  gap: 2rem;
  width: 100%;
  overflow: hidden;
}

.coupon-card {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.coupon-v {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.coupon-v::-webkit-scrollbar {
  display: none;
}

.coupon-container {
  margin: 0;
  flex: 0 0 auto;
  width: 100%;
  max-width: min(100%, 50rem); /* 800px = 50rem */
  height: auto;
  background-color: white;
  border-radius: 0.9375rem; /* 15px */
  overflow: hidden;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

/* Discount Section */
.discount-section {
  width: 30%;
  background-color: #5baa91;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  padding: 1rem 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.discount-section::before {
  content: "";
  position: absolute;
  right: -0.625rem;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #f5f5f5;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.discount-section::after {
  content: "";
  position: absolute;
  right: -0.0625rem;
  top: 0;
  bottom: 0;
  width: 0.125rem;
  background-color: #ddd;
  z-index: 0;
}

.discount-amount {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}

.arrow-icon {
  font-size: 2rem;
}

/* Coupon Details */
.coupon-details {
  flex: 1;
  padding: 0.9375rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Workspace Info */
.workspace-info {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 0.5rem;
}

.workspace-photo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  margin-right: 0.9375rem;
  border: 0.125rem solid #5baa91;
}

.workspace-details {
  flex: 1;
}

.workspace-name {
  color: #5baa91;
  font-size: 1.125rem;
  margin-bottom: 0.3125rem;
  text-align: left;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.3125rem;
}

.rating-number {
  margin-right: 0.3125rem;
  color: #333;
}

.stars {
  color: #ffc107;
}

/* Features */
.coupon-features {
  color: #777;
  font-size: 0.875rem;
  direction: rtl;
  text-align: right;
}

/* Timer Section */
.timer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.625rem;
  border-top: 0.0625rem solid #eee;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.625rem;
}

.time-value {
  color: #5baa91;
  font-size: 1.5rem;
  font-weight: bold;
}

.time-label {
  color: #5baa91;
  font-size: 0.875rem;
  direction: rtl;
}

.separator {
  color: #5baa91;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0.3125rem;
}
.coupon-hours{
  font-size: 1.2rem;
  color: #4A7D58;
}
/* Tablet Responsive */
@media (max-width: 48rem) {
  .coupon-container {
    flex-direction: column;
    height: auto;
  }

  .discount-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 1rem 0;
  }

  .discount-section::before,
  .discount-section::after {
    display: none;
  }

  .coupon-details {
    padding: 1rem;
  }

  .workspace-photo {
    width: 3.75rem;
    height: 3.75rem;
  }

  .discount-amount {
    font-size: 2.5rem;
  }

  .workspace-name {
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 37.5rem) {
  .coupon-container {
    max-width: 100%;
    padding: 0;
    border-radius: 0.625rem;
  }

  .discount-amount {
    font-size: 2.2rem;
  }

  .coupon-details {
    padding: 0.625rem;
  }

  .time-value {
    font-size: 1.2rem;
  }

  .workspace-photo {
    margin-right: 0.625rem;
    width: 3.125rem;
    height: 3.125rem;
  }

  .workspace-name {
    font-size: 1rem;
  }

  .coupon-features {
    font-size: 0.8rem;
  }

  .timer-section {
    margin-top: 1rem;
  }
}
.workspace-rooms{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.workspace-RT{
  width: 100%;
  display: flex;
  gap: 2rem;

}
.workspace-RT::-webkit-scrollbar {
  display: none; 
}
.workspace-room{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  /* gap: 16px; */
  transition: transform 0.3s ease-in-out;
  overflow-x: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 20px;
}
.workspace-room -webkit-scrollbar{
    display: none;
}
.room-card {
  width: 300px;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  flex: 0 0 300px;
}

.room-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card-content {
  padding: 16px;
}

.room-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.room-card-time {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.room-card-price {
  font-size: 16px;
  margin-bottom: 8px;
}

.green-text {
  color: var(--color-primary);
}

.orange-text {
  color: #FF5722;
}

.room-slider-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.room-btn-prev,
.room-btn-next {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 20px;
  margin: 0 5px;
  border-radius: 50%;
}
.room-btn-prev{
  position: absolute;
  right: 0;
  top: 50%;
  
  transform: translateY(-50%);
}
.room-btn-next{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.progress-container-v2 {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.progress-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.progress-step.active {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

.progress-step.inactive {
  background-color: #e0e0e0;
  color: #888;
}

.progress-step:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header h1 {
  color: #5bad7d;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-header p {
  color: #777;
  font-size: 1rem;
}

.booking-content {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-direction: row-reverse;
}

.left-column {
  flex: 1.5;
  display: flex;
  flex-direction: column;
}

.right-column {
  flex: 1.5;
  max-width: 450px;
}

.booking-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.time-section, .people-section {
  flex: 1;
}

.workspace-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workspace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.workspace-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.workspace-details {
  padding: 1rem;
}

.workspace-title {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: right;
}

.workspace-location {
  color: #888;
  font-size: 0.9rem;
  text-align: left;
}

.time-picker {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.time-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.time-btn:hover {
  background-color: #4c9e6c;
  transform: scale(1.1);
}

.time-input {
  width: 90px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
}

.people-counter {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-controls {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 0.5rem;
}
.time-input {
  width: 80px;
  padding: 8px;
  font-size: 16px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 5px;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray'><path d='M4 6l4 4 4-4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.counter-btn.decrease {
  background-color: #f56565;
  color: white;
}

.counter-btn.increase {
  background-color: var(--color-primary);
  color: white;
}

.counter-value {
  font-size: 1.4rem;
  font-weight: bold;
}

.calendar {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.calendar-navigation {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 5px;
  color: #555;
  transition: color 0.3s ease;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  color: #888;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar-day {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 auto;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.calendar-day.in-range {
  background-color: #e8f5e9;
  border-radius: 0;
}

.calendar-day.start-date {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.calendar-day.end-date {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.calendar-day.selected {
  background-color: var(--color-primary);
  color: white;
}

.select-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  margin-top: 1rem;
  cursor: pointer;
  float: left;
  transition: background-color 0.3s ease;
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

.action-btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  flex: 1;
  transition: all 0.3s ease;
}

.continue-btn {
  background-color: var(--color-primary);
  color: white;
}

.cancel-btn {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}
@media (max-width: 1024px) {
.booking-content {
    flex-direction: column;
}
.booking-details {
    flex-direction: column;
}
.workspace-img {
    height: 250px;
}

.time-controls {
    flex-direction: column;
}
}
@media (max-width: 768px) {
  .booking-content {
      flex-direction: column;
  }
  .booking-details {
      flex-direction: column;
  }
  .workspace-img {
      height: 250px;
  }
  
  .time-controls {
      flex-direction: column;
  }
}
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.progress-container-v2 {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.progress-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.progress-step.active {
  background-color: var(--color-primary);
  transform: scale(1.1);
}

.progress-step.inactive {
  background-color: #e0e0e0;
  color: #888;
}

.progress-step:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header h1 {
  color: #5bad7d;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-header p {
  color: #777;
  font-size: 1rem;
}

.booking-content {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-direction: row-reverse;
}

.left-column {
  flex: 1.5;
  display: flex;
  flex-direction: column;
}

.right-column {
  flex: 1.5;
  max-width: 450px;
}

.booking-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.time-section, .people-section {
  flex: 1;
}
.coupon-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 8px 0;
  width: 100%;
}

.coupon-card {
  scroll-snap-align: start;
  flex: 0 0 calc(100% - 32px);
  min-width: 0; /* Fixes flexbox overflow */
}

/* Responsive card sizing */
@media (min-width: 480px) {
  .coupon-card { flex: 0 0 calc(50% - 16px); }
}

@media (min-width: 768px) {
  .coupon-card { flex: 0 0 calc(33.333% - 16px); }
}

@media (min-width: 1024px) {
  .coupon-card { flex: 0 0 calc(25% - 16px); }
}

/* Navigation buttons */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.slider-prev, .slider-next {
  padding: 8px 16px;
  background: #4a6bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.slider-prev:disabled, .slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#workspace {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
#workspace::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.workspace-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workspace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.workspace-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.workspace-details {
  padding: 1rem;
}

.workspace-title {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: right;
}

.workspace-location {
  color: #888;
  font-size: 0.9rem;
  text-align: left;
}

.time-picker {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.time-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background-color: white;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.time-btn:hover{
color: white;
background-color: var(--color-primary-hover);
}
.time-input {
  width: 90px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem;
}

.people-counter {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.counter-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

.counter-btn.decrease {
  background-color: #f56565;
  color: white;
}

.counter-btn.increase {
  background-color: var(--color-primary);
  color: white;
}

.calendar-toggle-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  width: 100%;
}

.calendar {
  background: white;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  margin-bottom:1rem;
}

.calendar.active {
  display: block;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}        
.calendar-title {
  font-weight: bold;
  font-size: 1rem;
}

.calendar-navigation {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 5px;
  color: #555;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  color: #888;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar-day {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 auto;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
  background-color: #f8f9fa;
}

.calendar-day.in-range {
  background-color: #e8f5e9;
  border-radius: 0;
}

.calendar-day.start-date {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--color-primary);
  color: white;
}

.calendar-day.end-date {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: var(--color-primary);
  color: white;
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

.action-btn {
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  flex: 1;
}

.continue-btn {
  background-color: var(--color-primary);
  color: white;
}

.cancel-btn {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {
  .booking-content {
      flex-direction: column;
  }
  
  .workspace-img {
      height: 250px;
  }
  
  .time-controls {
      flex-direction: column;
  }
}
.workspace-img {
width: 100%;
height: 250px;
object-fit: cover;
}
.workspace-info {
padding: 20px;
}
.workspace-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.workspace-location {
font-size: 16px;
color: #666;
}
.room-container {
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 20px;
}
.room-name {
font-size: 22px;
font-weight: bold;
margin-bottom: 8px;
}
.room-type {
font-size: 18px;
color: #555;
margin-bottom: 8px;
}
.room-capacity {
font-size: 16px;
margin-bottom: 8px;
color: #777;
}
.room-price {
font-size: 18px;
color: #28a745;
font-weight: bold;
margin-bottom: 12px;
}
.room-amenities {
list-style: none;
padding-left: 0;
}

.room-amenities li {
margin-bottom: 5px;
position: relative;
padding-left: 20px;
color: gray;
}
.room-amenities li::before {
content: '✔';
color: #28a745;
}
.room-details{
margin:1rem;
}
.workspace-card {
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 20px;
gap: 10rem;
}
@media (max-width: 768px) {
.workspace-card {
    flex-direction: column;
    align-items: center;
}
.counter-btn{
    width: 24px;
    height: 22px;
    font-size: 14px;
}
}
.bookingCard {
  min-width: 250px;
  height: auto;
  flex-shrink: 0; /* Prevent shrinking in flexbox */    max-width: 350px;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cardHeader {
  position: relative;
  width: 100%;
  height: 200px;
}

.roomImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headerOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--color-primary);
  color: white;
}

.dateSection {
  display: flex;
  align-items: center;
}

.dateSection i {
  margin-right: 5px;
}

.meetingType {
  display: flex;
  align-items: center;
  direction: rtl;
}

.meetingType i {
  margin-left: 5px;
}

.cardContent {
  padding: 20px;
}

.workspaceInfo {
  margin-bottom: 20px;
}

.workspaceName {
  color: #1a2b5f;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.roomInfo {
  margin-bottom: 8px;
}

.roomName {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.ratingSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating {
  display: flex;
  align-items: center;
}

.rating i {
  color: #ff9800;
  margin-right: 5px;
}

.ratingValue {
  color: #333;
  font-weight: bold;
}

.participants {
  color: #777;
  direction: rtl;
}

.timeRange {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.time {
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
}

.timeSlider {
  flex: 1;
  height: 4px;
  background-color: #e0e0e0;
  margin: 0 15px;
  position: relative;
  border-radius: 2px;
}

.sliderTrack {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: #e0e0e0;
}

.sliderThumb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
}

.sliderThumb i {
  font-size: 0.8rem;
}

.cancelButton {
  width: 100%;
  padding: 12px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  direction: rtl;
}

.cancelButton:hover {
  background-color: var(--color-primary-hover);
}

@media (max-width: 400px) {
  .bookingCard {
      max-width: 90%;
  }

  .workspaceName {
      font-size: 1.5rem;
  }

  .time {
      font-size: 1rem;
  }
}
.cancelBook {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 22px;
}

.cancelBook-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 50px 0 50px 0;
}
.cancelBook-card::-webkit-scrollbar {
  display: none;
}

/* Arrow buttons */
.cancelBook-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #6aa383;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0.8;
}

.cancelBook-arrow.left {
  left: 3px;
}

.cancelBook-arrow.right {
  right: 3px;
}
.waiting-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}
.waiting-content {
  text-align: center;
}
.waiting-title {
  font-size: 1rem;
  color: var(--color-primary);
}
.waiting-message {
  font-size: 1em;
  color: #666;
}
.sucess-payment {
  display: flex;
  text-align: center;
  padding: 20px;
  background-color: #f0f8ff;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.success-msg {
  flex: 1;
  padding: 20px;
  align-self: center;
}
.sucess-payment h1 {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: bold;
}
.sucess-payment p {
  font-size: 18px;
  color: #555;
}
.pay-img img {
  max-width: 100%;
  height: auto;
}
.pay-img {
  margin-top: 20px;
}
@media(max-width: 768px) {
  .sucess-payment {
      flex-direction: column;
      text-align: center;
  }
  .pay-img {
      margin-top: 20px;
  }
  .success-msg {
      padding: 0;
      margin: 0;
      flex-direction: column;
      align-items: center;
  }
}
.calculated-price {
  margin: 20px;
  font-family: Arial, sans-serif;
}

.calculated-price h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #444;
}

.price-value {
  font-size: 24px;
  font-weight: bold;
  color: #27ae60;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 6px;
  background-color: #f0f9f5;
}

.price-value.updated {
  background-color: #c8f7dc;
  transform: scale(1.1);
}
/* Global button/input-submit style */
button,
input[type="submit"] {
  display: inline-block;
  padding: var(--btn-padding);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  box-shadow: var(--box-shadow);
  text-align: center;
  text-decoration: none;
}




/* Utility class if you need custom buttons elsewhere */
.btn {
  background-color: var(--color-primary);
  color : white;
  padding: 2rem;
}
.btn:hover {
  background-color: var(--color-primary-hover); 
}

/* Form container */
.form-container {
  background-color: var(--color-bg);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 420px;
  margin: 3rem auto;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-container h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-text);
  text-align: center;
  font-weight: 700;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1rem;
}

.input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(91, 186, 145, 0.2);
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .form-container {
    margin: 1.5rem;
    padding: 2rem 1.5rem;
  }
}




.wrapper {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.25rem;
}

.description {
  font-size: 1rem;
  color: #666;
}

.avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.profile-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  /* border-radius: 50%; */
  /* border: 2px solid #5baa51; */
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

input,
select {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: 0.3s;
}

input:focus,
select:focus {
  border-color: var(--color-primary);
  background-color: #fff;
  outline: none;
}

 .profile-btn{
  padding: 0.75rem 1.25rem;
  margin: 0.5rem;
  background-color: var(--color-primary);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.profile-btn:hover {
  background-color: var(--color-primary-hover);
}




#password-form h3 {
  margin-bottom: 1rem;
  color: #333;
}

@media (max-width: 500px) {
  .wrapper {
    padding: 1.5rem;
  }

  .profile-btn {
    width: 100%;
    align-self: center;
  }

  input,
  select {
    font-size: 0.95rem;
  }
}

/* Coupon Container Improvements */
.coupon-container {
  margin: 0;
  flex: 0 0 auto;
  width: 100%;
  max-width: min(100%, 50rem);
  height: auto;
  background: linear-gradient(135deg, #f8fafc 0%, #e6f6ec 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(91, 170, 145, 0.13), 0 1.5px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  transition: all 0.3s ease;
  min-height: 200px;
  border: 1px solid rgba(91, 170, 145, 0.1);
}

.coupon-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(91, 170, 145, 0.2), 0 2px 8px rgba(0,0,0,0.06);
}

.discount-section {
  width: 30%;
  background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
  overflow: hidden;
}

.discount-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.discount-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.discount-amount {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}

.discount-percent {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
  background: rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.old-price {
  text-decoration: line-through;
  color: rgba(255,255,255,0.8);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.arrow-icon {
  font-size: 1.5rem;
  margin-top: 1rem;
  animation: bounce 2s infinite;
  position: relative;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.coupon-details {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  position: relative;
}

.workspace-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.workspace-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e6f6ec;
  box-shadow: 0 4px 12px rgba(91,170,145,0.2);
  flex-shrink: 0;
}

.workspace-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.workspace-photo:hover img {
  transform: scale(1.1);
}

.workspace-details {
  flex: 1;
}

.workspace-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.workspace-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  direction: rtl;
  text-align: right;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 0.9rem;
}

.rating-number {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.coupon-features {
  margin-top: 1rem;
}

.coupon-hours {
  font-size: 1rem;
  color: #4A7D58;
  font-weight: 600;
  margin: 0.3rem 0;
  direction: rtl;
  text-align: right;
}

.room-info {
  font-size: 1rem;
  color: #4A7D58;
  font-weight: 600;
  margin: 0.3rem 0;
  direction: rtl;
  text-align: right;
}

.room-id {
  background: rgba(91,170,145,0.1);
  color: #5baa91;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 0.5rem;
  border: 1px solid rgba(91,170,145,0.2);
}

.coupon-amenities {
  font-size: 0.9rem;
  color: #4a8c7a;
  margin: 0.3rem 0 0 0;
  direction: rtl;
  text-align: right;
  opacity: 0.8;
}

.timer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e6f6ec 100%);
  border-radius: 1rem;
  border: 1px solid rgba(91,170,145,0.1);
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.time-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5baa91;
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  min-width: 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(91,170,145,0.2);
  border: 1px solid rgba(91,170,145,0.1);
}

.time-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
  font-weight: 500;
}

.separator {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5baa91;
  margin: 0 0.2rem;
}

.coupon-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e6f6ec;
}

.payment-btn {
  background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 16px rgba(91,170,145,0.3);
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.payment-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;
}

.payment-btn:hover::before {
  left: 100%;
}

.payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91,170,145,0.4);
  background: linear-gradient(135deg, #4a8c7a 0%, #3d7a68 100%);
}

.payment-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(91,170,145,0.3);
}

.payment-btn i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .coupon-container {
    flex-direction: column;
    min-height: auto;
  }
  
  .discount-section {
    width: 100%;
    min-height: 120px;
    padding: 1.5rem 0;
  }
  
  .discount-amount {
    font-size: 2rem;
  }
  
  .coupon-details {
    padding: 1.5rem;
  }
  
  .workspace-name {
    font-size: 1.2rem;
  }
  
  .time-value {
    font-size: 1.2rem;
    min-width: 35px;
  }
  
  .payment-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .coupon-container {
    margin: 0 0.5rem;
  }
  
  .discount-amount {
    font-size: 1.8rem;
  }
  
  .coupon-details {
    padding: 1rem;
  }
  
  .workspace-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .workspace-photo {
    width: 70px;
    height: 70px;
  }
  
  .workspace-name {
    font-size: 1.1rem;
  }
  
  .timer-section {
    padding: 0.8rem;
    gap: 0.3rem;
  }
  
  .time-value {
    font-size: 1rem;
    min-width: 30px;
    padding: 0.3rem;
  }
  
  .time-label {
    font-size: 0.7rem;
  }
  
  .separator {
    font-size: 1.2rem;
  }
  
  .payment-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .payment-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .coupon-container {
    margin: 0 0.25rem;
  }
  
  .discount-section {
    padding: 1rem 0;
  }
  
  .discount-amount {
    font-size: 1.5rem;
  }
  
  .coupon-details {
    padding: 0.8rem;
  }
  
  .workspace-photo {
    width: 60px;
    height: 60px;
  }
  
  .workspace-name {
    font-size: 1rem;
  }
  
  .timer-section {
    padding: 0.6rem;
  }
  
  .time-value {
    font-size: 0.9rem;
    min-width: 25px;
    padding: 0.2rem;
  }
  
  .payment-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Workspace Gallery Responsive Design */
.workspaces-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.workspaces-gallery::-webkit-scrollbar {
  height: 8px;
}

.workspaces-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.workspaces-gallery::-webkit-scrollbar-thumb {
  background: #5baa91;
  border-radius: 4px;
}

.workspaces-gallery::-webkit-scrollbar-thumb:hover {
  background: #4a8c7a;
}

/* Card Responsive Design */
.card {
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 320px;
  min-height: 340px;
  height: auto;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid rgba(91,170,145,0.1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: rgba(91,170,145,0.3);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: fill;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 1rem 0.5rem 1rem;
  line-height: 1.3;
  text-align: right;
  direction: rtl;
  flex-shrink: 0;
}

.card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0 1rem 1rem 1rem;
  line-height: 1.4;
  text-align: right;
  direction: rtl;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .amenity {
  color: #5baa91;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.card .loc {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .card {
    min-width: 260px;
    max-width: 300px;
    min-height: 320px;
    height: auto;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .workspaces-gallery {
    gap: 0.8rem;
    padding: 0.8rem 0;
  }
  
  .card {
    min-width: 240px;
    max-width: 280px;
    min-height: 300px;
    height: auto;
  }
  
  .card img {
    height: 180px;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin: 0.8rem 0.8rem 0.4rem 0.8rem;
  }
  
  .card p {
    font-size: 0.8rem;
    margin: 0 0.8rem 0.8rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .workspaces-gallery {
    gap: 0.6rem;
    padding: 0.6rem 0;
  }
  
  .card {
    min-width: 220px;
    max-width: 260px;
    min-height: 280px;
    height: auto;
  }
  
  .card img {
    height: 160px;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin: 0.6rem 0.6rem 0.3rem 0.6rem;
  }
  
  .card p {
    font-size: 0.75rem;
    margin: 0 0.6rem 0.6rem 0.6rem;
  }
  
  .card .amenity {
    font-size: 1rem;
  }
  
  .card .loc {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .workspaces-gallery {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .card {
    min-width: 200px;
    max-width: 240px;
    min-height: 260px;
    height: auto;
  }
  
  .card img {
    height: 140px;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0.5rem 0.25rem 0.5rem;
  }
  
  .card p {
    font-size: 0.7rem;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  
  .card .amenity {
    font-size: 1rem;
  }
  
  .card .loc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .workspaces-gallery {
    gap: 0.4rem;
    padding: 0.4rem 0;
  }
  
  .card {
    min-width: 180px;
    max-width: 220px;
    min-height: 240px;
    height: auto;
  }
  
  .card img {
    height: 120px;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin: 0.4rem 0.4rem 0.2rem 0.4rem;
  }
  
  .card p {
    font-size: 0.65rem;
    margin: 0 0.4rem 0.4rem 0.4rem;
  }
  
  .card .amenity {
    font-size: 1rem;
  }
  
  .card .loc {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .workspaces-gallery {
    gap: 0.3rem;
    padding: 0.3rem 0;
  }
  
  .card {
    min-width: 160px;
    max-width: 200px;
    min-height: 220px;
    height: auto;
  }
  
  .card img {
    height: 100px;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin: 0.3rem 0.3rem 0.15rem 0.3rem;
  }
  
  .card p {
    font-size: 0.6rem;
    margin: 0 0.3rem 0.3rem 0.3rem;
  }
  
  .card .amenity {
    font-size: 1rem;
  }
  
  .card .loc {
    font-size: 1rem;
  }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .card:hover img {
    transform: none;
  }
  
  .card:active {
    transform: scale(0.98);
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .card img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .card,
  .card img {
    transition: none;
  }
  
  .workspaces-gallery {
    scroll-behavior: auto;
  }
}

/* Custom Alert Styles */
.custom-alert {
  display: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  letter-spacing: 0.5px;
  z-index: 10;
}
.custom-alert.success {
  background: linear-gradient(90deg, #e6f9f0 0%, #d0f5e6 100%);
  color: #218c5b;
  border: 1.5px solid #5baa91;
}
.custom-alert.error {
  background: linear-gradient(90deg, #ffeaea 0%, #ffd6d6 100%);
  color: #c0392b;
  border: 1.5px solid #e74c3c;
}

/* Enhanced Contact Form Styles */
.enhanced-contact-form {
  background: #f8fafc;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(91, 170, 145, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.enhanced-contact-form form {
  width: 100%;
}
.enhanced-contact-form input,
.enhanced-contact-form textarea {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  margin: 1.2rem;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s;
  box-shadow: 0 1px 2px rgba(91,170,145,0.03);
}
.enhanced-contact-form input:focus,
.enhanced-contact-form textarea:focus {
  border-color: #5baa91;
  outline: none;
}
.enhanced-contact-form button {
  background: linear-gradient(90deg, #5baa91 0%, #4a9980 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 0;
  margin: 1.2rem;
  box-shadow: 0 2px 8px rgba(91,170,145,0.08);
  transition: background 0.2s, transform 0.2s;
}
.enhanced-contact-form button:hover {
  background: linear-gradient(90deg, #4a9980 0%, #5baa91 100%);
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 600px) {
  .enhanced-contact-form {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .enhanced-contact-form input,
  .enhanced-contact-form textarea {
    font-size: 0.95rem;
    padding: 0.7rem 0.7rem;
  }
  .enhanced-contact-form button {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}

.robot-captcha {
  background: #f4f8fb;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(91,170,145,0.07);
  padding: 0.7rem 1.2rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  border: 1.5px solid #e0e0e0;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.robot-captcha:hover, .robot-captcha:focus-within {
  box-shadow: 0 4px 16px rgba(91,170,145,0.13);
  border-color: #5baa91;
}
.robot-captcha input[type="checkbox"] {
  width: 1.3rem;
  height: 1.3rem;
  accent-color: #5baa91;
  border-radius: 0.4rem;
  margin-left: 0.5rem;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(91,170,145,0.05);
}
.robot-captcha label {
  font-size: 1.08rem;
  color: #218c5b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.robot-captcha .robot-icon {
  width: 2.1rem;
  height: 2.1rem;
  margin-left: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

/* Responsive for robot-captcha */
@media (max-width: 600px) {
  .robot-captcha {
    padding: 0.5rem 0.6rem;
    border-radius: 0.7rem;
    font-size: 0.95rem;
  }
  .robot-captcha label {
    font-size: 0.95rem;
  }
  .robot-captcha .robot-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
/* Booking Button CSS */
.booking-button {
  background-color: var(--color-primary); /* Orange */
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: 6px 12px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.booking-button:hover {
  background-color: var(--color-primary-hover);
}

.booking-button .icon {
  font-size: 1.2rem;
}

.room-valo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
    .workspace-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .map-view-btn {
    background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(91, 170, 145, 0.3);
    }
    
    .map-view-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(91, 170, 145, 0.4);
        background: linear-gradient(135deg, #4a8c7a 0%, #3d7a68 100%);
    }
    
    .map-view-btn i {
        font-size: 12px;
    }
    
    @media (max-width: 768px) {
        .workspace-header {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .map-view-btn {
            align-self: stretch;
            justify-content: center;
            margin: auto;
            width: 40%;
        }
    }
    #custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-alert-box {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  font-family: 'Arial', sans-serif;
}

.custom-alert-box p {
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
}

.custom-alert-box button {
  background-color: #5baa91;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.custom-alert-box button:hover {
  background-color: #4a8c7a;
}

    .payment-wrapper {
        width: 100%;
        max-width: 800px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        overflow: hidden;
        animation: slideUp 0.6s ease-out;
        margin: 30px auto;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .payment-header {
        background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
        color: white;
        padding: 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .payment-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .payment-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .payment-header p {
        font-size: 1.1rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .payment-content {
        padding: 40px;
    }

    .order-summary {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 30px;
        border: 2px solid #e9ecef;
        position: relative;
        overflow: hidden;
    }

    .order-summary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
    }

    .order-summary h3 {
        color: #2c3e50;
        font-size: 1.4rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .order-summary h3 i {
        color: #5baa91;
    }

    .order-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .order-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
        font-size: 1.1rem;
    }

    .order-item:last-child {
        border-bottom: none;
        font-weight: bold;
        font-size: 1.2rem;
        color: #5baa91;
        padding-top: 20px;
        margin-top: 10px;
        border-top: 2px solid #5baa91;
    }

    .order-label {
        color: #6c757d;
        font-weight: 600;
        font-size: 1rem;
    }

    .order-value {
        color: #2c3e50;
        font-weight: 700;
        font-size: 1.1rem;
        text-align: left;
    }

    .payment-button {
        background: linear-gradient(135deg, #5baa91 0%, #4a8c7a 100%);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 auto;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(91, 170, 145, 0.3);
        position: relative;
        overflow: hidden;
    }

    .payment-button::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;
    }

    .payment-button:hover::before {
        left: 100%;
    }

    .payment-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(91, 170, 145, 0.4);
    }

    .payment-button:active {
        transform: translateY(0);
    }

    .payment-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .payment-frame {
        margin-top: 30px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        min-height: 500px;
        display: none;
    }

    .loading-container {
        text-align: center;
        padding: 60px 20px;
        color: #6c757d;
    }

    /*.loading-spinner {*/
    /*    width: 50px;*/
    /*    height: 50px;*/
    /*    border: 4px solid #f3f3f3;*/
    /*    border-top: 4px solid #5baa91;*/
    /*    border-radius: 50%;*/
    /*    animation: spin 1s linear infinite;*/
    /*    margin: 0 auto 20px;*/
    /*}*/

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .error-message {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
        color: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        margin-top: 20px;
    }

    .security-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e9ecef;
    }

    .security-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6c757d;
        font-size: 0.9rem;
    }

    .security-badge i {
        color: #5baa91;
    }

    @media (max-width: 768px) {
        .payment-wrapper {
            margin: 10px;
            border-radius: 15px;
        }

        .payment-header {
            padding: 20px;
        }

        .payment-header h1 {
            font-size: 2rem;
        }

        .payment-content {
            padding: 20px;
        }

        .order-details {
            grid-template-columns: 1fr;
        }

        .payment-button {
            padding: 15px 30px;
            font-size: 1.1rem;
        }

        .security-badges {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
    }

    .success-animation {
        animation: successPulse 0.6s ease-out;
    }

    @keyframes successPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
/* Loading spinner styles */
    .loading-spinner {
        border: 2px solid #f3f3f3;
        border-top: 2px solid #3498db;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        animation: spin 1s linear infinite;
        display: inline-block;
        margin-right: 8px;
        vertical-align: middle;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* Error message styles */
    .error-msg {
        /*background-color: #ffebee;*/
        text-align: center;
        /*color: #c62828;*/
        padding: 15px;
        margin: 15px;
        border-radius: 4px;
        /*border-left: 4px solid #c62828;*/
        display: none;
    }
    
    /* Custom modal styles */
    .custom-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .modal-content {
        background-color: white;
        border-radius: 8px;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .modal-header {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px;
        text-align: left;
        border-top: 1px solid #eee;
    }
    
    .modal-btn {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin: 0 5px;
    }
    
    .modal-btn.cancel {
        background-color: #f5f5f5;
    }
    
    .modal-btn.confirm {
        background-color: #5baa91;
        color: white;
    }
    
    /* Workspace status indicator */
    .workspace-status {
        margin-top: 8px;
        font-weight: bold;
    }
    
    .workspace-status.open {
        color: #4CAF50;
    }
    
    .workspace-status.closed {
        color: #F44336;
    }

    /* Timer picker styles */
    .timer-picker {
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .timer-picker h3 {
        margin-bottom: 10px;
        font-size: 16px;
        color: #555;
    }

    .timer-controls {
        display: flex;
        justify-content: center;
        align-items: center;
    }
.calculated-price-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-header i {
    color: #5baa91;
    font-size: 20px;
}

.price-header h3 {
    color: #333;
    font-size: 18px;
    margin: 0;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin: 15px 0;
    direction: rtl;
}

#calculated-price {
    font-size: 32px;
    font-weight: bold;
    color: #5baa91;
}

.currency {
    font-size: 20px;
    color: #666;
}

.price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.price-details i {
    color: #5baa91;
    font-size: 16px;
}

@keyframes priceUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.price-updated {
    animation: priceUpdate 0.5s ease;
}

/* ========== ORIGINAL STYLES ========== */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
  min-width: 180px;
  right: 0; /* RTL adjustment */
}
.dropdown-menu li {
  padding: 8px 15px;
}
.dropdown-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.user-menu {
  position: relative;
}
.user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; /* RTL adjustment */
  background: white;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  text-align: right;
}
.user-dropdown.show {
  display: block;
}

#menuToggleBtn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

/* ========== MOBILE DRAWER WITH SCROLLBAR ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 20px;
  direction: rtl;
  overflow-y: auto;
  
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #4a6fa5 #f1f1f1;
}

.mobile-drawer::-webkit-scrollbar {
  width: 6px;
}

.mobile-drawer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.mobile-drawer::-webkit-scrollbar-thumb {
  background-color: #4a6fa5;
  border-radius: 3px;
}

.mobile-drawer.active {
  right: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}
.overlay.active {
  display: block;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  #menuToggleBtn {
    display: block;
  }
  
  #menu {
    display: none;
  }
  
  .nav-right {
    flex-direction: row;
  }
  
  .nav-logo {
    margin-left: auto;
  }
}
.soon-label {
  display: inline-block;
  margin-right: 6px; /* المسافة عن النص */
  padding: 2px 8px;
  background-color: rgba(46, 204, 113, 0.15); /* أخضر فاتح شفاف */
  color: #27ae60; /* أخضر غامق */
  font-size: 12px;
  font-weight: bold;
  border-radius: 12px;
  vertical-align: middle;
}

/* ========== ENHANCED DRAWER STYLES WITH YOUR COLOR SCHEME ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: var(--color-bg);
  box-shadow: -2px 0 10px rgba(0,0,0,0.15);
  z-index: 1001;
  transition: var(--transition);
  padding: 15px;
  direction: rtl;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  
  /* Custom scrollbar */
  scrollbar-width: none;
  scrollbar-color: var(--color-primary) var(--color-light-gray);
}

.mobile-drawer::-webkit-scrollbar {
  width: 6px;
}

.mobile-drawer::-webkit-scrollbar-track {
  background: var(--color-light-gray);
  border-radius: var(--border-radius);
}

.mobile-drawer::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-light-gray);
  margin-bottom: 15px;
}

.drawer-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--color-text);
}

.close-drawer {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  padding: 5px;
  transition: var(--transition);
}

.close-drawer:hover {
  color: var(--color-primary);
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 0.7;
}

.mobile-menu li {
  margin-bottom: 5px;
}

.mobile-menu li a {
  display: block;
  padding: 12px 15px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 1.1rem;
}

.mobile-menu li a:hover {
  background-color: rgba(91, 170, 145, 0.1);
  color: var(--color-primary-hover);
}

.mobile-menu .dropdown-menu {
  display: none;
  padding-right: 20px;
  margin-top: 5px;
}

.mobile-menu .dropdown-menu li a {
  padding: 10px 25px;
  font-size: 1rem;
  color: var(--color-text);
}

.mobile-menu .dropdown-menu li a:hover {
  background-color: rgba(91, 170, 145, 0.1);
}

.mobile-menu .dropdown.active .dropdown-menu {
  display: block;
}

.mobile-user-actions {
  margin-top: 10px;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 15px;
}

.mobile-user-actions a, 
.mobile-user-actions button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  text-align: right;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-user-actions a:hover, 
.mobile-user-actions button:hover {
  background-color: rgba(91, 170, 145, 0.1);
  color: var(--color-primary-hover);
}

.mobile-user-actions a i, 
.mobile-user-actions button i {
  margin-left: 8px;
  color: var(--color-primary);
}

.btn_lgn {
  display: block;
  width: 100%;
  padding: var(--btn-padding);
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 350px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn_lgn:hover {
  background-color: var(--color-primary-hover);
}

/* Dropdown indicator */
.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  transition: var(--transition);
}

.dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 1024px) {
  #menu {
    display: none;
  }
  
  #menuToggleBtn {
    display: block;
    color: var(--color-primary);
    transition: var(--transition);
  }
  
  #menuToggleBtn:hover {
    color: var(--color-primary);
  }
  
  .nav-right {
    flex-direction: row;
    gap: 0.2rem;
  }
  
  .nav-logo {
    margin-left: auto;
  }
  
  /* Adjust drawer width for smaller screens */
  @media (max-height: 600px) {
    .mobile-drawer {
      width: 300px;
      padding: 10px;
    }
    
    .mobile-menu li a {
      padding: 10px 12px;
      font-size: 1rem;
    }
    
    .drawer-header h3 {
      font-size: 1.3rem;
    }
  }
}
.fa {
  margin-left: 3px; /* Adjust this value as needed for Arabic/RTL layout */
}
/* ========== ENHANCED USER DROPDOWN STYLES ========== */
.user-menu {
  position: relative;
  margin-right: 10px; /* Adjust spacing as needed */
}

.user-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 50px;
  background: rgba(91, 170, 145, 0.1);
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.user-icon:hover {
  background: rgba(91, 170, 145, 0.2);
}

.user-icon i {
  color: var(--color-primary);
  font-size: 16px;
}

.user-icon span {
  font-weight: 500;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: clamp(100px, 30vw, 200px);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: right;
  overflow: hidden;
  animation: fadeIn 0.2s ease-out;
}


.user-dropdown.show {
  display: block;
}

.user-dropdown a,
.user-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  width: 100%;
  text-align: right;
  color: var(--color-text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  font-family: var(--font-family);
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  background: rgba(91, 170, 145, 0.1);
  color: var(--color-primary);
}

.user-dropdown a i,
.user-dropdown button i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.user-dropdown button {
  color: #e74c3c;
}

.user-dropdown button:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
}

.user-dropdown button i {
  color: #e74c3c;
}

/* Animation for dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add this to your existing media queries */
@media (max-width: 768px) {
  .user-icon span {
    display: none; /* Hide username on mobile */
  }
  
  .user-icon {
    padding: 8px;
  }
}
/* ===== MOBILE DRAWER DROPDOWN (Matches Desktop Style) ===== */
.mobile-user-actions {
  margin-top: 15px;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 10px;
}

.mobile-user-actions a, 
.mobile-user-actions button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 15px;
  text-align: right;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
}

.mobile-user-actions a:hover, 
.mobile-user-actions button:hover {
  background: rgba(91, 170, 145, 0.1);
  color: var(--color-primary);
}

.mobile-user-actions a i, 
.mobile-user-actions button i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Logout Button (Red Highlight) */
.mobile-user-actions button {
  color: #e74c3c;
}

.mobile-user-actions button:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
}

.mobile-user-actions button i {
  color: #e74c3c;
}
/* ========== DESKTOP MENU LI HOVER ========== */
#menu > li:not(.dropdown) > a:hover,
#menu > li.dropdown > .dropdown-toggle:hover {
  color: var(--color-primary);
  background: rgba(91, 170, 145, 0.1);
}

/* Dropdown menu items */
.dropdown-menu li a:hover {
  background: rgba(91, 170, 145, 0.1) !important;
  color: var(--color-primary);
  padding-right: 20px; /* Indent on hover for visual feedback */
}

/* ========== MOBILE DRAWER LI HOVER ========== */
.mobile-menu > li:not(.dropdown) > a:hover,
.mobile-menu > li.dropdown > .dropdown-toggle:hover {
  color: var(--color-primary);
  background: rgba(91, 170, 145, 0.1);
}

/* Mobile dropdown items */
.mobile-menu .dropdown-menu li a:hover {
  background: rgba(91, 170, 145, 0.1);
  color: var(--color-primary);
  padding-right: 30px; /* Larger indent for mobile */
}

/* ========== SMOOTH TRANSITIONS & INDICATORS ========== */
#menu li a,
.mobile-menu li a {
  transition: all 0.3s ease;
  position: relative;
}

/* Animated underline on hover (optional) */
#menu > li:not(.dropdown) > a:hover::after,
.mobile-menu > li:not(.dropdown) > a:hover::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -2px;
  width: calc(100% - 30px);
  height: 2px;
  background: var(--color-primary);
  animation: underlineFade 0.3s ease;
}

@keyframes underlineFade {
  from { width: 0; opacity: 0; }
  to { width: calc(100% - 30px); opacity: 1; }
}


/* Error Message */
.error-msg {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
    display: none;
}



.workspace-details, .room-details {
    padding: 15px;
}

.workspace-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    color: #2d3a4b;
}

.workspace-location {
    color: #6c757d;
    margin-bottom: 8px;
}

.workspace-status.open {
    color: #28a745;
    font-weight: 600;
}

.workspace-status.closed {
    color: #dc3545;
    font-weight: 600;
}

.room-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.room-type {
    color: #6c757d;
    margin-bottom: 8px;
}

.room-price {
    font-weight: 600;
    color: #5baa91;
    margin-bottom: 10px;
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-amenities li {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #495057;
}

/* Time Section Styling */
.booking-details {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.time-section h3, .people-section h3 {
    margin-bottom: 15px;
    color: #2d3a4b;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.time-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

.time-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.time-group:focus-within {
    border-color: #5baa91;
    box-shadow: 0 0 0 3px rgba(91, 170, 145, 0.15);
}
/* People Counter */
/*.people-section {*/
/*    margin-top: 25px;*/
/*    padding-top: 25px;*/
/*    border-top: 1px solid #e9ecef;*/
/*}*/

.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.counter-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #5baa91;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/*.counter-btn:hover {*/
/*    background: #4a9179;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 8px rgba(0,0,0,0.15);*/
/*}*/

.counter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.counter-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.counter-value {
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #2d3a4b;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

/* Calendar Toggle Button */
.calendar-toggle-btn {
    width: 100%;
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #5baa91;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.calendar-toggle-btn:hover {
    background-color: #e9ecef;
}

/* Calendar */
.calendar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: none;
}

.calendar.active {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-navigation {
    display: flex;
    gap: 10px;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f8f9fa;
    color: #2d3a4b;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
    background: #e9ecef;
}

.calendar-title {
    font-weight: 700;
    color: #2d3a4b;
    font-size: 18px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled) {
    background: #f8f9fa;
}

.calendar-day.disabled {
    color: #ced4da;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #5baa91;
    color: white;
}

.calendar-day.in-range {
    background: #e8f5f0;
}

.calendar-day.start-date, .calendar-day.end-date {
    background: #5baa91;
    color: white;
    font-weight: 700;
}

/* Price Display */
.calculated-price-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-header i {
    color: #5baa91;
    font-size: 24px;
}

.price-header h3 {
    margin: 0;
    color: #2d3a4b;
    font-weight: 700;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #5baa91;
    margin-bottom: 10px;
}

.currency {
    font-size: 18px;
    color: #6c757d;
}

.price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cancel-btn {
    background: #f8f9fa;
    color: #6c757d;
}

.cancel-btn:hover {
    background: #e9ecef;
}

.continue-btn {
    background: #5baa91;
    color: white;
}

.continue-btn:hover {
    background: #4a9179;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Modal */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    margin: 0;
    color: #2d3a4b;
    text-align: center;
}

.modal-body {
    padding: 20px;
    text-align: center;
}

.modal-footer {
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #e9ecef;
}

.modal-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-btn.cancel {
    background: #f8f9fa;
    color: #6c757d;
}

.modal-btn.cancel:hover {
    background: #e9ecef;
}

.modal-btn.confirm {
    background: #5baa91;
    color: white;
}

.modal-btn.confirm:hover {
    background: #4a9179;
}

/* Clock Picker Styles - FIXED */
.clock-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 15px 0;
}

.clock-container {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #f8f9fa;
    position: relative;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.clock-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #5baa91;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: #5baa91;
    border-radius: 4px;
    z-index: 5;
}

.hour-hand {
    width: 4px;
    height: 80px;
    transform: translateX(-50%) rotate(0deg);
}

.minute-hand {
    width: 3px;
    height: 110px;
    transform: translateX(-50%) rotate(0deg);
}

.clock-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.clock-number {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2d3a4b;
    transform: translate(-50%, -50%);
}

.clock-minor-ticks, .clock-major-ticks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.clock-tick {
    position: absolute;
    background: #ced4da;
    left: 50%;
    transform: translateX(-50%);
}

.major-tick {
    width: 2px;
    height: 10px;
    top: 10px;
}

.minor-tick {
    width: 1px;
    height: 5px;
    top: 10px;
}

.clock-ampm {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.clock-ampm-btn {
    padding: 8px 15px;
    border: 1px solid #e9ecef;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.clock-ampm-btn.active {
    background: #5baa91;
    color: white;
    border-color: #5baa91;
}

.clock-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.clock-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clock-btn.cancel {
    background: #f8f9fa;
    color: #6c757d;
}

.clock-btn.cancel:hover {
    background: #e9ecef;
}

.clock-btn.confirm {
    background: #5baa91;
    color: white;
}

.clock-btn.confirm:hover {
    background: #4a9179;
}

/* Time Display */
.time-display {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #2d3a4b;
    margin: 15px 0;
    direction: ltr;
    display: inline-block;
}

/* Responsive Design - IMPROVED */
@media (max-width: 992px) {
    .left-column, .right-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .booking-container {
        padding: 15px;
    }
    
    .time-controls {
        flex-direction: column;
        gap: 8px;
    }
    
    .time-separator {
        padding: 5px 0;
    }
    
    .time-input, #timer-select {
        width: 110px;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .clock-container {
        width: 220px;
        height: 220px;
    }
    
    .hour-hand {
        height: 60px;
    }
    
    .minute-hand {
        height: 85px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .progress-step {
        width: 35px;
        height: 35px;
        margin: 0 10px;
        font-size: 14px;
    }
    
    .progress-step:not(:last-child):after {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .booking-header h1 {
        font-size: 24px;
    }
    
    .time-input, #timer-select {
        width: 100px;
        font-size: 14px;
    }
    
    .counter-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .counter-value {
        width: 50px;
        height: 45px;
        font-size: 20px;
    }
    
    .clock-container {
        width: 200px;
        height: 200px;
    }
    
    .hour-hand {
        height: 50px;
    }
    
    .minute-hand {
        height: 75px;
    }
    
    .time-display {
        font-size: 20px;
    }
}

/* Animation for value changes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.value-changed {
    animation: pulse 0.3s ease;
}

.price-updated {
    animation: pulse 0.5s ease;
}

/* RTL specific fixes */
/*[dir="rtl"] .time-input,*/
/*[dir="rtl"] #timer-select {*/
/*    text-align: center;*/
/*}*/

/* Fix for clock numbers positioning */
.clock-number {
    font-size: 14px;
}

/* Fix for clock hand positioning */
.clock-hand {
    transition: transform 0.2s ease;
}

/* Ensure proper modal z-index stacking */
.custom-modal {
    z-index: 10000;
}

/* Improve focus states for accessibility */
.time-input:focus,
#timer-select:focus,
.counter-btn:focus,
.calendar-nav-btn:focus,
.action-btn:focus,
.modal-btn:focus,
.clock-btn:focus,
.clock-ampm-btn:focus {
    outline: 2px solid #5baa91;
    outline-offset: 2px;
}

/* Loading state for buttons */
.action-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/* ZenZone Input Styling */
.time-input {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  padding: 12px 16px;
  border: 2px solid #59aa91;
  border-radius: 12px;
  background-color: #f9fefc;
  color: #222;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
  width: 120px;
  text-align: center;
}

/* Hover */
.time-input:hover {
  border-color: #4b8f7b;
  background-color: #f1fbf7;
}

/* Focus */
.time-input:focus {
  border-color: #59aa91;
  box-shadow: 0 0 8px rgba(89, 170, 145, 0.6);
  background-color: #ffffff;
  color: #111;
}

/* ===== ZenZone Time Picker Theme ===== */

/* Time picker container */
.flatpickr-time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  min-height: 90px; /* more breathing space */
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Hour & minute inputs */
.flatpickr-time .numInputWrapper input {
  border: 2px solid #59aa91;
  color: #222;
  border-radius: 12px;
  padding: 14px;
  font-size: 20px;
  width: 85px;
  height: 55px;  /* bigger touch area */
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}

.flatpickr-time .numInputWrapper input:focus {
  border-color: #4b8f7b;
  box-shadow: 0 0 10px rgba(89,170,145,0.4);
  outline: none;
}

/* Separator (:) */
.flatpickr-time .flatpickr-time-separator {
  color: #59aa91;
  font-weight: bold;
  font-size: 24px;
  padding: 0 10px;
}

/* AM/PM toggle button */
.flatpickr-time .flatpickr-am-pm {
  background: #59aa91;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #4b8f7b;
  outline: none;
}

/* === Custom Arrows === */
.flatpickr-time .numInputWrapper span.arrowUp,
.flatpickr-time .numInputWrapper span.arrowDown {
  position: absolute;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #59aa91;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.flatpickr-time .numInputWrapper span.arrowUp {
  top: 4px;
}
.flatpickr-time .numInputWrapper span.arrowDown {
  bottom: 4px;
}

.flatpickr-time .numInputWrapper span.arrowUp:hover,
.flatpickr-time .numInputWrapper span.arrowDown:hover {
  background: #4b8f7b;
}

/* Arrow icons */
.flatpickr-time .numInputWrapper span.arrowUp::after {
  content: "▲";
  font-size: 12px;
  color: #fff;
}
.flatpickr-time .numInputWrapper span.arrowDown::after {
  content: "▼";
  font-size: 12px;
  color: #fff;
}
/* Loading Overlay Styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Cairo', sans-serif;
}

.loading-content {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.loading-spinner-large {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5baa91;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-overlay p {
    font-size: 18px;
    color: #2d3a4b;
    font-weight: 600;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Paid amenities container */
.paid-amenities {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid #e3f1ed;
  border-radius: 12px;
  background: #f9fdfc;
}

/* Section title */
.amenities-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 6px;
}

/* Amenity row */
.amenity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.amenity-row:hover {
  background: #eef7f4;
}

/* Checkbox */
.amenity-row input[type="checkbox"] {
  transform: scale(1.2);
  cursor: pointer;
  accent-color: #5baa91; /* brand color */
}

/* Amenity name */
.amenity-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* Price label */
.amenity-price {
  margin-inline-start: auto;
  color: #5baa91; /* brand color */
  font-weight: bold;
  font-size: 14px;
}

.amenity-price small {
  color: #777;
  font-weight: normal;
  font-size: 12px;
  margin-right: 4px;
}

/* Free amenities (badges) */
.room-amenities li {
  display: inline-block;
  background: #eef7f4;
  color: #5baa91;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  margin: 3px;
  border-radius: 20px;
}

  /* العنوان الرئيسي الصغير */
.title-small {
  font-size: 0.9rem;       /* صغير */
  font-weight: 500;
  color: var(--color-primary, #2c7a7b);
  margin-bottom: 4px;
  line-height: 1.2;
  text-align: center;
}

/* الفقرة الصغيرة */
.text-small {
  font-size: 0.7rem;       /* أصغر */
  color: var(--color-text, #333);
  line-height: 1.3;
  margin-bottom: 8px;
  text-align: justify;
  max-width: 460px;        /* ضيق */
  margin-left: auto;
  margin-right: auto;
}

/* الكلمات المهمة */
.highlight-small {
  color: var(--color-primary, #2c7a7b);
  font-weight: 600;
  background: rgba(91, 170, 145, 0.05);
  padding: 0 2px;
  border-radius: 2px;
  font-size: 0.8em;
}

/* Responsive */
@media (max-width: 768px) {
  .title-small {
    font-size: 0.8rem;   /* أصغر على التابلت */
  }
  .text-small {
    font-size: 0.65rem;
    max-width: 90%;     /* مرن مع الموبايل */
  }
}
@media (max-width: 480px) {
  .title-small {
    font-size: 0.75rem; /* أصغر جدًا على الموبايل */
  }
  .text-small {
    font-size: 0.6rem;
    line-height: 1.2;
  }
}
/* === One-time Entrance Animation === */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Continuous Animations === */
@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes softPulse {
  0% {
    background-color: rgba(91, 170, 145, 0.05);
  }
  50% {
    background-color: rgba(91, 170, 145, 0.12);
  }
  100% {
    background-color: rgba(91, 170, 145, 0.05);
  }
}

/* === Apply Animations === */
.title-small,
.text-small {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards, 
             softFloat 6s ease-in-out infinite;
}

.title-small {
  animation-delay: 0.1s, 1s; /* (first load, then continuous) */
}

.text-small:nth-of-type(1) {
  animation-delay: 0.3s, 1.3s;
}
.text-small:nth-of-type(2) {
  animation-delay: 0.5s, 1.5s;
}
.text-small:nth-of-type(3) {
  animation-delay: 0.7s, 1.7s;
}

/* Highlight words */
.highlight-small {
  display: inline-block;
  animation: fadeSlideUp 0.6s ease forwards,
             softPulse 5s ease-in-out infinite;
  animation-delay: 1s, 2s;
  border-radius: 3px;
  padding: 0 3px;
  transition: transform 0.2s ease;
}

/* Hover (light zoom) */
.highlight-small:hover {
  transform: scale(1.05);
}
/* Gradient Animation for Title */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.title-small {
  /* existing animations */
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards, softFloat 6s ease-in-out infinite;
  animation-delay: 0.1s, 1s;

  /* gradient effect */
  background: linear-gradient(90deg, #2c7a7b, #5baa91, #2c7a7b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: fadeSlideUp 0.8s ease forwards,
             softFloat 6s ease-in-out infinite,
             gradientShift 5s ease infinite;
  animation-delay: 0.1s, 1s, 2s;
}
.my-alert {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: #5baa91; /* أحمر */
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Additional styles for the new layout */
.room-type-section {
  position: relative;
  margin: 20px 0;
  padding: 0 15px;
}

.filter-bottom {
  position: sticky;
  bottom: 20px;
  z-index: 100;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.filter-bottom-btn {
  background: #5baa91;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(91, 170, 145, 0.3);
  cursor: pointer;
}

.filter-bottom-btn:hover {
  background: #4a957b;
}

/* Elastic search suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 50px;
  right: 50px;
  background: white;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-suggestion-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-suggestion-item:hover {
  background: #f5f5f5;
}

.search-suggestion-item i {
  color: #5baa91;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-wrapper {
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .room-type-section {
    margin: 15px 0;
  }
  
  .filter-bottom {
    bottom: 10px;
  }
  
  .filter-bottom-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.custom-alert-v2 {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4caf50;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; bottom: 20px; }
  10%, 90% { opacity: 1; bottom: 30px; }
  100% { opacity: 0; bottom: 20px; }
}

.cancelModalOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
}

.cancelModal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', sans-serif;
}

.cancelModal h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.cancelModal button {
    padding: 8px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.cancelModal .confirmBtn {
    background-color: #d9534f;
    color: white;
}

.cancelModal .cancelBtn {
    background-color: #6c757d;
    color: white;
}
.actions {
    display: flex;
    justify-content: center; /* center buttons */
    gap: 16px;
    margin-top: 20px;
}

.cancelButton, 
.payButton {
    padding: 12px 28px;
    border: none;
    border-radius: 30px; /* pill shape */
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    min-width: 110px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Cancel btn (red gradient) */
.cancelButton {
    background: linear-gradient(135deg, #ff6b6b, #d9534f);
}
.cancelButton:hover {
    background: linear-gradient(135deg, #d9534f, #c0392b);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.cancelButton:disabled {
    background: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}

/* Pay btn (green gradient) */
.payButton {
    background: linear-gradient(135deg, #5baa91, #3e8e6a);
}
.payButton:hover {
    background: linear-gradient(135deg, #3e8e6a, #2e6d53);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.payButton:disabled {
    background: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}

/* Check-in btn (blue gradient) */
.checkInButton {
    padding: 12px 28px;
    border: none;
    border-radius: 30px; /* pill shape */
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    min-width: 110px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: linear-gradient(135deg, #5baa91, #4a9980); /* brand primary gradient */
}
.checkInButton:hover {
    background: linear-gradient(135deg, #4a9980, #3e8e6a);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.checkInButton:disabled {
    background: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}

/* Check-out btn (purple gradient) */
.checkOutButton {
    padding: 12px 28px;
    border: none;
    border-radius: 30px; /* pill shape */
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    min-width: 110px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: linear-gradient(135deg, #4a9980, #3e8e6a); /* darker brand gradient */
}
.checkOutButton:hover {
    background: linear-gradient(135deg, #3e8e6a, #2e6d53);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.checkOutButton:disabled {
    background: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}



.bookingCard {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    margin: 0 12px; /* spacing between cards in the horizontal scroller */
}
.bookingCard .cardHeader img {
    display: block;
    width: 100%;
    height: 200px;
}

.bookingCard .cardContent {
    padding: 16px 18px; /* inner padding so text isn't hugging edges */
}

.bookingCard .actions {
    padding: 6px 6px 2px; /* slight padding around buttons */
    gap: 12px;            /* consistent gap between buttons */
    flex-wrap: wrap;      /* avoid buttons touching edges on small screens */
}

@media (max-width: 600px) {
    #cancelBookCard { padding: 0 10px; }
    .bookingCard { margin: 0 8px; border-radius: 14px; }
    .bookingCard .cardContent { padding: 14px; }
}
/* Policy Approval Section */
.policy-approval-section {
    background: #f9f9f9;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.approval-checkbox {
    margin-bottom: 15px;
}
.approval-checkbox {
    display: inline-block;
    position: relative;
}

/* نخفي الـ checkbox الأصلي */
.approval-checkbox input[type="checkbox"] {
    display: none;
}

/* نص اللابل */
.approval-checkbox label {
    position: relative;
    cursor: pointer;
    padding-right: 28px; /* مسافة للمربع على اليمين */
    font-size: 16px;
    user-select: none;
}

/* المربع */
.approval-checkbox label::after {
    content: "";
    position: absolute;
    right: 0; /* على يمين النص */
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
    background: #fff;
}

/* علامة الصح */
.approval-checkbox input[type="checkbox"]:checked + label::after {
    content: "✔";        /* الصح */
    font-size: 14px;
    color: white;
    background: #5baa91; /* خلفية خضراء عند التشيك */
    border-color: #5baa91;
    display: flex;
    align-items: center;
    justify-content: center;
}


.policy-link {
    color: #5baa91;
    text-decoration: none;
    font-weight: 600;
}

.policy-link:hover {
    text-decoration: underline;
}

.approve-policy-btn {
    background: #5baa91;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.approve-policy-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.approve-policy-btn i {
    font-size: 16px;
}

/* Disable continue button by default */
#continue-booking:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cancellation-policy-section {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #5baa91;
    padding-bottom: 10px;
}

.policy-header i {
    color: #5baa91;
    font-size: 24px;
    margin-left: 10px;
}

.policy-header h2 {
    color: #333;
    margin: 0;
    font-size: 22px;
}

.policy-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-alert i {
    color: #f39c12;
    margin-left: 10px;
}

.policy-alert span {
    color: #856404;
    font-weight: bold;
}

.policy-item {
    margin-bottom: 20px;
}

.policy-item h3 {
    color: #5baa91;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.contact-item i {
    color: #5baa91;
    margin-left: 10px;
    width: 20px;
}

.policy-process {
    margin: 25px 0;
}

.policy-process h3 {
    color: #5baa91;
    margin-bottom: 15px;
    font-size: 18px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: center;
}

.step-number {
    background: #5baa91;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-weight: bold;
}

.step-text {
    color: #555;
    font-size: 16px;
}

.policy-payment {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

.policy-payment h3 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy-payment p {
    color: #388e3c;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .cancellation-policy-section {
        padding: 15px;
    }
    
    .policy-header h2 {
        font-size: 20px;
    }
    
    .step-text {
        width: 100%;
        font-size: 14px;
    }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.contact-item a {
  color: #5baa91;   /* لون مميز */
  text-decoration: none;
  font-weight: 500;
  unicode-bidi: embed;
}

.contact-item a:hover {
  text-decoration: underline;
}
    .closed-card {
  position: relative;
  opacity: 0.6;
  pointer-events: none; /* يمنع الضغط */
}

.closed-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(200, 0, 0, 0.85);
  color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
}
 .paymentModalOverlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.paymentModal {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-family: "Tajawal", sans-serif;
}
/* Popup overlay (with animation) */
#policy-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  direction: rtl;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Active state (visible) */
#policy-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* Popup box with entrance animation */
.policy-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

/* Animate in */
#policy-popup.active .policy-box {
  transform: translateY(0);
  opacity: 1;
}

/* Header */
.policy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #5baa91;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.policy-header h2 {
  font-size: 22px;
  color: #333;
  margin: 0;
}

.close-policy {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: color 0.2s ease;
}

.close-policy:hover {
  color: #5baa91;
}

/* Scrollbar styling */
.policy-box::-webkit-scrollbar {
  width: 8px;
}
.policy-box::-webkit-scrollbar-thumb {
  background: #5baa91;
  border-radius: 8px;
}
