@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

/* ======================== VARIABLES ======================== */
:root {
  --brand: #ff852d;
  --brand-2: #ff7300;
  --brand-light: #fff4ec;
  --ok: #27ae60;
  --warn: #ff852d;
  --bad: #e74c3c;
  --ink: #333;
  --muted: #666;
  --bg: #fff;
  --radius: 12px;
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  direction: rtl;
  text-align: right;
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ======================== LAYOUT ======================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ======================== HEADER / NAV ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.site-header .wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  gap: .75rem;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .5px;
  color: #fff;
}

.site-header .brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.site-header nav a {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .4rem .7rem;
  border-radius: 8px;
  opacity: .95;
  transition: background .2s;
}

.site-header nav a:hover,
.site-header nav a.active {
  background: rgba(255,255,255,.18);
  opacity: 1;
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
  }
  .site-header nav.open { display: flex; }
  .site-header nav a {
    padding: .75rem 1rem;
    font-size: 1.1rem;
  }
}

/* ======================== FOOTER ======================== */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 2rem 1rem;
  text-align: center;
}

.site-footer .footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.site-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background .2s;
}

.site-footer .social-links a:hover {
  background: var(--brand);
}

.site-footer .social-links img {
  width: 22px;
  height: 22px;
}

.site-footer .copyright {
  font-size: .9rem;
  margin-top: .5rem;
}

/* ======================== HERO ======================== */
.hero {
  padding: 2rem 1rem;
}

.hero .main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 5rem);
  max-width: 1100px;
  margin: 0 auto;
}

.hero .slideshow-wrapper {
  width: min(100vw, 400px);
  aspect-ratio: 1/1;
  position: relative;
  flex-shrink: 0;
}

.hero .slideshow-container {
  width: 100%;
  height: 100%;
  border: 3px solid var(--brand);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(255,133,45,.25), 0 4px 15px rgba(0,0,0,.1);
}

.hero .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero .slideshow-text {
  flex: 0 1 auto;
  min-width: 150px;
  max-width: 45%;
}

.hero .text-content {
  text-align: right;
  direction: rtl;
}

.hero .text-content .title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  margin: 0;
}

.hero .text-content .subtitle {
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--muted);
  margin: .5rem 0 0;
}

@media (max-width: 768px) {
  .hero .main-wrapper {
    gap: clamp(0.5rem, 3vw, 1rem);
  }
  .hero .slideshow-wrapper {
    width: min(40vw, 200px);
  }
  .hero .text-content .title {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .hero .main-wrapper {
    gap: clamp(2rem, calc(4rem + 5vw), 12rem);
  }
  .hero .text-content .title {
    font-size: clamp(2rem, 3vw, 3.5rem);
  }
}

/* ======================== STATS ======================== */
.stats-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2.5rem 1rem 1rem;
}

.stat-box {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  background: #fff;
  color: var(--ink);
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  /* animation start state */
  opacity: 0;
  transform: translateY(40px);
}

.stat-box.visible {
  animation: statFadeUp .6s ease forwards;
}

.stat-box:nth-child(2).visible { animation-delay: .15s; }
.stat-box:nth-child(3).visible { animation-delay: .3s; }

@keyframes statFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.stat-box.visible:hover {
  animation: none;
  opacity: 1;
  transform: translateY(-6px);
}

