/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2c2c2c;
  line-height: 1.7;
  font-size: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #983941;
}

:root {
  --primary-color: #983941;
  --primary-dark: #7a2e35;
  --primary-light: #b84d58;
  --accent-gold: #d4af37;
  --accent-gold-light: #f4e4bc;
  --text-dark: #2c2c2c;
  --text-medium: #4a4a4a;
  --text-light: #6c757d;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #fafbfc;
  --border-color: rgba(152, 57, 65, 0.15);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(152, 57, 65, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Unified Heading Styles */
  --heading-size: clamp(36px, 5vw, 48px);
  --heading-font-weight: 700;
  --heading-line-height: 1.2;
  --heading-letter-spacing: -0.3px;
  
  /* Unified Button Styles */
  --button-padding: 18px 48px;
  --button-font-size: 16px;
  --button-font-weight: 700;
  --button-border-radius: 50px;
  --button-letter-spacing: 1.2px;
}

/* ============================================
   HEADER / NAVBAR - Hotale Resort 2 Style
   ============================================ */

.site-header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 1000;
  max-width: 1320px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  overflow: hidden;
}

.navbar-container {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: padding 0.3s ease;
}

.navbar-container.scrolled {
  padding: 5px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 50px;
  flex-shrink: 0;
  padding: 0;
}

.logo {
  height: 55px;
  width: auto;
  max-width: 160px;
  display: block;
}

.logo:hover {
  opacity: 0.85;
  transform: scale(1.02);
  transition: var(--transition);
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  letter-spacing: -0.3px;
}

.navbar-toggler {
  border: none;
  padding: 6px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28102, 102, 102, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

/* Menu Items */
.navbar-container .navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  justify-content: center;
  flex: 1;
}

.navbar-container .menu-item {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
}

.navbar-container .menu-item a {
  font-weight: 400;
  font-size: 18px;
  padding: 0 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-transform: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-decoration: none;
  overflow: hidden;
}

/* Hover background effect */
.navbar-container .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.navbar-container .menu-item a:hover {
  color: var(--primary-color) !important;
  transform: translateY(-1px);
}

.navbar-container .menu-item a:hover::after {
  width: calc(100% - 36px);
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown indicator (chevron down) */
.navbar-container .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #666666;
  margin-left: 6px;
  margin-bottom: 2px;
  opacity: 0.6;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.navbar-container .menu-item-has-children > a:hover::after {
  border-top-color: var(--primary-color);
  opacity: 1;
  transform: translateY(2px);
}

/* Active menu item - orange underline */
.navbar-container .menu-item.current-menu-item > a,
.navbar-container .menu-item a.active {
  color: #333333 !important;
}

.navbar-container .menu-item.current-menu-item > a::before,
.navbar-container .menu-item a.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 0;
  box-shadow: 0 2px 4px rgba(152, 57, 65, 0.3);
  z-index: 2;
}

/* Contact info in header */
.navbar-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding-left: 25px;
  margin-left: 25px;
  flex-shrink: 0;
  position: relative;
}

.navbar-contact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.nav-address {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
  display: block;
}

