@font-face {
  font-family: "CabinBold";
  src: url("/assets/font/Cabin-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "CabinMedium";
  src: url("/assets/font/Cabin-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "CabinRegular";
  src: url("/assets/font/Cabin-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "CabinSemiBold";
  src: url("/assets/font/Cabin-SemiBold.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  background-color: #f5f5f5;
}
#navbar .nav-menu .nav-item .nav-link {
  text-transform: uppercase;
}
.navbar {
  background-color: #fff;
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 120px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav-logo img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  position: relative;
}

/* Hide mobile-only items on desktop */
.mobile-contact,
.mobile-lang {
  display: none;
}

.nav-link {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #5b8fcf;
}

/* Right Side Actions (Desktop) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Contact Button */
.contact-btn {
  background-color: #5b8fd0;
  color: #fff;
  padding: 11px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: #4a7ab8;
  transform: translateY(-1px);
}

/* Language Selector (Desktop) */
.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.language-selector:hover {
  background-color: #f8f8f8;
}

.flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.lang-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: 0.3px;
}

.language-selector i {
  font-size: 0.65rem;
  color: #888;
  transition: transform 0.3s;
}

.language-selector:hover i {
  transform: rotate(180deg);
}

/* Language Dropdown (Desktop) */
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 100;
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.lang-option:hover {
  background-color: #f0f7ff;
}

.lang-option img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
  padding: 8px;
}

.hamburger .bar {
  width: 26px;
  height: 2.5px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* X Animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: #5b8fd0;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #5b8fd0;
}

.hamburger:hover .bar {
  background-color: #5b8fd0;
}

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 10px 25px;
  }

  .nav-logo img {
    height: 60px;
  }

  /* Mobile Menu */
  .nav-actions {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: #fff;
    width: 280px;
    height: 100vh;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    gap: 0;
    padding: 80px 0 30px 0;
    overflow-y: auto;
    z-index: 10;
  }

  .nav-actions.active {
    right: 0;
  }

  /* Show mobile items */
  .mobile-contact,
  .mobile-lang {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0;
  }

  .nav-item {
    padding: 0;
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    display: block;
    width: 100%;
    padding: 18px 30px;
    color: #2c2c2c;
    border-bottom: 1px solid #f5f5f5;
  }

  .nav-link:hover {
    background-color: #f8f8f8;
    color: #5b8fd0;
  }

  /* Hide desktop buttons */
  .nav-actions > .contact-btn,
  .nav-actions > .language-selector {
    display: none;
  }

  /* Mobile Contact Button */
  .contact-btn-mobile {
    display: block;
    background-color: #5b8fd0;
    color: #fff;
    text-align: center;
    padding: 14px 30px;
    margin: 20px 30px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
  }

  .contact-btn-mobile:hover {
    background-color: #4a7ab8;
  }

  .mobile-contact {
    border: none;
  }

  /* Mobile Language Selector */
  .language-selector-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    border-top: 1px solid #f5f5f5;
  }

  .lang-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
  }

  .lang-btn:hover {
    background-color: #e8f3ff;
    border-color: #5b8fd0;
    transform: scale(1.1);
  }

  .lang-btn.active {
    background-color: #5b8fd0;
    border-color: #5b8fd0;
  }

  .lang-btn img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }

  /* Overlay */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
}
/* Footer Section Design */
#main-footer {
  background-color: #2c4461;
  color: white;
  padding: 60px 40px 0 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 80px;
  padding-bottom: 50px;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Footer Column Headings */
.footer-column h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  font-family: "CabinRegular", sans-serif;
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: "CabinRegular", sans-serif;
}

.footer-links ul li a i {
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

/* Footer Contact */
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact ul li i {
  font-size: 16px;
  margin-top: 4px;
  color: white;
  flex-shrink: 0;
}

.footer-contact ul li span,
.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "CabinRegular", sans-serif;
}

.footer-contact ul li a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 0;
  text-align: center;
  letter-spacing: 1px;
  line-break: 2px;
}

.footer-bottom p {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "CabinRegular", sans-serif;
  font-weight: 300;
  margin: 0;
  line-height: 20px;
}

.footer-bottom p a {
  color: white;
  text-decoration: none;
  font-family: "CabinRegular", sans-serif;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-bottom p a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-content {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  #main-footer {
    padding: 50px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  #main-footer {
    padding: 40px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-logo img {
    max-width: 180px;
  }

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #main-footer {
    padding: 35px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 30px;
    padding-bottom: 35px;
  }

  .footer-logo img {
    max-width: 160px;
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-links ul li a,
  .footer-contact ul li span,
  .footer-contact ul li a {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .footer-logo img {
    max-width: 140px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Start Header Section Design */
/* Header Section */
#header-section {
  position: relative;
  /* background: url("https://www.designdekko.com/uploads/blog/1712647897-luxurybedroominteiordesign.jpg")
    center/cover no-repeat; */
  background-image: url("../image/Backroung-image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  align-items: stretch;
  justify-content: center;
  padding: 140px 120px 40px;
  margin-top: 60px;
  min-height: 40vh !important;
  overflow: hidden;
}
.home-page {
  min-height: 90vh;
}
/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: linear-gradient(to right, rgba(25, 50, 80, 0.826) 0%, rgba(130, 95, 70, 0.244) 100%); 
  z-index: 1;
} */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#headerVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(25, 50, 80, 0.826) 0%, rgba(130, 95, 70, 0.244) 100%);
  z-index: 2;
}

#headerVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Header Content */
.header-content {
  position: relative;
  /* z-index: 2;
  max-width: 650px;
  margin-bottom: 80px; */
  color: white;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 80%;
  color: white;
  width: 100%;
}

.text-box {
  display: flex;
  gap: 5px;
}
.header-subtitle:last-child {
  color: white;
  margin-left: 5px;
}

.content-left {
  flex: 1;
  max-width: 90%;
}

.header-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  color: #78aef1;
  font-family: "CabinRegular", sans-serif;
  text-transform: uppercase;
}
/* .header-subtitle:last-child {
  color: white;
} */
.header-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 2px;
}

