/* ========== HERO SECTION - PERFECT VERSION ========== */
@font-face {
  font-family: "CabinBold";
  src: url("../fonts/Cabin-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "CabinMedium";
  src: url("../fonts/Cabin-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "CabinRegular";
  src: url("../fonts/Cabin-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "CabinSemibold";
  src: url("../fonts/Cabin-SemiBold.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection {
  background-color: #6e9060;
  color: #ebebeb;
}

::-webkit-scrollbar {
  width: 6px;
  height: 10px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #ffffff;
  border: 10px solid #6e9060;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
  background: #ffffff;
}
::-webkit-scrollbar-track {
  background: #ffffff !important;
}
::-webkit-scrollbar-track:hover {
  background: yellow;
}
::-webkit-scrollbar-track:active {
  background: blue;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
button {
  border: 1px solid #676767;
}

#hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 10px 28px;
  background: #ffffff;
}

.carousel {
  position: absolute;
  top: 10px;
  left: 28px;
  right: 28px;
  bottom: 10px;
  width: calc(100% - 56px);
  height: calc(100% - 20px);
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

/* Overlay - Dark layer on top of carousel */
.overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 10vh, 80px) 20px 10px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.overlay h1 {
  color: #fff;
  text-align: center;
  font-family: "CabinBold";
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 20px;
  max-width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

.overlay > p {
  color: #fff;
  margin-top: clamp(20px, 3vh, 30px);
  text-align: center;
  font-family: "CabinRegular";
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  max-width: min(700px, 90%);
  padding: 0 15px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 3;
}

/* Hero Button */
.hero-button {
  display: inline-flex;
  padding: clamp(10px, 1.5vh, 14px) clamp(20px, 3vw, 32px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(54.2px);
  -webkit-backdrop-filter: blur(54.2px);
  color: #fff;
  font-family: "CabinMedium";
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  cursor: pointer;
  margin: clamp(15px, 2.5vh, 20px) 0 clamp(25px, 4vh, 40px);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  z-index: 3;
}

.hero-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

/* Slide Navigation Dots */
.slide-navigation {
  display: flex;
  gap: 14px;
  margin-bottom: clamp(30px, 5vh, 45px);
  position: relative;
  z-index: 3;
}

.slide-dot {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  outline: inherit;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.slide-dot::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}

.slide-dot.active {
  background-color: #fff;
  width: 32px;
  border-radius: 6px;
}

.slide-dot:hover {
  background-color: rgba(255, 255, 255, 0.75);
  transform: scale(1.1);
}

.slide-dot:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.slide-dot:active {
  transform: scale(0.95);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========== REGISTER BOX ========== */
.register-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: min(96%, 1200px);
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

.one-side-hero {
  padding: clamp(16px, 3vw, 22px) clamp(12px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #fff;
  font-family: "CabinRegular";
  transition: background-color 0.3s;
  /* border-right: 1px solid #f0f0f0; */
}

.one-side-hero:last-child {
  border-right: none;
}

.one-side-hero > p,
.one-side-hero > label {
  color: #000;
  font-family: "CabinRegular";
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.button-hero-register {
  display: flex;
  padding: clamp(8px, 1.5vw, 10px) clamp(10px, 2vw, 12px);
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  font-family: "CabinRegular";
}

.button-hero-register:hover {
  border-color: #6e9060;
}

.button-hero-register i {
  font-size: clamp(1rem, 2vw, 1.08rem);
  color: #888;
  flex-shrink: 0;
}

.button-hero-register span {
  color: #888;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
}

.register-button {
  background: #6e9060;
  border: none;
  justify-content: center;
}

.register-button:hover {
  background: #5a7850;
  transform: translateY(-1px);
}

.register-button i {
  transform: rotate(-135deg);
  color: white !important;
}

.register-button span {
  color: white !important;
  font-weight: 500;
}

/* ========== SOCIAL ICONS ========== */
.social-icons {
  position: absolute;
  right: clamp(15px, 3vw, 35px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vh, 16px);
}

.social-icon {
  width: clamp(36px, 5vw, 40px);
  height: clamp(36px, 5vw, 40px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.social-icon a{
  color: #6e9060;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
  .register-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .one-side-hero:nth-child(2) {
    border-right: none;
  }

  .one-side-hero:nth-child(3) {
    /* border-top: 1px solid #f0f0f0; */
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  #hero-section {
    padding: 8px 16px;
  }

  .carousel {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }

  .overlay {
    border-radius: 16px;
  }

  .social-icons {
    right: 15px;
    gap: 12px;
  }
}

/* Mobile Landscape & Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .register-box {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .one-side-hero {
    border-right: none;
    /* border-bottom: 1px solid #f0f0f0; */
  }

  .one-side-hero:last-child {
    border-bottom: none;
  }

  .overlay h1 {
    margin-top: 10px;
  }

  .overlay > p {
    margin-top: 15px;
  }

  .hero-button {
    margin: 15px 0 25px;
  }

  .slide-navigation {
    margin-bottom: 25px;
  }
}

/* Mobile (max 575px) */
@media (max-width: 575px) {
  #hero-section {
    padding: 6px 12px;
    min-height: auto;
  }

  .carousel {
    left: 12px;
    right: 12px;
    top: 6px;
    bottom: 6px;
    width: calc(100% - 24px);
    height: calc(100% - 12px);
    border-radius: 12px;
  }

  .overlay {
    padding: 30px 15px 10px;
    border-radius: 12px;
    min-height: auto;
  }

  .overlay h1 {
    font-size: 1.75rem;
  }

  .social-icons {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 20px;
    gap: 12px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .register-box {
    margin-top: 15px;
  }

  .one-side-hero {
    padding: 16px 18px;
  }
}

/* Very Small Mobile (max 375px) */
@media (max-width: 375px) {
  .overlay h1 {
    font-size: 1.5rem;
  }

  .overlay > p {
    font-size: 0.875rem;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .slide-dot {
    width: 9px;
    height: 9px;
  }

  .slide-dot.active {
    width: 26px;
  }
}
/* ========== REGISTER BOX (NATIVE INPUTS) ========== */
#reservation-form.register-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: #fff;
  border-radius: 10px;
  overflow: visible;
  width: min(96%, 1200px);
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.one-side-hero {
  padding: clamp(16px, 3vw, 22px) clamp(12px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #fff;
  font-family: "CabinRegular", sans-serif;
  border-radius: 20px;
}

.one-side-hero:last-child {
  border-right: none;
}

.one-side-hero label {
  color: #000;
  font-family: "CabinRegular", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
  display: block;
}

/* Input wrapper with icon */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 12px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #888;
  pointer-events: none;
  z-index: 1;
}

/* Date input styling */
.date-input {
  width: 100%;
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 14px);
  padding-left: 42px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  font-family: "CabinRegular", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 48px;
}

.date-input:hover {
  border-color: #6e9060;
  box-shadow: 0 2px 8px rgba(110, 144, 96, 0.15);
}

.date-input:focus {
  outline: none;
  border-color: #6e9060;
  box-shadow: 0 0 0 3px rgba(110, 144, 96, 0.1);
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.date-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Select styling */
.guest-select {
  width: 100%;
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 14px);
  padding-left: 42px;
  padding-right: 40px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  font-family: "CabinRegular", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.guest-select:hover {
  border-color: #6e9060;
  box-shadow: 0 2px 8px rgba(110, 144, 96, 0.15);
}

.guest-select:focus {
  outline: none;
  border-color: #6e9060;
  box-shadow: 0 0 0 3px rgba(110, 144, 96, 0.1);
}

/* Firefox select arrow fix */
.guest-select::-ms-expand {
  display: none;
}

/* Submit button */
.button-hero-register {
  display: flex;
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 14px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  font-family: "CabinRegular", sans-serif;
  width: 100%;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  position: relative;
}

.register-button {
  background: #6e9060;
  color: #fff;
}

.register-button:hover {
  background: #5a7850;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(110, 144, 96, 0.3);
}

.register-button:active {
  transform: translateY(0);
}

.register-button i {
  transform: rotate(-135deg);
  color: #fff;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.register-button span {
  color: #fff;
  font-weight: 500;
}

/* Loading state */
.register-button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.register-button.loading span {
  opacity: 0;
}

.register-button.loading i {
  opacity: 0;
}

.register-button.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* ========== RESPONSIVE - RESERVATION BOX ONLY ========== */

/* Tablet Landscape */
@media (max-width: 1199px) {
  #reservation-form.register-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .one-side-hero:nth-child(2) {
    border-right: none;
  }

  .one-side-hero:nth-child(3),
  .one-side-hero:nth-child(4) {
  }
}

/* Mobile */
@media (max-width: 767px) {
  #reservation-form.register-box {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .one-side-hero {
    border-right: none;
  }

  .one-side-hero:last-child {
    border-bottom: none;
  }

  .one-side-hero:nth-child(3),
  .one-side-hero:nth-child(4) {
    border-top: none;
  }
}

/* Mobile small */
@media (max-width: 575px) {
  #reservation-form.register-box {
    margin-top: 15px;
  }

  .one-side-hero {
    padding: 16px 18px;
  }
}

/* About us section start */
/* ========== ABOUT US SECTION ========== */
#aboutus-section {
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

#aboutus-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(110, 144, 96, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.aboutus-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ========== LEFT SIDE (TEXT) ========== */
.aboutus-left-side {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vh, 24px);
}

.aboutus-label {
  display: inline-block;
  color: #6e9060;
  font-family: "CabinSemiBold", sans-serif;
  font-weight: 600;
  padding: 8px 20px;
  background-color: transparent;
  border-radius: 30px;
  width: fit-content;
  font-size: 16px !important;
  border: 1px solid rgba(110, 144, 96, 0.2);
}

.aboutus-title {
  font-family: "CabinBold", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.aboutus-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aboutus-text p {
  color: #555;
  font-family: "CabinRegular", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.more-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 2vh, 14px) clamp(24px, 3vw, 32px);
  background-color: #6e9060;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "CabinSemiBold", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: clamp(8px, 2vh, 16px);
}

.more-button:hover {
  background-color: #5a7850;
  transform: translateY(-1px);
}

.more-button:active {
  transform: translateY(0);
}

.more-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.more-button:hover i {
  transform: translateX(4px);
}

/* ========== RIGHT SIDE (LOGO) ========== */
.aboutus-right-side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(110, 144, 96, 0.05) 0%,
    rgba(110, 144, 96, 0.15) 100%
  );
  border-radius: 24px;
  padding: clamp(40px, 8vw, 60px);
  animation: floatLogo 6s ease-in-out infinite;
}

.logo-container::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;

  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.logo-container:hover::before {
  opacity: 1;
}

.aboutus-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.logo-container:hover .aboutus-logo {
  transform: scale(1.02);
}

/* ========== DECORATIVE ELEMENTS ========== */
.aboutus-right-side::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(110, 144, 96, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .aboutus-container {
    gap: 50px;
  }

  .logo-container {
    max-width: 400px;
  }
}

/* Mobile Landscape / Tablet Portrait */
@media (max-width: 768px) {
  #aboutus-section {
    padding: clamp(50px, 8vh, 70px) clamp(20px, 4vw, 30px);
  }

  .aboutus-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aboutus-right-side {
    order: -1;
  }

  .logo-container {
    max-width: 350px;
    padding: 40px;
  }

  .aboutus-title {
    font-size: 2rem;
  }

  .aboutus-text p {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 480px) {
  #aboutus-section {
    padding: 40px 20px;
  }

  .aboutus-label {
    padding: 6px 16px;
  }

  .aboutus-title {
    font-size: 1.75rem;
  }

  .aboutus-text {
    gap: 14px;
  }

  .aboutus-text p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .more-button {
    padding: 12px 24px;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }

  .logo-container {
    max-width: 280px;
    padding: 30px;
  }
}

/* Galery section start */

#discover-section {
  padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 120px);
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.discover-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.discover-header {
  text-align: left;
  margin-bottom: clamp(40px, 6vh, 60px);
}

.discover-label {
  display: inline-block;
  color: #6e9060;
  font-family: "CabinSemiBold", sans-serif;
  font-size: 16px !important;
  font-weight: 600;
  padding: 8px 20px;
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid rgba(110, 144, 96, 0.2);
  margin-bottom: 16px;
}

.discover-title {
  color: #1a1a1a;
  font-family: "CabinBold", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.contact-section .label-box{
  text-align: start;
}
.room-list{
  gap: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.breadcrumb-text  h2{
  color: #1a1a1a;
  font-family: "CabinBold", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 10px;
}

/* ========== GALLERY GRID ========== */
.discover-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 80px);
  gap: 16px;
  position: relative;
}

/* Card Base Styles */
.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Card Overlay */
.card-overlayyy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 3vw, 24px);
  z-index: 2;
}