.nav-link-custom {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  text-align: right;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom::before {
  content: '☎';
  margin-right: 6px;
  font-size: 14px;
  opacity: 0.7;
}

.nav-link-custom:hover {
  color: var(--primary-color) !important;
}

.nav-link-custom-mobile {
  color: #666666 !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 8px 12px;
  white-space: nowrap;
}

/* Dropdown menu styles */
.navbar-container .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.navbar-container .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-container .sub-menu .menu-item {
  margin: 0;
}

.navbar-container .sub-menu .menu-item a {
  padding: 10px 20px !important;
  height: auto !important;
  color: #666666 !important;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.navbar-container .sub-menu .menu-item a::before {
  display: none;
}

.navbar-container .sub-menu .menu-item a::after {
  display: none;
}

.navbar-container .sub-menu .menu-item a:hover {
  background: #f5f5f5;
  color: #333333 !important;
}

.navbar-container .sub-menu .menu-item.current-menu-item > a {
  color: var(--primary-color) !important;
  background: rgba(152, 57, 65, 0.05);
}

@media (max-width: 991px) {
  .site-header {
    position: fixed;
    top: 0;
  }

  header .container-fluid-inner {
    flex-wrap: wrap;
  }
}

/* ============================================
   HERO SECTION - Hotale Inspired
   ============================================ */
.s-hero .sides {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.s-hero .side__main {
  flex: 1;
}

.s-hero .side__form {
  display: flex;
  align-items: center;
  flex-basis: 450px;
}

.s-hero .side__form .form__wrapper {
  flex-grow: 1;
  margin-top: 100px;
}

.s-hero #WidgetVerticalBlockId * {
  box-sizing: border-box!important;
}

.first__container {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
  isolation: isolate;
}

.first__container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, 
    rgba(255, 255, 255, 0.03) 0%, 
    transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.blur {
  position: absolute;
  z-index: 0;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  filter: blur(2px) brightness(45%) saturate(140%) contrast(1.1);
  background-size: cover;
  background-position: center;
  background-image: url("../imgs/first-bg.jpg");
  transform: scale(1);
  transition: transform 12s ease, filter 8s ease;
}

.first__container:hover .blur {
  transform: scale(1.08);
  filter: blur(2px) brightness(55%) saturate(150%) contrast(1.15);
}

.first__header {
  color: white;
  margin-top: 100px;
  font-size: clamp(42px, 7vw, 64px);
  line-height: var(--heading-line-height);
  margin-bottom: 2rem;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.6),
    0 4px 20px rgba(152, 57, 65, 0.5),
    0 8px 40px rgba(0, 0, 0, 0.3);
  letter-spacing: var(--heading-letter-spacing);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.first__header::before {
  /* content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.6; */
}

.first__header::after {
  /* content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--accent-gold) 30%, 
    var(--primary-color) 50%,
    var(--accent-gold) 70%, 
    transparent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4); */
}

.first__container h6 {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(18px, 3vw, 18px);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  font-weight: 400;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  max-width: 700px;
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

.first__button {
  padding: var(--button-padding);
  border-radius: var(--button-border-radius);
  text-align: center;
  color: white;
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  background: linear-gradient(135deg, 
    var(--primary-color) 0%, 
    var(--primary-dark) 50%,
    var(--primary-color) 100%);
  background-size: 200% 100%;
  outline: none !important;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(152, 57, 65, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: var(--button-letter-spacing);
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.first__button:hover {
  background-position: 100% 0;
  border-color: rgba(255, 255, 255, 0.4);
}

.first__button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  pointer-events: none;
}

.first__button:hover::before {
  width: 400px;
  height: 400px;
}

.first__button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--primary-color), 
    var(--accent-gold), 
    var(--primary-color));
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.first__button:hover::after {
  opacity: 0.8;
}

.first__button:hover {
  box-shadow: 
    0 8px 30px rgba(152, 57, 65, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  color: white !important;
}

.butt_new {
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.butt_new:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 
    0 12px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-5px) scale(1.03);
}

.marsh {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.butt_new:hover .marsh {
  transform: scale(1.1) rotate(5deg);
}

.butt_marg {
  margin-bottom: 30px;
}

/* Decorative elements for hero container */
.first__container .container[style*="z-index: 2"]::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.first__container .container[style*="z-index: 2"]::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(152, 57, 65, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   ADVANTAGES SECTION - Minimalist Style
   ============================================ */

.second__container {
  margin-top: 120px;
  margin-bottom: 120px;
  padding: 80px 20px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative elements for advantages section container - two elements */
.second__container::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.second__container::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -80px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.08), rgba(152, 57, 65, 0.04));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.s-section {
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
}

.section__header {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section__header .second__title {
  margin: 0;
}

.section__header .section__description, .section__header .section__description > *:last-child {
  margin: 0;
}

@media (max-width: 1200px) {
  .s-hero .sides {
    flex-direction: column;
  }

  .s-hero .side__main {
    text-align: center;
  }

  .s-hero .side__form {
    
    flex-basis: auto;
  }
  
  .s-hero .side__form .form__wrapper {
    margin-top: 0;
  }

  .s-hero .buttons__wrapper {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .section__header {
    margin-bottom: 20px;
  }

  .s-section {
    padding: 40px 0;
  }
}

/* Decorative elements for advantages section - two elements */
.s-section.advantages::before {
  content: '';
  position: absolute;
  top: 120px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.s-section.advantages::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -80px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.1), rgba(152, 57, 65, 0.05));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Header Section */
.second__header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.second__title {
  color: var(--text-dark);
  font-weight: var(--heading-font-weight);
  font-size: var(--heading-size);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.1s forwards;
}

.second__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  border-radius: 2px;
  animation: expandLine 0.8s ease 0.5s forwards;
}

@keyframes expandLine {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

.second__description {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 30px auto 0;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Decorative elements - semi-transparent squares */
.second__decorative {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: rgba(152, 57, 65, 0.08);
  border: 2px solid rgba(152, 57, 65, 0.15);
  pointer-events: none;
  z-index: 0;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-15px) rotate(20deg);
  }
}

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

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Grid Layout */
.second__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styles */
.second__card {
  text-align: center;
  padding: 20px;
  background: transparent;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  opacity: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  animation: slideInFromBottom 0.6s ease forwards;
}

.second__card:nth-child(1) {
  animation-delay: 0.2s;
}

.second__card:nth-child(2) {
  animation-delay: 0.3s;
}

.second__card:nth-child(3) {
  animation-delay: 0.4s;
}

.second__card:nth-child(4) {
  animation-delay: 0.5s;
}

.second__card:nth-child(5) {
  animation-delay: 0.6s;
}

.second__card:nth-child(6) {
  animation-delay: 0.7s;
}

.second__card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(152, 57, 65, 0.1);
}

.second__card-icon {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.second__card:hover .second__card-icon {
  transform: scale(1.1);
}

.second__card-icon::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 57, 65, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.second__card:hover .second__card-icon::before {
  opacity: 1;
}

.second__card-icon img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.second__card:hover .second__card-icon img {
  transform: scale(1.15) rotate(5deg);
}

.second__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  transition: color 0.3s ease;
}

.second__card:hover .second__card-title {
  color: var(--primary-color);
}

.second__card-description {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
  .second__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (max-width: 768px) {
  .second__title {
    font-size: 26px;
  }
  .second__container {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 60px 15px;
  }
  
  .second__header {
    margin-bottom: 50px;
  }
  
  .second__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .second__card-icon {
    height: 100px;
    margin-bottom: 25px;
  }
  
  .second__card-icon img {
    max-width: 70px;
    max-height: 70px;
  }
  
  .second__decorative {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   ROOMS / FEATURETTE SECTION - Modern Style
   ============================================ */


.title-rooms {
  margin-bottom: 20px;
}

.text-rooms {
  max-width: 600px;
  margin: 0 auto;
}

.featurette-divider {
  margin: 100px 0;
  border: 0;
  border-top: 2px solid var(--border-color);
  position: relative;
}

.featurette-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.featurette-modern {
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  position: relative;
}

.featurette-modern::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-gold), var(--primary-color), transparent);
  opacity: 0;
  animation: expandLine 1s ease 0.5s forwards;
}

.featurette-images-col {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: slideInFromLeft 0.8s ease 0.4s forwards;
}

.featurette-modern.reverse .featurette-images-col {
  animation: slideInFromRight 0.8s ease 0.4s forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Featurette Carousel Wrapper with L-Borders */
.featurette-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  border-radius: 12px;
  background: #ffffff;
}

.featurette-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featurette-carousel-wrapper:hover::after {
  opacity: 1;
}

/* L-Shaped Borders for Carousel Container */
.featurette-carousel-border {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  transition: var(--transition);
}

/* Top Left Corner - L Shape */
.featurette-border-top-left {
  top: 0;
  left: 0;
}

.featurette-border-top-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.featurette-border-top-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 80px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
}

