body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f6f8;
  margin: 0;
}

/* Layout */
.card-container {
  display: flex;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap; /* مهم */
  justify-content: center; /* center align */
}

/* Card */
.room-card {
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.room-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Image Zoom on Hover */
.room-card:hover img {
  transform: scale(1.1);
}

/* Badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2daae1;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* Content */
.card-content {
  padding: 18px;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

/* Tags */
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags span {
  background: #eef4f8;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.card-footer h4 {
  color: #1e88e5;
  margin: 0;
}

.card-footer h4 span {
  font-size: 12px;
  color: #777;
}

.card-footer a {
  text-decoration: none;
  color: #1e88e5;
  font-weight: 500;
  transition: 0.3s;
}

.card-footer a:hover {
  letter-spacing: 1px;
}

/* 🔥 Responsive Breakpoints */

/* Tablet */
@media (max-width: 1024px) {
  .card-container {
    padding: 30px;
  }

  .room-card {
    width: 45%; /* 2 cards per row */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .card-container {
    padding: 20px;
  }

  .room-card {
    width: 100%; /* 1 card per row */
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* SECTION */
.experience-section {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #1eaedb, #0e94b7); */
  color: #fff;
  text-align: center;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* TEXT */
.tag {
  letter-spacing: 2px;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

h1 span {
  color: #8fdcff;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
  line-height: 1.6;
}

/* CARDS */
.card-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* BUTTON */
.cta-btn {
  margin-top: 50px;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  background: #e5e7eb;
  color: #0e94b7;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .card-wrapper {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 14px;
  }
}

/* SECTION */
.features_room {
  padding: 80px 20px;
  background: #f8f9fb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section_title {
  text-align: center;
  margin-bottom: 50px;
}

.section_title span {
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
}

.section_title h2 {
  font-size: 36px;
  margin-top: 10px;
}

/* GRID */
.rooms_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.room_card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.room_card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* CONTENT */
.room_content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}

.room_content span {
  font-size: 13px;
  opacity: 0.8;
}

.room_content h3 {
  font-size: 20px;
  margin: 5px 0 10px;
}

.room_content a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  transition: 0.3s;
}

.room_content a:hover {
  color: #f1c40f;
  border-color: #f1c40f;
}

/* HOVER EFFECT */
.room_card:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rooms_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rooms_grid {
    grid-template-columns: 1fr;
  }

  .section_title h2 {
    font-size: 26px;
  }
}

/* /////////////// */
/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #eef3f7;
}

/* SECTION */
.dining-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.dining-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.tag {
  color: #1eaedb;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.dining-content h2 {
  font-size: 40px;
  margin: 15px 0;
  line-height: 1.3;
}

.dining-content h2 span {
  color: #2ea9df;
}

.desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FEATURES */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon {
  width: 45px;
  height: 45px;
  background: #1eaedb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
  color: #777;
}

/* CTA */
.cta-link {
  display: inline-block;
  margin-top: 25px;
  color: #1eaedb;
  text-decoration: none;
  font-weight: 600;
}

.cta-link:hover {
  text-decoration: underline;
}

/* IMAGE */
.dining-image {
  position: relative;
}

.dining-image img {
  width: 100%;
  border-radius: 20px;
  height: 420px;
  object-fit: cover;
}

/* FLOATING BOX */
.meal-box {
  position: absolute;
  bottom: -25px;
  left: 30px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.meal-icon {
  font-size: 22px;
  color: #1eaedb;
}

.meal-box span {
  font-size: 13px;
  color: #888;
}

.meal-box h4 {
  font-size: 16px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .dining-grid {
    grid-template-columns: 1fr;
  }

  .dining-image img {
    height: 350px;
  }

  .meal-box {
    left: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .dining-content h2 {
    font-size: 28px;
  }

  .desc {
    font-size: 14px;
  }

  .meal-box {
    position: static;
    margin-top: 15px;
  }
}

/* ////////////////////////////// */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #0b0f14;
}

/* SECTION */
.cta-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* BACKGROUND CIRCLES */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-section::before {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -150px;
}

.cta-section::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
}

/* CONTAINER */
.cta-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* BADGE */
.top-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* HEADING */
.cta-container h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-container h1 span {
  color: #2ea9df;
}

/* DESCRIPTION */
.cta-desc {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 16px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* PRIMARY BUTTON */
.primary {
  background: #2ea9df;
  color: #fff;
}

.primary:hover {
  background: #1c8fc4;
}

/* SECONDARY BUTTON */
.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* FEATURES */
.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #aaa;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-container h1 {
    font-size: 32px;
  }

  .cta-desc {
    font-size: 14px;
  }
}

/* //////////////////////////// */
/* SECTION */
.about_area {
  padding: 80px 20px;
  background: #dbf1ff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.tag {
  color: #1eaedb;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.about_info h2 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* ICON */
.icon {
  width: 45px;
  height: 45px;
  background: #e6f6ff;
  color: #1eaedb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.feature-item:hover .icon {
  background: #1eaedb;
  color: #fff;
}

/* BUTTON */
.btn-about {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: #1eaedb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-about:hover {
  background: #1594be;
}

/* IMAGES */
.about_images {
  position: relative;
}

.about_images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* OVERLAP EFFECT */
.img1 {
  width: 80%;
}

.img2 {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 65%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .img2 {
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .about_info h2 {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ////// 
*/
.whatsapp-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-box i {
  font-size: 20px;
}

.whatsapp-box:hover {
  transform: translateY(-3px);
}

.whatsapp-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: floatWhatsApp 3s ease-in-out infinite;
  transition: 0.3s;
}

/* Floating */
@keyframes floatWhatsApp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Pulse Glow */
.whatsapp-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ///booknow// */
/* MODAL */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* BOX */
.booking-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

/* CLOSE */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* FORM */
.booking-content h3 {
  margin-bottom: 20px;
}

.booking-content input,
.booking-content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* BUTTON */
.booking-content button {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.booking-content button i {
  margin-right: 5px;
}
/* .../// */
.row2 {
  display: flex;
  gap: 12px;
}

.rowlay1 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#bookingForm input,
#bookingForm select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

/* ///////////////////////// */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  margin: auto;
  width: 80%;
  max-width: 700px;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* // */

.offers_area {
  position: relative;
  background: #000; /* black background */
  overflow: hidden;
}

/* Canvas layer */
#chainCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Keep content above */
.offers_area .con {
  position: relative;
  z-index: 2;
}
/* //////////////////////////// */
.dining-section {
  position: relative;
  background: #000;
  overflow: hidden;
}

/* MAIN WAVE */
.dining-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  bottom: 0;
  left: -50%;
  background: repeating-radial-gradient(
    circle at 50% 100%,
    rgba(255, 255, 255, 0.08) 0px,
    rgba(255, 255, 255, 0.08) 2px,
    transparent 3px,
    transparent 20px
  );
  animation: waveMove 10s linear infinite;
  opacity: 0.6;
}

/* SECOND LAYER (DEPTH 🔥) */
.dining-section::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 300px;
  bottom: 20px;
  left: -50%;
  background: repeating-radial-gradient(
    circle at 50% 100%,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 2px,
    transparent 3px,
    transparent 25px
  );
  animation: waveMoveReverse 14s linear infinite;
  opacity: 0.5;
}

/* Animations */
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(25%);
  }
}

@keyframes waveMoveReverse {
  0% {
    transform: translateX(25%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Keep content above */
.dining-section .container {
  position: relative;
  z-index: 2;
}

/* //////////////// */
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.hero-content h1 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero-content p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.hero-buttons {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1s;
}

.hero-features span {
  display: inline-block;
  animation: fadeUp 0.6s ease forwards;
}

.hero-features span:nth-child(1) {
  animation-delay: 1.2s;
}
.hero-features span:nth-child(2) {
  animation-delay: 1.4s;
}
.hero-features span:nth-child(3) {
  animation-delay: 1.6s;
}
.hero-overlay {
  opacity: 0;
  animation: fadeOverlay 1s ease forwards;
}

@keyframes fadeOverlay {
  to {
    opacity: 1;
  }
}
