/* ============================================================
   JHOUSE — BASE STYLES
   Includes: design tokens, reset, typography, header, hero,
             page hero, buttons, section spacing, utilities
   ============================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap");

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* Brand Colors */
  --navy: #102542;
  --navy-dark: #0a1929;
  --navy-mid: #1a3558;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --orange-light: #fcd34d;
  --amber: #ffb547;

  /* Neutrals */
  --white: #ffffff;
  --light-bg: #f8fafc;
  --light-bg-2: #f1f5f9;
  --border-light: #e2e8f0;
  --border-mid: #cbd5e1;

  /* Text */
  --text-dark: #1e293b;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #102542 0%, #1a3558 100%);
  --grad-orange: linear-gradient(135deg, #f59e0b 0%, #ffb547 100%);
  --grad-hero: linear-gradient(160deg,
      rgba(10, 25, 41, 0.82) 0%,
      rgba(16, 37, 66, 0.65) 60%,
      rgba(245, 158, 11, 0.18) 100%);
  --grad-card: linear-gradient(180deg,
      rgba(16, 37, 66, 0) 40%,
      rgba(16, 37, 66, 0.92) 100%);
  --grad-section: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(16, 37, 66, 0.08);
  --shadow-sm: 0 2px 8px rgba(16, 37, 66, 0.1);
  --shadow-md: 0 4px 24px rgba(16, 37, 66, 0.12);
  --shadow-lg: 0 8px 40px rgba(16, 37, 66, 0.16);
  --shadow-xl: 0 16px 64px rgba(16, 37, 66, 0.2);
  --shadow-orange: 0 8px 32px rgba(245, 158, 11, 0.3);
  --shadow-card: 0 4px 24px rgba(16, 37, 66, 0.1);

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 96px;
  --space-6xl: 120px;

  /* Section Padding */
  --section-py: 96px;
  --section-py-sm: 64px;

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-slower: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;

  /* Header */
  --header-height: 80px;
  --header-height-sm: 64px;
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--navy);
}

.display-1 {
  font-size: clamp(2.5rem, 6vw, var(--text-7xl));
}

.display-2 {
  font-size: clamp(2rem, 5vw, var(--text-6xl));
}

.display-3 {
  font-size: clamp(1.75rem, 4vw, var(--text-5xl));
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 700;
  color: var(--navy);
  line-height: var(--leading-tight);
}

.highlight-section {
  animation: borderPulse 2s infinite;
}

@keyframes borderPulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 170, 0, 0);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
  }
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--grad-orange);
  border-radius: 2px;
}

p {
  line-height: var(--leading-relaxed);
  color: var(--text-mid);
  font-size: var(--text-base);
}

/* ============================================================
   SECTION SPACING
   ============================================================ */

.section {
  padding: var(--section-py) 0;
}

.section-sm {
  padding: var(--section-py-sm) 0;
}

.section-dark {
  background: var(--grad-navy);
  color: var(--white);
}

.section-dark .section-title,
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p,
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.section-light {
  background: var(--light-bg);
}

.section-light-2 {
  background: var(--light-bg-2);
}

/* Stats section (inline style replacement) */
.stats-bar {
  background: var(--grad-navy);
  padding: 48px 0;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition:
    background var(--transition-slow),
    box-shadow var(--transition-slow),
    backdrop-filter var(--transition-slow);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 10;
}

.site-logo .logo-img {
  height: 70px;
  width: auto;
  transition: filter var(--transition-base);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-base);
  line-height: 1;
}

.scrolled .logo-text {
  color: var(--navy);
}

/* Desktop Nav Links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  transform: scaleX(1);
}

.scrolled .nav-link-item {
  color: var(--text-dark);
}

.scrolled .nav-link-item:hover,
.scrolled .nav-link-item.active {
  color: var(--navy);
  background: var(--light-bg);
}

/* Book Now button */
.btn-book-now {
  background: var(--grad-orange);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-orange);
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45);
  color: var(--white) !important;
}

/* Hamburger Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: relative;
  z-index: calc(var(--z-sticky) + 20);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ============================================================
   HERO — Video (homepage)
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg,
      #0a1929 0%,
      var(--navy) 50%,
      #1a3a5c 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 25, 41, 0.6) 0%,
      rgba(16, 37, 66, 0.75) 60%,
      rgba(10, 25, 41, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--amber);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-item i {
  color: var(--amber);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceIndicator 2s infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease infinite;
}

/* ============================================================
   PAGE HERO — Inner pages
   ============================================================ */

.page-hero-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background: var(--grad-navy);
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 25, 41, 0.5) 0%,
      rgba(10, 25, 41, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-lg);
  max-width: 560px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.breadcrumb-nav a {
  color: var(--amber);
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: var(--white);
}

.breadcrumb-nav .sep {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-nav .current {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary-jh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-orange);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-primary-jh:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.5);
  color: var(--white);
}

