/* ─────────────── RESET & BASE ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; background: #fff; overflow-x: hidden; }

/* Home page body background */
body.home-page { background: #D4CF95 !important; }

/* ─────────────── CONTAINER ─────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ─────────────── CSS ANIMATIONS ─────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Animation classes */
.animate-fadeIn { animation: fadeIn 1s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }

/* Stagger delays for children */
.stagger-children .feature-card:nth-child(1) { animation-delay: 0.1s; }
.stagger-children .feature-card:nth-child(2) { animation-delay: 0.2s; }
.stagger-children .feature-card:nth-child(3) { animation-delay: 0.3s; }
.stagger-children .feature-card:nth-child(4) { animation-delay: 0.4s; }

.stagger-children .info-col:nth-child(1) { animation-delay: 0.1s; }
.stagger-children .info-col:nth-child(2) { animation-delay: 0.2s; }
.stagger-children .info-col:nth-child(3) { animation-delay: 0.3s; }

.stagger-children .room-card:nth-child(1) { animation-delay: 0.1s; }
.stagger-children .room-card:nth-child(2) { animation-delay: 0.2s; }
.stagger-children .room-card:nth-child(3) { animation-delay: 0.3s; }

.stagger-children .exp-card:nth-child(1) { animation-delay: 0.1s; }
.stagger-children .exp-card:nth-child(2) { animation-delay: 0.2s; }
.stagger-children .exp-card:nth-child(3) { animation-delay: 0.3s; }

/* ─────────────── NAV ─────────────── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: flex-end;
  height: 60px;
  background: #000;
}
nav .nav-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 48px;
  position: relative;
}
nav .nav-logo { display: flex; align-items: center; gap: 10px; }
nav .nav-logo img { height: 52px; width: auto; }
nav ul { display: flex; gap: 36px; list-style: none; margin-left: auto; }
nav ul a {
  color: #fff; text-decoration: none; font-size: 13px; letter-spacing: 1.2px;
  font-weight: 500; text-transform: uppercase; opacity: .85;
  transition: opacity .2s, color .3s;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  position: relative;
  padding: 4px 0;
}
nav ul a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: #ff751f;
  transition: width 0.3s ease;
}
nav ul a:hover, nav ul a.active { opacity: 1; color: #ff751f; }
nav ul a:hover::after, nav ul a.active::after { width: 100%; }

nav ul a.nav-book-btn {
  background: #ff751f;
  color: #fff;
  opacity: 1;
  padding: 7px 20px;
  border-radius: 4px;
  transition: background 0.25s ease;
}
nav ul a.nav-book-btn::after { display: none; }
nav ul a.nav-book-btn:hover { background: #e66a1a; color: #fff; }

/* Hamburger button */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 101;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 60px; right: 0; bottom: 0;
  width: 280px; max-width: 80%;
  background: #111;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 40px 30px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu ul a {
  color: #fff; text-decoration: none; font-size: 16px;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  transition: color 0.3s ease;
  display: block; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu ul a:hover {
  color: #ff751f;
}

/* ─────────────── PAGE 1 – HERO ─────────────── */
.hero {
  position: relative; width: 100%; min-height: 700px;
  background: #1a0e00; overflow: hidden;
  margin-top: 0;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover !important;
  background-position: center center !important;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease;
}
.hero-bg-slide.active { opacity: 1; z-index: 2; }
.hero-leopard {
  position: absolute; left: 0; top: 0; bottom: 0; width: 46%;
  background-image: url('assets/leopard.png');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 5;
  background: linear-gradient(to right, rgba(60,15,0,0.45) 0%, rgba(0,0,0,0.05) 55%),
              rgba(0,0,0,0.15);
}

/* Two column hero content */
.hero-content {
  position: relative; z-index: 10;
  display: flex; width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0px 48px 48px 48px;
  height: 700px;
}
.hero-col { flex: 1; display: flex; flex-direction: column; }
.hero-col-left { align-items: flex-start; padding-right: 40px; text-align: center; }
.hero-col-right { align-items: flex-start; padding-left: 40px; }

/* Hero logo + tiger wrap */
.hero-logo-tiger-wrap {
  position: relative; width: 480px; height: 650px; margin-top: 50px;
}
.hero-logo-tiger-wrap .hero-tiger {
  position: absolute; top: 0; left: 0;
  width: 480px; height: 650px; object-fit: cover; object-position: top center; z-index: 1;
}
.hero-logo-tiger-wrap .hero-logo {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
  max-width: 300px; height: auto; z-index: 2;
  animation: fadeIn 1s ease 0.5s forwards;
  opacity: 0;
}

/* Big title right side */
.hero-title-area {
  padding: 32px 0 24px 0;
  width: 100%;
}
.hero-tagline {
  font-size: 20px; color: #fff; letter-spacing: .4px; margin-bottom: 4px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.hero-big-title {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; font-weight: 700;
  font-size: 75px; color: #fff; line-height: 1;
}
.hero-big-title span { font-weight: 500; }
.hero-location {
  font-size: 16px; color: #3d2204; letter-spacing: .5px;
  display: inline-block; margin-left: -190px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}

/* Hero bottom row */
.hero-bottom-row {
  display: flex; align-items: end; gap: 32px; margin-top: auto; justify-content: flex-end; width: 100%;
}

/* Pricing badge */
.hero-price-badge {
  text-align: left; color: #fff;
}
.hero-price-badge .hotel-tag {
  display: flex; align-items: center; gap: 6px; justify-content: flex-end;
  margin-bottom: 4px;
}
.hero-price-badge .price {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 44px; color: #fff; line-height: 1;
  text-align: right;
}
.hero-price-badge .inclusions {
  font-size: 24px; color: #fff; line-height: 1.7; margin-top: 4px; text-align: right; font-weight: 600;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}

/* LEARN AND GO text */
.hero-cta-text {
  line-height: .88;
  z-index: 88;
  margin-top: 250px;
  margin-left: 78px;
}
.hero-cta-text .line {
  display: block;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; font-weight: 600;
  font-size: 74px;
  color: #ff751f;
  transition: transform 0.3s ease;
}
.hero-cta-text:hover .line {
  transform: translateX(10px);
}

/* Book Now block */
.book-now-block {
  margin-top: 24px;
  transition: transform 0.3s ease;
}
.book-now-block:hover {
  transform: scale(1.05);
}
.book-now-block img { height: 140px; display: block; }

/* ─────────────── FEATURE STRIP ─────────────── */
.feature-strip {
  position: relative; width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; gap: 20px;
  min-height: 220px;
  margin-top: 20px;
  padding: 0 48px;
}
.feature-card {
  flex: 1; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px 16px;
  min-height: 220px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  transition: transform 0.3s ease;
}
.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.08);
  z-index: 1;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-card img.fc-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .9;
  transition: transform 0.5s ease;
}
.feature-card:hover img.fc-bg {
  transform: scale(1.1);
}
.feature-card .fc-content {
  position: relative; z-index: 2;
}
.feature-card h3 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; font-weight: 400;
  font-size: 32px; color: #edf0f2; line-height: 1.1;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 14px; color: #2b2b2b; font-weight: 500; line-height: 1.4;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.feature-card .fc-label {
  background: #FFCC00;
  max-width: 220px;
  padding: 6px 14px;
  font-size: 14px; font-weight: 500; color: #2b2b2b; line-height: 1.4;
  z-index: 10;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}