.card-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.95);
  font-family: "CabinSemiBold", sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: max-content;
}

.gallery-card:hover .card-tag {
  background-color: #6e9060;
  color: #fff;
  transform: translateY(-1px);
}

/* ========== GRID POSITIONING ========== */

/* Card 1 - Restaurant Exterior (Large - Bottom Left) */
.card-1 {
  grid-column: 1 / 6;
  grid-row: 3 / 6;
}

/* Card 2 - Corner Suite Room (Medium - Top Center) */
.card-2 {
  grid-column: 5 / 10;
  grid-row: 1 / 4;
}

/* Card 3 - Restaurant Food (Small - Top Right) */
.card-3 {
  grid-column: 9 / 12;
  grid-row: 2 / 5;
}

/* Card 4 - Restaurant Interior (Medium - Bottom Right) */
.card-4 {
  grid-column: 6 / 11;
  grid-row: 5 / 8;
}

/* ========== ANIMATIONS ========== */
.gallery-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.card-1 {
  animation-delay: 0.1s;
}

.card-2 {
  animation-delay: 0.2s;
}

.card-3 {
  animation-delay: 0.3s;
}

.card-4 {
  animation-delay: 0.4s;
}

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

/* Hover ripple effect */
.gallery-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  z-index: 0;
}