/* Top Right Corner - L Shape */
.featurette-border-top-right {
  top: 0;
  right: 0;
}

.featurette-border-top-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-color));
}

.featurette-border-top-right::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 80px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
}

/* Bottom Right Corner - L Shape */
.featurette-border-bottom-right {
  bottom: 0;
  right: 0;
}

.featurette-border-bottom-right::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-color));
}

.featurette-border-bottom-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 80px;
  background: linear-gradient(0deg, var(--primary-color), var(--accent-gold));
}

/* Bottom Left Corner - L Shape */
.featurette-border-bottom-left {
  bottom: 0;
  left: 0;
}

.featurette-border-bottom-left::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.featurette-border-bottom-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 80px;
  background: linear-gradient(0deg, var(--primary-color), var(--accent-gold));
}

/* Featurette Carousel */
.featurette-carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  z-index: 2;
}

.featurette-carousel-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.featurette-carousel-item {
  position: relative;
  overflow: hidden;
}

.featurette-carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.featurette-carousel-wrapper:hover .featurette-carousel-item::before {
  opacity: 1;
}

.featurette-carousel-wrapper:hover .featurette-carousel-img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.featurette-carousel .carousel-indicators {
  bottom: 25px;
  margin-bottom: 0;
  z-index: 5;
}

