:root {
  --primary-color: #203b66; /* Navy Blue from logo */
  --primary-hover: #162a4a;
  --secondary-color: #f59e0b; /* Orange from logo */
  --secondary-hover: #d97706;
  --text-dark: #333333;
  --text-light: #f8f9fa;
  --bg-light: #f4f7fb;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--secondary-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 59, 102, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 59, 102, 0.75);
}

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

.hero-title {
  color: var(--text-light);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}

.booking-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

/* Package Cards */
.package-card {
  border: 1px solid #eef3f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  background: #fff;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.package-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

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

.package-img-wrapper {
  overflow: hidden;
  position: relative;
}

.package-card .card-body {
  padding: 25px 20px;
}

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

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0 30px;
  margin-top: 50px;
}

.site-footer h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.site-footer p, .site-footer a {
  color: #c9d6ea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--secondary-color);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-light-blue {
  background-color: var(--bg-light);
}

.section-padding {
  padding: 80px 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

/* Scroll Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 110px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.stars {
  color: #ffc107;
}