.gallery-card:active::after {
  width: 300px;
  height: 300px;
}

/* ========== RESPONSIVE ========== */

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
  .discover-gallery {
    grid-template-rows: repeat(8, 70px);
    gap: 14px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  #discover-section {
    padding: clamp(50px, 8vh, 80px) clamp(20px, 4vw, 40px);
  }

  .discover-gallery {
    grid-template-rows: repeat(8, 60px);
    gap: 12px;
  }

  .card-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

/* Mobile Landscape / Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .discover-header {
    margin-bottom: 40px;
  }

  .discover-title {
    font-size: 1.75rem;
  }

  .discover-gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(12, 60px);
    gap: 10px;
  }

  /* Rearrange cards for mobile */
  .card-1 {
    grid-column: 1 / 7;
    grid-row: 1 / 5;
  }

  .card-2 {
    grid-column: 1 / 4;
    grid-row: 5 / 8;
  }

  .card-3 {
    grid-column: 4 / 7;
    grid-row: 5 / 8;
  }

  .card-4 {
    grid-column: 1 / 7;
    grid-row: 8 / 13;
  }
}

/* Mobile (max 575px) */
@media (max-width: 575px) {
  #discover-section {
    padding: 40px 20px;
  }

  .discover-label {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .discover-title {
    font-size: 1.5rem;
  }

  .discover-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  /* Stack cards vertically */
  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    grid-column: 1;
    grid-row: auto;
    min-height: 250px;
  }

  .card-1 {
    min-height: 300px;
  }

  .card-overlayyy {
    padding: 16px;
  }

  .card-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

