/* Prevent scroll jank — fixed backgrounds cause full-page repaints */
.awe-parallax,
.awe-static,
[class*="bg-"] {
  background-attachment: scroll !important;
}

@-webkit-keyframes moveFromLeft {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes moveFromLeft {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

.ot-heading h2 {
  letter-spacing: 1px;
  font: 700 36px 'Playfair Display';
  margin-bottom: 15px;
  text-transform: uppercase; }

.ot-heading .sub {
  font: 300 16px 'Poppins';
  margin-bottom: 5px; }

.img-hover-box .img {
  overflow: hidden; }
  .img-hover-box .img img {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
  .img-hover-box .img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

.btn-medium {
  height: 40px;
  line-height: 40px !important;
  padding: 0 30px !important; }

/* ======================== HEADER — PREMIUM REDESIGN =========================*/


/* ---------- Main header bar ---------- */
#header.header-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#header.header-premium .header_content {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 30, 108, 0.12);
  transition: background 0.4s ease, padding 0.35s ease, box-shadow 0.4s ease;
}

#header.header-premium .header_content .container {
  display: flex;
  align-items: center;
  height: 72px;
  position: relative;
}

/* Logo */
#header.header-premium .header_logo {
  flex-shrink: 0;
  margin-right: 32px;
  transition: opacity 0.3s ease;
}
#header.header-premium .header_logo img {
  max-height: 52px;
  width: auto;
  display: block;
  transition: max-height 0.35s ease;
}

/* ===== HEADER TOP BAR ===== */
#header.header-premium .header_top {
  background: #001030;
  border-bottom: 1px solid rgba(255, 228, 120, 0.2);
  padding: 7px 0;
}

#header.header-premium .header_top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ht-item {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ht-item i {
  color: #FFE478;
  font-size: 12px;
}

.ht-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ht-item a:hover { color: #FFE478; }

.header-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ht-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 228, 120, 0.3);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ht-social:hover {
  background: #FFE478;
  border-color: #FFE478;
  color: #001030;
}

/* Hide top bar on mobile */
@media (max-width: 767px) {
  #header.header-premium .header_top { display: none; }
}

/* Nav menu */
#header.header-premium .header_menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
#header.header-premium .header_menu .menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

#header.header-premium .header_menu .menu > li > a {
  display: block;
  padding: 0 18px;
  line-height: 72px;
  color: #001E6C;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

/* Yellow underline indicator */
#header.header-premium .header_menu .menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #FFE478;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

#header.header-premium .header_menu .menu > li > a:hover,
#header.header-premium .header_menu .menu > li.current-menu-item > a {
  color: #001030;
}

#header.header-premium .header_menu .menu > li > a:hover::after,
#header.header-premium .header_menu .menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Book Now CTA button */
.header-book-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 22px;
  height: 38px;
  line-height: 36px;
  border: 1.5px solid #001E6C;
  color: #001E6C;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  margin-left: 20px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.header-book-btn:hover {
  background: #001E6C;
  color: #FFE478;
  box-shadow: 0 6px 22px rgba(0, 30, 108, 0.3);
  text-decoration: none;
}

/* Hamburger button */
#header.header-premium .menu-bars {
  display: none;
  margin-left: 14px;
  cursor: pointer;
}

/* ---------- Sticky / scrolled state ---------- */

#header.header-premium.header-scrolled .header_content {
  background: #f5f5f5;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  border-bottom-color: rgba(0, 30, 108, 0.18);
}

#header.header-premium.header-scrolled .header_content .container {
  height: 60px;
}

#header.header-premium.header-scrolled .header_logo img {
  max-height: 42px;
}

#header.header-premium.header-scrolled .header_menu .menu > li > a {
  line-height: 60px;
}

#header.header-premium.header-scrolled .header_menu .menu > li > a::after {
  bottom: 10px;
}

/* Override base-theme styles that conflict with the premium header */
#header.header-premium { margin-top: 0 !important; position: fixed !important; top: 0 !important; }

/* Kill the white :after overlay that the base theme injects */
#header.header-premium .header_content::after,
#header.header-premium .header_content:after {
  background-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Reset base-theme absolute positioning on header_content */
#header.header-premium .header_content {
  position: relative !important;
  top: auto !important;
  text-align: left !important;
  font-size: inherit !important;
}

/* Kill base-theme gold background on current/hover menu items — we use underline instead */
#header.header-premium .header_menu .menu > li.current-menu-item > a,
#header.header-premium .header_menu .menu > li:hover > a {
  background-color: transparent !important;
  color: #001030 !important;
}

/* Prevent old scripts.js top-offset from affecting the premium flexbox nav */
#header.header-premium .header_menu { top: auto !important; position: static !important; }

/* ---------- Legacy header-v3 / header-sticky fallbacks ---------- */
#header.header-v3 {
  background: rgba(0, 0, 0, 0.9);
  color: #fff; }
  #header.header-v3 .header_top {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 20px 0 10px 0; }
    #header.header-v3 .header_top .logo-top {
      display: inline-block;
      max-height: 66px;
      width: auto; }
    #header.header-v3 .header_top .header_left, #header.header-v3 .header_top .header_right {
      line-height: 50px; }
    #header.header-v3 .header_top .dropdown ul {
      top: 42px; }
      #header.header-v3 .header_top .dropdown ul li {
        line-height: 20px; }
        #header.header-v3 .header_top .dropdown ul li:hover a {
          color: #fff !important; }
    #header.header-v3 .header_top .socials a {
      font-size: 12px;
      line-height: 36px;
      color: #fff;
      display: inline-block;
      padding: 0 7px; }
      #header.header-v3 .header_top .socials a:hover, #header.header-v3 .header_top .socials a.active {
        background-color: #fff;
        color: #333; }
  #header.header-v3 .header_content {
    text-align: center; }
    #header.header-v3 .header_content .header_logo {
      display: none; }
    #header.header-v3 .header_content .header_menu .menu > li a {
      background-color: transparent;
      color: #fff;
      line-height: 64px;
      position: relative;
      -webkit-transition: all 200ms linear;
      -o-transition: all 200ms linear;
      transition: all 200ms linear; }
    #header.header-v3 .header_content .header_menu .menu > li > a:hover:after {
      content: "";
      height: 2px;
      position: absolute;
      bottom: 0;
      left: 20px;
      right: 20px;
      width: auto;
      background-color: #FFE478;
      -webkit-animation: moveFromLeft 400ms ease;
      animation: moveFromLeft 400ms ease; }
    #header.header-v3 .header_content .header_menu .menu .sub-menu {
      background-color: #001844;
      border: none; }
      #header.header-v3 .header_content .header_menu .menu .sub-menu li a {
        line-height: 20px;
        font-weight: inherit; }
        #header.header-v3 .header_content .header_menu .menu .sub-menu li a:hover {
          color: #fff;
          background-color: #FFE478; }
      #header.header-v3 .header_content .header_menu .menu .sub-menu li.current-menu-item a {
        background-color: #FFE478 !important; }
    #header.header-v3 .header_content:after {
      background: rgba(0, 0, 0, 0.9); }
  #header.header-v3.header-sticky {
    margin-top: 0; }

