:root {
  --primary-color: #0097b1;
  --secondary-color: #10b981;
  --dark: #1e293b;
  --light-bg: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Header Styles */
.navbar {
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  background: #ffffff !important; /* White background by default */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow on load */
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}
/* ============================================
   MOBILE RESPONSIVE FIXES - SLIDE IN MENU
   ============================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #709de1;
    box-shadow: -5px 0 20px rgba(53, 162, 216, 0.3);
    padding: 2rem 1.5rem;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav {
    width: 100%;
    padding-top: 3rem;
  }

  .nav-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    color: #ffffff !important;
    padding: 0.5rem;
    font-size: 1.1rem;
  }

  .nav-link:hover {
    color: #10b981 !important;
  }

  .cta-btn {
    margin-top: 2rem;
    background: #10b981 !important;
    display: block;
    text-align: center;
  }

  /* Add close button */
  .navbar-toggler {
    z-index: 10000;
  }
}

.logo-img {
  height: 60px; /* Refined size */
  width: auto;
  margin-right: 15px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  color: var(--dark) !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.cta-btn {
  background: var(--primary-color);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Hero Section */

.hero {
  background: url("../images/pexels-myersmc16-1431592.jpg") center/cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 150px 0 100px;
  color: white;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}
.hero_1 {
  background: url("../images/family-tours.jpg") center/cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 150px 0 100px;
  color: white;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_1 .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
    min-height: 500px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* Package Cards */
.packages {
  padding: 80px 0;
  background: var(--light-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  margin-bottom: 0; /* Changed from 30px */
  height: 100%;
}
.packages .col-lg-4,
.packages .col-md-6 {
  padding-bottom: 30px;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.package-card:hover .package-img img {
  transform: scale(1.1);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.package-content {
  padding: 1.5rem;
}

.package-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.package-features {
  list-style: none;
  margin-bottom: 1.2rem;
}

.package-features li {
  padding: 0.4rem 0;
  color: #64748b;
  font-size: 0.95rem;
}

.package-features i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.package-price span {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 400;
}

.book-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.book-btn:hover {
  background: #1d4ed8;
  transform: translateX(5px);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-text {
  font-style: italic;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
}

.author-location {
  color: #64748b;
  font-size: 0.9rem;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--light-bg);
}

.accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: white;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--secondary-color);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Premium Modal Styling */
.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), #19505b);
  color: white;
  border: none;
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 0;
}

.modal-split {
  display: flex;
  flex-wrap: wrap;
}

.modal-image-side {
  flex: 1;
  min-width: 300px;
  background: url("https://images.unsplash.com/photo-1506461883276-594a12b11cf3?q=80&w=1000")
    center/cover;
  position: relative;
  min-height: 250px;
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.modal-form-side {
  flex: 1.2;
  padding: 2.5rem;
  min-width: 300px;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color), #19505b);
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 1rem;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.fa-paper-plane{
  color: white !important;
}

@media (max-width: 767px) {
  .modal-image-side {
    display: none;
  }
  .modal-form-side {
    padding: 1.5rem;
  }
}

/* Glassmorphism for backdrop */
.modal-backdrop.show {
  opacity: 0.7;
  backdrop-filter: blur(8px);
}