.stat-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.stat-orange .stat-icon { background: linear-gradient(135deg, #ff852d, #ff6a00); }
.stat-green .stat-icon { background: linear-gradient(135deg, #00b439, #00972f); }
.stat-blue .stat-icon { background: linear-gradient(135deg, #0056b8, #00439a); }

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.stat-orange .stat-number { color: #ff6a00; }
.stat-green .stat-number { color: #00972f; }
.stat-blue .stat-number { color: #0056b8; }

.stat-label {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-container { gap: 2.5rem; padding-top: 2.5rem; }
  .stat-box { max-width: 100%; }
}

/* ======================== PRICING ======================== */
.pricing-container {
  background: rgba(255,255,255,.98);
  border-radius: 15px;
  border: 2px solid #f0f0f0;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.1);
}

.pricing-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
}

.pricing-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: .5rem;
}

.discount-badge {
  background: rgba(255,255,255,.25);
  display: inline-block;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.35);
}

.pricing-content { padding: 1.4rem; }

.main-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, #f8f9fa, #fff);
  border-radius: 12px;
  border: 2px solid var(--brand);
  box-shadow: 0 4px 16px rgba(255,133,45,.12);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.current-price { font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 800; color: var(--brand); }
.old-price { font-size: clamp(1.1rem, 3vw, 1.4rem); color: #999; text-decoration: line-through; font-weight: 700; }
.currency { font-size: 1.05rem; color: var(--muted); font-weight: 700; }
.price-note { margin-top: .5rem; color: var(--muted); }

.pricing-list { list-style: none; display: grid; gap: .8rem; }

.pricing-item {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.pricing-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255,133,45,.15);
}

.item-description { font-weight: 600; }
.item-price { font-size: 1.25rem; font-weight: 800; color: var(--brand); display: flex; align-items: center; gap: .35rem; }

.price-highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: 2px solid var(--brand);
}
.price-highlight .item-description,
.price-highlight .item-price { color: #fff; }

@media (max-width: 480px) {
  .pricing-item { flex-direction: column; gap: .5rem; text-align: center; }
  .price-row { flex-direction: column; gap: .4rem; }
}

/* ======================== TRIP DATES ======================== */
.trips-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.trip-card {
  background: rgba(255,255,255,.95);
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 1.25rem;
  transition: .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.trip-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,133,45,.18);
}

.date-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
}

.date-icon { color: var(--brand); font-size: 1.1rem; }
.date-label { font-weight: 600; color: var(--muted); }
.date-value { font-weight: 800; }

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  min-width: 140px;
}

.status-available { background: var(--ok); box-shadow: 0 3px 10px rgba(39,174,96,.3); }
.status-limited { background: var(--warn); box-shadow: 0 3px 10px rgba(255,133,45,.3); }
.status-full { background: var(--bad); box-shadow: 0 3px 10px rgba(231,76,60,.3); }

.no-trips { text-align: center; padding: 2rem 1rem; color: var(--muted); }
.no-trips h3 { color: var(--brand); margin-bottom: .5rem; }

.loading { text-align: center; padding: 1.5rem; color: var(--muted); }
.spinner {
  width: 30px; height: 30px;
  border: 3px solid #f0f0f0;
  border-top: 3px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: .75rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ======================== DAILY PROGRAM ======================== */
.day-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  overflow: hidden;
  margin: 10px 0;
  padding: 10px;
  transition: box-shadow .3s ease;
}

.day-box:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.day-box .text-container {
  background: var(--brand);
  color: #fff;
  padding: 20px;
  font-size: 18px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  margin: 10px;
  line-height: 1.8;
}

.day-box .text-container a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}

.day-box .image-container {
  flex: 1;
  width: 100%;
  max-width: 500px;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  margin: 10px;
}

.day-box .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 600px) {
  .day-box { flex-direction: column; }
  .day-box .text-container,
  .day-box .image-container { width: 100%; margin: 10px 0; }
  .day-box .image-container {
    aspect-ratio: 16/9;
    height: auto;
  }
}

/* ======================== FEATURES LIST ======================== */
.features-container {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border: 1px solid #f0f0f0;
}

.features-container ul { list-style: none; }

.features-container li {
  font-size: 17px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.features-container li:last-child { border-bottom: none; }

.highlight-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
}

.highlight {
  font-weight: 900;
  font-size: 18px;
  color: #d40000;
}

/* ======================== HOTELS ======================== */
.hotel-section {
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
  transition: background .3s ease;
}

.hotel-section:hover { background: var(--brand-light); }
.hotel-section:last-child { border-bottom: none; padding-bottom: 0; }

.hotel-section h2 {
  color: var(--brand);
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.hotel-rating {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #e86f10;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.info-column {
  flex: 1 1 280px;
  background: var(--brand-light);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffe1cf;
  box-shadow: 0 3px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s ease;
}

.info-column:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.info-column h3 {
  font-size: 1.1rem;
  margin-bottom: .75rem;
  color: var(--brand);
  border-bottom: 2px solid #ffc9a6;
  padding-bottom: .5rem;
}

.info-column ul { list-style: none; padding: 0; }
.info-column ul li {
  margin-bottom: .5rem;
  line-height: 1.6;
  color: #444;
}

.hotel-location {
  margin-top: 1rem;
  font-size: .95rem;
  color: #777;
}

@media (max-width: 768px) {
  .info-columns { flex-direction: column; }
}

/* ======================== VIDEO CAROUSEL ======================== */
.video-carousel {
  position: relative;
  max-width: 360px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
  margin: 1rem auto;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.video-carousel .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
}

.video-carousel video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .4s ease-in-out;
}

.video-carousel .fade-out { opacity: 0 !important; }

.video-carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.25);
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  color: #fff;
  border-radius: 50%;
  display: none;
}