.header-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "CabinRegular", sans-serif;
  /* max-width: 580px; */
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.play-btn {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: center;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.play-btn:active {
  transform: scale(0.95);
}

/* FontAwesome ikonlar */
.play-btn i {
  font-size: 28px;
  color: white;
  transition: all 0.2s ease;
  position: absolute;
}

.play-btn .fa-play {
  margin-left: 4px;
  opacity: 1;
  transform: scale(1);
}

.play-btn .fa-pause {
  opacity: 0;
  transform: scale(0.8);
}

.play-btn.playing .fa-play {
  opacity: 0;
  transform: scale(0.8);
}

.play-btn.playing .fa-pause {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .content-left {
    max-width: 100%;
  }

  .header-title {
    font-size: 32px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .play-icon,
  .pause-icon {
    width: 22px;
    height: 22px;
  }
}

.btn {
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: #5b8dbe;
  color: white;
}

.btn-primary:hover {
  background-color: #4a7aad;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
  background-color: white;
  transform: translateY(-1px);
  color: #2c4461;
  border-color: white;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.booking-form {
  background: white;
  border-radius: 6px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Form Fields */
.form-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.field-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.field-icon {
  width: 18px;
  height: 18px;
  color: #5b8dbe;
  flex-shrink: 0;
}

.field-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.field-label {
  font-size: 12px;
  color: #666;
  font-family: "CabinRegular", sans-serif;
  font-weight: 500;
}

.date-input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-family: "CabinRegular", sans-serif;
  padding: 0;
  cursor: auto;
  width: 100%;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: auto;

  opacity: 0;
}

/* Form Arrow */
.form-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  flex-shrink: 0;
}

.form-arrow svg {
  width: 16px;
  height: 16px;
}

/* Form Divider */
.form-divider {
  width: 1px;
  height: 40px;
  background-color: #e5e5e5;
  flex-shrink: 0;
}

/* Guest Field */
.guest-field {
  min-width: 140px;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-btn {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid #ddd;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.counter-btn:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

.counter-btn svg {
  color: #666;
}

.guest-count {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  min-width: 16px;
  text-align: center;
  font-family: "CabinRegular", sans-serif;
}

/* Reserve Button */
.reserve-btn {
  padding: 14px 32px;
  background-color: #5b8dbe;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 1px;
  flex-shrink: 0;
  text-transform: capitalize;
}

.reserve-btn:hover {
  background-color: #4a7aad;
  transform: translateY(-1px);
}

/* ===== BÖYÜK EKRANLAR ÜÇÜN (1400px+) ===== */
@media (min-width: 1400px) {
  #header-section {
    min-height: 95vh;
    padding: 160px 150px 60px;
  }

  .header-content {
    /* max-width: 750px; */
    margin-bottom: 100px;
  }

  .header-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .header-title {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.15;
  }

  .header-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 680px;
  }

  .header-buttons {
    gap: 20px;
  }

  .btn {
    padding: 15px 36px;
    font-size: 15px;
    letter-spacing: 1.2px;
  }

  /* Booking Form */
  .booking-form-wrapper {
    max-width: 1100px;
  }

  .booking-form {
    padding: 24px 28px;
    gap: 20px;
    border-radius: 8px;
  }

  .form-field {
    gap: 14px;
  }

  .field-icon {
    width: 22px;
    height: 22px;
  }

  .field-label {
    font-size: 14px;
  }

  .date-input {
    font-size: 16px;
  }

  .form-arrow svg {
    width: 18px;
    height: 18px;
  }

  .form-divider {
    height: 50px;
  }

  .guest-field {
    min-width: 160px;
  }

  .counter-btn {
    width: 28px;
    height: 28px;
  }

  .guest-count {
    font-size: 16px;
    min-width: 20px;
  }

  .reserve-btn {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 6px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  #header-section {
    padding: 100px 80px 50px;
  }

  .header-content {
    max-width: 90%;
    gap: 30px;
  }

  .content-left {
    max-width: 70%;
  }

  .header-title {
    font-size: 38px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn i {
    font-size: 24px;
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 768px) {
  #header-section {
    padding: 80px 40px 40px;
    margin-top: 40px;
  }

  .home-page {
    min-height: 85vh;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 100%;
  }

  .content-left {
    max-width: 100%;
    width: 100%;
  }

  .header-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .header-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .header-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 10px;
  }

  .header-buttons {
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 12px;
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }

  .play-btn {
    width: 65px;
    height: 65px;
    align-self: center;
  }

  .play-btn i {
    font-size: 22px;
  }

  .play-btn .fa-play {
    margin-left: 3px;
  }
}

/* Mobile Medium (480px - 576px) */
@media (max-width: 576px) {
  #header-section {
    padding: 60px 25px 30px;
    margin-top: 30px;
  }

  .header-content {
    gap: 30px;
  }

  .header-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .header-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .header-description {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 0 5px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    min-width: auto;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn i {
    font-size: 20px;
  }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
  #header-section {
    padding: 50px 20px 25px;
  }

  .home-page {
    min-height: 80vh;
  }

  .header-title {
    font-size: 24px;
  }

  .header-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .header-buttons {
    gap: 8px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 12px;
  }

  .play-btn {
    width: 55px;
    height: 55px;
  }

  .play-btn i {
    font-size: 18px;
  }

  .play-btn .fa-play {
    margin-left: 2px;
  }
}

/* Çok kiçik ekranlar (<320px) */
@media (max-width: 320px) {
  #header-section {
    padding: 40px 15px 20px;
  }

  .header-title {
    font-size: 22px;
    letter-spacing: 0.5px;
  }

  .header-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 11px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn i {
    font-size: 16px;
  }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  #header-section {
    min-height: 100vh;
    padding: 40px 20px 20px;
  }

  .header-content {
    align-items: center;
  }

  .header-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .header-description {
    display: none;
  }

  .header-buttons {
    gap: 8px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* ===== ÇOX BÖYÜK EKRANLAR (1600px+) ===== */
@media (min-width: 1600px) {
  #header-section {
    padding: 180px 200px 80px;
  }

  .header-content {
    max-width: 850px;
    margin-bottom: 120px;
  }

  .header-subtitle {
    font-size: 15px;
    letter-spacing: 3.5px;
    margin-bottom: 22px;
  }

  .header-title {
    font-size: 60px;
    margin-bottom: 28px;
  }

  .header-description {
    font-size: 20px;
    line-height: 1.85;
    margin-bottom: 42px;
    max-width: 750px;
  }

  .btn {
    padding: 17px 42px;
    font-size: 16px;
  }

  .booking-form-wrapper {
    max-width: 1300px;
  }

  .booking-form {
    padding: 28px 35px;
    gap: 25px;
  }

  .field-icon {
    width: 24px;
    height: 24px;
  }

  .field-label {
    font-size: 15px;
  }

  .date-input {
    font-size: 17px;
  }

  .guest-field {
    min-width: 180px;
  }

  .counter-btn {
    width: 32px;
    height: 32px;
  }

  .guest-count {
    font-size: 18px;
  }

  .reserve-btn {
    padding: 20px 48px;
    font-size: 17px;
  }
}

