/* ============================================================
   Corbett Vista — LUXURY JUNGLE THEME
   Design tokens, base, components, sections, animations, responsive
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --primary: #1E4D30;
  --primary-dark: #12321F;
  --primary-light: #2E6944;
  --secondary: #567C3B;
  --accent: rgb(181, 129, 16);
  --accent-light: #f3b712;
  --bg: #ffffff;
  --bg-alt: #fffdf7;
  --dark: #222222;
  --white: #FFFFFF;
  --overlay: rgba(10, 20, 12, .58);
  --shadow-soft: 0 20px 45px rgba(18, 50, 31, .14);
  --shadow-lift: 0 30px 60px rgba(18, 50, 31, .22);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-head: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. RESET / BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  font-family: var(--font-body);
}

::selection {
  background: var(--accent);
  color: var(--white);
}

h1,
h2,
h3,
h4,
.font-head {
  font-family: var(--font-head);
  letter-spacing: .3px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: 40px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  max-width: 640px;
  color: #232323;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.section-head {
  margin-bottom: 50px;
  text-align: center;
  justify-content: center;
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-head .section-sub.mx-auto {
  max-width: 640px;
}

section {
  padding: 60px 0;
  position: relative;
}

@media (max-width:991px) {
  section {
    padding: 80px 0;
  }
   .frbk-input-box input{
    height: 45px!important;
  }

  .frbk-btn-book{
    height: 48px!important;
  }
  .section-title {
    font-size: 30px;
  }
  .section-sub{
    font-size: 0.85rem;
  }
}

@media (max-width:576px) {
  section {
    padding: 50px 0;
  }
  
 
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-primary-deep {
  background: var(--primary);
}

/* ---------- signature motif: trail line + pugmarks ---------- */
.trail-divider {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
}

.trail-divider svg {
  height: 100%;
  width: auto;
}

/* ---------- 3. BUTTONS ---------- */
.btn-corbett {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .4px;
  padding: 15px 34px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
  cursor: pointer;
}

.btn-primary-corbett {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary-corbett:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.btn-outline-corbett {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .65);
}

.btn-outline-corbett:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-gold-corbett {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-gold-corbett:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.btn-sm-corbett {
  padding: 10px 22px;
  font-size: .82rem;
}

/* ripple */
.ripple-span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .6s linear;
  background: rgba(255, 255, 255, .5);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

.hero {
  padding: 120px 0 80px !important;
}

nav{
  padding: 0px!important;
}

/* ---------- 4. HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* padding:22px 0; */
  transition: all .45s var(--ease);
  /* background:transparent; */
  background: rgba(255, 255, 255, 1);
  border-top: 2px solid #12321F;
}

.site-header .navbar-brand img {
  width: 200px;
  transition: height .4s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(18, 50, 31, .08);
  /* padding:12px 0;  */
}

/* .site-header.scrolled .navbar-brand img{height:42px;} */

.site-header .nav-link-corbett {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .3px;
  color: var(--dark);
  margin: 0 14px;
  padding: 8px 0 !important;
  position: relative;
  transition: color .35s;
}

.nav-item {
  position: relative;
}

.site-header.scrolled .nav-link-corbett {
  color: var(--dark);
}

.site-header .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .35s var(--ease);
}

.site-header .nav-item:hover::after,
.site-header .nav-item.active::after {
  width: 100%;
}

.site-header .nav-link-corbett:hover {
  color: var(--accent-light);
}

.site-header.scrolled .nav-link-corbett:hover {
  color: var(--accent);
}

.dropdown-menu-corbett {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  padding: 10px;
  margin-top: 0px !important;
}

.dropdown-menu-corbett .dropdown-item {
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .9rem;
  color: var(--dark);
  transition: .3s;
}

.dropdown-menu-corbett .dropdown-item:hover {
  background: var(--bg-alt);
  color: var(--primary);
  padding-left: 20px;
}

.header-cta {
  margin-left: 12px;
}

.header-cta .btn-corbett {
  padding: 11px 26px;
  font-size: .85rem;
}

.navbar-toggler-corbett {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.site-header.scrolled .navbar-toggler-corbett {
  color: var(--primary);
}

/* ---------- 5. HERO ---------- */
.hero {
  /* min-height: 100vh; */
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 13, .66) 0%, rgba(10, 22, 13, .66) 45%, rgba(8, 16, 10, .85) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-eyebrow i {
  color: var(--accent);
}

.hero-title {
  font-size: 45px;
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .25);
}

.hero-title em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.12rem;
  max-width: 560px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat .count {
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--white);
  font-weight: 600;
  display: block;
}

.hero-stat .label {
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

/* floating booking card */
.booking-float {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-lift);
}

.booking-float h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 22px;
  letter-spacing: .5px;
}

.booking-float .form-label {
  color: rgba(255, 255, 255, .85);
  font-size: .76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.booking-float .form-select,
.booking-float .form-control {
  background: rgba(255, 255, 255, .92);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .92rem;
  margin-bottom: 18px;
}

.booking-float .form-select:focus,
.booking-float .form-control:focus {
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .45);
}