.video-carousel .arrow.left { left: 10px; }
.video-carousel .arrow.right { right: 10px; }

@media (pointer: fine) {
  .video-carousel .arrow { display: block; }
}

.video-carousel .swipe-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  color: #fff;
  opacity: .8;
  animation: swipeHint 2s ease-in-out 1s 3;
  z-index: 2;
  pointer-events: none;
}

@keyframes swipeHint {
  0% { transform: translateX(-50%) translateX(0); opacity: .8; }
  50% { transform: translateX(-50%) translateX(-20px); opacity: .5; }
  100% { transform: translateX(-50%) translateX(0); opacity: .8; }
}

.video-carousel .mute-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* Horizontal video */
.video-horizontal {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin: 1rem auto;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.video-horizontal .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-horizontal video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ======================== HOTEL VIDEOS GRID ======================== */
.hotel-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hotel-video-card {
  text-align: center;
}

.hotel-video-card h3 {
  color: var(--brand);
  margin-bottom: .75rem;
  font-size: 1.2rem;
}

/* ======================== ABOUT ======================== */
.about-content {
  font-size: 18px;
  line-height: 1.8;
}

.about-content h2 {
  color: #005a99;
  margin: 1.5rem 0 .75rem;
}

.about-content ul {
  list-style-type: disc;
  padding-right: 20px;
}

.about-content ul li {
  margin-bottom: .5rem;
}

.about-content a {
  color: var(--brand);
  font-weight: 700;
}

.about-content a:hover { text-decoration: underline; }

/* ======================== CONTACT ======================== */
.contact-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(0,0,0,.1);
}

.contact-card .logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.contact-card .online-status {
  color: var(--ok);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.contact-card .message {
  direction: rtl;
  margin: 1rem 0;
  color: var(--ink);
  line-height: 1.8;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.5rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}

.btn-call { background: var(--brand); }
.btn-whatsapp { background: #25D366; }
.btn-messenger { background: #0084FF; }
.btn-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.contact-btn img {
  width: 22px;
  height: 22px;
  margin-left: .5rem;
}

/* ======================== REVIEWS ======================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ======================== GALLERY ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,.12);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

/* ======================== CTA SECTION ======================== */
.cta-section {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(255,115,0,.25);
}

.cta-section h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

.cta-section .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* ======================== COOKIE BANNER ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 9999;
  flex-wrap: wrap;
  font-size: .9rem;
}

.cookie-banner.hidden { display: none; }

.cookie-banner button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: .5rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* ======================== CHAT WIDGET ======================== */
.chat-launcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
}

.chat-button,
.chat-option {
  background: var(--brand);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(255,133,45,.35);
  cursor: pointer;
  transition: all .3s ease;
  border: none;
}

.chat-option {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
}

.chat-launcher.open .chat-option {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-10px);
}

.chat-button:hover,
.chat-option:hover {
  background: #cc6e25;
}

.chat-button img,
.chat-option img {
  width: 28px;
  height: 28px;
}

/* ======================== MAP ======================== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,.12);
  margin: 1.5rem 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ======================== ADMIN PANEL ======================== */
