@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --green: #16a34a;
  --dark: #1a202c;
  --muted: #6b7280;
  --card: #ffffff;
  --primary: #0f172a;
  --accent: #0f766e;
  --light-bg: #f8fafc;
  --blue: #3b82f6;
}
* {
  box-sizing: border-box;
}

/* ===================================
   ANIMATION KEYFRAMES
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

@keyframes fadeInRightCentered {
  from {
    opacity: 0;
    transform: translate(calc(25% + 40px), -50%);
  }
  to {
    opacity: 1;
    transform: translate(25%, -50%);
  }
}

/* ===================================
   ANIMATION UTILITY CLASSES
   =================================== */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

/* Stagger animation delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

body {
  font-family: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  color: var(--dark);
  background: var(--light-bg);
  overflow-x: hidden;
}

/* ===================================
   PAGE LOADER
   =================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f766e 0%, #16a34a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Extra stylings: sleeker inputs, custom select arrow, textarea improvements */
.enquiry label {
  position: relative;
}
.enquiry input,
.enquiry textarea,
.enquiry select {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 120ms ease, background 220ms ease;
}
.enquiry input:hover,
.enquiry textarea:hover,
.enquiry select:hover {
  transform: translateY(-1px);
}

/* Custom select */
.enquiry select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath fill='%239ca3af' d='M7 8L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 8px;
  padding-right: 44px;
}

/* Icon placeholder for inputs via pseudo-element (reserved area) */
.enquiry label::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  opacity: 0;
}

/* When inputs present, add left padding so icon area can be used later */
.enquiry input,
.enquiry textarea {
  padding-left: 16px;
  box-sizing: border-box;
}

/* Fixed-size textarea: definite width and height, prevent manual resizing */
.enquiry textarea {
  width: 100%;
  height: 160px; /* fixed height for consistent layout */
  line-height: 1.5;
  resize: none; /* prevent user rescaling */
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .enquiry textarea {
    height: 140px; /* slightly smaller on small screens */
  }
}

/* Disabled / read-only styles */
.enquiry input[disabled],
.enquiry textarea[disabled],
.enquiry select[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Small viewport adjustments for select arrow */
@media (max-width: 480px) {
  .enquiry select {
    background-position: right 10px center;
    padding-right: 38px;
  }
}

/* Navigation */
.header-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  align-items: center;
}
.header-nav a {
  text-decoration: none;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  animation: fadeInRight 0.6s ease-out backwards;
}

.header-nav a:nth-child(1) {
  animation-delay: 0.1s;
}
.header-nav a:nth-child(2) {
  animation-delay: 0.2s;
}
.header-nav a:nth-child(3) {
  animation-delay: 0.3s;
}
.header-nav a:nth-child(4) {
  animation-delay: 0.4s;
}

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

.header-nav a:hover::after {
  width: 100%;
}
.header-nav a:hover {
  color: var(--accent);
}

/* Navigation Button Styles */
.nav-btn {
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent;
}

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

.nav-btn-helpline {
  background: var(--green);
  border-color: var(--green) !important;
  color: #fff !important;
}

.nav-btn-helpline:hover {
  background: transparent;
  color: var(--green) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.nav-btn-register {
  background: var(--blue);
  color: #fff !important;
  border: 1px solid var(--blue) !important;
}

.nav-btn-register:hover {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  color: var(--blue) !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary);
  padding: 8px;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 16px 24px;
    margin-left: 0;
  }
  .header-nav.active {
    display: flex;
  }
  .header-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
  }
  .header-nav a:last-child {
    border-bottom: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-content {
    flex-wrap: wrap;
  }
  .header-text {
    flex-basis: 100%;
    margin-top: 8px;
  }
}

/* Main Container */
.container {
  margin: 0 auto;

  width: 100%;
}