.booking-float .btn-corbett {
  width: 100%;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  text-align: center;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .8;
}

.scroll-cue .cue-line {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .5);
  margin: 10px auto 0;
  position: relative;
  overflow: hidden;
}

.scroll-cue .cue-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  animation: scrollcue 1.8s infinite ease-in-out;
}

@keyframes scrollcue {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* ---------- 6. TRUST STRIP ---------- */
.trust-strip {
  padding: 40px 0;
  background: var(--white);
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 15px;
  border-radius: var(--radius-md);
  border: 1px solid #ECE7D9;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.trust-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  transition: background .4s, color .4s;
}

.trust-card:hover .trust-icon {
  background: var(--primary);
  color: var(--white);
}

.trust-card h6 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
}

.trust-card p {
  font-size: .85rem;
  color: #666;
  margin: 0;
}

/* ---------- 7. SAFARI BOOKING CARDS ---------- */
.safari-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
}

.safari-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}

.safari-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.safari-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.safari-card:hover .img-wrap img {
  transform: scale(1.1);
}

.safari-card .price-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.safari-card .card-body-corbett {
  padding: 20px;
}

.safari-card h4 {
  color: var(--primary);
  font-size: 1.28rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.safari-card p {
  color: #666;
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.safari-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ---------- 8. ZONE CARDS ---------- */
.zone-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.zone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.zone-card:hover img {
  transform: scale(1.12);
}

.zone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 13, 0) 35%, rgba(8, 16, 10, .88) 100%);
}

.zone-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
  color: var(--white);
}

.zone-card-body .zone-tag {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
  display: block;
}

.zone-card-body h5 {
  font-family: var(--font-head);
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.zone-card-body p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .78);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s;
  margin-bottom: 0;
}

.zone-card:hover .zone-card-body p {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 12px;
}

.zone-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ---------- 9. RESORT CARDS ---------- */
.resort-scroll {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 10px 4px 26px;
  scroll-snap-type: x mandatory;
}

.resort-scroll::-webkit-scrollbar {
  height: 6px;
}

.resort-scroll::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

.resort-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.resort-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.resort-card .img-wrap {
  height: 190px;
  overflow: hidden;
}

.resort-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.resort-card:hover .img-wrap img {
  transform: scale(1.1);
}

.resort-card .card-body-corbett {
  padding: 22px 22px 26px;
}

.resort-card .stars {
  color: var(--accent);
  font-size: .78rem;
  margin-bottom: 8px;
}

.resort-card h6 {
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 1.02rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.resort-card .location {
  font-size: .8rem;
  color: #777;
  margin-bottom: 16px;
}

/* ---------- 10. ABOUT ---------- */
.about-media {
  position: relative;
}

.about-media .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.about-media .badge-exp {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-lift);
  text-align: center;
}

.about-media .badge-exp .num {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.about-media .badge-exp .txt {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

@media (max-width:767px) {
  .about-media .badge-exp {
    left: 14px;
    bottom: -22px;
    padding: 18px 20px;
  }
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid #E7E2D3;
}

.about-feature:first-of-type {
  border-top: none;
}

.about-feature .icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.about-feature h6 {
  font-family: var(--font-head);
  color: var(--primary);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: .86rem;
  color: #666;
  margin: 0;
}

/* ---------- 11. WHY CHOOSE US ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}

.why-card .why-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: transform .5s var(--ease);
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
}

.why-card h5 {
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card p {
  font-size: .87rem;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* ---------- 12. TOUR PACKAGES ---------- */
.package-card {
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);

}

.package-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.package-card .pkg-img {
  flex: 0 0 40%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.package-card .pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .7s var(--ease);
}

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

.package-card .pkg-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--white);
  color: var(--primary);
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.package-card .pkg-body {
  flex: 1;
  min-width: 260px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.package-card .pkg-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #777;
  margin-bottom: 10px;
}

.package-card .pkg-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-card .pkg-meta i {
  color: var(--secondary);
}

.package-card h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.package-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0 18px;
}

.package-card .price-now {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.package-card .price-old {
  font-size: .9rem;
  color: #999;
  text-decoration: line-through;
}

/* ---------- 13. GALLERY ---------- */
.gallery-masonry {
  column-count: 4;
  column-gap: 18px;
}

@media (max-width:991px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width:576px) {
  .gallery-masonry {
    column-count: 2;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .7s var(--ease);
}

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

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(30, 77, 48, 0);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all .4s var(--ease);
}

.gallery-item:hover::after {
  background: rgba(18, 50, 31, .45);
  color: var(--white);
}

/* lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 16, 10, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 86vw;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  color: var(--white);
  font-size: 1.6rem;
  background: rgba(255, 255, 255, .12);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .25);
  transition: .3s;
}

.lightbox-close {
  top: 26px;
  right: 26px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--accent);
}

.lightbox-nav.prev {
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- 14. TESTIMONIALS ---------- */
.testimonial-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonial-section .section-sub {
  color: rgba(255, 255, 255, .75);
}

.testimonial-section .eyebrow {
  color: var(--accent-light);
}

.testimonial-section .section-title {
  color: var(--white);
}

.testi-track-wrap {
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform .6s var(--ease);
}

.testi-slide {
  flex: 0 0 100%;
  padding: 6px;
}

@media (min-width:768px) {
  .testi-slide {
    flex: 0 0 50%;
  }
}

@media (min-width:1200px) {
  .testi-slide {
    flex: 0 0 33.3333%;
  }
}

@media screen and (max-width:768px) {
  .trust-strip{
    display: none;
  }
  .package-card .pkg-body{
    padding: 20px;
  }
}

.testi-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  height: 100%;
  color: var(--white);
}

