* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f4f1 0%, #faf9f7 50%, #f0f9f7 100%);
}

.footer-contacts a,
.footer-contacts .__cf_email__ {
  color: #ffffff;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.12);
  animation: slideDown 0.6s ease-out;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #d4af37 0%, #56b4a0 50%, #c86b4a 100%) 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 180px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
}

nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #a67c00;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover {
  color: #56b4a0;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-selector {
  position: relative;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.social-icon--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-icon--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.35);
}

.lang-btn {
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.lang-btn:hover {
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
  transform: translateY(-3px);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
  backdrop-filter: blur(10px);
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: all 0.2s ease;
  color: #4a4a4a;
}

.lang-option:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.1),
    rgba(86, 180, 160, 0.1)
  );
  color: #2d5a4a;
  padding-left: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.contact-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-icon:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.page-header {
  padding: 100px 60px;
  background: linear-gradient(135deg, #2d5a4a 0%, #1a3a2e 50%, #0d2622 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 180, 160, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.page-header-content {
  position: relative;
  z-index: 2;
  animation: fadeInDown 0.8s ease-out;
}

.header-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease-out;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-header h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 15px;
  font-weight: 300;
  animation: slideInDown 0.6s ease-out 0.1s both;
  background: linear-gradient(135deg, #faf9f7, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 16px;
  color: rgba(250, 249, 247, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  animation: slideInDown 0.6s ease-out 0.2s both;
}

.header-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  margin: 0 auto;
  border-radius: 2px;
  animation: slideInCenter 0.8s ease-out 0.3s both;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@keyframes slideInCenter {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.rooms-filter {
  padding: 40px 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(250, 249, 247, 0.95)
  );
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 70px;
  z-index: 50;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.filter-label {
  font-size: 18px;
  color: #2d5a4a;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e8e6e2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #4a4a4a;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
  border-color: #56b4a0;
  color: #56b4a0;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(86, 180, 160, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.rooms-container {
  padding: 100px 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0f9f7 100%);
}

.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
}

.room-card.show {
  display: grid;
  animation: fadeInUp 0.8s ease-out;
}

.room-card:nth-child(even) {
  direction: rtl;
}

.room-card:nth-child(even) > * {
  direction: ltr;
}

.room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  animation: slideInLeft 0.6s ease-out 0.3s both;
  box-shadow: 0 4px 12px rgba(45, 90, 74, 0.2);
}

.room-badge.premium {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 900px) {
  .room-carousel {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .room-carousel {
    height: 240px;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.room-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 400px;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.room-img {
  background: linear-gradient(135deg, #e8f4ef 0%, #d4e8e0 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(45, 90, 74, 0.12);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.room-img:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.2);
  border-color: #d4af37;
}

.room-img svg {
  width: 100%;
  height: 100%;
}

.room-info {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.room-info h2 {
  font-size: 36px;
  color: #2d5a4a;
  margin-bottom: 8px;
  font-weight: 600;
}

.room-tagline {
  font-size: 14px;
  color: #56b4a0;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.room-info p {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
  line-height: 1.85;
}

.room-specs {
  list-style: none;
  margin: 35px 0;
}

.room-specs li {
  font-size: 15px;
  color: #999;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.room-specs li:before {
  content: "●";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 10px;
}

.room-specs li:hover {
  color: #2d5a4a;
  padding-left: 35px;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.price-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.price-value {
  font-size: 32px;
  color: #d4af37;
  font-weight: 700;
}

.price-period {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.room-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.btn-availability {
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.8px;
  font-weight: 600;
  flex: 1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.btn-availability::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  animation: pulse-light 3s ease-in-out infinite;
}

.btn-availability::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

@keyframes pulse-light {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.btn-availability:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #56b4a0, #d4af37);
}

.btn-availability:hover::after {
  left: 100%;
}

.btn-availability:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
.btn-view {
  background: white;
  border: 2px solid #2d5a4a;
  color: #2d5a4a;
  padding: 13px 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.8px;
  font-weight: 600;
  flex: 1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.12);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(250, 249, 247, 0.9)
  );
}

.btn-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-view::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}

.btn-view:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(45, 90, 74, 0.25);
  border-color: #56b4a0;
  color: white;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
}

.btn-view:hover::before {
  left: 100%;
}

.btn-view:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(45, 90, 74, 0.2);
}

.services-highlight {
  padding: 100px 60px;
  background: linear-gradient(135deg, #f0f9f7, #e8f4f0);
  position: relative;
}

.services-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services-header h2 {
  font-size: 42px;
  color: #2d5a4a;
  margin-bottom: 15px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out;
}

.services-header p {
  font-size: 16px;
  color: #888;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-out;
  border: 2px solid transparent;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.1s;
}
.service-card:nth-child(5) {
  animation-delay: 0.2s;
}
.service-card:nth-child(6) {
  animation-delay: 0.3s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.15);
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  border: 2px solid #d4af37;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.3) rotate(10deg);
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) scale(1.3) rotate(10deg);
  }
  50% {
    transform: translateY(-10px) scale(1.3) rotate(10deg);
  }
}