.featurette-carousel .carousel-indicators [data-bs-target] {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 4px;
  border: none;
  cursor: pointer;
}

.featurette-carousel .carousel-indicators [data-bs-target]:hover {
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.8);
}

.featurette-carousel .carousel-indicators [data-bs-target].active {
  opacity: 1;
  width: 50px;
  background: linear-gradient(90deg, var(--accent-gold), #ffffff);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.featurette-carousel .carousel-control-prev,
.featurette-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.featurette-carousel .carousel-control-prev:hover,
.featurette-carousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1);
  box-shadow: 0 6px 20px rgba(152, 57, 65, 0.25);
}

.featurette-carousel-wrapper:hover .carousel-control-prev,
.featurette-carousel-wrapper:hover .carousel-control-next {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.featurette-carousel .carousel-control-prev {
  left: 20px;
}

.featurette-carousel .carousel-control-next {
  right: 20px;
}

.featurette-carousel .carousel-control-prev-icon,
.featurette-carousel .carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(25%) sepia(72%) saturate(2181%) hue-rotate(329deg) brightness(92%) contrast(89%);
  width: 20px;
  height: 20px;
}

/* Content Column */
.featurette-content-col {
  padding: 40px 50px 40px 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  animation: slideInFromRight 0.8s ease 0.6s forwards;
}

.featurette-modern.reverse .featurette-content-col {
  animation: slideInFromLeft 0.8s ease 0.6s forwards;
}

.featurette-content {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featurette-heading {
  font-size: var(--heading-size);
  font-weight: var(--heading-font-weight);
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  opacity: 0;
  text-align: left;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

.reverse .featurette-heading {
  text-align: right;
}

.reverse .featurette-heading::before {
  left: auto;
  right: 0;
}

.featurette-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% - -24px);
  transform: translateY(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
  border-radius: 2px;
  opacity: 0;
  animation: expandLineVertical 0.6s ease 1s forwards;
}

@keyframes expandLineVertical {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: 4px;
  }
}

.featurette-divider-line {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  margin-bottom: 28px;
  border-radius: 2px;
  animation: expandLine 0.8s ease 1.2s forwards;
}

.featurette-description {
  color: var(--text-medium);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.4s forwards;
}

.featurette-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.6s forwards;
}