/* Very Small Mobile (max 375px) */
@media (max-width: 375px) {
  .discover-title {
    font-size: 1.35rem;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    min-height: 220px;
  }

  .card-1 {
    min-height: 270px;
  }
}

/* Reduce animations on mobile for performance */
@media (max-width: 767px) {
  .gallery-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .gallery-card:hover {
    transform: translateY(-4px);
  }

  .gallery-card:hover img {
    transform: scale(1.05);
  }
}
/* ========== REZERV SECTION START ========== */
/* ========== REZERV SECTION START ========== *//* ========== REZERV SECTION START ========== */
#reservation-section {
  padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 120px);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.reservation-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* ========== HEADER WITH NAVIGATION ========== */
.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 6vh, 60px);
  gap: 20px;
}

.header-left {
  flex: 1;
}

.reservation-label {
  display: inline-block;
  color: #6e9060;
  font-family: "CabinSemiBold", sans-serif;
  font-size: 16px !important;
  font-weight: 600;
  padding: 8px 20px;
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid rgba(110, 144, 96, 0.2);
  margin-bottom: 16px;
}

.reservation-title {
  color: #1a1a1a;
  font-family: "CabinBold", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ========== NAVIGATION ARROWS ========== */
.reservation-navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(110, 144, 96, 0.2);
  background-color: #f0f0f0;
  color: #a0a0a0;
}

