/* ============================================================
   RK Tours & Travels — style.css
   Theme: Bold travel blue + vibrant orange — adventure energy
   Fonts: Bebas Neue (display) + Nunito (body)
   
   Palette:
     Navy Blue    : #0b1f4b
     Sky Blue     : #1565c0
     Vibrant Blue : #1976d2
     Orange       : #f57c00
     Orange Light : #ff9800
     White        : #ffffff
     Off-White    : #f4f7ff
     Light Grey   : #eef2f8
     Text Dark    : #0d1b3e
     Text Mid     : #4a5568
============================================================ */

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --navy:        #0b1f4b;
  --blue:        #1565c0;
  --blue-light:  #1976d2;
  --blue-pale:   #e3eaf8;
  --orange:      #f57c00;
  --orange-lt:   #ff9800;
  --orange-glow: rgba(245,124,0,0.22);
  --white:       #ffffff;
  --off-white:   #f4f7ff;
  --light-grey:  #eef2f8;
  --text-dark:   #0d1b3e;
  --text-mid:    #4a5568;
  --text-light:  #7a8ba8;
  --border:      #d8e3f5;
  --shadow-sm:   0 4px 16px rgba(11,31,75,0.08);
  --shadow-md:   0 8px 32px rgba(11,31,75,0.13);
  --shadow-lg:   0 16px 48px rgba(11,31,75,0.18);
  --shadow-ora:  0 8px 28px rgba(245,124,0,0.3);
  --radius:      10px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   GLOBAL
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.sec-pad { padding: 90px 0; }

/* ============================================================
   UTILITY
============================================================ */
.hl-text { color: var(--orange); }

.sec-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,124,0,0.08);
  border: 1px solid rgba(245,124,0,0.25);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.1;
}

.sec-subtitle, .sec-body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
}
.sec-subtitle { max-width: 600px; margin: 0 auto; }
.sec-body { margin-bottom: 14px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-rk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--orange), #e65100);
  color: #fff !important;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-ora);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-rk::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary-rk:hover::after { opacity: 1; }
.btn-primary-rk:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,124,0,0.4); }

.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--orange), #e65100);
  color: #fff !important;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: var(--shadow-ora);
  transition: var(--transition);
}
.btn-book-now:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,124,0,0.4); }

.btn-hero-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--orange), #e65100);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-ora);
  transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,124,0,0.5); color: #fff; }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 32px;
  background: transparent;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); color: #fff; }

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.8rem;
}
.topbar-link {
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.topbar-link:hover { color: var(--orange-lt); }
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  transition: var(--transition);
}
.topbar-social:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1050;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(11,31,75,0.12);
  backdrop-filter: blur(10px);
}

.navbar { padding: 12px 0; }

.brand-emblem {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(21,101,192,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--navy);
}
.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
}

.nav-link {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 8px 12px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px;
  width: 0; height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active-section::after { width: calc(100% - 24px); }
.nav-link:hover, .nav-link.active-section { color: var(--orange) !important; }

/* Custom toggler */
.custom-toggler {
  border: none;
  background: none;
  padding: 5px;
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer;
}
.tbar {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.custom-toggler[aria-expanded="true"] .tbar:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.custom-toggler[aria-expanded="true"] .tbar:nth-child(2) { opacity: 0; }
.custom-toggler[aria-expanded="true"] .tbar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }
.custom-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO
============================================================ */
.hero-section { position: relative; }

.hero-img {
  height: 100vh;
  min-height: 580px;
  max-height: 860px;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,75,0.82) 0%,
    rgba(11,31,75,0.55) 55%,
    rgba(245,124,0,0.15) 100%
  );
}

.hero-caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 820px;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(245,124,0,0.18);
  border: 1px solid rgba(245,124,0,0.55);
  border-radius: 20px;
  color: var(--orange-lt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeDown 0.8s both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-title .hl {
  color: var(--orange-lt);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  animation: fadeIn 0.8s 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s both;
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.carousel-indicators [data-bs-target] {
  width: 30px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active { background: var(--orange); width: 50px; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
}
.scroll-hint span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: scrollPulse 1.4s infinite;
}
.scroll-hint span:nth-child(2) { animation-delay: 0.2s; }
.scroll-hint span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleX(1); }
  50%      { opacity: 1;   transform: scaleX(1.5); }
}

