﻿:root {
  --primary: #001581;
  /* Deep Navy from logo */
  --secondary: #006CFF;
  /* Royal Blue from logo */
  --accent: #D4AF37;
  /* Champagne Gold */
  --gold: linear-gradient(135deg, #D4AF37, #F3E5AB);
  --bg: #F9FAFC;
  /* Softer light gray for luxury space */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: #1b1f24;
}

/* Smooth transitions globally */
a,
.btn,
.package-card,
.destination-card,
.icon-card,
img {
  transition: all 0.3s ease-in-out;
}

.topbar {
  background: #0b2d4d;
  color: #fff;
}

.top-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.navbar-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Custom Nav Link Hover Animation */
.custom-nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.custom-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.custom-nav-link:hover {
  color: var(--primary) !important;
}

.custom-nav-link:hover::after {
  width: 80%;
}

.hover-gold:hover {
  color: var(--accent) !important;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.hero {
  color: #fff;
  padding: 80px 0;
}

.home-hero {
  background: radial-gradient(circle at top left, #1fa8a6, #0b2d4d 60%);
  margin-top: -80px;
  padding-top: 120px;
  min-height: 80vh;
}

.hero-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #fff;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 24px;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

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

.destination-name {
  padding: 10px;
  font-weight: 600;
  text-align: center;
}

.package-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.package-body {
  padding: 16px;
}

.meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.icon-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid var(--secondary);
}

.testimonial {
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  flex-grow: 1;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

.testimonial .author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.cta {
  background: var(--gold);
  color: #0b2d4d;
}

.cta h2 {
  font-weight: 700;
}

.cta .btn:hover {
  transform: scale(1.05);
}

.footer {
  background: #0b2d4d;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
}

.enquiry-box {
  position: sticky;
  top: 90px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.filter-box {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.package-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -80px;
  /* Pull up behind the transparent navbar if present, or just remove top spacing */
}

.scroll-margin {
  scroll-margin-top: 150px;
}

.timeline-container>ul,
.timeline-container>ol {
  list-style: none;
  padding-left: 0;
}

.timeline-container li {
  position: relative;
  padding-bottom: 30px;
}

.timeline-container li::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 21, 129, 0.2);
}

.hover-scale {
  transition: transform 0.4s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  z-index: 1;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}