.testi-card .stars {
  color: var(--accent-light);
  margin-bottom: 16px;
  font-size: .9rem;
}

.testi-card p.quote {
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 26px;
  min-height: 130px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-person .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex: 0 0 52px;
}

.testi-person h6 {
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: .98rem;
}

.testi-person span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
}

.testi-controls {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

.testi-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: var(--white);
  transition: .3s;
}

.testi-controls button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ---------- 15. FAQ ---------- */
.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #E4DFCF;
  margin-bottom: 6px;
}

.faq-accordion .accordion-button {
  background: transparent;
  font-family: var(--font-head);
  color: var(--primary);
  font-size: 1.02rem;
  padding: 24px 6px;
  box-shadow: none;
  font-weight: 600;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
}

.faq-accordion .accordion-button::after {
  filter: invert(45%) sepia(60%) saturate(400%) hue-rotate(15deg);
}

.faq-accordion .accordion-body {
  padding: 0 6px 26px;
  color: #666;
  font-size: .92rem;
  line-height: 1.8;
}

/* ---------- 16. CTA BANNER ---------- */
.cta-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 22, 13, .9), rgba(18, 50, 31, .65));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.cta-banner-content .section-title {
  color: var(--white);
}

.cta-banner-content p {
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
  margin: 0 auto 34px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 4px;
}

/* ---------- 17. FOOTER ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .75);
  padding-top: 90px;
}

.site-footer h6.footer-title {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.02rem;
  margin-bottom: 24px;
  position: relative;
}

.site-footer p {
  font-size: .88rem;
  line-height: 1.85;
}

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

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  transition: .3s;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .88rem;
}

.footer-contact i {
  color: var(--accent-light);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 6px;
}

.newsletter-form input {
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 13px 18px;
  font-size: .86rem;
  flex: 1;
  min-width: 0;
}

.newsletter-form button {
  border: none;
  border-radius: 0 50px 50px 0;
  background: var(--accent);
  color: var(--white);
  padding: 0 20px;
  transition: .3s;
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 70px;
  padding: 26px 0;
  font-size: .82rem;
  text-align: center;
  color: rgba(255, 255, 255, .55);
}

/* floating whatsapp */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-actions a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-lift);
  transition: transform .35s var(--ease);
}

.float-actions a:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25D366;
}

.float-call {
  background: var(--primary);
}

/* enquiry modal */
.modal-corbett .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  background: var(--bg);
}

.modal-corbett .modal-header {
  border-bottom: 1px solid #E7E2D3;
  padding: 15px 30px;
}

.modal-corbett .modal-title {
  font-family: var(--font-head);
  color: var(--primary);
}

.modal-corbett .modal-body {
      padding: 20px 30px;
}

.modal-corbett .form-label {
  font-size: .8rem;
  letter-spacing: .5px;
  color: var(--primary);
  font-weight: 600;
}

.modal-corbett .form-control,
.modal-corbett .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid #E0DACB;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.modal-corbett .form-control:focus,
.modal-corbett .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .2);
}

