/* ============================================================
   GRP TOURS AND TRAVELS - GLOBAL STYLESHEET
   Color Palette: #F6821F (Orange) | #014EA6 (Blue) | #00AA50 (Green)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --orange: #F6821F;
  --blue: #014EA6;
  --green: #00AA50;
  --orange-dark: #d96b0a;
  --blue-dark: #013a7d;
  --green-dark: #008c42;
  --white: #ffffff;
  --black: #0d0d0d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --shadow-sm: 0 2px 8px rgba(1, 78, 166, 0.08);
  --shadow-md: 0 8px 32px rgba(1, 78, 166, 0.14);
  --shadow-lg: 0 20px 60px rgba(1, 78, 166, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a {
  color: var(--white);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--orange);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--orange);
  font-size: 0.9rem;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(1, 78, 166, 0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(1, 78, 166, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
  width: 130px;
  /*border-radius: 50%;*/
  /*object-fit: cover;*/
  /*border: 3px solid var(--orange);*/
}

.logo-text h1 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: rgba(1, 78, 166, 0.06);
}

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

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.dropdown-item i {
  width: 22px;
  color: var(--orange);
  font-size: 0.85rem;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(246, 130, 31, 0.08), rgba(1, 78, 166, 0.08));
  color: var(--blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), #ff9f4a) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(246, 130, 31, 0.35);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246, 130, 31, 0.45);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* ── CONTAINER ── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 130, 31, 0.1);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--orange);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 160px;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero_banner.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 78, 166, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(246, 130, 31, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 130, 31, 0.2);
  border: 1px solid rgba(246, 130, 31, 0.4);
  backdrop-filter: blur(10px);
  color: #ffc680;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge i {
  color: var(--orange);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 25px rgba(246, 130, 31, 0.45);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(246, 130, 31, 0.55);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.9s ease 0.8s both;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 26px;
    opacity: 0;
  }
}

/* ── DESTINATIONS TICKER ── */
.destinations-ticker {
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-item i {
  font-size: 1rem;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SERVICES SECTION ── */
.services {
  padding: 90px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(246, 130, 31, 0.12), rgba(1, 78, 166, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── TOURS SECTION ── */
.tours {
  padding: 90px 0;
  background: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

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

.tour-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-badge.green {
  background: var(--green);
}

.tour-badge.blue {
  background: var(--blue);
}

.tour-body {
  padding: 24px;
}

.tour-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.tour-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 18px;
  line-height: 1.6;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.tour-meta-item i {
  color: var(--orange);
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), #0162d0);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}

.tour-btn:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  transform: translateX(3px);
}

/* ── MANPOWER SECTION ── */
.manpower {
  padding: 90px 0;
  background: linear-gradient(135deg, #f0f5ff 0%, #fff8f0 100%);
}

.manpower-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manpower-img-wrap {
  position: relative;
}

.manpower-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.manpower-badge-float {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--orange);
}

.manpower-badge-float .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.manpower-badge-float .text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
}

.manpower-badge-float .text p {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.manpower-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.25;
}

.manpower-content h2 span {
  color: var(--orange);
}

.manpower-content>p {
  color: var(--gray-500);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.service-list-item .icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, rgba(246, 130, 31, 0.15), rgba(0, 170, 80, 0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
}

.service-list-item .info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2px;
}

.service-list-item .info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ── WHY CHOOSE US ── */
.why-us {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(246, 130, 31, 0.08);
  border-radius: 50%;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: rgba(0, 170, 80, 0.06);
  border-radius: 50%;
}

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

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(246, 130, 31, 0.4);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(246, 130, 31, 0.4);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── DESTINATIONS GRID ── */
.destinations {
  padding: 90px 0;
  background: var(--gray-50);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.dest-card:nth-child(1) {
  grid-column: span 3;
  grid-row: span 1;
}

.dest-card:nth-child(2) {
  grid-column: span 2;
}

.dest-card:nth-child(3) {
  grid-column: span 1;
}

.dest-card:nth-child(4) {
  grid-column: span 2;
}

.dest-card:nth-child(5) {
  grid-column: span 2;
}

.dest-card:nth-child(6) {
  grid-column: span 2;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 78, 166, 0.85) 0%, transparent 60%);
  transition: var(--transition);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(246, 130, 31, 0.85) 0%, rgba(1, 78, 166, 0.3) 100%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.dest-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-info span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 90px 0;
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testi-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.92rem;
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

/* ── CONTACT SECTION ── */
.contact {
  padding: 90px 0;
  background: var(--gray-50);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-inner > div {
  min-width: 0;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.contact-info h2 span {
  color: var(--orange);
}

.contact-info>p {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.contact-card h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card a {
  color: var(--blue);
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--orange);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--black);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-form {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange), #ff9f4a);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-form:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 130, 31, 0.35);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #031c45 0%, #020e24 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
}

.footer-brand-logo h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-logo span {
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col>p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: var(--orange);
  font-size: 0.7rem;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--orange);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  animation: pulseWA 2.5s infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.65);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.15);
  }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ── RECOGNIZED BY MARQUEE ── */
.recognized-section {
  padding: 60px 0;
  background: var(--gray-50);
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  padding-right: 50px;
  animation: marquee 20s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content img {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.6); */
  transition: var(--transition);
  cursor: pointer;
}

.marquee-content img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-content img {
    height: 45px;
  }

  .marquee-content {
    gap: 30px;
    padding-right: 30px;
  }
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, rgba(246, 130, 31, 0.6) 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/hero_banner.png') center/cover;
  opacity: 0.08;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: var(--orange);
}

.breadcrumb i {
  font-size: 0.65rem;
}

/* ── CAPTCHA ── */
.captcha-wrap {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.captcha-wrap label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.captcha-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.captcha-box:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.12);
}

.captcha-error {
  font-size: 0.8rem;
  color: #ef4444;
  display: none;
  align-items: center;
  gap: 5px;
}

.captcha-error.show {
  display: flex;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .container {
    padding: 0 36px;
  }

  .manpower-inner {
    gap: 50px;
  }

  .contact-inner {
    gap: 40px;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 1100px) {
  .manpower-inner {
    grid-template-columns: 1fr;
  }

  .manpower-img-wrap img {
    height: 380px;
  }

  .manpower-badge-float {
    right: 10px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .dest-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-bottom: 240px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    background: var(--gray-50);
    display: none;
  }

  .nav-item.open .dropdown-menu {
    display: block;
  }

  .hero-stats-inner {
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }

  .stat-item {
    flex: 0 0 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 10px;
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .scroll-indicator {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .captcha-box {
    padding: 10px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}