.service-card h3 {
  font-size: 16px;
  color: #2d5a4a;
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: white;
}

.service-card p {
  font-size: 13px;
  color: #888;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-section-rooms {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  position: relative;
  margin: 60px 60px 0;
  border-radius: 20px 20px 0 0;
  animation: fadeInUp 0.8s ease-out;
  overflow: hidden;
  margin-bottom: 50px;
}

.cta-section-rooms::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
  border-radius: 50%;
}

.cta-section-rooms h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 2;
}

.cta-section-rooms p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  position: relative;
  z-index: 2;
}

.phone-icon {
  animation: ring 1s infinite;
}

.btn-cta-rooms {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #faf9f7);
  color: #2d5a4a;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  z-index: 2;
}

.btn-cta-rooms::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.5s ease;
}

.btn-cta-rooms:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.5);
}

.btn-cta-rooms:hover::before {
  left: 100%;
}

.social-section {
  padding: 40px 60px;
  background: linear-gradient(135deg, #2d5a4a, #1a3a2e);
  text-align: center;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.social-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.social-label {
  font-size: 16px;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.social-icon:hover svg {
  transform: scale(1.25);
}

.instagram-icon {
  color: #e1306c;
}

.instagram-icon:hover {
  background: linear-gradient(135deg, #e1306c, #fd5949);
  color: white;
}

.facebook-icon {
  color: #1877f2;
}

.facebook-icon:hover {
  background: #1877f2;
  color: white;
}

.booking-icon {
  color: #003580;
}

.booking-icon:hover {
  background: #003580;
  color: white;
}

footer {
  background: linear-gradient(135deg, #1f3d32, #0d2622);
  color: white;
  padding: 50px 60px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 0;
  animation: fadeInUp 0.8s ease-out;
}

.footer-links {
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  opacity: 0.85;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .header-left,
  .header-right {
    width: 100%;
  }

  .header-right {
    gap: 15px;
    justify-content: center;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    order: 3;
    width: 100%;
  }

  .logo-img {
    height: 40px;
  }

  .page-header {
    padding: 60px 30px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .rooms-filter {
    padding: 25px 30px;
    top: 60px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .rooms-container {
    padding: 60px 30px;
  }

  .room-card {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .room-card:nth-child(even) {
    direction: ltr;
  }

  .room-images {
    grid-template-columns: 1fr;
    height: 300px;
  }

  .room-info h2 {
    font-size: 24px;
  }

  .room-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .services-highlight {
    padding: 60px 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-section-rooms {
    margin: 30px;
    margin-bottom: 0;
    padding: 50px 30px;
    border-radius: 15px 15px 0 0;
  }

  .cta-section-rooms h2 {
    font-size: 1.8rem;
  }

  .social-section {
    padding: 20px 30px;
    margin: 0;
  }

  .social-label {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .social-icons {
    gap: 25px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  footer {
    padding: 30px;
    font-size: 11px;
  }

  .lang-dropdown {
    left: -50%;
  }
}

:root {
  --space-inline: clamp(18px, 4vw, 60px);
  --section-space: clamp(56px, 8vw, 100px);
}

html {
  scroll-behavior: smooth;
}

header {
  padding: 12px var(--space-inline);
  gap: 16px;
}

.logo-img {
  height: 180px;
}

@media (max-width: 900px) {
  .logo-img {
    height: 130px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a {
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 90, 74, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #2d5a4a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-header,
.rooms-container,
.services-highlight,
.cta-section-rooms,
footer {
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}

.rooms-filter {
  top: clamp(72px, 8vw, 108px);
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}

.room-card {
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: clamp(70px, 8vw, 120px);
}

.room-images {
  height: clamp(280px, 40vw, 450px);
}

.room-buttons {
  gap: 14px;
}

.btn-availability,
.btn-view {
  min-height: 48px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

@media (max-width: 1100px) {
  nav {
    gap: 24px;
  }

  .room-info h2 {
    font-size: clamp(28px, 3.2vw, 36px);
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }

  .rooms-filter {
    position: static;
    box-shadow: none;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card:nth-child(even) {
    direction: ltr;
  }

  .room-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .room-img {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .header-right {
    justify-content: center;
  }

  .language-selector {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    border-radius: 12px;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: unset;
  }

  .page-header h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .rooms-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .room-images {
    grid-template-columns: 1fr;
  }

  .room-img {
    min-height: 240px;
  }

  .room-buttons {
    flex-direction: column;
  }

  .cta-section-rooms {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .header-right {
    justify-content: center;
  }

  .language-selector {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    border-radius: 12px;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: unset;
  }
}

@media (max-width: 900px) {
  header {
    padding: 10px 16px 0;
    gap: 0;
    background: linear-gradient(135deg, #2d5a4a 0%, #3d7a65 50%, #56b4a0 100%);
    position: sticky;
  }

  .header-left {
    order: 1;
    flex: 1;
    justify-content: center;
  }

  .mobile-menu-toggle {
    order: 2;
    position: absolute;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 10px;
    width: 42px;
    height: 42px;
  }

  .mobile-menu-toggle span {
    background: #fff;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.12) 50%,
      rgba(0, 0, 0, 0.08) 100%
    );
    border-radius: 0;
    flex-wrap: nowrap;
  }

  .language-selector {
    width: auto;
    flex-shrink: 0;
  }

  .lang-btn {
    width: auto;
    border-radius: 20px;
    font-size: 11px;
    padding: 6px 12px;
    white-space: nowrap;
  }

  .header-right .contact-icon,
  .header-right .whatsapp-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .header-right .contact-icon svg {
    width: 17px;
    height: 17px;
  }

  .header-mobile-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    font-family: "Playfair Display", serif;
    font-style: italic;

    background: linear-gradient(90deg, #d4af37, #ffd700, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);

    padding: 5px 0;
  }

  .header-mobile-tagline::before,
  .header-mobile-tagline::after {
    content: "";
    display: block;
    height: 1px;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
  }

  .header-mobile-tagline::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
  }

  .main-nav {
    order: 5;
    border-radius: 0 0 14px 14px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 0;
  }

  .main-nav a {
    font-size: 13px;
    color: #2d5a4a !important;
    padding: 13px 20px;
    border-bottom: 1px solid #f1efeb;
    transition:
      background 0.2s ease,
      padding-left 0.2s ease;
  }

  .main-nav a:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
    padding-left: 28px;
  }
}

@media (max-width: 480px) {
  .header-right {
    gap: 8px;
    padding: 8px 0 10px;
  }

  .lang-btn {
    font-size: 10px;
    padding: 5px 10px;
  }

  .header-right .contact-icon,
  .header-right .whatsapp-icon {
    width: 32px;
    height: 32px;
  }
}

.header-mobile-tagline {
  display: none;
}
@media (max-width: 900px) {
  .header-mobile-tagline {
    display: flex;
    order: 3;
    width: 100%;
  }
}

/* ══════════════════════════════════════
   ROOM CAROUSEL
══════════════════════════════════════ */
.room-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 90, 74, 0.18);
  border: 2px solid rgba(212, 175, 55, 0.25);
  background: #1a2e28;
  height: clamp(280px, 40vw, 460px);
  user-select: none;
}

.carousel-track-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  flex-shrink: 0;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #2d5a4a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  padding: 0;
}

.carousel-btn:hover {
  background: #d4af37;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.carousel-prev {
  left: 12px;
}
.carousel-next {
  right: 12px;
}

.carousel-counter {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 10;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s,
    width 0.25s;
}

.carousel-dot.active {
  background: #d4af37;
  width: 22px;
  border-radius: 4px;
  transform: none;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

@keyframes swipe-hint {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  20% {
    opacity: 1;
  }
  60% {
    transform: translateX(-10px);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-10px);
  }
}

.room-images {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   SMART HEADER — полоска слева при скролле (только мобильные)
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  header {
    transition:
      width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.5s ease,
      background 0.5s ease;
    will-change: width;
    transform-origin: top left;
  }

  header.header--strip {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    min-height: unset !important;
    height: 52px !important;
    padding: 0 16px !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    border-radius: 0 0 14px 14px !important;
    border-bottom: 3px solid !important;
    border-image: linear-gradient(90deg, #d4af37 0%, #56b4a0 50%, #c86b4a 100%)
      1 !important;
    border-right: none !important;
    background: linear-gradient(
      135deg,
      #2d5a4a 0%,
      #3d7a65 60%,
      #56b4a0 100%
    ) !important;
    box-shadow: 0 4px 20px rgba(45, 90, 74, 0.4) !important;
    z-index: 999;
    overflow: hidden;
  }

  header.header--strip::after {
    content: "";
    display: block;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.8), transparent);
    border-radius: 4px;
  }

  header.header--strip .header-left,
  header.header--strip .header-mobile-tagline,
  header.header--strip .header-right {
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    flex-shrink: 0;
  }

  header.header--strip .main-nav {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    width: 0 !important;
    height: 0 !important;
  }

  header.header--strip .mobile-menu-toggle {
    order: 0 !important;
    margin: 0 !important;
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 1001;
  }

  header.header--strip .mobile-menu-toggle span {
    background: #fff !important;
  }

  .header-side-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(160deg, #2d5a4a 0%, #3d7a65 100%);
    z-index: 1000;
    padding: 16px 20px 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border-radius: 0 0 20px 20px;
    transform: translateY(-110%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .header-side-panel.panel-open {
    display: flex;
    transform: translateY(0);
  }

  .header-side-panel .panel-title {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.9);
    padding: 8px 4px 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-side-panel .panel-close {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
  }

  .header-side-panel .panel-close:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  .header-side-panel .panel-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .header-side-panel a {
    display: block;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
      background 0.2s ease,
      transform 0.2s ease,
      color 0.2s ease;
    text-align: center;
  }

  .header-side-panel a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    color: #fff !important;
  }

  .header-side-panel.panel-open a {
    animation: panelItemIn 0.35s cubic-bezier(0.34, 1.3, 0.64, 1) both;
  }
  .header-side-panel.panel-open a:nth-child(1) {
    animation-delay: 0.04s;
  }
  .header-side-panel.panel-open a:nth-child(2) {
    animation-delay: 0.08s;
  }
  .header-side-panel.panel-open a:nth-child(3) {
    animation-delay: 0.12s;
  }
  .header-side-panel.panel-open a:nth-child(4) {
    animation-delay: 0.16s;
  }
  .header-side-panel.panel-open a:nth-child(5) {
    animation-delay: 0.2s;
  }
  .header-side-panel.panel-open a:nth-child(6) {
    animation-delay: 0.24s;
  }
  .header-side-panel.panel-open a:nth-child(7) {
    animation-delay: 0.28s;
  }
  .header-side-panel.panel-open a:nth-child(8) {
    animation-delay: 0.32s;
  }

  @keyframes panelItemIn {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .header-strip-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    backdrop-filter: blur(3px);
  }

  .header-strip-overlay.visible {
    display: block;
    animation: overlayFadeIn 0.3s ease forwards;
  }

  @keyframes overlayFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  header:not(.header--strip) {
    position: sticky !important;
    width: 100% !important;
    min-height: unset !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    border-radius: 0 !important;
    border-right: none !important;
  }
}