/* Header */
.site-header {
  display: block;
  background: #fff;
  padding: 10px 5%;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeInDown 0.6s ease-out;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1400px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  filter: none;
  color: inherit;
  animation: fadeInLeft 0.8s ease-out;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.header-text {
  display: block;
  text-align: left;
  flex: 1;
  animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}
@media (max-width: 768px) {
  .logo-img {
    height: 50px;
    filter: none;
  }
  .header-text h1 {
    font-size: 16px;
    margin: 0 0 2px;
  }
  .header-text p {
    font-size: 12px;
    margin: -5px 0 0 0;
  }
}
.header-text h1 {
  margin: 0 0 4px;
  background: linear-gradient(to right, #0f8d3d 0%, #97ee0b 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 1.5px;
}
.header-text p {
  margin: -10px 0 0 25px;
  color: #003366;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 24px;
  overflow: hidden;
  background: #081427;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.05);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35));
  animation: fadeIn 0.8s ease-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-content {
  position: absolute;
  left: 170px;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 1;
  max-width: 640px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 16px;
  opacity: 0.85;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.hero-content p {
  font-size: 18px;
  margin: 0 0 32px;
  opacity: 0.92;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
  position: relative;
  overflow: hidden;
  display: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* Hero Login Card */
.hero-login-card {
  position: absolute;
  top: 50%;
  left: calc(50% + 170px);
  transform: translate(25%, -50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  z-index: 3;
  animation: fadeInRightCentered 0.8s ease-out 0.4s backwards;
}

.hero-login-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px;
  text-align: center;
}

.hero-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-login-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
  box-sizing: border-box;
  background: #fff;
}

.hero-login-field input:focus {
  outline: none;
  border-color: #ff7614;
  box-shadow: 0 0 0 3px rgba(255, 118, 20, 0.1);
}

.hero-login-field input::placeholder {
  color: #9ca3af;
}

.hero-login-btn {
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(135deg, #ff7614 0%, #ff9742 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  margin-top: 6px;
}

.hero-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 118, 20, 0.4);
}

.hero-login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero-login-footer {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.hero-login-footer a {
  color: #ff7614;
  text-decoration: none;
  font-weight: 600;
}

.hero-login-footer a:hover {
  text-decoration: underline;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-nav:hover {
  background: rgba(15, 23, 42, 0.65);
  border-color: #fff;
}
.hero-nav--prev {
  left: 32px;
}
.hero-nav--next {
  right: 32px;
}
.hero-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-indicators button.active {
  transform: scale(1.4);
  background: #fff;
}
.btn-primary {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #15803d;
}
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #15b250;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(21, 178, 80, 0.35);
  transition: all 0.3s ease;
  z-index: 150;
  border: none;
  animation: fadeInUp 0.8s ease-out 1s backwards, float 3s ease-in-out 2s infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(21, 178, 80, 0.5);
  animation: none;
}
.whatsapp-fab__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease;
}

.whatsapp-fab:hover .whatsapp-fab__icon {
  transform: rotate(360deg);
}

.whatsapp-fab__icon img {
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 600px) {
  .whatsapp-fab {
    right: 16px;
    left: 16px;
    justify-content: center;
  }
}
.whatsapp-popup,
.details-popup {
  position: fixed;
  bottom: 110px;
  right: 32px;
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  padding: 20px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 160;
}
.whatsapp-popup.open,
.details-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp-popup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.whatsapp-popup__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}
.whatsapp-popup__avatar img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}
.whatsapp-popup__brand {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.whatsapp-popup__brand strong {
  font-size: 16px;
  color: var(--primary);
}
.whatsapp-popup__brand span {
  font-size: 13px;
  color: var(--muted);
}
.whatsapp-popup__close {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
}
.whatsapp-popup__message {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #14532d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.whatsapp-popup__selection {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px dashed #86efac;
  background: #f8fff5;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.whatsapp-popup__selection-text {
  flex: 1;
}
.whatsapp-popup__selection-text p {
  margin: 0 0 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16a34a;
}
.whatsapp-popup__selection-text strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
}
.whatsapp-popup__selection-text span,
.whatsapp-popup__selection-text #whatsappSelectedPackageFeatures {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.whatsapp-popup__selection-clear {
  border: none;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  font-size: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  align-self: center;
}
.whatsapp-popup__selection-clear:hover {
  background: rgba(22, 163, 74, 0.2);
}
.whatsapp-popup__select,
.whatsapp-popup__field {
  display: block;
  margin-bottom: 12px;
}
.whatsapp-popup__field span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--muted);
}
.whatsapp-popup__select select,
.whatsapp-popup__field input,
.whatsapp-popup__field select {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-popup__select select:focus,
.whatsapp-popup__field input:focus,
.whatsapp-popup__field select:focus {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}
.whatsapp-popup__note {
  font-size: 12px;
  color: #15803d;
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
  padding: 8px 12px;
  border-radius: 8px;
  margin: 0 0 12px;
}
.whatsapp-popup__note[hidden] {
  display: none;
}
.whatsapp-popup__sender {
  margin: 0 0 4px;
  font-weight: 600;
  color: #0f766e;
}
.whatsapp-popup__message p {
  margin: 0;
}
.whatsapp-popup__cta {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-popup__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(37, 211, 102, 0.45);
}
.whatsapp-popup__powered {
  text-align: center;
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 600px) {
  .whatsapp-popup,
  .details-popup {
    right: 16px;
    left: 16px;
    width: auto;
  }
}

.details-popup__pax-group {
  display: flex;
  gap: 12px;
}
.details-popup__pax-group .whatsapp-popup__field {
  flex: 1;
}
@media (max-width: 600px) {
  .details-popup__pax-group {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 420px;
  }
  .hero-content h1 {
    font-size: 28px;
    margin: 0 0 12px;
  }
  .hero-content p {
    font-size: 14px;
    margin: 0 0 20px;
  }
  .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
  }
  .hero-nav {
    display: none;
  }
  .hero-indicators {
    bottom: 18px;
  }
}