.featurette-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.08), rgba(212, 175, 55, 0.08));
  border: 1.5px solid var(--border-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.featurette-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.15), rgba(212, 175, 55, 0.15));
  transition: left 0.4s ease;
  z-index: 0;
}

.featurette-badge:hover::before {
  left: 0;
}

.featurette-badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(152, 57, 65, 0.2);
}

.featurette-badge > * {
  position: relative;
  z-index: 1;
}

.featurette-badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.featurette-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--button-padding);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  background-size: 200% 100%;
  color: white !important;
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  text-transform: uppercase;
  letter-spacing: var(--button-letter-spacing);
  border-radius: var(--button-border-radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(152, 57, 65, 0.25);
  text-decoration: none;
  width: fit-content;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.8s forwards;
}

.reverse .featurette-button {
  margin-left: auto;
}

.featurette-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.featurette-button:hover::before {
  width: 300px;
  height: 300px;
}

.featurette-button:hover {
  background-position: 100% 0;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(152, 57, 65, 0.4);
  color: white !important;
}

.featurette-button span {
  position: relative;
  z-index: 1;
}

/* Reverse Layout */
.featurette-modern.reverse .featurette-images-col {
  order: 2;
}

.featurette-modern.reverse .featurette-content-col {
  order: 1;
  justify-content: flex-end;
}


/* Responsive */
@media (max-width: 991px) {
  /* Featurette */
  .featurette-modern {
    padding: 40px 0;
  }
  
  .featurette-content-col {
    padding: 30px 20px;
    margin-top: 30px;
    justify-content: center;
  }
  
  .featurette-carousel-img {
    height: 400px;
  }
  
  .featurette-carousel-border::before,
  .featurette-carousel-border::after {
    width: 60px !important;
    height: 4px !important;
  }
  
  .featurette-carousel-border::after {
    width: 4px !important;
    height: 60px !important;
  }
  
  /* Navbar Mobile */
  
  .logo {
    height: 45px;
  }
  
  .navbar-container .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 10px 0;
    margin-top: 10px;
  }
  
  .navbar-container .menu-item {
    width: 100%;
  }
  
  .navbar-container .menu-item a {
    font-size: 15px;
    padding: 8px 0px !important;
    height: auto !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .navbar-container .menu-item.current-menu-item > a::before,
  .navbar-container .menu-item a.active::before {
    left: 20px;
    right: 20px;
    height: 3px;
  }
  
  .navbar-container .menu-item-has-children > a::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666666;
    transform: rotate(-90deg);
  }

  .navbar-container .menu-item a::after {
    content: none;
  }
  
  .navbar-container .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    padding: 0;
    margin-left: 20px;
    width: calc(100% - 20px);
  }
  
  .navbar-contact {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    gap: 5px;
    margin-left: 0!important;
  }
  
  .navbar-contact::before {
    display: none;
  }
  
  .nav-address {
    text-align: left;
  }
  
  .nav-link-custom {
    text-align: left;
    height: auto !important;
    padding: 0px 0px !important;
    width: 100%;
    justify-content: flex-start;
  }
  
  .nav-address {
    height: auto !important;
    padding: 0px 0px !important;
    display: block;
  }
  
  .nav-link-custom-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .featurette-images-col {
    padding: 10px;
  }
  
  .featurette-content {
    max-width: 100%;
  }
  
  .featurette-heading {
    text-align: center;
  }
  
  .featurette-divider-line {
    margin-left: auto;
    margin-right: auto;
  }
  
  .featurette-description {
    text-align: center;
  }
  
  .featurette-badges {
    justify-content: center;
  }
  
  .featurette-button {
    margin: 0 auto;
  }
}

/* ============================================
   GALLERY SECTION - Resort Hotel Style
   ============================================ */

.s-gallery {
  padding: 60px 0 10px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.s-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
}

/* Decorative elements for gallery section - two elements */
.s-gallery::after {
  content: '';
  position: absolute;
  top: 120px;
  left: -70px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(184, 77, 88, 0.12), rgba(184, 77, 88, 0.06));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Additional decorative element for gallery */