.nav-arrow.active-nav {
  background-color: #6e9060 !important;
  color: white !important;
  border-color: #6e9060;
}

.nav-arrow:disabled {
  background-color: #f0f0f0 !important;
  color: #cccccc !important;
  cursor: not-allowed;
}

.nav-arrow:hover:not(:disabled) {
  transform: scale(1.05);
}

/* ========== SLIDER WRAPPER ========== */
.reservation-slider-wrapper {
  position: relative;
  overflow-x: hidden; /* Desktopda oxlarla idarə */
  width: 100%;
  padding: 20px 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reservation-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.reservation-slider {
  display: flex;
  gap: 24px;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESERVATION CARD (400PX) ========== */
.reservation-card {
  flex: 0 0 400px;
  background: transparent;
  border-radius: 24px;
  overflow: visible;
  transition: all 0.4s ease;
  padding: 10px;
  border: 1px solid #cfdaca;
  box-sizing: border-box;
}

.reservation-card:hover {
  transform: translateY(-8px);
  border-color: #6e9060;
}

/* ========== CARD IMAGE & OVERLAY ========== */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 0 0 20px 20px;
}

.card-title {
  color: #ffffff;
  font-family: "CabinBold", sans-serif;
  font-size: 1.6rem;
  margin: 0;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.85rem;
  font-family: "CabinRegular";
}

/* ========== RESERVE BUTTON ========== */
.reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background-color: white;
  border-radius: 12px;
  color: #2c2c2c;
  font-family: "CabinBold";
  text-decoration: none;
  transition: 0.3s;
}

.reserve-btn:hover {
  background-color: #6e9060;
  color: white;
}

/* ========== MOBİL OPTİMİZASİYA (ƏL İLƏ SCROLL) ========== */
@media (max-width: 768px) {
  .reservation-navigation {
    display: none !important; /* Oxları gizlədirik */
  }

  .reservation-slider-wrapper {
    overflow-x: auto; /* Əllə sürüşdürməni açırıq */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; /* Kartların yapışma effekti */
    margin: 0 -20px;
    padding: 10px 20px;
  }

  .reservation-slider {
    gap: 16px;
  }

  .reservation-card {
    flex: 0 0 320px; /* Mobildə daha uyğun en */
    scroll-snap-align: start;
  }

  .card-image-wrapper {
    height: 400px;
  }
}

/* ========== 320PX EKREANLAR ÜÇÜN ========== */
@media (max-width: 320px) {
  #reservation-section {
    padding: 30px 10px;
  }

  .reservation-slider-wrapper {
    margin: 0 10px;
    padding: 10px;
  }

  .reservation-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .card-image-wrapper {
    height: 340px;
  }

  .card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .feature {
    font-size: 0.7rem;
  }
}