/* Hero-specific button variants (pill shape) */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-orange);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
  color: var(--white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-jh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-outline-jh:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy-jh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-navy-jh:hover {
  background: var(--navy-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse>* {
  direction: ltr;
}

.split-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.split-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}

.split-img-wrap img[src=""],
.split-img-wrap img:not([src]) {
  opacity: 0;
}

.split-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.split-img-badge .number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.split-img-badge .label {
  font-size: var(--text-xs);
  color: var(--text-mid);
  font-weight: 500;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-orange {
  color: var(--orange) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.text-mid {
  color: var(--text-mid) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-light-jh {
  background-color: var(--light-bg) !important;
}

.bg-light-2 {
  background-color: var(--light-bg-2) !important;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.font-heading {
  font-family: var(--font-heading) !important;
}

.font-body {
  font-family: var(--font-body) !important;
}

.shadow-jh {
  box-shadow: var(--shadow-card) !important;
}

.rounded-jh {
  border-radius: var(--radius-lg) !important;
}

.page-top-offset {
  margin-top: var(--header-height);
}

.divider-orange {
  width: 60px;
  height: 3px;
  background: var(--grad-orange);
  border-radius: 2px;
  margin: 16px 0;
}

.divider-orange.center {
  margin: 16px auto;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
}

.checklist li::before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: var(--grad-orange);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */

.text-navy {
  color: var(--navy) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.text-mid {
  color: var(--text-mid) !important;
}

.text-light-jh {
  color: rgba(255, 255, 255, 0.78) !important;
}

.text-light-high {
  color: rgba(255, 255, 255, 0.85) !important;
}

.bg-orange-light {
  background: rgba(245, 158, 11, 0.25) !important;
}

.fs-xs {
  font-size: 0.78rem !important;
}

.fs-sm {
  font-size: 0.85rem !important;
}

.fs-md {
  font-size: 0.9rem !important;
}

.fs-md2 {
  font-size: 0.92rem !important;
}

.fs-lg {
  font-size: 1.1rem !important;
}

.fs-lg2 {
  font-size: 1.4rem !important;
}

.fs-xl {
  font-size: 1.5rem !important;
}

.fs-2xl {
  font-size: 1.6rem !important;
}

.fs-3xl {
  font-size: 1.8rem !important;
}

.fs-emoji-md {
  font-size: 36px !important;
  margin-bottom: 16px !important;
}

.fs-emoji-lg {
  font-size: 48px !important;
  margin-bottom: 20px !important;
}

.fw-semi {
  font-weight: 600 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fst-italic {
  font-style: italic !important;
}

.fw-extra {
  font-weight: 800 !important;
}

.lh-relaxed {
  line-height: 1.75 !important;
}

.font-heading {
  font-family: var(--font-heading) !important;
}

.border-light-jh {
  border-color: var(--border-light) !important;
}

.border-light-alpha {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.border-bottom-alpha {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-20px {
  width: 20px !important;
}

.z-2 {
  z-index: 2 !important;
}

.max-w-520 {
  max-width: 520px !important;
}

.max-w-560 {
  max-width: 560px !important;
}

.border-orange-2 {
  border: 2px solid var(--orange) !important;
}

.bg-why-us-hero {
  background-image: url('../images/banners/why-us-hero.jpg') !important;
  opacity: 1 !important;
}

.bg-rooms-hero {
  background-image: url('../images/banners/rooms-hero.jpg') !important;
  opacity: 1 !important;
}

.bg-private-hero {
  background-image: url('../images/banners/private-hero.jpg') !important;
}

.bg-premium-hero {
  background-image: url('../images/banners/premium-hero.jpg') !important;
}

.bg-about-hero {
  background-image: url('../images/banners/about-hero.jpg') !important;
  opacity: 1 !important;
}

.bg-travel-hero {
  background-image: url('../images/banners/travel-hero.jpg') !important;
  opacity: 1 !important;
}

.bg-contact-hero {
  background-image: url('../images/banners/contact-hero.jpg') !important;
}

.bg-location-hero {
  background-image: url('../images/banners/location-hero.jpg') !important;
  opacity: 1 !important;
}

.overlay-gradient-1 {
  background: linear-gradient(160deg, rgba(10, 25, 41, 0.85) 0%, rgba(16, 37, 66, 0.65) 100%) !important;
}

.overlay-gradient-2 {
  background: linear-gradient(160deg, rgba(10, 25, 41, 0.85) 0%, rgba(16, 37, 66, 0.70) 100%) !important;
}

.overlay-gradient-3 {
  background: linear-gradient(160deg, rgba(10, 25, 41, 0.88) 0%, rgba(16, 37, 66, 0.72) 100%) !important;
}

.overlay-gradient-4 {
  background: linear-gradient(160deg, rgba(10, 25, 41, 0.82) 0%, rgba(16, 37, 66, 0.65) 100%) !important;
}

.overlay-gradient-location {
  background: linear-gradient(160deg, rgba(10, 25, 41, 0.86) 0%, rgba(16, 37, 66, 0.68) 100%) !important;
}