/* Stats Section */
.stats {
  margin: 40px 5%;
  position: relative;
  z-index: 10;
  max-width: 1400px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(22, 163, 74, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 16px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 20px 40px rgba(15, 23, 42, 0.15);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-card:hover .stat-value {
  transform: scale(1.05);
}

.stat-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  order: 3;
  transition: color 0.3s ease;
}
.stat-value {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  order: 2;
  transition: transform 0.3s ease;
}
.stat-helper {
  margin: 0;
  font-size: 15px;
  color: var(--dark);
  opacity: 0.85;
  order: 4;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-helper {
  opacity: 1;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  order: 1;
  background: rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  pointer-events: none;
  transition: transform 0.3s ease;
}
.stat-card--emirates .stat-icon {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.1);
}
.stat-card--hotels .stat-icon {
  color: #f97316;
  background: rgba(249, 115, 22, 0.1);
}
.stat-card--activities .stat-icon {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}
.stat-card--emirates {
  background: linear-gradient(135deg, #ecfccb 0%, #f0fdf4 80%);
  border-color: rgba(22, 163, 74, 0.2);
}
.stat-card--hotels {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 80%);
  border-color: rgba(2, 132, 199, 0.2);
}
.stat-card--activities {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 80%);
  border-color: rgba(99, 102, 241, 0.2);
}
.stat-card--emirates .stat-value {
  color: #15803d;
}
.stat-card--hotels .stat-value {
  color: #0369a1;
}
.stat-card--activities .stat-value {
  color: #6d28d9;
}
@media (max-width: 900px) {
  .stats {
    margin: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 600px) {
  .stats-grid {
    padding: 18px;
    gap: 16px;
  }
  .stat-card {
    padding: 18px;
  }
  .stat-value {
    font-size: 32px;
  }
}

/* Why Book With Us Section */
.why-us {
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 1400px;
}
.why-us h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
  color: var(--primary);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.why-us h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  margin: 20px auto 0;
  border-radius: 2px;
  animation: scaleIn 0.6s ease-out 0.4s backwards;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-us-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
}

.why-us-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.why-us-card:hover .why-us-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
  margin-bottom: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-us-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}
.why-us-icon--registration {
  background: linear-gradient(135deg, #ff7614, #ff9742);
}
.why-us-icon--price {
  background: linear-gradient(135deg, #0f766e, #2dd4bf);
}
.why-us-icon--transaction {
  background: linear-gradient(135deg, #0369a1, #38bdf8);
}
.why-us-icon--secure {
  background: linear-gradient(135deg, #6d28d9, #a78bfa);
}
.why-us-icon--support {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}
.why-us-icon--reviews {
  background: linear-gradient(135deg, #dc2626, #fb923c);
}
.why-us-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  line-height: 1.3;
}
.why-us-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--dark);
  opacity: 0.85;
}
@media (max-width: 768px) {
  .why-us {
    margin: 40px 5%;
    padding: 20px 0;
  }
  .why-us h2 {
    font-size: 28px;
    margin: 0 0 32px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-us-card {
    padding: 24px 20px;
  }
  .why-us-icon {
    width: 56px;
    height: 56px;
  }
  .why-us-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Destinations Section */
.destinations {
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1400px;
}
.destinations h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: var(--primary);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.destinations h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  margin: 20px auto 0;
  border-radius: 2px;
  animation: scaleIn 0.6s ease-out 0.4s backwards;
}
.destinations-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
}
.destinations-grid {
  padding: 8px;
  display: grid;
  grid-auto-columns: minmax(300px, 300px);
  grid-auto-flow: column;
  gap: 24px;
  transition: transform 0.4s ease;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .destinations h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }
  .destinations {
    margin: 30px 0;
    padding: 20px 15px;
  }
  .destinations-carousel {
    gap: 8px;
    padding: 0;
  }
  .destinations-grid {
    grid-auto-columns: calc(100vw - 90px);
    gap: 12px;
  }
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .carousel-nav.prev {
    left: 5px;
  }
  .carousel-nav.next {
    right: 5px;
  }
  .destination-card img {
    height: 180px;
  }
  .destination-card h3 {
    font-size: 16px;
    margin: 12px;
  }
}
.destination-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  min-width: 0;
  max-height: fit-content;
}
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.destination-card.featured {
  grid-column: span 1;
}
.destination-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 565px;
  max-height: 580px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.destination-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.destination-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

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

.destination-card.featured {
  grid-column: span 1;
}
.destination-card.featured img {
  height: 200px;
}
/* keep image fixed height and out of normal flow */
.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex: 0 0 200px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* title stays above the description */
.destination-card h3 {
  margin: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  flex: 0 0 auto;
  min-height: 48px;
}
/* content area grows and keeps cards equal height */
.destination-card p {
  margin: 8px 16px 16px;
  padding: 16px 18px 18px 26px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 70%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex: 1 1 auto; /* fill remaining vertical space */
  overflow: auto; /* allow scrolling if content is long */
}
.destination-card p::before {
  content: "";
  position: absolute;
  top: 6px; /* moved up to add more gap between the green line and the paragraph text */
  left: 26px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16a34a, #0ea5a4);
}
.destination-card p::before {
  transition: width 240ms ease, background 200ms ease, transform 200ms ease;
  transform-origin: left center;
}
.destination-card:hover p {
  box-shadow: inset 0 4px 12px rgba(15, 23, 42, 0.12);
}

/* Expand the green line to the full content width on card hover */
.destination-card:hover p::before {
  width: 40%; /* expand to half width on hover */
}

/* Slim scrollbar for destination card content */
.destination-card p {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.18) transparent;
}

/* WebKit (Chrome, Edge, Safari) */
.destination-card p::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.destination-card p::-webkit-scrollbar-track {
  background: transparent;
}
.destination-card p::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.destination-card p::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 23, 42, 0.28);
}
.destination-card p::-webkit-scrollbar-corner {
  background: transparent;
}

@media (max-width: 768px) {
  .destination-card p {
    margin: 10px 12px 12px;
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
    background: none;
    border: none;
    box-shadow: none;
    flex: none; /* don't stretch on mobile */
    overflow: visible; /* allow natural height */
  }
  .destination-card p::before {
    display: none;
  }
  /* Responsive: restore automatic height on small screens */
  .destination-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .destination-card img {
    height: 180px;
    flex: 0 0 auto;
  }
  .destination-card h3 {
    min-height: auto;
    margin: 8px 12px;
    font-size: 16px;
  }
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
  left: -10px;
}
.carousel-nav.next {
  right: -10px;
}