/* Contact Section Start */ /* --- ANA KONTEYNER --- */
#contact-section {
  display: flex;
  flex-direction: column;
  align-items: center; /* Ekran böyüdükdə boxun mərkəzdə qalmasını təmin edir */
  background: #f5f6f7;
  padding: 32px;
  width: 100%;
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: "CabinRegular";
}

#contact-section h1 {
  font-size: 36px;
  font-family: "CabinRegular";
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}

/* --- ƏSAS KART (BOX) --- */
.contact-downcard {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  margin-top: 40px;
  width: 100%; /* Sola və sağa tam sıxılması üçün */
  max-width: 1400px; /* Çox böyük ekranlarda boxun həddindən artıq uzanmaması üçün limit */
  background: white;
  border-radius: 15px;
  overflow: hidden; /* Künclərin səliqəli görünməsi üçün */
}

/* --- SOL TƏRƏF (YAŞIL HİSSƏ) --- */
.contact-box-left-side {
  background-color: #374830;
  color: white;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
}

.contact-box-left-side::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-box-left-side > p {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  font-family: "CabinRegular";
  letter-spacing: 1px;
}

.socuial-icon-contact {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-family: "CabinRegular";
}

.social-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.social-icon-box i {
  font-size: 18px;
  color: white;
}

.text-box-conntact span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.text-box-conntact p {
  font-size: 16px;
  color: white;
  line-height: 1.4;
}