/* ---------- 18. SCROLL REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="slide"] {
  transform: translateY(0) translateX(-40px);
}

[data-reveal="slide"].in-view {
  transform: translateX(0);
}

[data-reveal-delay="1"] {
  transition-delay: .12s;
}

[data-reveal-delay="2"] {
  transition-delay: .24s;
}

[data-reveal-delay="3"] {
  transition-delay: .36s;
}

[data-reveal-delay="4"] {
  transition-delay: .48s;
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width:1199px) {
  .package-card .pkg-img {
    flex: 0 0 260px;
    max-width: 260px;
  }
}

@media (max-width:991px) {

  .site-header{
    position: inherit;
  }
  .hero-video{
    padding-top: 0px;
  }
  .hero-content {
    padding-top: 120px;
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .booking-float {
    margin-top: 40px;
  }

  .about-media {
    margin-bottom: 70px;
  }

  .package-card {
    flex-direction: column;
  }

  .package-card .pkg-img {
    flex: 0 0 220px;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width:767px) {
  .gallery-masonry {
    column-count: 2;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  section {
    overflow-x: hidden;
  }
}

@media (max-width:575px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn-corbett {
    width: 100%;
    justify-content: center;
  }

  .float-actions {
    right: 16px;
    bottom: 16px;
  }

  .float-actions a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

.tp-about-breadcrumb {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
    url('../img/about-banner.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tp-about-breadcrumb::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  top: -60px;
  left: -60px;
}

.tp-about-breadcrumb::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  right: -40px;
  bottom: -40px;
}

.tp-about-breadcrumb-content {
  position: relative;
  z-index: 2;
}

.tp-about-title {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.tp-custom-breadcrumb {
  margin: 0;
}

.tp-custom-breadcrumb .breadcrumb-item,
.tp-custom-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: .3s;
}

.tp-custom-breadcrumb .breadcrumb-item a:hover {
  color: #ffc107;
}

.tp-custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.tp-custom-breadcrumb i {
  margin-right: 6px;
}

@media(max-width:991px) {

  .tp-about-breadcrumb {
    padding: 110px 0;
  }

  .tp-about-title {
    font-size: 42px;
  }

  .cwhl-amenities{
    gap: 8px;
  }
  .cwhl-amenity i{
    font-size: 15px;
  }
  .cwhl-amenity{
    font-size: 11px!important;
  }

}

@media(max-width:576px) {

  .tp-about-breadcrumb {
    padding: 70px 0;
  }

  .tp-about-title {
    font-size: 30px;
  }

  .tp-custom-breadcrumb .breadcrumb-item,
  .tp-custom-breadcrumb .breadcrumb-item a {
    font-size: 15px;
  }

}

.tpmv-section {
  background: #f8faf8;
}

.tpmv-subtitle {
  display: inline-block;
  color: #2e7d32;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.tpmv-heading {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

.tpmv-description {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.tpmv-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: .4s;
  border-top: 5px solid #2e7d32;
  position: relative;
  overflow: hidden;
}

.tpmv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
  transition: .8s;
}

.tpmv-card:hover::before {
  left: 100%;
}

.tpmv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.tpmv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.tpmv-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
  color: #222;
  font-weight: 700;
}

.tpmv-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 0;
  font-size: 14px;
}

@media(max-width:991px) {

  .tpmv-heading {
    font-size: 34px;
  }

  .tpmv-card {
    padding: 30px;
  }

}

@media(max-width:576px) {

  .tpmv-heading {
    font-size: 28px;
  }

  .tpmv-card h3 {
    font-size: 24px;
  }

  .tpmv-card {
    padding: 25px;
  }

  .tpmv-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

}

.jcsv-contact {

  background: var(--bg);

}

.jcsv-subtitle {

  color: var(--accent);

  font-size: 15px;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-weight: 600;

}

.jcsv-title {

  font-family: var(--font-head);

  color: var(--primary);

  font-size: 35px;

  font-weight: 700;

  margin: 15px 0;

}

.jcsv-desc {

  max-width: 600px;

  margin: auto;

  color: #666;

  font-size: 15px;

}

.jcsv-card {

  background: #fff;

  border-radius: 16px;

  padding: 25px;

  text-align: center;

  box-shadow: var(--shadow-soft);

  transition: .35s;

  border: 1px solid rgba(0, 0, 0, .05);

  height: 100%;

}

.jcsv-card:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-lift);

}

.jcsv-icon {

  width: 60px;

  height: 60px;

  background: var(--primary);

  color: #fff;

  border-radius: 50%;

  margin: auto auto 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

}

.jcsv-card:hover .jcsv-icon {

  background: var(--accent);

}

.jcsv-card h5 {

  color: var(--primary);

  font-size: 20px;

  margin-bottom: 10px;

  font-weight: 600;

}

.jcsv-card p,
.jcsv-card a {

  color: #666;

  text-decoration: none;

  font-size: 15px;

}

.jcsv-wrapper {

  margin-top: 50px;

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: var(--shadow-soft);

}

.jcsv-form {

  padding: 35px;

}

.jcsv-form h3 {

  color: var(--primary);

  font-family: var(--font-head);

  margin-bottom: 25px;

  font-size: 28px;

}

.jcsv-input {

  border: 1px solid #ddd;

  border-radius: 10px;

  height: 50px;

}

textarea.jcsv-input {

  height: 140px;

  resize: none;

}

.jcsv-input:focus {

  box-shadow: none;

  border-color: var(--accent);

}

.jcsv-btn {

  background: var(--primary);

  color: #fff;

  border: none;

  padding: 13px 35px;

  border-radius: 40px;

  transition: .3s;

}

.jcsv-btn:hover {

  background: var(--accent);

  color: #222;

}

.jcsv-map {

  height: 100%;

}

.jcsv-map iframe {

  width: 100%;

  height: 100%;

  min-height: 520px;

  border: 0;

}

@media(max-width:991px) {

  .jcsv-title {

    font-size: 30px;

  }

  .jcsv-form {

    padding: 25px;

  }

  .jcsv-map iframe {

    min-height: 350px;

  }

}

.jsf-page {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.jsf-page h1,
.jsf-page h2,
.jsf-page h3,
.jsf-page h4,
.jsf-eyebrow {
  font-family: var(--font-head);
}

/* ============ BREADCRUMB STRIP ============ */
.jsf-crumb-strip {
  background: var(--primary-dark);
  padding: .9rem 0;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
}