/* ===== ULTRA BÖYÜK EKRANLAR (1920px+) ===== */
@media (min-width: 1920px) {
  #header-section {
    padding: 200px 250px 100px;
  }

  .header-content {
    max-width: 950px;
    margin-bottom: 140px;
  }

  .header-subtitle {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 24px;
  }

  .header-title {
    font-size: 68px;
    margin-bottom: 32px;
  }

  .header-description {
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 48px;
    max-width: 850px;
  }

  .header-buttons {
    gap: 24px;
  }

  .btn {
    padding: 18px 48px;
    font-size: 17px;
  }

  .booking-form-wrapper {
    max-width: 1500px;
  }

  .booking-form {
    padding: 32px 40px;
    gap: 30px;
    border-radius: 10px;
  }

  .field-icon {
    width: 26px;
    height: 26px;
  }

  .field-label {
    font-size: 16px;
  }

  .date-input {
    font-size: 18px;
  }

  .form-divider {
    height: 60px;
  }

  .guest-field {
    min-width: 200px;
  }

  .counter-btn {
    width: 34px;
    height: 34px;
  }

  .guest-count {
    font-size: 20px;
  }

  .reserve-btn {
    padding: 22px 54px;
    font-size: 18px;
  }
}

/* Responsive Design - Kiçik Ekranlar */
@media (max-width: 1200px) {
  #header-section {
    padding: 40px 40px 120px;
  }

  .booking-form {
    max-width: 850px;
  }
}

@media (max-width: 992px) {
  #header-section {
    padding: 30px 30px 100px;
  }

  .header-title {
    font-size: 36px;
  }

  .booking-form {
    gap: 12px;
    padding: 16px 18px;
  }
}

@media (max-width: 768px) {
  #header-section {
    padding: 25px 20px 90px;
    min-height: auto;
  }

  .header-content {
    margin-bottom: 60px;
  }

  .header-title {
    font-size: 30px;
  }

  .header-description {
    font-size: 13px;
  }

  .booking-form {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px;
  }

  .form-field {
    width: 100%;
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
  }

  .form-field:last-of-type {
    border-bottom: none;
  }

  .form-arrow,
  .form-divider {
    display: none;
  }

  .reserve-btn {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  #header-section {
    padding: 20px 15px 80px;
  }

  .header-title {
    font-size: 26px;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 11px 24px;
    font-size: 12px;
  }

  .field-label {
    font-size: 11px;
  }

  .date-input {
    font-size: 13px;
  }
}

/* Home Galery Section start */
#home-gallery-section {
  padding: 80px 100px;
  background-color: #fafafa;
}

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

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #5b8dbe;
  margin-bottom: 12px;
  font-family: "CabinRegular", sans-serif;
  text-transform: uppercase;
}

.gallery-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 0.5px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin-bottom: 16px;
}

/* Main Gallery Column */
.gallery-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: fit-content;
}