#header.header-sticky {
  margin-top: 0 !important; }
    #header.header-v3.header-sticky .header_top .logo-top {
      margin-top: 60px;
      margin-bottom: 0;
      max-width: 100px;
      height: auto; }
    #header.header-v3.header-sticky .header_content .header_menu li a {
      line-height: 50px; }
    #header.header-v3.header-sticky .header_content:after {
      -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.58) !important;
      box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.58) !important; }

/* ============================= HERO BANNER =========================*/

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Slides */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1);   background-position: center center; }
  to   { transform: scale(1.07); background-position: 55% center; }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 10, 40, 0.2) 0%,
    rgba(0, 10, 40, 0.35) 50%,
    rgba(0, 10, 40, 0.55) 100%
  );
}

/* Content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.hero-slide.active .hero-logo,
.hero-slide.active .hero-tagline,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-btns {
  animation: heroFadeUp 0.85s ease both;
}
.hero-slide.active .hero-logo    { animation-delay: 0.1s; }
.hero-slide.active .hero-tagline { animation-delay: 0.3s; }
.hero-slide.active .hero-title   { animation-delay: 0.5s; }
.hero-slide.active .hero-desc    { animation-delay: 0.7s; }
.hero-slide.active .hero-btns    { animation-delay: 0.9s; }

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

.hero-logo {
  width: 140px;
  margin-bottom: 20px;
  opacity: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}

.hero-tagline {
  display: inline-block;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #FFE478;
  margin-bottom: 16px;
  opacity: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
  max-width: 860px;
  opacity: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 0 36px;
  opacity: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* CTA Buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: #FFE478;
  color: #001030;
  border: 2px solid #FFE478;
  box-shadow: 0 8px 24px rgba(255,228,120,0.35);
}

.hero-btn-primary:hover {
  background: transparent;
  color: #FFE478;
  box-shadow: 0 12px 32px rgba(255,228,120,0.2);
  text-decoration: none;
}

.hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,228,120,0.4);
  color: #FFE478;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: #FFE478;
  border-color: #FFE478;
  color: #001030;
}

.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,228,120,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: #FFE478;
  border-color: #FFE478;
  width: 28px;
  border-radius: 5px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: #FFE478;
  transition: width linear;
}

/* Stat badges */
.hero-stats {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 10, 40, 0.55);
  border: 1px solid rgba(255, 228, 120, 0.25);
  border-radius: 40px;
  padding: 12px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 10;
  animation: heroFadeUp 1s ease 1.2s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFE478;
  line-height: 1;
}

.hero-stat-plus {
  font-size: 16px;
}

.hero-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 228, 120, 0.25);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 36px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: heroFadeUp 1s ease 1.5s both;
}

.hero-scroll-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,228,120,0.3);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero-scroll-dot {
  position: absolute;
  top: -6px;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFE478;
  animation: scrollDrop 1.6s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -6px; opacity: 1; }
  80%  { top: 48px; opacity: 0.8; }
  100% { top: 48px; opacity: 0; }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-banner      { height: 100svh; min-height: 500px; }
  .hero-arrow       { display: none; }
  .hero-title       { font-size: 26px; }
  .hero-desc        { font-size: 13px; }
  .hero-stats       { display: none; }
  .hero-scroll      { display: none; }
}