.gallery-slider-wrapper::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.gallery-title {
  color: var(--text-dark);
  font-weight: var(--heading-font-weight);
  font-size: var(--heading-size);
  margin-bottom: 20px;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.gallery-title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding: 0 8px;
}

.gallery-title-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 8px;
  right: 8px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  border-radius: 2px;
}

.gallery-description {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Full-width Gallery Slider */
.gallery-slider-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.gallery-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

.gallery-slider .owl-stage-outer {
  padding: 0;
}

.gallery-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

.gallery-slider .owl-item {
  display: flex;
  height: auto;
}

.gallery-slide-item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.gallery-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-slide-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

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

/* Hide default owl navigation */
.gallery-slider .owl-nav {
  display: none !important;
}

/* Pagination Dots */
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.owl-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  justify-content: center;
}

.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0!important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.owl-dots .owl-dot:focus {
  outline: none;
}

.owl-dots .owl-dot:active {
  outline: none;
}

.owl-dots .owl-dot:hover {
  background: var(--primary-color)!important;
  transform: scale(1.2);
}

.owl-dots .owl-dot.active {
  background: var(--primary-color)!important;
  border-color: rgba(152, 57, 65, 0.3)!important;
  box-shadow: 0 0 0 4px rgba(152, 57, 65, 0.1)!important;
}

.owl-theme .owl-dots .owl-dot span {
  display: none!important;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* Fancybox Custom Styling */
.fancybox__toolbar {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.fancybox__button {
  color: #ffffff;
}

.fancybox__button:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.2);
}

.fancybox__thumbs {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox__thumb {
  border: 2px solid transparent;
}

.fancybox__thumb:hover,
.fancybox__thumb.is-nav-selected {
  border-color: var(--accent-gold);
}

/* ============================================
   FEATURETTE CARDS SECTION - Cards Style
   ============================================ */

.s-featurette {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.s-featurette::after {
  content: '';
  position: absolute;
  top: 80px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.1), rgba(152, 57, 65, 0.05));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.s-featurette::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.s-featurette .section__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.s-featurette .section__grid .card-featurette {
  width: calc(33.33% - 20px);
}

.card-featurette {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-featurette .card-featurette-thumbnail {
  height: 350px;
  position: relative;
}

.card-featurette .card-featurette-slider {
  height: 100%;
}

.card-featurette .card-featurette-slider .swiper-slide {
  display: flex;
}

.card-featurette .card-featurette-slider .swiper-slide a {
  width: 100%;
}

.card-featurette .card-featurette-slider .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
}

.card-featurette .card-featurette-slider:hover .card-featurette-slider-nav-prev,
.card-featurette .card-featurette-slider:hover .card-featurette-slider-nav-next {
  opacity: 1;
}

.card-featurette-slider-nav > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  background-color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-featurette-slider-nav-prev {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  left: 5px;
}

.card-featurette-slider-nav-next {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  right: 5px;
}

.card-featurette .card-featurette-content {
  position: relative;
  padding: 50px 20px 40px;
}

.card-featurette-button {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  background-color: #eee;
  color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: var(--button-border-radius);
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 1px 12px rgba(152, 57, 65, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-featurette-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgb(107, 24, 24);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.6s ease, height 0.6s ease;
}

.card-featurette-button:hover::after {
  width: 300px;
  height: 300px;
}

.card-featurette-button:hover {
  background-position: 100% 0;
  box-shadow: 0 6px 25px rgba(152, 57, 65, 0.4);
  color: white !important;
}

.card-featurette-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-align: center;
}

.card-featurette-description {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.card-featurette-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.card-featurette-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.08), rgba(212, 175, 55, 0.08));
  border: 1.5px solid var(--border-color);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-featurette-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.15), rgba(212, 175, 55, 0.15));
  transition: left 0.4s ease;
  z-index: 0;
}

.card-featurette-badge:hover::before {
  left: 0;
}