/* Gallery Item - Düzəldilmiş */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 100%;
}

.gallery-item.large {
  height: 474px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Gallery Overlay */
/* .gallery-overlay,
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
} */

.gallery-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-view-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  color: #2c4461;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-view-btn:hover {
  transform: scale(1.1);
  background-color: #5b8dbe;
  color: white;
}

/* Sidebar Videos */
.gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 230px;
}

.video-item {
  height: 145px;
}

.video-overlay {
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
  transition: background 0.3s ease;
}

.video-item:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  color: #2c4461;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

.video-play-btn:hover {
  transform: scale(1.12);
  background-color: #5b8dbe;
  color: white;
}

/* Gallery Footer */
.gallery-footer {
  text-align: center;
  padding-top: 20px;
}

.view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  font-family: "CabinRegular", sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.view-more-link .link-text {
  color: #5b8dbe;
  text-transform: uppercase;
}

.view-more-link i {
  font-size: 14px;
  color: #5b8dbe;
  transition: transform 0.3s ease;
}

.view-more-link:hover i {
  transform: translateX(5px);
}

.view-more-link:hover {
  opacity: 0.8;
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-content iframe {
  width: 80vw;
  height: 45vw;
  max-width: 1200px;
  max-height: 675px;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-sidebar {
    width: 200px;
  }

  .gallery-item.large {
    height: 400px;
  }

  .video-item {
    height: 133px;
  }
}

@media (max-width: 992px) {
  #home-gallery-section {
    padding: 60px 20px;
  }

  .gallery-title {
    font-size: 28px;
  }

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

  .gallery-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .video-item {
    width: calc(33.333% - 14px);
    max-width: 280px;
    height: 180px;
  }

  .gallery-item.large {
    height: 350px;
  }
}

@media (max-width: 768px) {
  #home-gallery-section {
    padding: 50px 15px;
  }

  .gallery-header {
    margin-bottom: 35px;
  }

  .gallery-subtitle {
    font-size: 11px;
  }

  .gallery-title {
    font-size: 24px;
  }

  .gallery-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-sidebar {
    gap: 15px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-item.large {
    height: 300px;
  }

  .video-play-btn,
  .gallery-view-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-content iframe {
    width: 90vw;
    height: 50.625vw;
  }
}

@media (max-width: 576px) {
  #home-gallery-section {
    padding: 40px 15px;
  }

  .gallery-title {
    font-size: 20px;
  }

  .gallery-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-sidebar {
    flex-direction: column;
  }

  .video-item {
    width: 100%;
    max-width: none;
    height: 250px;
  }

  .gallery-item.large {
    height: 280px;
  }

  .view-more-link {
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-item {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-item.large {
    height: 250px;
  }

  .video-item {
    height: 220px;
  }
}

/* Choose section start */
#home-choose-room-section {
  padding: 80px 100px;
  background-color: #f5f5f5;
}

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

/* Section Header */
.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
}

.header-left {
  flex: 1;
}

.rooms-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #5b8dbe;
  margin-bottom: 12px;
  font-family: "CabinRegular", sans-serif;
  text-transform: uppercase;
}

.rooms-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 0.5px;
}

.header-right {
  flex-shrink: 0;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #5b8dbe;
  text-decoration: none;
  font-family: "CabinRegular", sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.view-all-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.view-all-link:hover i {
  transform: translateX(5px);
}

.view-all-link:hover {
  opacity: 0.8;
}

/* Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Room Card */
.room-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.041); */
}

.room-card:hover {
  transform: translateY(-1px);
}

/* Room Image */
.room-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

/* Room Badges */
.room-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.room-badge {
  padding: 6px 16px;
  background-color: rgba(91, 141, 190, 0.95);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

/* Room Content */
.room-content {
  padding: 25px;
}

.room-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: "CabinRegular", sans-serif;
  line-height: 1.3;
}

.room-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: "CabinRegular", sans-serif;
}

/* Room Link */
.room-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #5b8dbe;
  text-decoration: none;
  font-family: "CabinRegular", sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.room-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.room-link:hover {
  opacity: 0.8;
}

.room-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .room-image {
    height: 260px;
  }
}