/* ============================= SLIDER TEXT VISIBILITY =========================*/
.slider-caption,
.slider-caption-sub {
  font-weight: bold !important;
}
.slider-caption-sub.slider-logo-img {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.slider-caption-sub.slider-caption-sub-3,
.slider-caption-sub.slider-caption-1 {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
}
.slider-caption.slider-caption-3 {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
}

/* =============================  BANNER SLIDER =========================*/
.section-slider.slider-style-2 .tparrows {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff; }
  .section-slider.slider-style-2 .tparrows.tp-leftarrow {
    left: 50px; }
    .section-slider.slider-style-2 .tparrows.tp-leftarrow:before {
      content: "\e61c";
      font-family: 'Lotus Icon', sans-serif;
      color: #fff;
      z-index: 100;
      font-size: 13px; }
  .section-slider.slider-style-2 .tparrows.tp-rightarrow {
    right: 50px; }
    .section-slider.slider-style-2 .tparrows.tp-rightarrow:before {
      content: "\e61d";
      font-family: 'Lotus Icon', sans-serif;
      color: #fff;
      z-index: 100;
      font-size: 13px; }

/* ======================= CHECK AVAILABILITY  ==================== */
.section-check-availability.availability-style-2 {
  float: none; }
  .section-check-availability.availability-style-2 .check-availability {
    margin-top: 115px;
    padding: 0;
    text-align: center; }
    .section-check-availability.availability-style-2 .check-availability h2 {
      color: #040404;
      font: 700 36px 'Playfair Display';
      padding-left: 0; }
      .section-check-availability.availability-style-2 .check-availability h2:before {
        top: -65px;
        right: 0;
        margin: 0 auto; }
    .section-check-availability.availability-style-2 .check-availability:before {
      background: none; }
    .section-check-availability.availability-style-2 .check-availability .availability-form {
      text-align: center; }
      .section-check-availability.availability-style-2 .check-availability .availability-form .awe-calendar-wrapper .awe-calendar {
        border-color: #000;
        color: #001844;
        font-size: 14px;
        font-family: 'Poppins', sans-serif; }
        .section-check-availability.availability-style-2 .check-availability .availability-form .awe-calendar-wrapper .awe-calendar::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          color: #000; }
        .section-check-availability.availability-style-2 .check-availability .availability-form .awe-calendar-wrapper .awe-calendar::-moz-placeholder {
          /* Firefox 19+ */
          color: #000; }
        .section-check-availability.availability-style-2 .check-availability .availability-form .awe-calendar-wrapper .awe-calendar:-ms-input-placeholder {
          /* IE 10+ */
          color: #000; }
        .section-check-availability.availability-style-2 .check-availability .availability-form .awe-calendar-wrapper .awe-calendar:-moz-placeholder {
          /* Firefox 18- */
          color: #000; }
      .section-check-availability.availability-style-2 .check-availability .availability-form .awe-calendar-wrapper .lotus-icon-calendar {
        color: #000; }
      .section-check-availability.availability-style-2 .check-availability .availability-form .awe-select .dropdown-toggle {
        border-color: #000;
        padding: 0 15px 0 20px !important; }
        .section-check-availability.availability-style-2 .check-availability .availability-form .awe-select .dropdown-toggle span {
          color: #001844;
          font-size: 14px;
          font-family: 'Poppins', sans-serif; }
          .section-check-availability.availability-style-2 .check-availability .availability-form .awe-select .dropdown-toggle span.caret {
            background: url("../images/home-3/icon-dropdow.png") !important;
            background-repeat: no-repeat;
            background-position: center center;
            height: 13px;
            line-height: 10px;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 11px; }
    .section-check-availability.availability-style-2 .check-availability .vailability-submit .awe-btn {
      height: 40px;
      position: relative;
      z-index: 1; }

/*=== ======================== ACCOMMODATIONS ========================*/
.item.room-item {
  display: inline-block;
  background-color: #fff;
  margin-bottom: 30px;
  border-color: #e1e1e1; }
  .item.room-item .title {
    padding: 15px 0 5px 0; }
    .item.room-item .title a {
      font: 400 28px 'Playfair Display';
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      text-transform: uppercase; }
      .item.room-item .title a:hover, .item.room-item .title a:focus {
        color: #FFE478; }
  .item.room-item .price {
    font: 600 16px 'Playfair Display';
    color: #FFE478;
    margin-bottom: 15px;
    text-transform: uppercase; }
  .item.room-item .info p {
    display: inline-block;
    max-width: 80px;
    margin: 0 20px; }
    .item.room-item .info p .number {
      font: 300 24px 'Playfair Display'; }
    .item.room-item .info p span {
      font: 300 12px 'Playfair Display';
      display: block; }
  .item.room-item .awe-btn {
    margin: 25px 0 20px 0; }

.item.room-item-style-2 .outer {
  position: relative; }
  .item.room-item-style-2 .outer .bgr {
    position: absolute;
    top: 75%;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out; }
    .item.room-item-style-2 .outer .bgr .details .title a {
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      color: #fff; }
      .item.room-item-style-2 .outer .bgr .details .title a:hover, .item.room-item-style-2 .outer .bgr .details .title a:focus {
        color: #FFE478; }
    .item.room-item-style-2 .outer .bgr .details .info {
      display: none;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }

.item.room-item-style-2:hover .bgr {
  top: 0;
  bottom: 0;
  margin-top: 0; }
  .item.room-item-style-2:hover .bgr .details {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    left: 0;
    text-align: center;
    padding: 0 45px; }
    .item.room-item-style-2:hover .bgr .details .info {
      display: block; }

.ot-accomd-modations .content {
  border-top: 1px solid #dadada; }
  .ot-accomd-modations .content .ot-accomd-modations-content .owl-buttons {
    display: none; }
  .ot-accomd-modations .content .ot-accomd-modations-content .owl-pagination {
    display: none; }

/*======================== ABOUT ============================*/
.ot-about .content .featured {
  padding: 0 195px; }

/*======================== ABOUT ============================*/
.section-our-best.our-best-style-2 .img-hover-box {
  padding-left: 35px; }

.section-our-best.our-best-style-2 .item {
  text-align: center;
  margin-bottom: 25px; }
  .section-our-best.our-best-style-2 .item img {
    margin: 0 auto; }

.section-our-best.our-best-style-2 .owl-controls .owl-pagination {
  text-align: center; }
  .section-our-best.our-best-style-2 .owl-controls .owl-pagination .owl-page {
    border-color: #232323; }
    .section-our-best.our-best-style-2 .owl-controls .owl-pagination .owl-page.active {
      background-color: #232323; }

.section-our-best.our-best-style-2 .owl-buttons {
  display: none; }

/* ===============================  HOME ABOUT ================================ */
.section-home-about.style-2 .home-about .img-hover-box {
  padding-right: 35px; }

/* ===============================  OUR BEST ================================ */
.ot-out-best .content .item {
  width: 165px;
  height: 160px;
  background-color: #fbfbfb;
  padding: 0 5px;
  display: table-cell;
  vertical-align: middle; }
  .ot-out-best .content .item img {
    max-height: 60px;
    margin: 0 auto; }
  .ot-out-best .content .item span {
    font-size: 16.31px;
    color: #333; }

.ot-out-best .owl-controls .owl-prev,
.ot-out-best .owl-controls .owl-next {
  border-color: #bcbcbc !important;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  line-height: 36px !important; }
  .ot-out-best .owl-controls .owl-prev:hover,
  .ot-out-best .owl-controls .owl-next:hover {
    border-color: #001844 !important; }
    .ot-out-best .owl-controls .owl-prev:hover i:before,
    .ot-out-best .owl-controls .owl-next:hover i:before {
      color: #001844 !important; }
  .ot-out-best .owl-controls .owl-prev i:before,
  .ot-out-best .owl-controls .owl-next i:before {
    color: #bcbcbc !important; }

.ot-out-best .owl-controls .owl-prev {
  left: -50px; }

.ot-out-best .owl-controls .owl-next {
  right: -50px; }

/* ============================ HOME GUEST ============================ */
.section-home-guestbook.home-guestbook-style-2.bg-22 {
  background: url("../images/home-3/bgr-guest-book.png");
  background-position: 50% 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0; }

.section-home-guestbook.home-guestbook-style-2 .home-guestbook {
  color: #fff;
  z-index: 2; }
  .section-home-guestbook.home-guestbook-style-2 .home-guestbook .ot-heading h2 {
    color: #fff; }
  .section-home-guestbook.home-guestbook-style-2 .home-guestbook .guestbook-item {
    padding: 0 200px; }
    .section-home-guestbook.home-guestbook-style-2 .home-guestbook .guestbook-item .text p {
      padding-top: 35px; }
      .section-home-guestbook.home-guestbook-style-2 .home-guestbook .guestbook-item .text p:before {
        content: "";
        background: url("../images/home-3/icon/before-testimonial.png");
        width: 30px;
        height: 19px;
        right: 0;
        left: -30px;
        top: -10px;
        margin: 0 auto; }
      .section-home-guestbook.home-guestbook-style-2 .home-guestbook .guestbook-item .text p:after {
        content: ""; }
    .section-home-guestbook.home-guestbook-style-2 .home-guestbook .guestbook-item .img {
      width: 80px;
      height: 80px;
      margin: 20px auto 15px auto; }

/* ======================================= DETAILS ================================== */
.section-deals .item-deal {
  overflow: hidden;
  position: relative;
  margin: 30px 0;
  color: #fff; }
  .section-deals .item-deal img {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; }
  .section-deals .item-deal .info {
    position: absolute;
    left: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    opacity: 1; }
    .section-deals .item-deal .info .title {
      color: #fff; }
    .section-deals .item-deal .info .awe-btn {
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
  .section-deals .item-deal:before {
    content: "";
    position: absolute;
    left: -10%;
    top: -40%;
    width: 60%;
    height: 200%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
    -webkit-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    transform: rotate(-7deg);
    -webkit-transition: left .4s .3s;
    -o-transition: left .4s .3s;
    transition: left .4s .3s; }
  .section-deals .item-deal:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

/*===================================== NEWS ============================*/
.section-news .item {
  margin-bottom: 20px;
  overflow: hidden; }
  .section-news .item .info {
    padding: 15px 30px; }
    .section-news .item .info .date, .section-news .item .info .more {
      color: #898989; }
  .section-news .item .title {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .section-news .item .title:hover {
      color: #FFE478; }
  .section-news .item .img {
    overflow: hidden; }
    .section-news .item .img img {
      -webkit-transition: all .5s ease;
      -o-transition: all .5s ease;
      transition: all .5s ease; }
  .section-news .item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

/*================================= MAP ===================================== */
.section-map.style-2 {
  position: relative; }
  .section-map.style-2 .contact-map {
    height: 600px; }
    .section-map.style-2 .contact-map .contact {
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: 0 auto;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      .section-map.style-2 .contact-map .contact:after {
        content: "\f041";
        font: normal normal normal 14px/1 FontAwesome;
        color: #fff;
        background-color: #FFE478;
        font-size: 30px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -25px;
        margin: 0 auto; }

/*================================= VIDEO ===================================== */
.section-video {
  position: relative; }
  .section-video.bg-23 {
    background: url("../images/home-3/bgr-video.png");
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 520px; }
  .section-video .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background: url("../images/home-3/icon/player-1.png");
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: cover; }
  .section-video .modal-video {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999; }
    .section-video .modal-video iframe {
      position: relative;
      top: 150px;
      width: 700px;
      max-width: 90%;
      display: block;
      margin: 0 auto; }
      .section-video .modal-video iframe .ytp-autohide .ytp-watermark {
        display: none !important; }
    .section-video .modal-video.opened {
      visibility: visible;
      opacity: 1;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  .section-video:hover .btn-play {
    width: 70px;
    height: 70px;
    background: url("../images/home-3/icon/player-2-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2; }

/*================================= FOOTER ===================================== */
footer.footer-style-2 {
  background-color: transparent !important;
  color: #fff; }
  footer.footer-style-2 a {
    color: #fff !important;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    footer.footer-style-2 a:hover {
      color: #FFE478 !important; }
  footer.footer-style-2 .footer_top {
    padding: 20px 40px !important;
    margin: 100px 0;
    background: url(../images/home-3/footer/news.png) no-repeat !important;
    position: relative;
    z-index: 2; }
    footer.footer-style-2 .footer_top .img-mail {
      max-width: 50px;
      height: auto;
      display: inline-block; }
    footer.footer-style-2 .footer_top .desc {
      vertical-align: bottom; }
    footer.footer-style-2 .footer_top .mailchimp-form .input-text::-webkit-input-placeholder {
      color: red; }
    footer.footer-style-2 .footer_top .mailchimp-form .input-text::-moz-placeholder {
      color: red; }
    footer.footer-style-2 .footer_top .mailchimp-form .input-text:-ms-input-placeholder {
      color: red; }
    footer.footer-style-2 .footer_top .mailchimp-form .input-text::placeholder {
      color: red; }
    footer.footer-style-2 .footer_top .content {
      position: relative;
      z-index: 2; }
      footer.footer-style-2 .footer_top .content h4 {
        color: #fff; }
  footer.footer-style-2 .footer_center {
    color: #fff !important;
    position: relative;
    z-index: 2;
    padding-bottom: 0 !important;
    padding-top: 10px; }
    footer.footer-style-2 .footer_center .content {
      position: relative;
      z-index: 1; }
    footer.footer-style-2 .footer_center .widget .widget-logo {
      padding-top: 0 !important; }
      footer.footer-style-2 .footer_center .widget .widget-logo .img {
        margin-right: 0 !important;
        max-width: 200px !important; }
        footer.footer-style-2 .footer_center .widget .widget-logo .img img {
          display: block;
          margin: 0 auto; }

footer.footer-style-3 {
  color: #fff; }
  footer.footer-style-3 a {
    color: #fff !important;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    footer.footer-style-3 a:hover {
      color: #FFE478 !important; }
  footer.footer-style-3 .footer_top {
    background: transparent !important;
    position: relative;
    z-index: 1; }
    footer.footer-style-3 .footer_top .ot-heading {
      z-index: 1; }
      footer.footer-style-3 .footer_top .ot-heading h2 {
        color: #fff; }

footer .bgr-footer {
  background: url(../images/home-3/footer/footer-center.png) no-repeat !important;
  background-size: cover !important;
  position: relative; }

footer .copyright {
  padding: 15px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid #30393f; }
  footer .copyright .social a i {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  footer .copyright .social a:hover i {
    color: #FFE478; }
  footer .copyright p {
    margin-bottom: 0; }

.slider-caption.slider-caption-sub-1 {
  white-space: normal !important;
  max-width: 900px;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
}

.slider-caption-sub.slider-desc {
  white-space: normal !important;
  max-width: 800px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
  text-transform: none;
}

.slider-caption.slider-caption-3 {
  white-space: normal !important;
  max-width: 1100px;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
}

.slider-caption-sub.slider-caption-sub-3 {
  white-space: normal !important;
  max-width: 800px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
}

/* ---- Book Darkshini / contact buttons ---- */
/* ============================================================
   ELEGANT CTA SECTION
   ============================================================ */
.section-check-availability {
  background: linear-gradient(135deg, #001844 0%, #001030 100%);
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  overflow: hidden;
}

.check-availability {
  padding: 28px 0 !important;
  margin-top: 0 !important;
}

.check-availability:before {
  display: none !important;
}

.check-availability .row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.check-availability .col-lg-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-availability .col-lg-9 {
  display: flex;
  align-items: center;
}

/* Left label */
.cta-left-text {
  padding-right: 30px;
  border-right: 1px solid rgba(255,228,120,0.22);
}

.cta-tagline {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFE478;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.check-availability h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.availability-sub {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0.4px;
}

/* CTA buttons container */
.darkshini-contact-btns {
  display: flex;
  gap: 14px;
  padding-left: 32px;
  width: 100%;
  align-items: stretch;
}

/* Individual CTA card */
.darkshini-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-radius: 6px;
  border: 1px solid #FFE478;
  background: rgba(255,228,120,0.1);
  text-decoration: none;
  flex: 1;
  position: relative;
  overflow: hidden;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: all 0.35s ease;
}

.darkshini-contact-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,228,120,0.1);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.darkshini-contact-btn:hover {
  border-color: #FFE478;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
  text-decoration: none;
}

.darkshini-contact-btn:hover::after { opacity: 1; }

/* Icon circle */
.cta-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #FFE478;
  background: #FFE478;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.darkshini-contact-btn:hover .cta-icon-wrap {
  background: #FFE478;
  border-color: #FFE478;
}

.darkshini-contact-btn i {
  font-size: 17px;
  color: #001844;
  margin: 0;
  transition: color 0.35s ease;
}

.darkshini-contact-btn:hover i { color: #001844; }

.darkshini-contact-btn .btn-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.darkshini-contact-btn .btn-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.darkshini-btn-call .btn-sub {
  color: #fff;
  font-weight: 700;
}

.darkshini-btn-call,
.darkshini-btn-whatsapp,
.darkshini-btn-enquiry {
  background-color: transparent;
}

/* ======================================================
   FOOTER — FULL REDESIGN
   ====================================================== */

/* ---- Footer CTA Strip (footer_top) ---- */
#footer .footer_top {
  background: linear-gradient(180deg,#3d7d8e 0%,#326872 100%) !important;
  border-top: 1px solid rgba(244,173,45,0.3) !important;
  border-bottom: 1px solid rgba(244,173,45,0.15);
  padding: 28px 0 !important;
}

.footer-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 0;
}

.footer-cta-tagline {
  display: block;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F4AD2D;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
}

.footer-cta-text {
  color: #fff;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.footer-cta-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #F4AD2D;
  background: rgba(244,173,45,0.12);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  flex: 1;
  justify-content: center;
}

.footer-cta-btn:hover {
  border-color: #F4AD2D;
  background: #F4AD2D;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
  text-decoration: none;
}

.fcta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #F4AD2D;
  background: #F4AD2D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.footer-cta-btn:hover .fcta-icon {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.fcta-icon i {
  font-size: 16px;
  color: #001844;
  transition: color 0.35s ease;
}

.footer-cta-btn:hover .fcta-icon i {
  color: #F4AD2D;
}

.footer-cta-btn:hover .fcta-label { color: #001844; }
.footer-cta-btn:hover .fcta-sub { color: #001844; }

.fcta-info { display: flex; flex-direction: column; }

.fcta-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F4AD2D;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.fcta-sub {
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.footer-cta-call .fcta-sub {
  color: #fff;
  font-weight: 600;
}

.footer-cta-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244,173,45,0.35);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  border-color: #F4AD2D;
  color: #F4AD2D;
  background: rgba(244,173,45,0.1);
  text-decoration: none;
}

.footer-social-sm {
  width: 30px;
  height: 30px;
  font-size: 13px;
}

/* ---- Footer Center ---- */
#footer .footer_center {
  background: linear-gradient(180deg,#3d7d8e 0%,#326872 100%) !important;
  padding: 55px 0 40px !important;
  border-top: none;
}

.footer-brand-col {
  padding-right: 15px;
}

.footer-logo-link img {
  max-width: 140px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand-desc {
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact-list li i {
  color: #F4AD2D;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: #fff;
  transition: color 0.2s;
}

.footer-contact-list li a:hover { color: #F4AD2D; }

/* Widget columns */
.footer-widget-col {
  padding-left: 15px;
}

.footer-widget-title {
  color: #F4AD2D;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.footer-widget-line {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #F4AD2D, #F7D96A);
  margin-bottom: 18px;
  border-radius: 2px;
}

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

.footer-widget-links li {
  margin-bottom: 9px;
}

.footer-widget-links li a {
  color: #fff;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
  display: inline-block;
}

.footer-widget-links li a i {
  color: #F4AD2D;
  font-size: 11px;
  margin-right: 6px;
  transition: margin-right 0.2s;
}

.footer-widget-links li a:hover {
  color: #F4AD2D;
  text-decoration: none;
}

.footer-widget-links li a:hover i { margin-right: 9px; }

/* ---- Business Hours ---- */
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  color: #fff;
}

.footer-hours li span:last-child {
  color: #F4AD2D;
  font-weight: 600;
}

.footer-hours-avail {
  display: block !important;
  border-bottom: none !important;
  padding-top: 12px !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 13px;
}

.footer-hours-avail i { margin-right: 6px; }

/* ---- Footer Bottom ---- */
#footer .footer_bottom {
  background: linear-gradient(180deg,#3d7d8e 0%,#326872 100%) !important;
  border-top: 1px solid rgba(244,173,45,0.12) !important;
  padding: 16px 0 !important;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

#footer .footer_bottom p {
  color: #fff;
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.4px;
}

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

.footer-powered {
  margin-left: auto !important;
  text-align: right;
}

.footer-powered a {
  color: #f4ad2d;
}

.footer-powered a:hover {
  color: #ffc44d;
}

/* Single-line headings in col-md-6 text blocks */
.col-md-6 .text .heading,
.col-md-pull-6 .text .heading {
  font-size: 26px;
  white-space: nowrap;
}

/* Wider box-border accent line under headings */
.col-md-6 .text .box-border,
.col-md-pull-6 .text .box-border {
  width: 400px !important;
}

/* Append + after statistics count numbers */
.statistics_item .count::after {
  content: "+";
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  vertical-align: baseline;
}
.statistics_item .count.no-plus::after {
  content: "";
}

/* =================== ABOUT / OUR BEST / GALLERY — HEADING STYLE =================== */
.section-our-best .our-best .text .heading,
.section-home-about .home-about .text .heading {
  color: #001844 !important;
  background: none;
  border-left: 4px solid #FFE478;
  padding-left: 16px;
  border-radius: 0;
  display: block;
}

/* What Makes Darkshini Different — staggered fade-in on scroll */
.section-our-best .our-best .text ul li.fade-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.section-our-best .our-best .text ul li.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-our-best .our-best .text ul li.fade-item:nth-child(1) { transition-delay: 0s; }
.section-our-best .our-best .text ul li.fade-item:nth-child(2) { transition-delay: 0.1s; }
.section-our-best .our-best .text ul li.fade-item:nth-child(3) { transition-delay: 0.2s; }
.section-our-best .our-best .text ul li.fade-item:nth-child(4) { transition-delay: 0.3s; }
.section-our-best .our-best .text ul li.fade-item:nth-child(5) { transition-delay: 0.4s; }
.section-our-best .our-best .text ul li.fade-item:nth-child(6) { transition-delay: 0.5s; }

/* Fix icon + text vertical alignment in "What Makes Darkshini Different" */
.our-best .text ul li {
  display: inline-flex !important;
  align-items: center;
  vertical-align: top;
  padding: 8px 12px 8px 10px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.our-best .text ul li:hover {
  background: rgba(0, 24, 68, 0.06);
  transform: translateX(6px);
  border-left-color: #FFE478;
}

.our-best .text ul li img {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-right: 14px !important;
  filter: brightness(0) saturate(100%) invert(6%) sepia(90%) saturate(2500%) hue-rotate(208deg) !important;
  transition: filter 0.3s ease;
}

.our-best .text ul li:hover img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(80%) saturate(600%) hue-rotate(350deg) brightness(103%) !important;
}

.our-best .text ul li i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  margin-right: 14px;
  color: #008080;
  transition: color 0.3s ease;
}

.our-best .text ul li:hover i {
  color: #FFE478;
}

/* ── Owner section ── */
.section-team {
  background: #f4f6f9;
  padding: 60px 0;
}

.owner-layout {
  display: flex;
  align-items: center;
  position: relative;
}

/* Left: blob + photo */
.owner-visual {
  position: relative;
  flex: 0 0 360px;
  height: 380px;
  z-index: 2;
}

.owner-blob {
  display: none;
}

.owner-photo {
  position: absolute;
  top: 0;
  left: 40px;
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* Right: white card */
.owner-card {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.09);
  padding: 52px 52px 52px 90px;
  margin-left: -50px;
  z-index: 1;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-card__title {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #001844;
  line-height: 1.25;
  margin-bottom: 16px;
  white-space: nowrap;
}

.owner-card__title-accent {
  color: #0d9488;
}

.owner-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #F4AD2D;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-card__bio {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.owner-card__socials {
  display: flex;
  gap: 10px;
}

.owner-card__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #008080;
  border: 2px solid #008080;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.owner-card__socials a:hover {
  background: #F4AD2D;
  border-color: #F4AD2D;
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 767px) {
  .owner-layout {
    flex-direction: column;
  }
  .owner-visual {
    flex: none;
    width: 100%;
    height: 300px;
    margin-bottom: 0;
  }
  .owner-blob {
    width: 200px;
    height: 200px;
    top: 10px;
    left: 10px;
  }
  .owner-photo {
    left: 30px;
    width: 220px;
    height: 280px;
  }
  .owner-card {
    margin-left: 0;
    margin-top: -20px;
    padding: 32px 24px;
    border-radius: 16px;
    width: 100%;
  }
  .owner-card__title {
    font-size: 24px;
    white-space: normal;
  }
}

/* Owner section heading */
h2.heading.owner-section-heading {
  margin-bottom: 48px !important;
}

/* Owner role / since line */
.owner-card__role {
  font-size: 14px;
  font-weight: 600;
  color: #001844;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.owner-card__role-sep {
  color: #0d9488;
  margin: 0 6px;
}

.owner-card__since {
  color: #0d9488;
  font-weight: 600;
}

/* Owner card bio paragraphs — tighter spacing between stacked paragraphs */
.owner-card__bio + .owner-card__bio {
  margin-top: -6px;
}

/* Owner quote below photo */
.owner-visual {
  height: auto;
  padding-bottom: 24px;
}

.owner-photo {
  position: relative;
  top: auto;
  left: 0;
  width: 100%;
  max-width: 320px;
  height: 380px;
  margin: 0 auto;
}

.owner-quote {
  margin: 22px auto 0;
  padding: 0 0 0 16px;
  max-width: 320px;
  border: 0;
  border-left: 3px solid #F4AD2D;
  background: transparent;
}

.owner-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: #001844;
  margin: 0 0 8px;
}

.owner-quote p:before,
.owner-quote p:after {
  content: none !important;
  margin: 0 !important;
}

.owner-quote cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #0d9488;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  h2.heading.owner-section-heading {
    margin-bottom: 28px !important;
  }
  .owner-photo {
    max-width: 260px;
    height: 320px;
  }
  .owner-quote {
    max-width: 100%;
    margin-top: 18px;
  }
}

/* ====================================================
   FOUNDER SECTION — split layout with stat strip
   ==================================================== */

.section-team {
  background: #f4f6f9;
  padding: 90px 0 100px;
  position: relative;
}

.section-team::before {
  content: "";
  position: absolute;
  top: 60px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244, 173, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-team > .container {
  position: relative;
  z-index: 1;
}

/* Heading */
.founder-head {
  text-align: center;
  margin-bottom: 56px;
}

.founder-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0d9488;
  padding: 6px 16px;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 999px;
  margin-bottom: 18px;
  background: #fff;
}

h2.heading.owner-section-heading {
  margin-bottom: 0 !important;
  text-align: center;
}

/* Two-column grid: media (photo + stats)  |  body (text) */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

/* LEFT: photo + stat strip */
.founder-media {
  position: relative;
}

.founder-photo-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.founder-photo-wrap:hover .founder-photo {
  transform: scale(1.02);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px -16px rgba(0, 16, 48, 0.18);
  overflow: hidden;
}

.founder-stat {
  text-align: center;
  padding: 20px 8px;
  position: relative;
}

.founder-stat + .founder-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(0, 24, 68, 0.08);
}

.founder-stat__value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #001844;
  line-height: 1;
  margin-bottom: 6px;
}

.founder-stat__value i {
  font-style: normal;
  color: #F4AD2D;
  margin-left: 1px;
}

.founder-stat__label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a7280;
}

/* RIGHT: name, role, bio, socials */
.founder-body {
  padding-top: 4px;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #001844;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.founder-role {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d9488;
  padding-left: 44px;
  margin: 0 0 28px;
}

.founder-role::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 2px;
  background: #F4AD2D;
}

.founder-bio {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a5468;
  margin: 0 0 18px;
}

.founder-bio:last-of-type {
  margin-bottom: 28px;
}

.founder-socials {
  display: flex;
  gap: 10px;
}

.founder-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 128, 128, 0.25);
  color: #008080;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.founder-socials a:hover {
  background: #008080;
  border-color: #008080;
  color: #fff;
  transform: translateY(-3px);
}

/* Signature-style quote — sits inside the body column under socials */
.founder-signature {
  position: relative;
  margin: 32px 0 0;
  padding: 22px 0 0;
  text-align: left;
  border: 0;
}

.founder-signature::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: #F4AD2D;
  margin: 0 0 20px;
}

.founder-signature blockquote {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
}

.founder-signature blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: #001844;
  margin: 0;
  font-weight: 500;
}

.founder-signature blockquote p:before {
  content: "\201C" !important;
  font-style: normal !important;
  margin-right: 2px !important;
  color: #F4AD2D;
  font-size: 1.1em;
  font-weight: 700;
}

.founder-signature blockquote p:after {
  content: "\201D" !important;
  font-style: normal !important;
  margin-left: 2px !important;
  color: #F4AD2D;
  font-size: 1.1em;
  font-weight: 700;
}

.founder-signature figcaption {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-signature__name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d9488;
  letter-spacing: 0.02em;
}

.founder-signature__role {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

/* Tablet */
@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 48px;
  }
  .founder-photo {
    max-height: 540px;
  }
  .founder-name {
    font-size: 32px;
  }
  .founder-signature blockquote p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section-team {
    padding: 60px 0 70px;
  }
  .founder-head {
    margin-bottom: 36px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 56px;
  }
  .founder-media {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .founder-photo {
    max-height: 480px;
  }
  .founder-stat__value {
    font-size: 22px;
  }
  .founder-stat__label {
    font-size: 9.5px;
  }
  .founder-name {
    font-size: 28px;
  }
  .founder-role {
    font-size: 12px;
    padding-left: 36px;
    margin-bottom: 22px;
  }
  .founder-role::before {
    width: 24px;
  }
  .founder-signature {
    margin-top: 26px;
    padding-top: 18px;
  }
  .founder-signature blockquote p {
    font-size: 16px;
    line-height: 1.55;
  }
}

.section-about .about-item {
  display: flex;
  align-items: flex-start;
  float: none !important;
  overflow: visible !important;
}

.section-about .about-item.about-right {
  flex-direction: row-reverse;
}

.section-about .about-item .img {
  overflow: hidden;
  position: relative;
  flex: 0 0 50%;
  width: 50% !important;
  float: none !important;
  border-radius: 16px;
}

.section-about .about-item .text {
  flex: 0 0 50%;
  width: 50% !important;
  float: none !important;
  margin-top: 0 !important;
}

.section-about .about-item .text .heading,
.section-event-news .event .heading,
.section-event-news .news .heading {
  color: #001844 !important;
  background: none;
  border-left: 4px solid #FFE478;
  padding-left: 16px;
  border-radius: 0;
}

.section-about .about-item .img .owl-wrapper-outer,
.section-about .about-item .img .owl-wrapper,
.section-about .about-item .owl-item {
  height: 100%;
}

.section-about .about-item .img img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Stack image + text vertically on mobile/tablet */
@media (max-width: 991px) {
  .section-about .about-item,
  .section-about .about-item.about-right {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .section-about .about-item .img,
  .section-about .about-item .text {
    flex: 0 0 100% !important;
    width: 100% !important;
    float: none !important;
  }
  .section-about .about-item .text {
    margin-top: 28px !important;
  }
  .section-about .about-item .img img {
    height: 260px;
  }
}


/* Statistics section heading shadow */
.section-statistics .heading {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Sub-banner text shadow */
.sub-banner .text h2,
.sub-banner .text p {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* ============================================================
   EXPLORE OUR SPACE — YouTube video embeds
   ============================================================ */
.news-video-wrap {
  position: relative;
  width: 100%;
  height: 150px !important;
  overflow: hidden;
  border-radius: 6px;
}

.news-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =================== GALLERY — UNIFORM IMAGE SIZE =================== */
.gallery-content .gallery_item {
  height: 220px;
}

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

/* =================== INDEX GALLERY — 2px EQUAL SPACING =================== */
.section-gallery .gallery-isotope {
  margin: -2px;
}

.section-gallery .item-isotope {
  padding: 2px;
}

.section-gallery .gallery_item {
  height: 216px;
  overflow: hidden;
  position: relative;
}

.section-gallery .gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.section-gallery .gallery_item:hover img {
  transform: scale(1.06);
}

.section-gallery .gallery_item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 48, 0);
  transition: background 0.35s ease;
  pointer-events: none;
}

.section-gallery .gallery_item:hover::after {
  background: rgba(0, 16, 48, 0.28);
}

/* =================== GALLERY PAGE — 7px EQUAL SPACING =================== */
.section_page-gallery .gallery-isotope {
  margin-left: -3.5px;
  margin-right: -3.5px;
}

.section_page-gallery .gallery-isotope .item-isotope {
  padding-left: 3.5px;
  padding-right: 3.5px;
  margin-top: 7px;
}

/* =================== GALLERY PAGE — PREMIUM REDESIGN =================== */

/* Section background */
.section_page-gallery {
  background: #f2f1ef;
  padding-bottom: 70px;
}

/* Premium pill filter bar — homepage + gallery page */
.section-gallery .gallery-cat,
.section_page-gallery .gallery-cat {
  padding: 10px 0 35px;
}

.section-gallery .gallery-cat ul li a,
.section_page-gallery .gallery-cat ul li a {
  font-size: 10px !important;
  letter-spacing: 2.5px;
  font-weight: 700 !important;
  padding: 11px 32px !important;
  border-radius: 30px;
  border: 1.5px solid #008080 !important;
  background: #008080 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.28) !important;
  margin: 0 5px;
  transition: all 0.3s ease !important;
}

.section-gallery .gallery-cat ul li:hover a,
.section-gallery .gallery-cat ul li.active a,
.section_page-gallery .gallery-cat ul li:hover a,
.section_page-gallery .gallery-cat ul li.active a {
  background: #F4AD2D !important;
  border-color: #F4AD2D !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(244, 173, 45, 0.32) !important;
}

/* Rounded corners + base shadow */
.section_page-gallery .gallery-content .gallery_item {
  border-radius: 8px !important;
  box-shadow: 0 3px 14px rgba(0,0,0,0.10);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

/* Larger mosaic items — taller */
.section_page-gallery .item-isotope.larger .gallery_item {
  height: 310px;
}

/* Overlay gradient — re-enable on hover-img */
.section_page-gallery .gallery-content.hover-img .gallery_item:before {
  background: linear-gradient(to bottom, rgba(0,8,24,0) 25%, rgba(0,8,24,0.72) 100%) !important;
  top: 0 !important;
}

.section_page-gallery .gallery-content .gallery_item:hover:before {
  opacity: 1 !important;
  top: 0 !important;
}

/* Eye icon circle appearing on hover */
.section_page-gallery .gallery-content .gallery_item:after {
  content: '\f06e';
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) scale(0.5);
  color: #fff;
  font-size: 20px;
  width: 54px;
  height: 54px;
  line-height: 52px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  pointer-events: none;
  background: rgba(255,255,255,0.10);
}

.section_page-gallery .gallery-content .gallery_item:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lift + gold bottom accent on hover */
.section_page-gallery .gallery-content .gallery_item:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.20), inset 0 -4px 0 #FFE478;
  transform: translateY(-3px);
}

/* Image zoom */
.section_page-gallery .gallery-content .gallery_item img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.section_page-gallery .gallery-content .gallery_item:hover img {
  transform: scale(1.09) !important;
}

/* =================== ZOOM + 3D EFFECT — ABOUT & DIFFERENT IMAGES =================== */
.section-home-about .home-about .img,
.section-our-best .our-best .img {
  overflow: hidden;
  border-radius: 16px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  box-shadow:
    0 8px 24px rgba(0, 16, 48, 0.18),
    0 2px 6px rgba(0, 16, 48, 0.12);
  -webkit-transition: box-shadow .5s ease, -webkit-transform .5s ease;
  transition: box-shadow .5s ease, transform .5s ease;
}

.section-home-about .home-about .img:hover,
.section-our-best .our-best .img:hover {
  box-shadow:
    0 24px 64px rgba(0, 16, 48, 0.30),
    0 6px 18px rgba(0, 16, 48, 0.18);
  -webkit-transform: perspective(900px) rotateY(4deg) rotateX(2deg) translateY(-6px);
  transform: perspective(900px) rotateY(4deg) rotateX(2deg) translateY(-6px);
}

.section-home-about .home-about .img img,
.section-our-best .our-best .img img {
  width: 100%;
  display: block;
  border-radius: 16px;
  -webkit-transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
}

.section-home-about .home-about .img:hover img,
.section-our-best .our-best .img:hover img {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}

/* =================== ABOUT CTA TILES =================== */
.about-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.about-cta-tile {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,16,48,0.07);
}
.about-cta-tile::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #FFE478;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.about-cta-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,16,48,0.18);
  border-color: #FFE478;
  text-decoration: none;
}
.about-cta-tile:hover::before { transform: scaleX(1); }

.about-cta-tile .acta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #008080;
  margin-bottom: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.about-cta-tile:hover .acta-icon {
  border-color: #F4AD2D;
  transform: scale(1.1);
}
.about-cta-tile .acta-icon i {
  font-size: 22px;
  color: #008080;
  transition: color 0.3s ease;
}
.about-cta-tile:hover .acta-icon i { color: #F4AD2D; }
.about-cta-tile:hover .acta-title { color: #F4AD2D; }
.about-cta-tile .acta-title { transition: color 0.3s ease; }

.about-cta-tile .acta-title {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #001030;
  font-family: 'Poppins', sans-serif;
}
.about-cta-tile .acta-sub {
  display: block;
  font-size: 11px;
  color: #001030;
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
}

/* Call variant — highlight number */
.about-cta-tile--call .acta-sub {
  color: #001030;
}


/* =================== OUR FACILITIES — SMALL CARDS (Dining & Wheelchair) =================== */
.section-event-news .event .col-xs-6 .event-item {
  border-radius: 10px;
  overflow: hidden;
}

.section-event-news .event .col-xs-6 .event-item .img {
  height: 180px;
  overflow: hidden;
}

.section-event-news .event .col-xs-6 .event-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.section-event-news .event .col-xs-6 .event-item:hover .img img {
  transform: scale(1.07);
}

/* Override base theme's left-panel text layout */
.section-event-news .event .col-xs-6 .event-item .text {
  position: absolute;
  width: 100% !important;
  left: 0 !important;
  right: 0;
  bottom: 0;
  top: auto !important;
  background: none;
}

.section-event-news .event .col-xs-6 .event-item .text::after {
  background: linear-gradient(to top, rgba(0, 16, 48, 0.88) 0%, rgba(0, 16, 48, 0.45) 55%, transparent 100%) !important;
  opacity: 1 !important;
}

.section-event-news .event .col-xs-6 .event-item .text .text-cn {
  position: static !important;
  transform: none !important;
  -webkit-transform: none !important;
  padding: 14px 16px 18px;
}

.section-event-news .event .col-xs-6 .event-item .text h2 {
  font-size: 13px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
  color: #F4AD2D !important;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9), 0 2px 16px rgba(0, 0, 0, 0.7) !important;
}

/* =================== EVENT SLIDE CAROUSEL =================== */
.event-slide-carousel .event-item .img {
  height: 280px;
  overflow: hidden;
}

.event-slide-carousel .event-item .img > a,
.event-slide-carousel .event-item .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================== EVENT SLIDE OVERLAY TEXT =================== */
.event-img-overlay {
  position: relative;
}

/* Dark gradient from bottom */
.event-img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,10,30,0.82) 0%, rgba(0,10,30,0.35) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.event-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.35s ease;
}
.event-img-overlay:hover .event-overlay-text {
  transform: translateY(0);
}

.eot-heading {
  font-size: 16px;
  font-weight: 700;
  color: #F4AD2D;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 6px;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.eot-sub {
  font-size: 12px;
  color: #fff !important;
  line-height: 1.6;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.event-overlay-text .awe-btn-12,
.event-item .text-cn .awe-btn-12 {
  display: inline-block;
  width: auto;
  min-width: 0 !important;
  margin-top: 10px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 600;
  background: #008080;
  border: 1px solid #008080;
  color: #fff;
  border-radius: 4px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.event-overlay-text .awe-btn-12:hover,
.event-item .text-cn .awe-btn-12:hover {
  background: #F4AD2D;
  border-color: #F4AD2D;
  color: #fff;
}

/* =================== EVENT CARDS 2×2 GRID =================== */
.accomd-modations-room .img {
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
}

.accomd-modations-room .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =================== BRAND COLOR OVERRIDES =================== */

/* Decorative underline borders */
.box-border {
  background: #FFE478 !important;
}

/* VIEW MORE / buttons hover */
.awe-btn.awe-btn-default:hover {
  border-color: #F4AD2D !important;
  background-color: #F4AD2D !important;
  color: #001844 !important;
}

/* BROWSE OUR GALLERY — pill style matching filter tabs */
.section-gallery .our-gallery .awe-btn.awe-btn-default {
  font-size: 10px !important;
  letter-spacing: 2.5px;
  font-weight: 700 !important;
  padding: 11px 32px !important;
  border-radius: 30px !important;
  border: 1.5px solid #008080 !important;
  background: #008080 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.28) !important;
  transition: all 0.3s ease !important;
}
.section-gallery .our-gallery .awe-btn.awe-btn-default:hover {
  background: #F4AD2D !important;
  border-color: #F4AD2D !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(244, 173, 45, 0.32) !important;
}

/* News item — title links */
.news-item .text h2 a {
  color: #001844 !important;
  text-transform: none !important;
}
.news-item .text h2 a:hover {
  color: #001030 !important;
}

/* News item — category label */
.news-item .text .date {
  color: #001844 !important;
}

/* News item — Read More */
.news-item .text .read-more:hover {
  color: #FFE478;
}

/* Facilities / room card links */
.item.room-item .title a:hover,
.item.room-item .title a:focus {
  color: #FFE478 !important;
}
.item.room-item .price {
  color: #FFE478 !important;
}

/* Owl carousel arrows */
.ot-out-best .owl-controls .owl-prev:hover,
.ot-out-best .owl-controls .owl-next:hover {
  border-color: #001844 !important;
}
.ot-out-best .owl-controls .owl-prev:hover i:before,
.ot-out-best .owl-controls .owl-next:hover i:before {
  color: #001844 !important;
}

/* Room page — border radius on all images */
.room_item-3 .img img,
.room_item-3 .text-thumbs .thumbs img {
  border-radius: 12px;
}
.room_item-3 .img {
  border-radius: 12px;
  overflow: hidden;
}
.room_item-3 .text-thumbs .thumbs {
  border-radius: 12px;
  overflow: hidden;
}

/* Room page — zoom-in on hover */
.room_item-3 .img img,
.room_item-3 .text-thumbs .thumbs img {
  transition: transform 0.4s ease;
}
.room_item-3:hover .img img {
  transform: scale(1.07);
}
.room_item-3 .text-thumbs .thumbs:hover img {
  transform: scale(1.1);
}

/* Room page — remove image hover effects */
.room_item-3:hover .img:before {
  opacity: 0 !important;
  top: 50% !important;
}
.room_item-3:hover .text-thumbs .thumbs:before,
.room_item-3:hover .text-thumbs .thumbs:after {
  -webkit-transform: scale(0) !important;
  -moz-transform: scale(0) !important;
  -ms-transform: scale(0) !important;
  -o-transform: scale(0) !important;
  transform: scale(0) !important;
}

/* ---------- Header top bar ---------- */
#d-header-top {
  padding: 14px 0;
}
.d-ht-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.d-ht-left span,
.d-ht-right a {
  font-weight: 700;
}
.d-ht-left span {
  margin-right: 20px;
}

/* Lightbox above fixed nav */
.mfp-bg { z-index: 3000 !important; }
.mfp-wrap { z-index: 3001 !important; }

/* Remove dark frame around lightbox image — show only the image */
.mfp-figure:after { display: none !important; }
img.mfp-img {
  padding: 0 !important;
  max-width: 92vw !important;
  max-height: 92vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}
.mfp-container { padding: 20px !important; }

/* Section heading <em> — remove italic */
h2.heading em {
  font-style: normal !important;
}