/* ─────────────── INFO SECTION ─────────────── */
.info-section {
  padding: 56px 48px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.info-col {
  display: flex; flex-direction: column;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.info-col h2 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; font-weight: 500;
  font-size: 40px; color: #000; line-height: 1.05;
  margin-bottom: 16px;
}
.info-col p {
  font-size: 14px; font-weight: 500; color: #2b2b2b;
  line-height: 1.65; margin-bottom: 16px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.info-col img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  border-radius: 0;
  transition: transform 0.5s ease;
}
.info-col img:hover {
  transform: scale(1.03);
}
.info-col-middle {
  flex-direction: column;
}
.info-col-middle img {
  padding-bottom: 20px;
}

/* ─────────────── PAGE 2 – ROOMS / AMENITIES ─────────────── */
.rooms-section {
  position: relative; overflow: hidden;
  background: #1a1a1a;
}
.rooms-hero-bg {
  width: 100%; height: auto; position: relative; overflow: hidden;
}
.rooms-hero-bg img.bg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.rooms-hero-bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.7) 80%);
}
.rooms-hero-text {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  padding: 60px 48px 60px 48px;
  color: #edf0f2;
}
.rooms-hero-text h2 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; font-weight: 400;
  font-size: 40px; line-height: 1; margin-bottom: 10px;
}
.rooms-hero-text .intro {
  font-size: 14px; font-weight: 500; line-height: 1.7;
  max-width: 320px; color: #fff;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
/* ─────────────── WORK CARDS GRID ─────────────── */
.work-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 60px; max-width: 1280px; margin: 0 auto;
  padding: 0 48px 60px 48px;
}
.work-card {
  position: relative; overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  transition: transform 0.3s ease;
}
.work-card:hover {
  transform: translateY(-8px);
}
.work-card-label {
  margin-bottom: 20px;
  background: #1a1a1a;
  color: #edf0f2;
}
.work-card-label h4 { font-size: 20px; font-weight: 500; line-height: 1.2; font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; }
.work-card-label p { font-size: 20px; font-weight: 400; color: #edf0f2; font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; }
.work-card img {
  width: 100%; height: 250px; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.work-card:hover img {
  transform: scale(1.05);
}
.work-card-desc {
  font-size: 14px; font-weight: 400; color: #bdbdbd; line-height: 1.6;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  margin-top: 20px;
}

/* ─────────────── PAGE 3 – RESERVATION ─────────────── */
.reservation-section {
  position: relative; overflow: hidden; height: auto;
}
.res-images-wrap {
  position: relative; width: 100%; height: 65vh; overflow: hidden;
}
.res-images-wrap iframe,
.res-images-wrap img {
  animation: fadeIn 1s ease forwards;
}
.res-img-left {
  position: absolute; left: 0; top: 0; width: 50%; height: 400px;
  object-fit: cover;
}
.res-img-right {
  position: absolute; right: 0; top: 0; width: 50%; height: 100%;
  object-fit: cover;
}
.res-bottom-wrap {
  position: relative;
  background: #232323;
  width: 100%;
  padding: 28px 48px 0px 48px;
}
.res-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 60px 40px 80px 40px;
}
.res-bottom h2 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; font-weight: 400;
  font-size: 48px; color: #edf0f2; letter-spacing: -2px; line-height: 1; margin-bottom: 14px;
}
.res-bottom .res-links a {
  display: block; font-size: 20px; color: #edf0f2; font-weight: 400;
  text-decoration: none; line-height: 1.8; letter-spacing: -.9px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.res-bottom .res-links a:hover {
  color: #ff751f;
  transform: translateX(5px);
}
.res-contact { text-align: left; color: #edf0f2; }
.res-contact .label { font-size: 24px; letter-spacing: 1.8px; margin-bottom: 8px; font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; }
.res-contact .name { font-size: 16px; font-weight: 400; line-height: 1.3; font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; }
.res-contact .email { font-size: 16px; opacity: .7; font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif; }

/* ─────────────── FOOTER ─────────────── */
footer {
  background: #111; color: #fff; text-align: center;
  padding: 22px 0; font-size: 12px; letter-spacing: .5px;
  width: 100%;
}
footer .footer-inner {
  max-width: 1280px; margin: 0 auto; 
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px;
}
footer span { color: #ff751f; }

/* ─────────────── BOOKING PAGE ─────────────── */
.booking-section {
  padding: 60px 48px;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 80vh;
}
.booking-container h1 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
}
.booking-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking-sidebar {
  position: sticky;
  top: 80px;
}
.booking-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.booking-card {
  background: #1a1a1a;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.booking-card:nth-child(1) { animation-delay: 0.1s; }
.booking-card:nth-child(2) { animation-delay: 0.2s; }
.booking-card:nth-child(3) { animation-delay: 0.3s; }
.booking-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.booking-card-label {
  padding: 12px 16px 6px 16px;
}
.booking-card-label h4 {
  font-size: 16px;
  font-weight: 500;
  color: #edf0f2;
  margin: 0 0 4px 0;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.booking-card-label p {
  font-size: 14px;
  font-weight: 400;
  color: #bdbdbd;
  margin: 0;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.booking-card-desc {
  padding: 6px 16px 16px 16px;
  font-size: 12px;
  font-weight: 400;
  color: #bdbdbd;
  line-height: 1.5;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.payment-info-block {
  background: #D4CF95;
  padding: 24px;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}
.payment-info-block h3 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #333;
}
.payment-info-block h4 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px 0;
  color: #333;
}
.payment-info-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px 0;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.payment-badge {
  display: inline-block;
  background: #ff751f;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.form-title-block {
  background: #D4CF95;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.form-title-block h3 {
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.form-title-block p {
  font-size: 14px;
  color: #555;
  margin: 0;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
}
.form-group-row {
  margin-bottom: 20px;
}
.form-group-row label {
  display: block;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 14px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: #ff751f;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #ff751f;
}
.btn-submit {
  background: #ff751f;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'ITC Franklin Gothic LT', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-submit:hover {
  background: #e66a1a;
  transform: translateY(-2px);
}
.form-submit {
  margin-top: 32px;
}

/* ─────────────── SCROLL ANIMATIONS ─────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ─────────────── RESPONSIVE – TABLET (max-width: 1024px) ─────────────── */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 40px 24px;
  }
  .hero-col-left {
    padding-right: 0;
    align-items: center;
  }
  .hero-col-right {
    padding-left: 0;
  }
  .hero-logo-tiger-wrap {
    width: 560px; height: 680px; margin-top: 30px;
  }
  .hero-logo-tiger-wrap .hero-tiger {
    width: 560px; height: 680px;
  }
  .hero-logo-tiger-wrap .hero-logo {
    max-width: 250px;
    top: 8%;
  }
  .hero-cta-text {
    margin-top: -130px;
    margin-left: 0;
  }
  .hero-cta-text .line {
    font-size: 56px;
  }
  .hero-title-area {
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
  }
  .hero-big-title {
    font-size: 56px;
  }
  .hero-location {
    margin-left: 0;
    text-align: center;
  }
  .hero-bottom-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
  }
  .hero-price-badge {
    text-align: center;
  }
  .hero-price-badge .inclusions {
    text-align: center;
  }
  .hero-price-badge .price {
    text-align: center;
  }
  .book-now-block img {
    height: 100px;
  }
  .feature-strip {
    flex-wrap: wrap;
    padding: 0 24px;
  }
  .feature-card {
    flex: 0 0 calc(50% - 10px);
    min-height: 260px;
  }
  .info-section {
    padding: 40px 24px;
    gap: 32px;
  }
  .info-col img {
    min-height: 260px;
  }
  .info-col h2 {
    font-size: 32px;
  }
  .rooms-hero-text {
    padding: 40px 24px;
  }
  .work-cards-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 40px 24px;
    gap: 40px;
  }
  .res-bottom {
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
  }
  .res-contact {
    text-align: left;
  }
}

/* ─────────────── RESPONSIVE – MOBILE (max-width: 768px) ─────────────── */
@media (max-width: 768px) {
  nav .nav-inner {
    padding: 0 24px;
  }
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu-overlay {
    display: block;
    pointer-events: none;
  }
  .mobile-menu-overlay.active {
    pointer-events: auto;
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 30px 16px;
  }
  .hero-logo-tiger-wrap {
    width: 480px; height: 380px; margin-top: 20px;
  }
  .hero-logo-tiger-wrap .hero-tiger {
    width: 480px; height: 580px;
  }
  .hero-logo-tiger-wrap .hero-logo {
    max-width: 180px;
  }
  .hero-cta-text {
    margin-top: 100px;
  }
  .hero-cta-text .line {
    font-size: 42px;
  }
  .hero-big-title {
    font-size: 42px;
  }
  .hero-tagline {
    font-size: 16px;
  }
  .hero-price-badge .price {
    font-size: 32px;
  }
  .hero-price-badge .inclusions {
    font-size: 18px;
    line-height: 1.5;
  }
  .book-now-block img {
    height: 80px;
  }
  .feature-strip {
    flex-direction: column;
    padding: 0 16px;
  }
  .feature-card {
    flex: none;
    min-height: 280px;
  }
  .feature-card h3 {
    font-size: 24px;
  }
  .feature-card .fc-label {
    font-size: 12px;
  }
  .info-section {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 40px;
  }
  .info-col h2 {
    font-size: 28px;
  }
  .info-col img {
    min-height: 280px;
    height: auto;
  }
  .rooms-hero-text {
    padding: 32px 16px;
  }
  .rooms-hero-text h2 {
    font-size: 32px;
  }
  .work-cards-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 32px 16px;
    gap: 40px;
  }
  .work-card img {
    height: 200px;
  }
  .res-images-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .res-img-left,
  .res-img-right {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .res-images-wrap iframe{

    height: 300px;
    width: 100%;
  } 
  .res-bottom {
    flex-direction: column;
    gap: 24px;
    padding: 32px 16px;
  }
  .res-bottom h2 {
    font-size: 32px;
  }
  .res-bottom .res-links a {
    font-size: 16px;
  }
  .res-contact .label {
    font-size: 18px;
  }
  footer .footer-inner {
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  .res-bottom-wrap {
    padding: 28px 16px 0px 16px;
  }
}

/* ─────────────── RESPONSIVE – SMALL MOBILE (max-width: 480px) ─────────────── */
@media (max-width: 480px) {
  .hero-logo-tiger-wrap {
    width: 340px; height: 420px;
  }
  .hero-logo-tiger-wrap .hero-tiger {
    width: 340px; height: 420px;
  }
  .hero-logo-tiger-wrap .hero-logo {
    max-width: 180px;
  }
  .hero-cta-text .line {
    font-size: 32px;
  }
  .hero-big-title {
    font-size: 32px;
  }
  .hero-cta-text {
    margin-top: -80px;
  }
  .book-now-block img {
    height: 60px;
  }
  .hero-price-badge .price {
    font-size: 28px;
  }
  .hero-price-badge .inclusions {
    font-size: 14px;
  }
  .info-col h2 {
    font-size: 24px;
  }
  .res-bottom h2 {
    font-size: 28px;
  }
}

/* ─────────────── BACK TO TOP BUTTON ─────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #ff751f;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: #e66a1a;
}
#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}