/* Activities Section */
.activities {
  margin: 40px auto;
  padding: 40px 20px;
  background: #f8fafc;
  contain: layout style;
  max-width: 1400px;
}

.activities h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: var(--primary);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.activities h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  margin: 20px auto 0;
  border-radius: 2px;
  animation: scaleIn 0.6s ease-out 0.4s backwards;
}
.activities-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.activities-container {
  padding: 10px;
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  contain: layout style;
}
.activities-grid {
  display: grid;
  grid-auto-columns: minmax(200px, 200px);
  grid-auto-flow: column;
  gap: 20px;
  transition: transform 0.4s ease;
  transform: translateX(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 768px) {
  .activities {
    margin: 30px 0;
    padding: 20px 15px;
  }
  .activities h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }
  .activities-carousel {
    gap: 8px;
    padding: 0;
  }
  .activities-grid {
    grid-auto-columns: 200px;
    gap: 12px;
  }
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .carousel-nav.prev {
    left: 5px;
  }
  .carousel-nav.next {
    right: 5px;
  }
  .activity-card {
    width: 200px;
    height: 200px;
  }
  .activity-card h3 {
    font-size: 12px;
    padding: 10px 8px 14px;
    min-height: 48px;
  }
}
.activity-card {
  background: var(--card);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
  position: relative;
  min-width: 0;
  cursor: pointer;
  contain: layout style paint;
  will-change: transform;
  opacity: 0;
  transform: scale(0.8);
}

.activity-card.animate-in {
  opacity: 1;
  transform: scale(1);
}

.activity-card:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.activity-card:hover img {
  transform: scale(1.15);
}

.activity-card:hover h3 {
  background: rgba(0, 0, 0, 0.8);
  padding: 18px 12px 22px;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  margin: 0;
  padding: 14px 12px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  transition: all 0.3s ease;
}

/* Packages Section */
.packages {
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1400px;
}

@media (min-width: 1400px) {
  .stats {
    margin: -35px auto;
    padding-left: 0;
    padding-right: 0;
  }

  .destinations,
  .activities,
  .packages {
    margin: 40px auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.packages h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
  color: var(--primary);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.packages h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  margin: 20px auto 0;
  border-radius: 2px;
  animation: scaleIn 0.6s ease-out 0.4s backwards;
}
.packages-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.packages-container {
  position: relative;
  overflow: hidden;
  flex: 1;
  width: 100%;
  padding: 6px;
}
.packages-grid {
  display: grid;
  grid-auto-columns: minmax(300px, 300px);
  grid-auto-flow: column;
  gap: 24px;
  transition: transform 0.4s ease;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .packages {
    margin: 30px 0;
    padding: 20px 15px;
  }
  .packages h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }
  .packages-carousel {
    gap: 8px;
    padding: 0;
  }
  .packages-grid {
    grid-auto-columns: calc(100vw - 90px);
    gap: 12px;
  }
  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .carousel-nav.prev {
    left: 5px;
  }
  .carousel-nav.next {
    right: 5px;
  }
  .package-card img {
    height: 180px;
  }
  .package-content {
    padding: 12px;
  }
  .package-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
  }
  .package-features {
    font-size: 13px;
    margin: 0 0 10px;
  }
  .btn-enquire {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.package-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  min-width: 0;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.package-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
  display: flex; /* enable pinning footer */
  flex-direction: column;
  position: relative; /* for absolute positioning of discount badge */
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.package-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

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

.package-card:hover .package-discount-badge {
  transform: rotate(360deg) scale(1.1);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.package-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.package-card:hover h3 {
  color: var(--accent);
}

.package-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 13px;
  line-height: 1.8;
}

.package-features li {
  color: var(--dark);
  margin: 6px 0;
}

.package-additional-info {
  margin: 8px 0;
  padding: 8px 12px;
  background: #f0f9ff;
  border-left: 3px solid var(--accent);
  font-size: 13px;
  color: var(--dark);
  border-radius: 4px;
}

.package-note {
  margin: 8px 0;
  padding: 8px 12px;
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  font-size: 12px;
  color: #92400e;
  border-radius: 4px;
}

.package-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
}

.original-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 14px;
}

.discount-price {
  color: var(--green);
  font-weight: 700;
  font-size: 22px;
}

.discount-badge {
  display: none;
}

.btn-enquire {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-enquire::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-enquire:hover::before {
  width: 300px;
  height: 300px;
}

.btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(32, 186, 90, 0.3);
}

.package-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.package-footer .package-pricing {
  justify-content: center;
}

.package-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  letter-spacing: 0.3px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.2;
}

@media (min-width: 769px) {
  /* on wider screens, keep footer compact but stacked */
  .package-footer {
    padding-top: 8px;
  }
}

/* Activity Modal */
.activity-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}
.activity-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.activity-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  max-height: 90vh;
  width: 100%;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
  text-align: center;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(22, 163, 74, 0.4) rgba(0, 0, 0, 0.05);
}