@media (max-width: 992px) {
  #home-choose-room-section {
    padding: 60px 20px;
  }

  .rooms-header {
    margin-bottom: 40px;
  }

  .rooms-title {
    font-size: 28px;
  }

  .rooms-grid {
    gap: 20px;
  }

  .room-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  #home-choose-room-section {
    padding: 50px 15px;
  }

  .rooms-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
  }

  .rooms-subtitle {
    font-size: 11px;
  }

  .rooms-title {
    font-size: 24px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-image {
    height: 280px;
  }

  .room-content {
    padding: 20px;
  }

  .room-title {
    font-size: 18px;
  }

  .room-description {
    font-size: 13px;
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  #home-choose-room-section {
    padding: 40px 15px;
  }

  .rooms-title {
    font-size: 20px;
  }

  .view-all-link {
    font-size: 12px;
  }

  .room-card {
    border-radius: 10px;
  }

  .room-image {
    height: 240px;
  }

  .room-badges {
    bottom: 15px;
    left: 15px;
    gap: 8px;
  }

  .room-badge {
    padding: 5px 14px;
    font-size: 11px;
  }

  .room-content {
    padding: 18px;
  }

  .room-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .room-description {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .room-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .room-image {
    height: 220px;
  }

  .room-title {
    font-size: 16px;
  }
}
.header-category-box {
  display: flex;
  gap: 12px;
  margin-top: -20px;
  margin-bottom: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header-category-box::-webkit-scrollbar {
  display: none;
}

.category {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  background-color: #e5e5e5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
  border: 2px solid transparent;
  user-select: none;
}

.category i {
  font-size: 18px;
  color: #555;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.category span {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

/* Hover State */
.category:hover {
  background-color: #5b8dbe;
  /* box-shadow: 0 4px 12px rgba(91, 141, 190, 0.25); */
}

.category:hover i,
.category:hover span {
  color: white;
}

/* Active State */
.category.active {
  background-color: #447dc4;
  border-color: #447dc4;
}

.category.active i,
.category.active span {
  color: white;
}

/* Active hover */
.category.active:hover {
  background-color: #3a6bb0;
}

/* Responsive - Desktop 1200px */
@media (max-width: 1200px) {
  .header-category-box {
    gap: 10px;
    margin-bottom: 28px;
  }

  .category {
    padding: 10px 18px;
  }

  .category i {
    font-size: 17px;
  }

  .category span {
    font-size: 12.5px;
  }
}

/* Responsive - Tablet 992px */
@media (max-width: 992px) {
  .header-category-box {
    gap: 10px;
    margin-bottom: 26px;
  }

  .category {
    padding: 9px 16px;
    gap: 7px;
  }

  .category i {
    font-size: 17px;
  }

  .category span {
    font-size: 12px;
  }
}

/* Responsive - Tablet 768px */
@media (max-width: 768px) {
  .header-category-box {
    gap: 8px;
    margin-top: -15px;
    margin-bottom: 24px;
  }

  .category {
    padding: 9px 15px;
  }

  .category i {
    font-size: 16px;
  }

  .category span {
    font-size: 11.5px;
  }
}

/* Responsive - Mobile 576px */
@media (max-width: 576px) {
  .header-category-box {
    gap: 8px;
    margin-top: -10px;
    margin-bottom: 22px;
  }

  .category {
    padding: 9px 14px;
    gap: 6px;
  }

  .category i {
    font-size: 15px;
  }

  .category span {
    font-size: 11px;
  }
}

/* Responsive - Small Mobile 480px */
@media (max-width: 480px) {
  .header-category-box {
    gap: 6px;
  }

  .category {
    padding: 8px 12px;
    gap: 5px;
  }

  .category i {
    font-size: 14px;
  }

  .category span {
    font-size: 10px;
  }
}

/* Responsive - Extra Small 400px */
@media (max-width: 400px) {
  .header-category-box {
    gap: 6px;
  }

  .category {
    padding: 8px 11px;
    gap: 5px;
  }

  .category i {
    font-size: 14px;
  }

  .category span {
    font-size: 9.5px;
  }
}

/* Responsive - Very Small 360px */
@media (max-width: 360px) {
  .header-category-box {
    gap: 5px;
  }

  .category {
    padding: 7px 10px;
    gap: 4px;
  }

  .category i {
    font-size: 13px;
  }

  .category span {
    font-size: 9px;
  }
}

/* Opportunity Section start */

#home-opportunity-section {
  padding: 80px 100px;
  background-color: #ffffff;
}

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

/* Section Header */
.opportunity-header {
  text-align: center;
  margin-bottom: 45px;
}

.opportunity-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #5b8dbe;
  margin-bottom: 12px;
  font-family: "CabinRegular", sans-serif;
  text-transform: uppercase;
}

.opportunity-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 0.5px;
}

/* Amenities Bar */
.amenities-bar {
  background: linear-gradient(135deg, #2c4461 0%, #3a5675 100%);
  border-radius: 16px;
  padding: 35px 40px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(44, 68, 97, 0.15);
}

/* Amenity Item */
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.amenity-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.amenity-icon img {
  width: 50px;
  height: 50px;
}

.amenity-icon i {
  font-size: 24px;
  color: white;
}

.amenity-item:hover .amenity-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.amenity-label {
  font-size: 12px;
  font-weight: 500;
  color: white;
  line-height: 1.4;
  font-family: "CabinRegular", sans-serif;
  max-width: 100px;
}

/* Opportunity Images */
.opportunity-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.opportunity-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  height: 380px;
  cursor: pointer;
}

.opportunity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.opportunity-image:hover img {
  transform: scale(1.1);
}

/* Opportunity Footer */
.opportunity-footer {
  text-align: center;
  padding-top: 15px;
}

.view-all-amenities {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  font-family: "CabinRegular", sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.view-all-amenities .link-highlight {
  color: #5b8dbe;
  text-transform: uppercase;
}

.view-all-amenities i {
  font-size: 14px;
  color: #5b8dbe;
  transition: transform 0.3s ease;
}

.view-all-amenities:hover i {
  transform: translateX(5px);
}

.view-all-amenities:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .amenities-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 30px 35px;
  }

  .opportunity-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .opportunity-image {
    height: 350px;
  }
}

@media (max-width: 992px) {
  #home-opportunity-section {
    padding: 60px 20px;
  }

  .opportunity-title {
    font-size: 28px;
  }

  .amenities-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px 30px;
  }

  .amenity-icon {
    width: 45px;
    height: 45px;
  }

  .amenity-icon i {
    font-size: 22px;
  }

  .amenity-label {
    font-size: 11px;
  }

  .opportunity-image {
    height: 320px;
  }
}