.down-side-contact {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.txt-down-side {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.txt-down-side span {
  width: 30px;
  height: 1px;
  background: white;
  margin-right: 10px;
}

.txt-down-side p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.social-icon-down-side-box {
  display: flex;
  gap: 12px;
}

.social-icon-box-down-side {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid white;
}
.social-icon-box-down-side a {
  color: rgb(231, 231, 231);
}

.social-icon-box-down-side:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* --- SAĞ TƏRƏF (FORM HİSSƏSİ) --- */
.contact-box-right-side {
  background: white;
  padding: 40px;
}

.contact-box-right-side > p {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* --- REYTİNQ VƏ FORMA ELEMENTLƏRİ --- */
.rating-part {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.rating-number {
  width: 45px;
  height: 45px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-family: "CabinRegular";
  color: #666;
}

.rating-number:hover,
.rating-number.active {
  background: #3d5a3d;
  border-color: #3d5a3d;
  color: white;
}

.first-contact-label,
.second-contact-label {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.second-contact-label {
  grid-template-columns: repeat(3, 1fr);
}

.label-box {
  display: flex;
  flex-direction: column;
}

.label-box label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.label-box input,
.third-contact-label textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: "CabinRegular";
  transition: all 0.3s ease;
}

.label-box input:focus,
.third-contact-label textarea:focus {
  outline: none;
  border-color: #3d5a3d;
}

.third-contact-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.third-contact-label textarea {
  min-height: 120px;
  resize: none;
}

.contact-box-right-side button {
  background: #3d5a3d;
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "CabinRegular";
}
.contact-box-right-side button i {
  transform: rotate(270deg);
}

.contact-box-right-side button:hover {
  background: #2d4a2d;
  transform: translateY(-1px);
}
/* ========== PROFESSIONAL RESPONSIVE DESIGN ========== */

/* 1. Böyük ekranlar üçün optimallaşdırma (1400px - 1025px) */
@media (max-width: 1400px) {
  #contact-section {
    padding: 60px 40px;
  }
  
  .contact-downcard {
    max-width: 1200px;
  }
}

/* 2. Planşetlər üçün (1024px - 769px) */
@media (max-width: 1024px) {
  .contact-downcard {
    grid-template-columns: 1fr; /* Sol və sağ tərəfi alt-alta gətirir */
    max-width: 800px;
  }

  .contact-box-left-side {
    border-radius: 15px 15px 0 0; /* Küncləri yuxarıya uyğunlaşdırır */
    padding: 40px;
  }

  .contact-box-right-side {
    border-radius: 0 0 15px 15px; /* Küncləri aşağıya uyğunlaşdırır */
    padding: 40px;
  }

  /* Planşetdə 3 sütunlu inputları 2 sütun edirik */
  .second-contact-label {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3. Mobil cihazlar üçün (768px - 481px) */
@media (max-width: 768px) {
  #contact-section {
    padding: 40px 20px;
  }

  #contact-section h1 {
    font-size: 28px;
  }

  .contact-box-left-side > p {
    font-size: 24px;
    margin-bottom: 25px;
  }

  /* Bütün grid-ləri tək sütuna keçiririk */
  .first-contact-label,
  .second-contact-label {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .rating-part {
    flex-wrap: wrap; /* Reytinq rəqəmləri sığmadıqda aşağı düşür */
    justify-content: flex-start;
  }

  .contact-box-right-side button {
    width: 100%; /* Düyməni mobildə tam en edir */
    justify-content: center;
  }
}

/* 4. Kiçik mobil ekranlar üçün (480px - 321px) */
@media (max-width: 480px) {
  .contact-box-left-side {
    padding: 30px 20px;
  }

  .contact-box-right-side {
    padding: 30px 20px;
  }

  .social-icon-box {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .text-box-conntact p {
    font-size: 14px;
  }

  .rating-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .down-side-contact {
    margin-top: 30px;
  }
}

/* 5. Ultra kiçik ekranlar (320px və aşağı) */
@media (max-width: 320px) {
  #contact-section h1 {
    font-size: 22px;
  }

  .contact-box-left-side > p {
    font-size: 20px;
  }

  .social-icon-down-side-box {
    gap: 8px;
  }

  .social-icon-box-down-side {
    width: 36px;
    height: 36px;
  }
}

/* Toxunmatik ekranlar üçün hover optimallaşdırması */
@media (hover: none) {
  .social-icon-box-down-side:hover,
  .rating-number:hover,
  .contact-box-right-side button:hover {
    transform: none; /* Mobildə klikləyəndə elementin sürüşməməsi üçün */
  }
}
/* Yeni update */

/* Ümumi Bölmə */
.reviews-section {
  background-color: #fcfcfc;
  padding: 60px 0;
  font-family: "CabinRegular";
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  font-family: "CabinRegular";
  margin-bottom: 5px;
}

.breadcrumb-nav {
  font-size: 14px;
  color: #999;
}

.breadcrumb-nav span {
  color: #000;
  font-weight: 600;
}

/* Rəy Kartı */
.review-card {
  display: flex;
  background-color: #fff;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
}

/* Sol Tərəf - Yaşıl Reytinq Qutusu */
.review-rating-side {
  background-color: #384a38; /* Şəkildəki tünd yaşıl */
  width: 250px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reytinq Kvadratı */
.rating-box {
  background-color: #d6d6d6; /* Açıq boz */
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 38px;
  font-weight: 500;
  color: #222;
}

/* Sağ Tərəf - Məzmun */
.review-content-side {
  padding: 35px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Başlıqlar (Labels) */
.info-label {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase; /* Şəkildəki kimi böyük hərflərlə ola bilər */
  letter-spacing: 0.5px;
}

/* Müştəri Adı */
.customer-name {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Meta Məlumatlar (Grid sistemi) */
.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 bərabər sütun */
  gap: 20px;
  width: 80%; /* Şəkildə tam eni tutmur */
  margin-bottom: 30px;
}

.meta-value {
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.calendar-icon {
  color: #8f9fae;
  font-size: 16px;
}

/* Rəy Mətni */
.review-text {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin: 0;
}

/* Mobil Uyğunlaşdırma */
@media (max-width: 991px) {
  .review-card {
    flex-direction: column;
  }
  .review-rating-side {
    width: 100%;
    height: 120px;
  }
  .meta-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-content-side {
    padding: 25px;
  }
}