.card-featurette-badge:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(152, 57, 65, 0.2);
}

.card-featurette-badge-icon {

}

.card-featurette-badge-text {
  font-size: 14px;
  color: var(--text-medium);
}

@media (max-width: 1199px) {
  .s-featurette .section__grid .card-featurette {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .s-featurette .section__grid .card-featurette {
    width: 100%;
  }
}

/* ============================================
   GALLERY V2 SECTION - Gallery Style
   ============================================ */

.s-gallery-v2 {

}

.s-gallery-v2 .section__content {
  padding: 20px 30px 0;
}

.s-gallery-v2 .gallery-slider {
  padding-bottom: 14px;
  height: 500px;
}

.s-gallery-v2 .gallery-slider .swiper-slide {
  display: flex;
}

.s-gallery-v2 .gallery-slider .swiper-slide a {
  width: 100%;
}

.s-gallery-v2 .gallery-slider .swiper-slide a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: .4s ease;
}

.s-gallery-v2 .gallery-slider .swiper-slide a:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.s-gallery-v2 .gallery-slider .swiper-slide a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  background: url(../imgs/search.svg) no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: .4s ease;
}

.s-gallery-v2 .gallery-slider .swiper-slide a:hover::after {
  opacity: 1;
}

.s-gallery-v2 .gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-gallery-v2 .gallery-slider > .swiper-scrollbar {
  border-radius: 2px;
  height: 8px;
  width: 100%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .s-gallery-v2 .gallery-slider {
    height: 300px;
  }
}

/* ============================================
   FEEDBACK SECTION - Booking Form Style
   ============================================ */

.s-feedback {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.s-feedback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
}

/* Decorative elements for feedback section - two elements */
.s-feedback::after {
  content: '';
  position: absolute;
  top: 80px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(152, 57, 65, 0.1), rgba(152, 57, 65, 0.05));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Additional decorative element for feedback */
.feedback-wrapper::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Main Wrapper */
.feedback-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Left Side - Booking Card */
.feedback-card-wrapper {
  opacity: 0;
  animation: slideInFromLeft 0.8s ease 0.2s forwards;
}

.feedback-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(152, 57, 65, 0.15);
}

.feedback-card-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

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

.feedback-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 25px 30px;
}