@media (max-width: 768px) {
  #home-opportunity-section {
    padding: 50px 15px;
  }

  .opportunity-header {
    margin-bottom: 35px;
  }

  .opportunity-subtitle {
    font-size: 11px;
  }

  .opportunity-title {
    font-size: 24px;
  }

  .amenities-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 25px 20px;
    border-radius: 12px;
  }

  .amenity-icon {
    width: 42px;
    height: 42px;
  }

  .amenity-icon i {
    font-size: 20px;
  }

  .amenity-label {
    font-size: 10px;
    max-width: 85px;
  }

  .opportunity-images {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .opportunity-image {
    height: 280px;
    border-radius: 12px;
  }

  .view-all-amenities {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  #home-opportunity-section {
    padding: 40px 15px;
  }

  .opportunity-title {
    font-size: 20px;
  }

  .amenities-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 15px;
  }

  .amenity-item {
    gap: 10px;
  }

  .amenity-icon {
    width: 40px;
    height: 40px;
  }

  .amenity-icon i {
    font-size: 18px;
  }

  .amenity-label {
    font-size: 10px;
    max-width: 100%;
  }

  .opportunity-image {
    height: 240px;
    border-radius: 10px;
  }

  .view-all-amenities {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .opportunity-image {
    height: 220px;
  }

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

  .amenity-icon i {
    font-size: 16px;
  }
}

/* About section start */

#about-section {
  padding: 80px 100px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1400px;
  padding: 0px 40px;
  margin: 0 auto;
}

/* About Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Text */
.about-text {
  padding-right: 20px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: "CabinRegular", sans-serif;
  letter-spacing: 0.5px;
}

/* Rating Section */
.about-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-stars i {
  color: #ffa500;
  font-size: 18px;
}

.rating-value {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "CabinRegular", sans-serif;
}

.rating-label {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  font-family: "CabinRegular", sans-serif;
}

.rating-reviews {
  font-size: 14px;
  color: #5b8dbe;
  text-decoration: underline;
  font-family: "CabinRegular", sans-serif;
  transition: opacity 0.3s ease;
}

.rating-reviews:hover {
  opacity: 0.7;
}

/* Location */
.about-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}

.about-location i {
  color: #5b8dbe;
  font-size: 14px;
}

.about-location span {
  font-size: 14px;
  color: #666;
  font-family: "CabinRegular", sans-serif;
}

/* Description */
.about-description {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  font-family: "CabinRegular", sans-serif;
  text-align: justify;
}

/* About Image */
.about-image {
  position: relative;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.01);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Responsive Design */
@media (min-width: 1400px) {
  #about-section {
    padding: 100px 20px;
  }

  .about-content {
    gap: 80px;
  }

  .about-title {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .rating-stars i {
    font-size: 20px;
  }

  .rating-value,
  .rating-label {
    font-size: 16px;
  }

  .rating-reviews {
    font-size: 15px;
  }

  .about-location i {
    font-size: 15px;
  }

  .about-location span {
    font-size: 15px;
  }

  .about-description p {
    font-size: 16px;
    line-height: 1.85;
  }

  .about-image {
    height: 520px;
  }
}

@media (min-width: 1600px) {
  .about-content {
    gap: 100px;
  }

  .about-title {
    font-size: 48px;
    margin-bottom: 28px;
  }

  .rating-stars i {
    font-size: 22px;
  }

  .rating-value,
  .rating-label {
    font-size: 17px;
  }

  .about-description p {
    font-size: 17px;
    line-height: 1.9;
  }

  .about-image {
    height: 560px;
  }
}

@media (max-width: 1200px) {
  .about-content {
    gap: 50px;
  }

  .about-image {
    height: 440px;
  }
}

@media (max-width: 992px) {
  #about-section {
    padding: 60px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    padding-right: 0;
  }

  .about-title {
    font-size: 32px;
  }

  .about-image {
    height: 400px;
    order: -1;
  }
}

@media (max-width: 768px) {
  #about-section {
    padding: 50px 15px;
  }

  .about-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .rating-stars i {
    font-size: 16px;
  }

  .rating-value,
  .rating-label {
    font-size: 14px;
  }

  .rating-reviews {
    font-size: 13px;
  }

  .about-location {
    margin-bottom: 20px;
  }

  .about-location i {
    font-size: 13px;
  }

  .about-location span {
    font-size: 13px;
  }

  .about-description {
    gap: 15px;
  }

  .about-description p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-image {
    height: 320px;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  #about-section {
    padding: 40px 15px;
  }

  .about-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .rating-stars i {
    font-size: 15px;
  }

  .rating-value,
  .rating-label {
    font-size: 13px;
  }

  .rating-reviews {
    font-size: 12px;
  }

  .about-description p {
    font-size: 13px;
    text-align: left;
  }

  .about-image {
    height: 280px;
  }
}
/* Contact Page design start */
#contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  gap: 50px;
  padding: 80px 100px;
  background-color: #fff;
}

/* Sol tərəf - Map Container */
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Sağ tərəf - Contact Form */
.right-side {
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  border-radius: 16px;
}

.contact-form-container {
  width: 100%;
  max-width: 550px;
}

/* Form Header */
.form-header {
  margin-bottom: 35px;
}

.form-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-family: "CabinRegular", sans-serif;
}