.jsf-crumb-strip a {
  color: var(--accent-light);
  text-decoration: none;
}

.jsf-crumb-strip i {
  font-size: .7rem;
  margin: 0 .5rem;
  color: rgba(255, 255, 255, .4);
}

/* ============ TOP SPLIT: IMAGE + DETAILS ============ */
.jsf-top-split {
  padding: 3.5rem 0;
}

.jsf-top-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 380px;
}

.jsf-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

.jsf-eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: .78rem;
  text-transform: uppercase;

}

.jsf-h2 {
  color: var(--primary-dark);
  font-size: 28px !important;
  font-weight: 700;
  margin-top: .5rem;
}

.jsf-divider {
  width: 70px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 1.1rem 0 0;
}

.jsf-divider.jsf-center {
  margin: 1.1rem auto 0;
}

.jsf-top-desc {
  color: #323232;
  font-size: .88rem;
  margin-top: 1rem;
}

.jsf-price-grid {
  margin-top: 1rem;
}

.jsf-price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--accent);
  height: 100%;
}

.jsf-price-card .jsf-tag {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--secondary);
  font-weight: 600;
}

.jsf-price-card .jsf-amt {
  font-family: var(--font-head);
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  margin: .3rem 0;
}

.jsf-price-card .jsf-amt small {
  font-size: .7rem;
  font-family: var(--font-body);
  color: var(--dark);
  font-weight: 400;
}

.jsf-price-card .jsf-cap {
  font-size: .8rem;
  color: #777;
}

.jsf-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.jsf-meta-chip {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: .8rem;
  flex: 1 1 200px;
  border: 1px solid #b17f11;
}

.jsf-meta-chip .jsf-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: .2rem;
}

.jsf-meta-chip strong {
  font-family: var(--font-head);
  color: var(--primary-dark);
  font-size: .95rem;
}

/* ============ SECTION SHELL ============ */
.jsf-section {
  padding: 60px 0;
  position: relative;
}

.jsf-section-alt {
  background: var(--bg-alt);

}

#need-help {
  background-color: #1e4d30;
}

/* ============ ABOUT / FEATURE CARDS (icon row) ============ */
.jsf-icon-row {
  margin-top: 2.5rem;
}

.jsf-icon-item {
  text-align: center;
}

.jsf-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}

.jsf-icon-item h5 {
  font-family: var(--font-head);
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
}

.jsf-icon-item p {
  color: #5c5c5c;
  font-size: .87rem;
  margin-bottom: 0;
}

/* ============ ZONES ============ */
.jsf-zone-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.jsf-zone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

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

.jsf-zone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 12, 0) 35%, rgba(10, 20, 12, .88) 100%);
  z-index: 1;
}

.jsf-zone-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.3rem;
  z-index: 2;
  color: var(--white);
}

.jsf-zone-body .jsf-zone-tag {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.jsf-zone-body h4 {
  font-size: 1.15rem;
  margin: .5rem 0 .2rem;
  font-family: var(--font-head);
}

.jsf-zone-body p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

/* ============ BOOK YOUR SAFARI CTA PANEL ============ */
.jsf-cta-panel {

  color: var(--white);

}

.jsf-cta-panel .jsf-eyebrow {
  color: var(--accent-light);
}

.jsf-cta-panel h2 {
  color: var(--white);
}

.jsf-cta-panel p.jsf-sub {
  color: rgba(255, 255, 255, .75);
}

.jsf-option-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: 1.7rem;
  height: 100%;
  transition: all .35s var(--ease);
  cursor: pointer;
  color: var(--white);
}

.jsf-option-card.active,
.jsf-option-card:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-6px);
}

.jsf-option-card .jsf-opt-icon {
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: .8rem;
}

.jsf-option-card.active .jsf-opt-icon,
.jsf-option-card:hover .jsf-opt-icon {
  color: var(--primary-dark);
}

.jsf-option-card h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
}

.jsf-option-card p {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 0;
}