/* ============================================================
   ABOUT
============================================================ */
.about-sec { background: var(--off-white); }

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-exp-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--orange), #e65100);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-ora);
  text-align: center;
}
.exp-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 1;
}
.exp-num sup { font-size: 1.4rem; }
.exp-txt {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
}
.deco-corner {
  position: absolute;
  width: 60px; height: 60px;
  pointer-events: none;
}
.deco-corner.tl {
  top: -14px; left: -14px;
  border-top: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
  border-radius: 4px 0 0 0;
}
.deco-corner.br {
  bottom: -14px; right: -14px;
  border-bottom: 4px solid var(--blue);
  border-right: 4px solid var(--blue);
  border-radius: 0 0 4px 0;
}
.about-tick {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-tick i { color: var(--orange); font-size: 1rem; }

/* ============================================================
   SERVICES
============================================================ */
.services-sec { background: var(--white); }

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.svc-img-box {
  position: relative;
  overflow: hidden;
  /* height: 220px; */
}
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.svc-card:hover .svc-img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(11,31,75,0.55), transparent); */
}
.svc-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.svc-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue) !important;
  border: 2px solid var(--blue);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  align-self: flex-start;
}
.svc-cta:hover {
  background: var(--blue);
  color: #fff !important;
  transform: translateX(4px);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-sec { background: var(--off-white); }

.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  transition: height 0.4s ease;
}
.why-card:hover::before { height: 100%; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange); }

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--blue-pale);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
  user-select: none;
  letter-spacing: 2px;
  transition: var(--transition);
}
.why-card:hover .why-num { color: rgba(245,124,0,0.12); }
.why-icon {
  width: 54px; height: 54px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); color: #fff; }
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ============================================================
   COUNTER
============================================================ */
.counter-sec {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.road-strip {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.15) 0,
    rgba(255,255,255,0.15) 40px,
    transparent 40px,
    transparent 70px
  );
  transform: translateY(-50%);
  animation: roadMove 3s linear infinite;
}
@keyframes roadMove {
  from { background-position: 0 0; }
  to   { background-position: 110px 0; }
}

.counter-box { padding: 8px; }
.c-icon { font-size: 2rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.c-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.c-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.6rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.c-sfx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange-lt);
  letter-spacing: 1px;
}
.c-lbl {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-sec { background: var(--white); }

.how-dotted-line {
  position: absolute;
  top: 72px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--orange) 0, var(--orange) 10px,
    transparent 10px, transparent 24px
  );
  z-index: 0;
}

.how-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  height: 100%;
}
.how-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--orange); }

.how-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  letter-spacing: 2px;
  color: var(--blue-pale);
  line-height: 1;
  position: absolute;
  top: 12px; right: 14px;
  user-select: none;
  transition: var(--transition);
}
.how-card:hover .how-step-num { color: rgba(245,124,0,0.1); }

.how-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(21,101,192,0.35);
  transition: var(--transition);
}
.how-card:hover .how-icon { background: linear-gradient(135deg, var(--orange), #e65100); box-shadow: var(--shadow-ora); transform: rotate(8deg); }

.how-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 10px;
}
.how-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ============================================================
   GALLERY
============================================================ */
.gallery-sec { background: var(--off-white); }

.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gf-btn {
  padding: 9px 22px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.gal-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  height: 230px;
  box-shadow: var(--shadow-sm);
}
.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gal-card:hover .gal-img { transform: scale(1.1); }

.gal-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,75,0.82), rgba(245,124,0,0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}
.gal-hover span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gal-card:hover .gal-hover { opacity: 1; }

.gal-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,12,30,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lb-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 3px solid rgba(245,124,0,0.5);
  animation: lbIn 0.3s ease;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lb-close { top: 18px; right: 22px; width: 44px; height: 44px; font-size: 1.1rem; }
.lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1.2rem; }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1.2rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); border-color: var(--orange); }
.lb-caption {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testi-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(21,101,192,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.testi-sec .sec-label { border-color: rgba(245,124,0,0.4); }
.testi-sec .sec-title { color: #fff; }
.testi-sec .sec-subtitle { color: rgba(255,255,255,0.6); }

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,124,0,0.4); transform: translateY(-5px); }

.testi-quote { font-size: 2.8rem; color: var(--orange); opacity: 0.35; line-height: 1; margin-bottom: 6px; }
.stars { color: var(--orange-lt); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text { font-size: 0.93rem; color: rgba(255,255,255,0.78); font-style: italic; line-height: 1.8; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e65100);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-name { font-weight: 800; color: #fff; font-size: 0.95rem; margin-bottom: 2px; }
.t-info { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.testi-ctrl {
  position: relative;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  margin-top: 32px;
  opacity: 1;
  transition: var(--transition);
}
.testi-ctrl:hover { background: var(--orange); border-color: var(--orange); }

/* ============================================================
   FAQ
============================================================ */
.faq-sec { background: var(--off-white); }

.rk-acc-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.rk-acc-item:hover { border-color: var(--orange) !important; }

.rk-acc-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: none !important;
}
.rk-acc-btn:not(.collapsed) {
  background: var(--navy);
  color: #fff;
}
.rk-acc-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f57c00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.rk-acc-body { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; padding: 16px 22px 20px; background: var(--white); }

/* ============================================================
   CONTACT
============================================================ */
.contact-sec { background: var(--white); }

.branch-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.branch-card:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.branch-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.branch-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 4px; }
.branch-addr { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}
.ci-item:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.ci-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-wa { background: rgba(37,211,102,0.1); color: #25D366; }
.ci-item strong { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); }
.ci-item span { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

.contact-form {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.rk-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); display: block; margin-bottom: 6px; }
.rk-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.rk-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,124,0,0.1); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.map-label {
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
}

.alert-success-rk { background: rgba(22,163,74,0.1); border: 1.5px solid rgba(22,163,74,0.4); color: #166534; border-radius: var(--radius); padding: 12px 18px; font-size: 0.92rem; font-weight: 600; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--navy); }
.footer-top { padding: 64px 0 40px; overflow-x: hidden;}

.f-emblem {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), #e65100);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.f-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; color: #fff; }
.f-brand-sub { font-size: 0.62rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); }
.f-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.78; }

.f-socials { display: flex; gap: 10px; }
.f-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.f-socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

.f-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 8px; }
.f-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.f-links a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.f-links a:hover { color: var(--orange-lt); padding-left: 4px; }

.f-contact { list-style: none; padding: 0; margin: 0; }
.f-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.65;
}
.f-contact li i { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.f-contact a { color: rgba(255,255,255,0.5); }
.f-contact a:hover { color: var(--orange-lt); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.38); }

/* ============================================================
   FLOATING ICONS
============================================================ */
.float-wrap {
  position: fixed;
  bottom: 28px; left: 18px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 9000;
}
.float-btn {
  display: flex; align-items: center;
  height: 50px;
  border-radius: 50px;
  color: #fff !important;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  padding: 0;
}
.float-btn i {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.f-lbl {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  padding-right: 0;
  transition: max-width 0.4s ease, opacity 0.35s ease, padding-right 0.35s ease;
}
.float-btn:hover .f-lbl { max-width: 130px; opacity: 1; padding-right: 18px; }
.float-btn:hover { transform: scale(1.05); }
.f-call { background: linear-gradient(135deg, var(--orange), #e65100); }
.f-wa   { background: linear-gradient(135deg, #25D366, #1da851); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-top {
  position: fixed;
  bottom: 28px; right: 20px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 9000;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px) scale(1.08); }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeDown  { from { opacity:0; transform:translateY(-22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp    { from { opacity:0; transform:translateY(22px); }  to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; }                              to { opacity:1; } }
@keyframes lbIn      { from { opacity:0; transform:scale(0.88); }       to { opacity:1; transform:scale(1); } }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .sec-pad { padding: 70px 0; }
  .hero-img { height: 72vh; min-height: 460px; }
  .about-img { height: 380px; }
  .about-exp-badge { bottom: -12px; right: -10px; }
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 20px 20px;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
  }
  .nav-link::after { display: none; }
  .btn-book-now { margin-top: 10px; }
  .how-dotted-line { display: none !important; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
	.cu-mb-ds-nns{
		display:none!important;
	}
  .sec-pad { padding: 56px 0; overflow-x: hidden;}
  .hero-img { height: 65vh; min-height: 380px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-actions { flex-direction: row; align-items: center; }
  .about-img { height: 280px; }
  .about-exp-badge { padding: 14px 18px; }
  .gal-card { height: 170px; }
  .contact-form { padding: 24px; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}
#callme1 img {
    width: 47px;
}
#callme1 {
    position: fixed;
    right: 1px;
    bottom: 150px;
    width: 60px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}

.whatsup1 img {
    width: 50px;
}
.whatsup1 {
    position: fixed;
    right: 10px;
    width: 50px;
    bottom: 90px;
    z-index: 9999;
}
@media (max-width: 575.98px) {
	.btn-hero-primary {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--orange), #e65100);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .8rem;
    letter-spacing: 2px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-ora);
    transition: var(--transition);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: transparent;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .8rem;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius);
    transition: var(--transition);
}
  .topbar-link { font-size: 0.75rem; }
  .carousel-control-prev, .carousel-control-next { width: 38px; height: 38px; margin: 0 6px; }
  .gal-card { height: 145px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .float-btn i { width: 44px; height: 44px; }
  .float-btn { height: 44px; }
}
#enu-st{
	display:block;
	width:100%;
	background-color:#e65100;
	color:#fff;
}