.form-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  font-family: "CabinRegular", sans-serif;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.3px;
  font-family: "CabinRegular", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
  font-family: "CabinRegular", sans-serif;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5b8dbe;
  background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  font-family: "CabinRegular", sans-serif;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23666' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%235b8dbe' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  max-height: 250px;
  resize: none;
  font-family: "CabinRegular", sans-serif;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 15px 28px;
  background-color: #5b8dbe;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 10px;
  font-family: "CabinRegular", sans-serif;
}

.submit-btn:hover {
  background-color: #4a7ba8;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  #contact-section {
    padding: 70px 80px;
    gap: 40px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  #contact-section {
    padding: 60px 50px;
    gap: 35px;
  }

  .right-side {
    padding: 50px 40px;
  }

  .form-title {
    font-size: 28px;
  }
}

/* Tablet - 992px */
@media (max-width: 992px) {
  #contact-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 30px;
    gap: 30px;
  }

  .map-container {
    min-height: 450px;
    order: 2;
  }

  .right-side {
    order: 1;
    padding: 50px 35px;
  }

  .form-title {
    font-size: 26px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  #contact-section {
    padding: 40px 20px;
    gap: 25px;
  }

  .right-side {
    padding: 40px 30px;
    border-radius: 12px;
  }

  .map-container {
    min-height: 400px;
    border-radius: 12px;
  }

  .form-header {
    margin-bottom: 30px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-description {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  #contact-section {
    padding: 30px 15px;
    gap: 20px;
  }

  .right-side {
    padding: 35px 25px;
  }

  .form-header {
    margin-bottom: 25px;
  }

  .form-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .form-description {
    font-size: 12px;
  }

  .contact-form {
    gap: 18px;
  }

  .form-row {
    gap: 18px;
  }

  .form-group {
    gap: 8px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 15px;
    font-size: 13px;
    border-radius: 6px;
  }

  .form-group textarea {
    min-height: 110px;
  }

  .submit-btn {
    padding: 13px 24px;
    font-size: 13px;
  }

  .map-container {
    min-height: 320px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  #contact-section {
    padding: 25px 15px;
  }

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

  .form-title {
    font-size: 20px;
  }

  .form-description {
    font-size: 11px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 12px;
  }

  .submit-btn {
    padding: 12px 20px;
  }

  .map-container {
    min-height: 280px;
  }
}

/* Extra Small Mobile - 400px */
@media (max-width: 400px) {
  #contact-section {
    padding: 20px 10px;
  }

  .right-side {
    padding: 25px 18px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-description {
    font-size: 11px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 12px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .map-container {
    min-height: 250px;
  }
}

/* Very Small Mobile - 360px */
@media (max-width: 360px) {
  .form-title {
    font-size: 17px;
  }

  .form-group label {
    font-size: 11px;
  }

  .submit-btn {
    font-size: 12px;
    padding: 11px 18px;
  }
}

/* Room Detail Section */
#room-detail-section {
  padding: 50px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.room-detail-container {
  width: 100%;
}

/* Header */
.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.header-left {
  flex: 1;
}

.breadcrumb {
  font-size: 11px;
  color: #5b8dbe;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.room-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.action-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-icon i {
  font-size: 16px;
  color: #666;
  transition: color 0.3s ease;
}

.action-icon:hover {
  border-color: #5b8dbe;
  background-color: #5b8dbe;
}

.action-icon:hover i {
  color: white;
}

.favorite-btn.active {
  border-color: #e74c3c;
  background-color: #e74c3c;
}

.favorite-btn.active i {
  color: white;
}

/* Image Gallery Grid */
.image-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.image-gallery-grid button{
border: none;
}

.gallery-main-image {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-main-image:hover img {
  transform: scale(1.05);
}

.gallery-small-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.small-image-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.small-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.small-image-item:hover img {
  transform: scale(1.05);
}

/* Image Count Overlay */
.image-count-overlay .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  transition: background 0.3s ease;
}

.image-count-overlay:hover .image-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.image-overlay i {
  font-size: 24px;
}

.image-overlay span {
  font-size: 16px;
  font-weight: 600;
}

/* Room Info Section */
.room-info-section {
  margin-bottom: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid #e5e5e5;
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* Room Details Grid */
.room-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
}

.detail-label {
  font-size: 13px;
  color: #555;
  position: relative;
  padding-left: 8px;
}

.detail-label::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5b8dbe;
  font-weight: bold;
}

/* Description */
.room-description {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Expand Button */
.expand-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid #5b8dbe;
  border-radius: 6px;
  color: #5b8dbe;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.expand-button i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.expand-button:hover {
  background-color: #5b8dbe;
  color: white;
}

.expand-button:hover i {
  transform: translateY(2px);
}

/* Amenities Section */
.amenities-section {
  margin-bottom: 40px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  transition: all 0.3s ease;
  cursor: pointer;
}

.amenity-card i {
  font-size: 18px;
  color: #666;
  flex-shrink: 0;
}

.amenity-card:hover {
  border-color: #5b8dbe;
  background-color: #f8f9fa;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav.prev {
  left: -70px;
}

.lightbox-nav.next {
  right: -70px;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 18px;
  border-radius: 20px;
}

/* Responsive Design */