/* ============ FORMALITIES / TERMS TWO-COLUMN ============ */
.jsf-notice {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.jsf-notice h4 {
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.jsf-notice ul {
  padding-left: 1.1rem;
  color: #4b4b4b;
  font-size: .92rem;
  margin: 0;
  list-style: disc;
}

.jsf-notice li {
  margin-bottom: .55rem;
}

.jsf-notice li::marker {
  color: var(--accent);
}

/* ============ ENTRY FORMALITIES TEXT BAND ============ */
.jsf-verify-band {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--secondary);
}

.jsf-verify-band i {
  color: var(--accent);
  font-size: 1.8rem;
}

.jsf-verify-band p {
  color: #4b4b4b;
  font-size: .95rem;
}

/* ============ GET IN TOUCH ============ */
.jsf-touch-wrap {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.jsf-touch-info {
  padding: 3rem 2.5rem;
  color: var(--white);
  height: 100%;
}

.jsf-touch-info .jsf-eyebrow {
  color: var(--accent-light);
}

.jsf-touch-info h2 {
  color: var(--white);
}

.jsf-touch-info p.jsf-sub {
  color: rgba(255, 255, 255, .7);
}

.jsf-touch-list {
  list-style: none;
  padding: 0;
  margin-top: 1.8rem;
}

.jsf-touch-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
}

.jsf-touch-list i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.jsf-touch-form {
  background: var(--white);
  padding: 3rem 2.5rem;
  height: 100%;
}

.jsf-touch-form h4 {
  color: var(--primary-dark);
  font-family: var(--font-head);
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.jsf-form-control {
  background: var(--white);
  border: 1px solid rgba(18, 50, 31, .15);
  color: var(--dark);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-size: .92rem;
}

.jsf-form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(200, 155, 60, .18);
}

.jsf-label {
  color: #666;
  font-size: .8rem;
  letter-spacing: .3px;
  margin-bottom: .4rem;
  display: block;
}

.jsf-btn-submit {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: .85rem 2.4rem;
  font-size: .95rem;
  letter-spacing: .4px;
  transition: all .3s var(--ease);
}

.jsf-btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.jsf-form-success {
  display: none;
  color: var(--primary);
  font-size: .88rem;
  margin-top: .9rem;
  font-weight: 600;
}

.jsf-form-success.show {
  display: block;
}

@media (max-width: 767.98px) {

  .jsf-cta-panel,
  .jsf-verify-band {
    padding: 1.8rem 1.4rem;
  }

  .jsf-touch-info,
  .jsf-touch-form {
    padding: 2rem 1.4rem;
  }

  .jsf-section {
    padding: 3.2rem 0;
  }
}

.frh-page {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.frh-page h1,
.frh-page h2,
.frh-page h3,
.frh-page h4,
.frh-eyebrow {
  font-family: var(--font-head);
}

/* BREADCRUMB */
.frh-crumb-strip {
  background: var(--primary-dark);
  padding: .9rem 0;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
}

.frh-crumb-strip a {
  color: var(--accent-light);
  text-decoration: none;
}

.frh-crumb-strip i {
  font-size: .7rem;
  margin: 0 .5rem;
  color: rgba(255, 255, 255, .4);
}

/* TOP SPLIT */
.frh-top-split {
  padding: 3.5rem 0;
}

.frh-top-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
 
}

.frh-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.frh-eyebrow {
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: .78rem;
  text-transform: uppercase;
}

.frh-h2 {
  color: var(--primary-dark);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-top: .5rem;
}

.frh-divider {
  width: 70px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 1.1rem 0 0;
}

.frh-divider.frh-center {
  margin: 1.1rem auto 0;
}

.frh-top-desc {
  color: #5c5c5c;
  font-size: .86rem;
  margin-top: 1rem;
}

.frh-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.frh-meta-chip {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  flex: 1 1 220px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--accent);
}

.frh-meta-chip i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: .5rem;
  display: block;
}

.frh-meta-chip .frh-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: .3rem;
}

.frh-meta-chip p {
  color: var(--primary-dark);
  font-size: .92rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* SECTION SHELL */
.frh-section {
  padding: 60px 0;
  position: relative;
}

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

/* FACILITIES ICON ROW */
.frh-icon-row {
  margin-top: 2.5rem;
}

.frh-icon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease);
  border-bottom: 3px solid transparent;
}

.frh-icon-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--accent);
}

.frh-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.frh-icon-card h5 {
  font-family: var(--font-head);
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.frh-icon-card p {
  color: #5c5c5c;
  font-size: .9rem;
  margin-bottom: 0;
}

/* RELATED ZONES CARDS */
.frh-zone-pill {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: all .35s var(--ease);
  border: 1px solid rgba(18, 50, 31, .06);
}

.frh-zone-pill.active,
.frh-zone-pill:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-6px);
}

.frh-zone-pill i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: .6rem;
  display: block;
}

.frh-zone-pill.active i,
.frh-zone-pill:hover i {
  color: var(--accent-light);
}

.frh-zone-pill h6 {
  font-family: var(--font-head);
  font-size: .88rem;
  margin: 0;
}

/* ACCOMMODATION BLOCKS */
.frh-accom-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.frh-accom-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.frh-accom-head h4 {
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: .2rem;
  font-weight: 700;
}

.frh-accom-head span {
  color: var(--secondary);
  font-size: .9rem;
}

.frh-accom-desc {
  color: #5c5c5c;
  font-size: .93rem;
  margin: 1.1rem 0 1.4rem;
}

.frh-room-card {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  height: 100%;
  border-left: 3px solid var(--accent);
}

.frh-room-card h6 {
  font-family: var(--font-head);
  color: var(--primary-dark);
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.frh-room-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.frh-room-card li {
  font-size: .82rem;
  color: #555;
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.frh-room-card li i {
  color: var(--accent);
  font-size: .7rem;
  width: 14px;
}

/* TIMING STRIP */
.frh-timing-strip {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.frh-timing-strip .frh-t-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.frh-timing-strip .col-md-6:last-child .frh-t-item {
  border-right: none;
}

.frh-timing-strip .frh-t-item i {
  color: var(--accent-light);
  font-size: 1.5rem;
  margin-bottom: .6rem;
}

.frh-timing-strip .frh-t-item h6 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .3rem;
}

.frh-timing-strip .frh-t-item strong {
  font-family: var(--font-head);
  font-size: 1rem;
  display: block;
}

.frh-timing-strip .frh-t-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  margin: .4rem 0 0;
}

/* VERIFY BAND */
.frh-verify-band {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--secondary);
}