/* Webkit scrollbar for modal */
.activity-modal-content::-webkit-scrollbar {
  width: 8px;
}
.activity-modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.activity-modal-content::-webkit-scrollbar-thumb {
  background: rgba(22, 163, 74, 0.4);
  border-radius: 10px;
  transition: background 0.2s;
}
.activity-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(22, 163, 74, 0.6);
}
.activity-modal-content img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.activity-modal-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--primary);
}
.activity-modal-content p {
  margin: 0;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.5;
}
.activity-modal-location {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}
.activity-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  color: #475569;
  z-index: 10;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.activity-modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}
.activity-modal-close:active {
  transform: rotate(90deg) scale(0.9);
}
.activity-modal-highlights {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.activity-modal-highlights li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--dark);
}
.activity-modal-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
.activity-modal-package {
  margin-top: 20px;
  text-align: left;
  display: none;
}
.activity-modal-package h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--primary);
}
.activity-modal-package ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.activity-modal-package li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--dark);
}
.activity-modal-package li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}
.activity-modal-book {
  margin-top: 20px;
  width: 100%;
  font-size: 16px;
}

/* Enquiry Form Section - modern styling */
.enquiry {
  margin: 40px 5%;
  padding: 48px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.enquiry h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 28px;
  color: var(--primary);
}
#enquiryForm {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.row {
  display: flex;
  gap: 16px;
}
.row label {
  flex: 1;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}
input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(22, 163, 74, 0.9);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06), 0 0 0 4px rgba(22, 163, 74, 0.08);
  transform: translateY(-1px);
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
button[type="submit"],
button#copyBtn {
  background: linear-gradient(180deg, var(--green) 0%, #0f9b3f 100%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 120ms ease;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.12);
}
button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.14);
}
button#copyBtn {
  background: linear-gradient(180deg, #06b6d4 0%, #0891b2 100%);
}
button#copyBtn:hover {
  transform: translateY(-3px);
}
.note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 18px;
  text-align: center;
}

/* Responsive tweaks for enquiry form */
@media (max-width: 768px) {
  .hero-login-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 40px 20px 40px;
    max-width: calc(100% - 40px);
    left: 0;
    padding: 24px 20px;
  }

  .hero-login-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hero-login-field input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero-login-btn {
    padding: 12px 16px;
    font-size: 15px;
  }

  .row {
    flex-direction: column;
  }
  .enquiry {
    margin: 28px 12px;
    padding: 28px 12px;
  }
  #enquiryForm {
    padding: 8px;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  color: #fff;
  padding: 80px 0 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: 1px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ff7614;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff7614;
  transform: translateX(5px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15b250;
  transition: all 0.3s ease;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact-item:hover .footer-contact-icon {
  background: #15b250;
  color: #fff;
  transform: scale(1.1);
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-contact-value {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.footer-contact-value:hover {
  color: #ff7614;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: #ff7614;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 118, 20, 0.4);
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 30px 50px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 0;
    margin-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px 40px;
  }

  .footer-about {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 13px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    gap: 16px;
  }
  /* Avoid heavy repaints from fixed background on smaller screens */
  .hero {
    background-attachment: scroll;
  }
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .destination-card.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  .destination-card.featured img {
    height: 200px;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .activities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .header-content {
    gap: 12px;
  }
  .logo-img {
    height: 50px;
  }
  .header-text h1 {
    font-size: 20px;
    background: linear-gradient(to right, #0f8d3d 0%, #97ee0b 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 650;
    letter-spacing: 1.5px;
    margin: 0 0 2px;
  }
  .header-text p {
    font-size: 12px;
  }
  .nav-links {
    flex-direction: column;
    gap: 8px;
    display: none;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .destinations-grid {
    grid-template-columns: none;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .row {
    flex-direction: column;
  }
  .packages h2,
  .destinations h2,
  .activities h2,
  .enquiry h2 {
    font-size: 28px;
  }
  .form-actions {
    flex-direction: column;
  }
  button[type="submit"],
  button#copyBtn {
    width: 100%;
  }
  .activity-modal {
    padding: 12px;
  }
  .activity-modal-content {
    padding: 16px;
    max-height: 95vh;
  }
  .activity-modal-content img {
    height: 200px;
  }
  .activity-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .activity-modal-content h3 {
    font-size: 20px;
  }
  .activity-modal-book {
    font-size: 15px;
  }
}

/* ==========================================
   Content Pages (About, Contact, Privacy, Terms)
   ========================================== */

/* Footer Navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Content Page Container */
.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  line-height: 1.7;
  color: #333;
}

.content-page h1 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.content-page h2 {
  font-size: 26px;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(22, 163, 74, 0.2);
}

.content-page h3 {
  font-size: 20px;
  color: #555;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-page p {
  margin-bottom: 16px;
  color: #555;
}

.content-page ul,
.content-page ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-page li {
  margin-bottom: 8px;
  color: #555;
}

.content-page a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 102, 204, 0.3);
  transition: border-color 0.2s;
}

.content-page a:hover {
  border-color: #0066cc;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 3px solid #0066cc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 51, 102, 0.06);
}

.feature-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.12);
}

.content-section {
  margin-bottom: 32px;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-bottom: 32px;
}

/* Policy List */
.policy-list {
  list-style: disc;
  color: #555;
}

.policy-list li {
  margin-bottom: 10px;
}

.policy-list li strong {
  color: #333;
}

/* Contact Details */
.contact-details {
  list-style: none;
  padding-left: 0;
}

.contact-details li {
  margin-bottom: 10px;
}

/* Note */
.note {
  background: #f0fdf4;
  border-left: 4px solid var(--primary);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
  color: #555;
}