/* Tablet - 768px */
@media (max-width: 768px) {
  #room-detail-section {
    padding: 40px 20px 60px;
  }

  .room-title {
    font-size: 24px;
  }

  .image-gallery-grid {
    gap: 10px;
  }

  .gallery-small-images {
    gap: 10px;
  }

  .info-title {
    font-size: 17px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  #room-detail-section {
    padding: 30px 15px 50px;
  }

  .room-header {
    flex-direction: column;
    gap: 15px;
  }

  .header-actions {
    align-self: flex-start;
  }

  .room-title {
    font-size: 22px;
  }

  .breadcrumb {
    font-size: 10px;
  }

  .image-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-main-image {
    grid-column: 1;
    grid-row: 1;
    height: 280px;
  }

  .gallery-small-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .small-image-item {
    height: 80px;
  }

  .room-details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .info-title {
    font-size: 16px;
  }

  .expand-button {
    width: 100%;
    justify-content: center;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}

/* Small Mobile - 400px */
@media (max-width: 400px) {
  .room-title {
    font-size: 20px;
  }

  .gallery-main-image {
    height: 240px;
  }

  .small-image-item {
    height: 70px;
  }

  .info-title {
    font-size: 15px;
  }

  .room-description {
    font-size: 13px;
  }

  .expand-button {
    font-size: 10px;
    padding: 9px 16px;
  }
}

/* ===== Video Modal ===== */
.video-modal {
  position: fixed;
  inset: 0;
  display: none; /* hidden by default */
  z-index: 9999;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}

.video-modal__panel {
  position: relative;
  max-width: 980px;
  width: calc(100% - 24px);
  margin: 40px auto;
  background: #0b0b0b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: 180ms ease;
}

.video-modal.is-open .video-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive 16:9 container */
.video-modal__ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__ratio video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Better mobile spacing */
@media (max-width: 600px) {
  .video-modal__panel {
    margin: 18px auto;
    width: calc(100% - 16px);
    border-radius: 12px;
  }
  .video-modal__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }
}

/* Prevent background scroll when modal open */
body.modal-open {
  overflow: hidden;
}

.gallery-main-image{
  border-radius:16px;
  overflow:hidden;
  height:520px;             /* sabit hündürlük */
}

.gallery-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

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

.small-image-item{
  width: 100%;
  position:relative;
  border:0;
  padding:0;
  background:transparent;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  height:252px;            /* 520 + gap-ə uyğun 2 sıra */
}

.small-image-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.small-image-item.more::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

.more-badge{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  font-weight:700;
  color:#fff;
  z-index:2;
}

/* responsive */
@media (max-width: 992px){
  .image-gallery-grid{ grid-template-columns: 1fr; }
  .gallery-main-image{ height:360px; }
  .small-image-item{ height:160px; }
}
.gallery-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.gallery-modal.is-open{ display:block; }

.gallery-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.gallery-modal__content{
  position:relative;
  width:min(1100px, 92vw);
  height:min(80vh, 720px);
  margin:6vh auto;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  padding:18px;
}

.gallery-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  border:0;
  background:#fff;
  font-size:18px;
  cursor:pointer;
}

.gallery-modal__grid{
  margin-top:32px;
  height:calc(100% - 32px);
  overflow:auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.gallery-modal__item{
  border-radius:12px;
  overflow:hidden;
  display:block;
}

.gallery-modal__item img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

@media (max-width: 992px){
  .gallery-modal__grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-modal__item img{ height:140px; }
}





/* Prevent background scroll when modal open */
body.modal-open { overflow: hidden; }

.gallery-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.gallery-modal.is-open{ display:block; }

.gallery-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.gallery-modal__content{
  position:relative;
  width:min(1100px, 92vw);
  height:min(82vh, 780px);
  margin:6vh auto;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  padding:18px;
}

.gallery-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  border:0;
  background:#fff;
  width:40px;
  height:40px;
  border-radius:12px;
  font-size:18px;
  cursor:pointer;
  z-index:5;
}

/* Swiper sizing */
#roomGallerySwiper{
  height:100%;
  padding-top:36px; /* close button area */
  box-sizing:border-box;
}

#roomGallerySwiper .swiper-slide{
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
}

#roomGallerySwiper .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:contain; /* istəyirsənsə cover də edə bilərik */
  border-radius:14px;
}

/* Optional: make arrows visible on white bg */
#galleryModal .swiper-button-prev,
#galleryModal .swiper-button-next{
  color:#000;
}

@media (max-width: 992px){
  .gallery-modal__content{
    width:94vw;
    height:80vh;
    padding:14px;
  }
  #roomGallerySwiper{ padding-top:34px; }
}


body.modal-open { overflow: hidden; }

/* Image modal */
.image-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.image-modal.is-open{ display:block; }

.image-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.image-modal__panel{
  position:relative;
  width:min(1100px, 92vw);
  height:min(82vh, 780px);
  margin:6vh auto;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  padding:18px;
}

.image-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  border:0;
  background:#fff;
  width:40px;
  height:40px;
  border-radius:12px;
  font-size:18px;
  cursor:pointer;
  z-index:5;
}

/* Swiper inside modal */
#hotelGallerySwiper{
  height:100%;
  padding-top:36px;
  box-sizing:border-box;
}

#hotelGallerySwiper .swiper-slide{
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
}

#hotelGallerySwiper .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:contain; /* istəsən cover edək */
  border-radius:14px;
}

#imageModal .swiper-button-prev,
#imageModal .swiper-button-next{
  color:#1e1e1e;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  
  font-size: 20px;
}