.frh-verify-band i {
  color: var(--accent);
  font-size: 1.8rem;
}

.frh-verify-band p {
  color: #4b4b4b;
  font-size: .95rem;
}

/* GET IN TOUCH */
.frh-touch-wrap {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.frh-touch-info {
  padding: 3rem 2.5rem;
  color: var(--white);
  height: 100%;
}

.frh-touch-info .frh-eyebrow {
  color: var(--accent-light);
}

.frh-touch-info h2 {
  color: var(--white);
}

.frh-touch-info p.frh-sub {
  color: rgba(255, 255, 255, .7);
}

.frh-touch-list {
  list-style: none;
  padding: 0;
  margin-top: 1.8rem;
}

.frh-touch-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
}

.frh-touch-list i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.frh-touch-form {
  background: var(--white);
  padding: 3rem 2.5rem;
  height: 100%;
}

.frh-touch-form h4 {
  color: var(--primary-dark);
  font-family: var(--font-head);
  margin-bottom: 1.4rem;
}

.frh-form-control {
  background: var(--white);
  border: 1px solid rgba(18, 50, 31, .15);
  color: var(--dark);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-size: .92rem;
}

.frh-form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(200, 155, 60, .18);
}

.frh-label {
  color: #666;
  font-size: .8rem;
  letter-spacing: .3px;
  margin-bottom: .4rem;
  display: block;
}

.frh-btn-submit {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: .85rem 2.4rem;
  font-size: .95rem;
  letter-spacing: .4px;
  transition: all .3s var(--ease);
}

.frh-btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.frh-form-success {
  display: none;
  color: var(--primary);
  font-size: .88rem;
  margin-top: .9rem;
  font-weight: 600;
}

.frh-form-success.show {
  display: block;
}

@media (max-width: 767.98px) {

  .frh-accom-block,
  .frh-verify-band {
    padding: 1.8rem 1.4rem;
  }

  .frh-touch-info,
  .frh-touch-form {
    padding: 2rem 1.4rem;
  }

  .frh-section {
    padding: 3.2rem 0;
  }
}

#resorts {
  padding-bottom: 0px;
}

.resort-scroll {
  padding-bottom: 40px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.frh-meta-chip p span{
  font-size: 20px;
  font-weight: 700;
}

.tour-overview-heading h2{
  font-weight: 700;
  color: var(--primary-dark);
}

.tour-overview p{
  color: var(--dark);
}

.inclusion-box{
  padding: 20px 15px;
  border: 1px solid #2e7d32;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.inclusion-box h4{
   font-weight: 700;
   color: #2e7d32;
}

.inclusion-box ul{
  list-style: disc;
  padding-left: 20px;
}

.inclusion-box ul li{
  font-size: 14px;
}


.inclusion-box ul li::marker {
    color: green;
}




.exclusion-box{
  padding: 20px 15px;
  border: 1px solid #ba0101;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.exclusion-box h4{
   font-weight: 700;
   color: #ba0101;
}

.exclusion-box ul{
  list-style: disc;
  padding-left: 20px;
}

.exclusion-box ul li{
  font-size: 14px;
}


.exclusion-box ul li::marker {
    color: red;
}

/*=========================================
 HOTEL LISTING CSS
 Unique Prefix : cwhl-
=========================================*/

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

.cwhl-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
    transition:.35s;
    margin-bottom: 25px;
}

.cwhl-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-lift);
}

/*=====================
SLIDER
=====================*/

.cwhl-slider{
    position:relative;
    height:100%;
}

.cwhl-slider .carousel-inner{
    height:100%;
}

.cwhl-slider .carousel-item{
    height:100%;
}

.cwhl-slider img{
    width:100%;
    height: 100%;
   
    object-fit:cover;
}

.cwhl-slider-btn{

    width:35px;
    height:35px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.95);
    color:var(--primary);

    font-size:16px;

    transition:.35s;
}

.cwhl-slider-btn:hover{

    background:var(--accent);
    color:#fff;

}

.carousel-control-prev,
.carousel-control-next{

    opacity:1;

}

.carousel-indicators{

    margin-bottom:20px;

}

.carousel-indicators button{

    width:11px;
    height:11px;

    border-radius:50%;

    border:none;

    background:#fff;

    opacity:.6;

}

.carousel-indicators [data-bs-target]{
  width: 10px;
    height: 10px;
}

.carousel-indicators .active{

    width:44px;
    border-radius:20px;
    background:var(--accent);
    opacity:1;

}

/*=====================
CONTENT
=====================*/

.cwhl-content{

    padding:20px 25px;

}