/* Acceptance Note */
.acceptance-note {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.acceptance-note p {
  margin: 0;
  color: #92400e;
  font-size: 15px;
}

/* ==========================================
   Contact Page Specific Styles
   ========================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.contact-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
}

.contact-form h2 {
  margin-top: 0;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

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

.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-form button:hover {
  background: #15803d;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-list {
  margin: 40px 0;
}

.faq-list details {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
}

.faq-list summary {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  user-select: none;
  cursor: pointer;
}

.faq-list summary:hover {
  opacity: 0.8;
}

.faq-list details[open] summary {
  margin-bottom: 12px;
}

.faq-list details p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   About Page Specific Styles
   ========================================== */

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.stat-item {
  background: linear-gradient(135deg, #003366, #0066cc);
  color: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.35);
}

.stat-item strong {
  font-size: 42px;
  margin: 0 0 8px 0;
  color: #fff;
  display: block;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.stat-item span {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
  color: #fff;
  display: block;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.value-list {
  list-style: none;
  padding: 0;
}

.value-list li {
  background: linear-gradient(135deg, #e6f2ff 0%, #f0f8ff 100%);
  border-left: 4px solid #003366;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.08);
}

.value-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.15);
}

.value-list li strong {
  color: #003366;
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(135deg, #003366, #0066cc);
  color: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  border: none;
  margin-top: 0;
}

.cta-section p {
  color: #fff;
  opacity: 0.95;
  font-size: 16px;
}

.cta-section .btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: #003366;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.cta-section .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   Modern About Page Styles
   ========================================== */

.about-page-modern {
  background: #f8fafc;
  min-height: 100vh;
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #1e8447 0%, #1e8447 50%, #2ecc71 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(46, 204, 113, 0.3) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: particleMove 20s linear infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes particleMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(360deg);
  }
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  animation: slideInDown 0.8s ease-out;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
  animation: slideInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 20px;
  }
  .about-hero-title {
    font-size: 32px;
  }
  .about-hero-subtitle {
    font-size: 16px;
  }
}

/* About Intro Section */
.about-intro {
  padding: 80px 20px;
  background: linear-gradient(135deg, #a9dfbf 0%, #a9dfbf 50%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
}

.about-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(39, 174, 96, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #ffffff 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(46, 204, 113, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.about-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
  transition: left 0.5s;
}

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

.about-intro-card:nth-child(1) {
  animation-delay: 0.1s;
}

.about-intro-card:nth-child(2) {
  animation-delay: 0.3s;
}

.about-intro-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(46, 204, 113, 0.25), 0 10px 20px rgba(39, 174, 96, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 50%, #d5f4e6 100%);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.about-intro-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #229954 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4), 0 2px 8px rgba(39, 174, 96, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.about-intro-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #1e8449 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.about-intro-card:hover .about-intro-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(46, 204, 113, 0.6);
}

.about-intro-card:hover .about-intro-icon::after {
  opacity: 1;
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

.about-intro-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.about-intro-card h2 {
  font-size: 28px;
  color: #003366;
  margin: 0 0 16px;
  font-weight: 700;
}

.about-intro-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .about-intro {
    padding: 60px 20px;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-intro-card {
    padding: 30px;
  }
}

/* Stats Section */
.about-stats {
  background: linear-gradient(135deg, #1f6391 0%, #1f6391 50%, #3498db 100%);
  padding: 60px 20px;
  position: relative;
}

.about-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.about-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.about-stats .stat-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-stats .stat-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-stats .stat-item:hover::before {
  opacity: 1;
  animation: statsGlow 2s infinite;
}

.about-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

@keyframes statsGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10px, 10px) scale(1.1);
  }
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.about-stats .stat-item:hover .stat-icon {
  transform: rotate(360deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  /* color: #fff; */
}

.about-stats .stat-item strong {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Counter animation enhancement */
.about-stats .stat-item strong.counter {
  animation: counterPulse 0.6s ease-in-out;
}

@keyframes counterPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.about-stats .stat-item:hover strong {
  transform: scale(1.1);
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

.about-stats .stat-item span {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-stats .stat-item {
    padding: 30px 20px;
  }
  .about-stats .stat-item strong {
    font-size: 36px;
  }
}

/* Features Section */
.about-features {
  padding: 80px 20px;
  background: linear-gradient(135deg, #bfdbfe 0%, #bfdbfe 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.about-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(41, 128, 185, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #003366;
  margin: 0 0 60px;
  position: relative;
  padding-bottom: 20px;
  z-index: 1;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(52, 152, 219, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(52, 152, 219, 0.08);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.feature-card:hover::before {
  width: 300px;
  height: 300px;
}

.feature-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(52, 152, 219, 0.3);
  border-color: #3498db;
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 50%, #ebf8ff 100%);
}

.feature-icon {
  font-size: 52px;
  margin-bottom: 18px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
  transform: scale(1.3) rotate(10deg);
  filter: drop-shadow(0 8px 16px rgba(52, 152, 219, 0.4));
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1.3) translateY(0) rotate(10deg);
  }
  25% {
    transform: scale(1.3) translateY(-10px) rotate(10deg);
  }
  50% {
    transform: scale(1.3) translateY(0) rotate(10deg);
  }
  75% {
    transform: scale(1.3) translateY(-5px) rotate(10deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1.2) translateY(0);
  }
  25% {
    transform: scale(1.2) translateY(-15px);
  }
  50% {
    transform: scale(1.2) translateY(0);
  }
  75% {
    transform: scale(1.2) translateY(-7px);
  }
}

.feature-card h3 {
  font-size: 20px;
  color: #003366;
  margin: 0 0 12px;
  font-weight: 700;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-features {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

/* Values Section */
.about-values {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e8447 0%, #1e8447 50%, #2ecc71 100%);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-values .section-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(236, 253, 245, 0.98) 100%
  );
  border-radius: 20px;
  padding: 36px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid #ffffff;
  opacity: 0;
  animation: slideInFromLeft 0.6s ease-out forwards;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-card:nth-child(4) {
  animation-delay: 0.4s;
}
.value-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.value-card:hover {
  transform: translateX(12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5), 0 5px 15px rgba(46, 204, 113, 0.3);
  border-left-width: 8px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.98) 50%,
    rgba(212, 244, 230, 1) 100%
  );
}

.value-number {
  position: absolute;
  top: -18px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
  color: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(46, 204, 113, 0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: numberFloat 3s ease-in-out infinite;
  border: 2px solid rgba(39, 174, 96, 0.2);
}

.value-card:hover .value-number {
  transform: rotate(360deg) scale(1.2);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.8);
  animation: numberPulse 1s infinite;
}

@keyframes numberFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes numberPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 1);
  }
}

.value-card h3 {
  font-size: 22px;
  color: #003366;
  margin: 0 0 12px;
  font-weight: 700;
}

.value-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-values {
    padding: 60px 20px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Partner Section */
.about-partner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #93c5fd 0%, #93c5fd 50%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.about-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(52, 152, 219, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.partner-content {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(239, 246, 255, 0.98) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(52, 152, 219, 0.2), 0 4px 12px rgba(41, 128, 185, 0.1);
  border: 2px solid rgba(52, 152, 219, 0.3);
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.partner-content h2 {
  font-size: 32px;
  color: #003366;
  margin: 0 0 20px;
  font-weight: 700;
}

.partner-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .partner-content {
    padding: 32px 24px;
  }
  .partner-content h2 {
    font-size: 26px;
  }
}

/* CTA Section */
.about-cta {
  padding: 80px 20px;
}

.cta-content {
  background: linear-gradient(135deg, #1e8447 0%, #1e8447 50%, #2ecc71 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46, 204, 113, 0.4);
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content h2 {
  font-size: 36px;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}

.btn-cta-modern {
  display: inline-block;
  background: #fff;
  color: #2ecc71;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.btn-cta-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn-cta-modern:hover::before {
  width: 400px;
  height: 400px;
}

.btn-cta-modern:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .about-cta {
    padding: 60px 20px;
  }
  .cta-content {
    padding: 40px 24px;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 16px;
  }
  .btn-cta-modern {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* ==========================================
   Responsive Adjustments for Content Pages
   ========================================== */

@media (max-width: 768px) {
  .content-page {
    padding: 24px 16px;
  }

  .content-page h1 {
    font-size: 28px;
  }

  .content-page h2 {
    font-size: 22px;
  }

  .footer-nav {
    gap: 16px;
    font-size: 13px;
  }

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

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

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

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

/* ==========================================
   Registration Modal Styles
   ========================================== */

.register-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.register-modal-content {
  background: #ffffff;
  margin: 2% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
  position: relative;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.register-modal-content h2 {
  font-size: 28px;
  color: var(--primary);
  text-align: center;
  margin: 0;
  padding: 24px 24px 8px;
}

.register-modal-subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0;
  padding: 0 24px 20px;
}

.register-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.register-modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* Tabs */
.register-tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  background: #f9fafb;
  padding: 0 24px;
}

.register-tab {
  flex: 1;
  padding: 14px 16px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.3s;
  font-size: 14px;
}

.register-tab:hover {
  color: var(--primary);
  background: rgba(22, 163, 74, 0.05);
}

.register-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: #fff;
}

/* Modal Form */
.register-modal-form {
  padding: 24px;
}

.register-tab-content {
  display: none;
  animation: fadeInContent 0.3s ease;
  min-height: 300px;
}

.register-tab-content.active {
  display: block;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.register-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  align-items: start;
}

.register-form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.register-form-group.full-width {
  grid-column: 1 / -1;
}

.register-form-group label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 13px;
  display: block;
  white-space: nowrap;
}

.register-form-group label .required {
  color: #ef4444;
  margin-left: 3px;
}

.register-form-group input,
.register-form-group select,
.register-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  background: #fff;
  box-sizing: border-box;
  line-height: 1.4;
}

.register-form-group input:focus,
.register-form-group select:focus,
.register-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.register-form-group input::placeholder,
.register-form-group textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

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

.register-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 36px;
}

.register-form-section {
  margin: 20px 0 10px 0;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
}

.section-label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 14px;
}