.admin-page {
  background: #f5f6fa;
}

/* Login */
.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

.login-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.login-card h1 {
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: .25rem;
}

.login-card p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.login-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-card input[type="password"] {
  padding: .9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  transition: border-color .2s;
}

.login-card input[type="password"]:focus {
  outline: none;
  border-color: var(--brand);
}

.login-card button[type="submit"] {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: none;
  padding: .9rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.login-card button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,133,45,.3);
}

.login-error {
  color: var(--bad);
  font-weight: 700;
  font-size: .9rem;
}

/* Admin Header */
.admin-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: .75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.admin-header .wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.admin-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.admin-logout-btn {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: .5rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}

.admin-logout-btn:hover {
  background: rgba(255,255,255,.35);
}

/* Tabs */
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

.admin-tab {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: var(--ink);
  padding: .65rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-family: inherit;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
}

.admin-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.admin-tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: var(--brand);
}

/* Tab Content */
.admin-content {
  max-width: 1100px;
  margin: 1rem auto 3rem;
  padding: 0 1rem;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Section Header */
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.admin-section-header h2 {
  color: var(--brand);
  font-size: 1.5rem;
}

.admin-actions {
  display: flex;
  gap: .5rem;
}

/* Cards */
.admin-card {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: border-color .2s;
}

.admin-card:hover {
  border-color: #ccc;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.admin-card-header h3 {
  color: var(--brand);
  font-size: 1.1rem;
}

.admin-card-inline {
  padding: .75rem 1rem;
}

/* Form Elements */
.admin-form-group {
  margin-bottom: 1rem;
}

.admin-form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .35rem;
}

.admin-form-group input[type="text"],
.admin-form-group input[type="number"],
.admin-form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  direction: rtl;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.admin-form-group small {
  color: #999;
  font-size: .8rem;
  margin-top: .25rem;
  display: block;
}

.admin-form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-form-row .admin-form-group {
  flex: 1;
  min-width: 150px;
}

.admin-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--brand);
}

.admin-checkbox-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}

/* Toggle switch */
.admin-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
}
.admin-toggle {
  display: none;
}
.admin-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  transition: background .3s;
  flex-shrink: 0;
}
.admin-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.admin-toggle:checked + .admin-toggle-switch {
  background: var(--brand);
}
.admin-toggle:checked + .admin-toggle-switch::after {
  transform: translateX(-22px);
}

/* Buttons */
.btn-add {
  display: block;
  width: 100%;
  padding: .8rem;
  background: #fff;
  border: 2px dashed var(--brand);
  border-radius: 10px;
  color: var(--brand);
  font-weight: 800;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
}

.btn-add:hover {
  background: var(--brand-light);
}

.btn-delete {
  background: var(--bad);
  color: #fff;
  border: none;
  padding: .4rem .8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .2s;
}

.btn-delete:hover { opacity: .85; }

.btn-move {
  background: #e0e0e0;
  border: none;
  padding: .35rem .6rem;
  border-radius: 6px;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}