.feedback-card-price {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feedback-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-image: url(/wp-content/uploads/2025/10/photo_2021-04-26_19-30-04-768x576.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-card-content:hover {
  background-color: rgba(0, 0, 0, 0);
}

.feedback-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.feedback-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feedback-card-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-medium);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Right Side - Booking Form */
.feedback-form-wrapper {
  opacity: 0;
  animation: slideInFromRight 0.8s ease 0.4s forwards;
}

.feedback-form-header {
  margin-bottom: 40px;
}

.feedback-form-title {
  color: var(--text-dark);
  font-weight: var(--heading-font-weight);
  font-size: var(--heading-size);
  margin-bottom: 20px;
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.feedback-form-description {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .s-feedback {
    padding: 40px 0;
  }

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

/* ============================================
   FOOTER - Hotale Style Multi-level
   ============================================ */

.footer-container {
  background: linear-gradient(to bottom, #1a1a1a 0%, #2c2c2c 100%);
  color: #ffffff;
  margin-top: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
  background-size: 200% 100%;
}

.footer-main {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.footer-widget-about {
  flex: 1;
}

.footer-widget h4 {
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

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

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-widget ul li a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
  color: var(--accent-gold);
}

.footer-widget ul li a:hover {
  color: var(--accent-gold);
  padding-left: 25px;
}

.footer-widget ul li a:hover::before {
  opacity: 1;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent-gold);
}

.footer-bottom a:hover {
  color: white;
}

/* ============================================
   CONTACT FORM 7 STYLES - Booking Form Style
   ============================================ */

.feedback-form-container {
  background: white;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feedback-form-container #WidgetFooterBlockId div {
  box-sizing: border-box!important;
}

.wpcf7-form {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 24px;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  background: white;
  font-family: inherit;
  color: var(--text-dark);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
  color: #999;
  opacity: 1;
}

.wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
  cursor: pointer;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(152, 57, 65, 0.1);
}

.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button - Unified Style */
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: var(--button-padding);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  background-size: 200% 100%;
  color: white;
  border: 2px solid transparent;
  border-radius: var(--button-border-radius);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  text-transform: uppercase;
  letter-spacing: var(--button-letter-spacing);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(152, 57, 65, 0.25);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.wpcf7-form input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.wpcf7-form input[type="submit"]:hover::before {
  width: 400px;
  height: 400px;
}

.wpcf7-form input[type="submit"]:hover {
  background-position: 100% 0;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(152, 57, 65, 0.4);
}

.wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* Form Row Layout */
.wpcf7-form .wpcf7-form-control-wrap[data-name*="date"],
.wpcf7-form .wpcf7-form-control-wrap[data-name*="room"],
.wpcf7-form .wpcf7-form-control-wrap[data-name*="guest"] {
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
}

.wpcf7-form .wpcf7-form-control-wrap[data-name*="date"]:nth-child(odd),
.wpcf7-form .wpcf7-form-control-wrap[data-name*="room"],
.wpcf7-form .wpcf7-form-control-wrap[data-name*="guest"]:nth-child(odd) {
  margin-right: 20px;
}

.wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 500;
  position: absolute;
}

.wpcf7-form .actions {
  position: relative;
  text-align: center;
}

.wpcf7-response-output {
  position: absolute;
  top: 100%;
  margin: 0!important;
  width: 100%;
  left: 0;
  text-align: center;
}

/* ============================================
   UTILITIES & RESPONSIVE
   ============================================ */

.toTopButton {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 24px;
  border: 2px solid white;
}

.toTopButton:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.toast {
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  border: none;
}

.toast-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
}

.toast-body {
  padding: 1.5rem;
  color: var(--text-dark);
}

/* Owl Carousel */
.owl-carousel .owl-item img {
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .feedback-wrapper {
    grid-template-columns: 1fr;
  }

  .feedback-card-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .first__container {
    min-height: 90vh;
    margin-top: 70px;
    padding: 60px 0;
  }
  
  .first__button {
    padding: 16px 35px;
    font-size: 14px;
    margin: 8px 6px;
  }
  
  
  .featurette {
    padding: 40px 20px;
  }
  
  .featurette .carousel-item img {
    height: 350px;
  }
  
  .feedback-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feedback-card-wrapper {
    animation: fadeInUp 0.8s ease 0.2s forwards;
  }
  
  .feedback-form-wrapper {
    animation: fadeInUp 0.8s ease 0.4s forwards;
  }
  
  .feedback-card-image {
    height: 300px;
  }
  
  .feedback-form-container {
    padding: 30px 25px;
  }
  
  .wpcf7-form {
    padding: 0;
  }
  
  .wpcf7-form .wpcf7-form-control-wrap[data-name*="date"],
  .wpcf7-form .wpcf7-form-control-wrap[data-name*="room"],
  .wpcf7-form .wpcf7-form-control-wrap[data-name*="guest"] {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .gallery-slide-image {
    height: 400px;
  }
  
  .gallery-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .first__container {
    padding: 40px 0;
  }
  
  .first__header {
    font-size: 32px;
    margin-top: 20px;
  }
  
  .first__container h6 {
    font-size: 16px;
  }
  
  .gallery-slide-image {
    height: 300px;
  }
  
  .owl-dots {
    gap: 8px;
  }
  
  .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
  }
  
  .owl-dots .owl-dot.active {
    width: 14px;
    height: 14px;
  }
}

/* Scroll To Top */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#scroll-top .icon-arrow {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scroll-top .icon-arrow .ast-arrow-svg {
  width: 30px;
  height: 30px;
  transform: rotate(180deg);
}

#scroll-top:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(152, 57, 65, 0.4);
}