.register-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: center;
}

.register-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  padding: 4px 0;
}

.register-checkbox.full-width {
  grid-column: 1 / -1;
}

.register-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.register-checkbox span {
  line-height: 1.4;
}

.register-checkbox a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(22, 163, 74, 0.3);
  margin: 0 3px;
}

.register-checkbox a:hover {
  border-color: var(--primary);
}

.register-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
}

.register-btn-prev,
.register-btn-next,
.register-btn-submit {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.register-btn-prev {
  background: #f3f4f6;
  color: #374151;
}

.register-btn-prev:hover {
  background: #e5e7eb;
}

.register-btn-next,
.register-btn-submit {
  background: var(--primary);
  color: #fff;
}

.register-btn-next:hover,
.register-btn-submit:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.register-message {
  display: none;
  padding: 12px;
  border-radius: 6px;
  margin-top: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.register-message.success {
  background: #dcfce7;
  color: #166534;
  border: 2px solid #86efac;
}

.register-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fca5a5;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .register-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
  }

  .register-modal-content h2 {
    font-size: 22px;
  }

  .register-tabs {
    padding: 0 12px;
    overflow-x: auto;
  }

  .register-tab {
    font-size: 12px;
    padding: 12px 10px;
    white-space: nowrap;
  }

  .register-modal-form {
    padding: 20px 16px;
  }

  .register-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .register-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .register-modal-actions {
    flex-direction: column;
  }

  .register-btn-prev,
  .register-btn-next,
  .register-btn-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .register-modal-content {
    width: 98%;
    margin: 2% auto;
    border-radius: 12px;
  }

  .register-modal-content h2 {
    font-size: 20px;
    padding: 20px 16px 8px;
  }

  .register-modal-subtitle {
    font-size: 13px;
    padding: 0 16px 16px;
  }

  .register-tab {
    font-size: 11px;
    padding: 10px 6px;
  }

  .register-modal-close {
    width: 32px;
    height: 32px;
    font-size: 20px;
    top: 12px;
    right: 12px;
  }

  .register-modal-form {
    padding: 16px 12px;
  }

  .register-form-group input,
  .register-form-group select,
  .register-form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .register-form-group label {
    font-size: 12px;
  }
}