.cwhl-title{

    font-family:var(--font-head);
    font-size:25px;
    color:var(--primary);
    margin-bottom:10px;
    font-weight: 700;

}

.cwhl-location{

    display:flex;
    align-items:center;
    gap:10px;
    font-size: 14px;
    color:#666;
    font-weight:500;
    margin-bottom:12px;

}

.cwhl-location i{

    color:var(--accent);

}

.cwhl-rating{

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-weight:600;

}

.cwhl-rating i{

    color:#FFD54F;

}

.cwhl-desc{

    margin:22px 0;

    color:#666;

    line-height:1.9;

}

/*=====================
AMENITIES
=====================*/

.cwhl-amenities{

    display:flex;
    flex-wrap:wrap;
    gap:14px;

}

.cwhl-amenity{

    display:flex;
    align-items:center;
    gap:10px;

    background:#fffdf7;

    border:1px solid rgba(0,0,0,.08);

    padding:5px 10px;

    border-radius:40px;

    transition:.3s;

    font-size:12px;
    font-weight:500;

}

.cwhl-amenity:hover{

    background:var(--primary);
    color:#fff;

}

.cwhl-amenity i{

    color:var(--accent);
    font-size:18px;

}

.cwhl-amenity:hover i{

    color:#fff;

}

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

.cwhl-action{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

    margin-top:30px;

}

.cwhl-btn{

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:48px;

    padding:0 25px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.cwhl-btn i{

    font-size:16px;

}

.cwhl-btn-primary{

    background:var(--primary);
    color:#fff;

}

.cwhl-btn-primary:hover{

    background:var(--primary-dark);
    color:#fff;

}

.cwhl-btn-call{

    background:#fff;

    color:var(--primary);

    border:2px solid var(--primary);

}

.cwhl-btn-call:hover{

    background:var(--primary);

    color:#fff;

}

.cwhl-btn-whatsapp{

    background:#25D366;

    color:#fff;

}

.cwhl-btn-whatsapp:hover{

    background:#1ca851;
    color:#fff;

}

/*=====================
READ MORE
=====================*/

.cwhl-readmore{

    margin-top:14px;
    padding-top:15px;
    border-top:1px solid #ececec;

}

.cwhl-read-btn{

    border:none;

    background:none;

    color:var(--primary);

    font-weight:700;

    display:flex;

    align-items:center;

    gap:12px;

    transition:.3s;

}

.cwhl-read-btn i{

    transition:.35s;

}

.cwhl-read-btn:hover{

    color:var(--accent);

}

/*========================
ROOM SECTION
========================*/

.cwhl-room-wrapper{

    padding:35px;

    border-top:1px solid #eee;

    background:#fafafa;

}

.cwhl-room-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

}

.cwhl-room-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.cwhl-room-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.cwhl-room-body{

    padding:22px;

}

.cwhl-room-body h4{

    font-family:var(--font-head);

    color:var(--primary);

    margin-bottom:15px;

}

.cwhl-room-body p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

.cwhl-room-btn{

    display:inline-block;

    margin-top:15px;

    text-decoration:none;

    background:var(--accent);

    color:#fff;

    padding:12px 25px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.cwhl-room-btn:hover{

    background:var(--primary);
    color:#fff;

}

/*=====================
RESPONSIVE
=====================*/

@media(max-width:991px){

.cwhl-slider img{

min-height:320px;

}

.cwhl-content{

padding:25px;

}

.cwhl-title{

font-size:28px;

}

.cwhl-room-wrapper{

padding:25px;

}

}

@media(max-width:767px){

.cwhl-slider img{

min-height:250px;

}

.cwhl-content{

padding:20px;

}

.cwhl-title{

font-size:24px;

}

.cwhl-action{

flex-direction:column;

}

.cwhl-btn{

width:100%;

}

.cwhl-room-wrapper{

padding:20px;

}

.cwhl-room-card{

margin-bottom:25px;

}

.cwhl-rating{

margin-top:15px;

}

}

.frbk-enquiry-wrap{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    padding:25px 0px;
    border-radius:0px;
    box-shadow:var(--shadow-soft);

}

.frbk-enquiry-form label{

    color:#fff;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:10px;
    display:block;
    letter-spacing:.6px;

}

.hero-video{
  padding-bottom: 0px;
}

.frbk-input-box{

    position:relative;

}

.frbk-input-box i{

    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:var(--accent);
    font-size:15px;

}

.frbk-input-box input{

    width:100%;
    height:58px;
    border:none;
    outline:none;
    border-radius:14px;
    padding-left:50px;
    background:#fff;
    font-size:15px;
    font-weight:500;
    color:var(--dark);
    transition:.35s;

}

.frbk-input-box input:focus{

    box-shadow:0 0 0 4px rgba(243,183,18,.18);

}

.frbk-input-box input::placeholder{

    color:#7b7b7b;

}

.frbk-btn-book{

    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:var(--accent-light);
    color:#222;
    font-weight:700;
    transition:.35s;
    font-size:15px;

}

.frbk-btn-book:hover{

    background:var(--accent-light);
    transform:translateY(-3px);

}