.btn-move:hover { background: #ccc; }

.btn-toggle {
  background: none;
  border: 1px solid #ccc;
  padding: .3rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .85rem;
  margin-left: .5rem;
}

.btn-import,
.btn-export {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}

.btn-import {
  background: #e8f4fd;
  color: #0077cc;
  border: 1px solid #b3d9f2;
}

.btn-export {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-import:hover,
.btn-export:hover { opacity: .85; }

/* Admin Card Actions */
.admin-card-actions {
  display: flex;
  gap: .3rem;
}

/* Hotel Card Body */
.admin-hotel-body {
  margin-top: .5rem;
}

.admin-hotel-body h4 {
  font-size: 1rem;
}

/* Preview Box */
.admin-preview-box {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.admin-preview-box h3 {
  color: var(--brand);
  margin-bottom: .75rem;
  font-size: 1rem;
}

.contact-preview-content {
  direction: rtl;
  line-height: 1.8;
  color: var(--ink);
}

/* Notification */
.admin-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #333;
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  z-index: 10000;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.admin-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Error notification */
.admin-notification-error {
  background: var(--bad);
}

/* Save button */
.btn-save {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  background: linear-gradient(135deg, #27ae60, #219a52);
  color: #fff;
}

.btn-save:hover { opacity: .85; }

/* Save All button */
.btn-save-all {
  background: #fff;
  color: var(--brand);
  border: none;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  margin-left: .5rem;
}

.btn-save-all:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Input with button */
.admin-input-with-btn {
  display: flex;
  gap: .5rem;
}

.admin-input-with-btn input {
  flex: 1;
  padding: .7rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  direction: rtl;
}

.admin-input-with-btn input:focus {
  outline: none;
  border-color: var(--brand);
}

.btn-media-pick {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}

.btn-media-pick:hover { opacity: .85; }

/* Thumbnails row */
.admin-thumbnails {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.admin-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e0e0e0;
}

.admin-thumb-video {
  width: 60px;
  height: 60px;
  background: #222;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

/* ======================== MEDIA PICKER MODAL ======================== */
.media-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.media-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.media-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #e8e8e8;
}

.media-modal-header h2 {
  color: var(--brand);
  font-size: 1.3rem;
}

.media-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0 .3rem;
  line-height: 1;
}

.media-modal-close:hover { color: var(--bad); }

.media-filter-bar {
  display: flex;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.media-filter-btn {
  background: #f0f0f0;
  border: none;
  padding: .4rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
}

.media-filter-btn.active {
  background: var(--brand);
  color: #fff;
}

.media-picker-grid {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.media-folder-group {
  margin-bottom: 1.5rem;
}

.media-folder-title {
  color: var(--brand);
  font-size: 1rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #f0f0f0;
}

.media-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: .5rem;
}

.media-item {
  position: relative;
  border: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: #f5f5f5;
}

.media-item:hover {
  border-color: #ccc;
  transform: scale(1.03);
}

.media-item.selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(255,133,45,.3);
}

.media-item input[type="checkbox"] {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

.media-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.media-video-thumb {
  width: 100%;
  height: 80px;
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.media-video-thumb span { font-size: 1.5rem; }
.media-video-thumb small { font-size: .6rem; margin-top: .2rem; opacity: .7; }

.media-item-name {
  display: block;
  font-size: .65rem;
  color: var(--muted);
  text-align: center;
  padding: .2rem .3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-modal-footer {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 2px solid #e8e8e8;
}

/* ======================== RICH TEXT EDITOR ======================== */
.rich-toolbar {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.rich-toolbar button {
  background: #fff;
  border: 1px solid #ddd;
  padding: .35rem .6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .95rem;
  font-family: inherit;
  transition: background .2s;
  min-width: 32px;
  text-align: center;
}

.rich-toolbar button:hover {
  background: #e8e8e8;
}

.rich-separator {
  width: 1px;
  height: 24px;
  background: #ddd;
  margin: 0 .2rem;
}

.rich-editor {
  min-height: 200px;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
  font-size: .95rem;
  font-family: inherit;
  line-height: 1.8;
  direction: rtl;
  outline: none;
  transition: border-color .2s;
}

.rich-editor:focus {
  border-color: var(--brand);
}

/* Emoji Picker */
.emoji-container {
  position: relative;
}

.emoji-picker {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: .5rem;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: .2rem;
  width: 320px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 6px 25px rgba(0,0,0,.15);
}

.emoji-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: .3rem;
  border-radius: 6px;
  transition: background .15s;
}

.emoji-btn:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .admin-tabs {
    gap: .35rem;
  }
  .admin-tab {
    padding: .5rem .8rem;
    font-size: .85rem;
  }
  .admin-form-row {
    flex-direction: column;
    gap: 0;
  }
  .admin-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .media-items {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  .media-modal-content {
    max-height: 95vh;
  }
  .emoji-picker {
    width: 260px;
    grid-template-columns: repeat(8, 1fr);
    right: 0;
    left: auto;
  }
  .admin-input-with-btn {
    flex-direction: column;
  }
}