/* User Menu Dropdown Styles */
.nav-user-menu {
  position: relative;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.nav-user-btn:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

.nav-user-icon {
  font-size: 18px;
}

.nav-user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.nav-user-code {
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-user-info {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.nav-user-info-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.nav-user-info-code {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 4px;
}

.nav-user-info-email {
  font-size: 13px;
  color: var(--muted);
}

.nav-user-links {
  padding: 8px 0;
}

.nav-user-link {
  display: block;
  padding: 12px 16px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.nav-user-link:hover {
  background: #f3f4f6;
}

.nav-logout-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: none;
  border-top: 1px solid #e5e7eb;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border-radius: 0 0 12px 12px;
  transition: background 0.2s;
}

.nav-logout-btn:hover {
  background: #fef2f2;
}

/* Booking Search Container Styles */
.booking-search-container {
  background: linear-gradient(135deg, #0f766e 0%, #16a34a 100%);
  padding: 32px 24px;
  margin: 85px 100px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease-out;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.3);
}

.booking-search-container[style*="display: block"] {
  animation: fadeInDown 0.6s ease-out forwards;
}

.booking-search-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.booking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.booking-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.booking-tab:hover {
  background: rgba(255, 255, 255, 0.3);
}

.booking-tab.active {
  background: #fff;
  color: var(--primary);
}

.booking-search-form {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.booking-form-tab {
  display: none;
}

.booking-form-tab.active {
  display: block;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr auto;
  gap: 16px;
  align-items: end;
}

.booking-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form-field input,
.booking-form-field select {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
}

.booking-form-field input:focus,
.booking-form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.booking-search-btn {
  padding: 14px 32px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.booking-search-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Responsive Booking Search */
@media (max-width: 1024px) {
  .booking-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form-field-destination {
    grid-column: 1 / -1;
  }

  .booking-search-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .booking-search-container {
    padding: 24px 16px;
  }

  .booking-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .booking-tab {
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .booking-search-form {
    padding: 16px;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-form-field input,
  .booking-form-field select {
    padding: 12px 14px;
    font-size: 14px;
  }

  .nav-user-dropdown {
    width: 260px;
    right: -16px;
  }
}

/* Login Side Panel Styles */
.login-side-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.login-side-panel.active {
  right: 0;
}

.login-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.login-panel-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #374151;
  transform: rotate(90deg);
}

.login-panel-content {
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login-panel-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 40px 0;
  text-align: left;
}

.login-panel-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.2s;
}

.login-input-group:focus-within {
  background: #e5e7eb;
  box-shadow: 0 0 0 3px rgba(255, 118, 20, 0.1);
}

.login-input-icon {
  font-size: 20px;
  margin-right: 12px;
  opacity: 0.6;
}

.login-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #1a202c;
  outline: none;
  font-family: inherit;
}

.login-input-group input::placeholder {
  color: #9ca3af;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -8px;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #4b5563;
}

.login-remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ff7614;
}

.login-forgot {
  color: #ff7614;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.login-forgot:hover {
  color: #e66100;
  text-decoration: underline;
}

.login-submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ff7614 0%, #ff9742 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  margin-top: 8px;
  text-transform: uppercase;
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 118, 20, 0.4);
}

.login-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.login-panel-footer {
  margin-top: 32px;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.login-panel-footer p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #6b7280;
}

.login-register-link {
  color: #ff7614;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.login-register-link:hover {
  color: #e66100;
  text-decoration: underline;
}

.login-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.login-alert.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.login-alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@media (max-width: 768px) {
  .login-side-panel {
    width: 100%;
    right: -100%;
  }

  .login-panel-content {
    padding: 60px 24px 24px 24px;
  }

  .login-panel-title {
    font-size: 28px;
  }

  .login-panel-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
}
