:root {
  --primary: #1a73e8;
  --secondary: #34a853;
  --accent: #ff9800;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --white: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Navbar Styles */
.navbar {
  padding: 15px 0;
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
}

.navbar-brand span {
  color: var(--secondary);
}

.navbar-brand i {
  color: var(--accent);
  margin-right: 8px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  margin: 0 5px;
  padding: 8px 16px !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  background-color: rgba(26, 115, 232, 0.08);
}

.nav-link.active {
  color: var(--primary);
  background-color: rgba(26, 115, 232, 0.12);
}

.navbar-toggler {
  border: none;
  padding: 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-book-now {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
}

.btn-book-now:hover {
  background-color: #0d62d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(26, 115, 232, 0.3);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 230px;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.dropdown-item {
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background-color: rgba(26, 115, 232, 0.08);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-item i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 0.9rem;
}

.dropdown-divider {
  margin: 8px 0;
  opacity: 0.1;
}

.dropdown-header {
  font-weight: 700;
  color: var(--primary);
  padding: 10px 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  left: 10%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.mega-dropdown-column {
  margin-bottom: 15px;
}

.mega-dropdown-column h6 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-dropdown-column ul {
  list-style: none;
  padding-left: 0;
}

.mega-dropdown-column ul li {
  margin-bottom: 8px;
}

.mega-dropdown-column ul li a {
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
  font-size: 0.95rem;
}

.mega-dropdown-column ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.mega-dropdown-column ul li a i {
  margin-right: 8px;
  color: var(--primary);
  font-size: 0.8rem;
}

.featured-dropdown {
  background-color: rgba(26, 115, 232, 0.05);
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.featured-dropdown img {
  border-radius: 8px;
  margin-bottom: 10px;
}

.featured-dropdown h6 {
  margin-bottom: 5px;
  color: var(--dark);
  border-bottom: none;
  padding-bottom: 0;
}

.featured-dropdown p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.featured-dropdown .btn-sm {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Hover Dropdown Styles */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu,
  .mega-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
}

/* Hero Section Styles */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.search-box .form-control {
  height: 50px;
  border-radius: 30px;
  padding-left: 20px;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
}

.search-box .form-select {
  height: 50px;
  border-radius: 30px;
  padding-left: 20px;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
  border-color: var(--primary);
}

.search-box label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.btn-search {
  height: 50px;
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 0 30px;
  transition: all 0.3s ease;
  border: none;
}

.btn-search:hover {
  background-color: #2d9249;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 168, 83, 0.3);
}

.featured-destinations {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}

.featured-destinations span {
  display: inline-block;
  margin: 0 15px;
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-destinations span:hover {
  opacity: 1;
  transform: translateY(-3px);
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .search-box {
    padding: 20px;
  }

  .dropdown-menu {
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-dropdown-menu {
    width: 100%;
    padding: 15px;
    left: 0;
    transform: none;
  }

  .mega-dropdown-column {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 800px;
    height: auto;
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .featured-destinations {
    position: relative;
    margin-top: 30px;
    bottom: auto;
  }

  .featured-destinations span {
    margin: 5px 10px;
    font-size: 1rem;
    display: inline-block;
  }
}

/* Welcome Section Styles */
.welcome-section {
  padding: 120px 0 90px;
  background-color: var(--light);
}

.welcome-content .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.welcome-content .subtitle:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.welcome-content .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  color: var(--dark);
}

.welcome-content .description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.welcome-stats {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.welcome-image-container {
  position: relative;
  padding: 20px;
  height: 100%;
}

.welcome-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.welcome-image.main-image {
  z-index: 2;
  position: relative;
}

.welcome-image.accent-image {
  position: absolute;
  width: 60%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.welcome-image img {
  transition: all 0.5s ease;
}

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

.experience-badge {
  position: absolute;
  top: 30px;
  left: 0;
  background-color: var(--primary);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
  z-index: 3;
}

.experience-badge .badge-content {
  text-align: center;
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  font-family: "Playfair Display", serif;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.btn-about-us {
  background-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-about-us:hover {
  background-color: #0d62d0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .welcome-section {
    padding: 80px 0 60px;
  }

  .welcome-content .section-title {
    font-size: 2rem;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
  }

  .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .welcome-section {
    padding: 60px 0 40px;
  }

  .welcome-image-container {
    margin-top: 30px;
    padding: 10px;
  }

  .welcome-content .section-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .welcome-image.accent-image {
    width: 50%;
  }

  .experience-badge {
    width: 90px;
    height: 90px;
    top: 20px;
    left: 20px;
  }

  .experience-badge .years {
    font-size: 1.8rem;
  }

  .experience-badge .text {
    font-size: 0.7rem;
  }
}

/* Featured Section Styles */
.featured-section {
  padding: 90px 0;
  background-color: white;
}

.featured-section .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.featured-section .subtitle:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.featured-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.featured-section .section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Tab Styles */
.featured-tabs {
  margin-top: 20px;
}

.featured-tabs .nav-pills {
  gap: 10px;
  flex-wrap: wrap;
}

.featured-tabs .nav-link {
  background-color: white;
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-tabs .nav-link i {
  margin-right: 8px;
  color: var(--primary);
}

.featured-tabs .nav-link:hover {
  background-color: rgba(26, 115, 232, 0.05);
  border-color: var(--primary);
  color: var(--primary);
}

.featured-tabs .nav-link.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.featured-tabs .nav-link.active i {
  color: white;
}

.featured-tabs .tab-content {
  margin-top: 40px;
}

/* Destination Card Styles */
.destination-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.destination-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.destination-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
}

.destination-badges .badge {
  padding: 8px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 30px;
}

.badge.bg-accent {
  background-color: var(--accent);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.btn-view-details {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-details:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-content {
  padding: 25px;
}

.destination-rating {
  margin-bottom: 10px;
}

.destination-rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.rating-count {
  color: #666;
  font-size: 0.85rem;
  margin-left: 8px;
}

.destination-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.destination-features {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.destination-features span i {
  color: var(--primary);
  margin-right: 5px;
}

.destination-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.destination-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.85rem;
  color: #666;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.btn-book-now {
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-book-now:hover {
  background-color: #2d9249;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 168, 83, 0.2);
  color: white;
}

.btn-view-all {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-view-all i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: var(--primary);
  color: white;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/* Experience Showcase Styles */
.experience-showcase {
  margin-top: 80px;
}

.showcase-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.experience-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.experience-card .experience-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.experience-card .experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.experience-card.large {
  height: 500px;
}

.experience-card.medium {
  height: 235px;
}

.experience-card .experience-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  transition: all 0.3s ease;
}

.experience-card.large .experience-content {
  padding-bottom: 40px;
}

.experience-card:hover .experience-content {
  padding-bottom: calc(25px + 10px);
}

.experience-card .experience-label {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.experience-card .experience-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.experience-card.medium .experience-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.experience-card .experience-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.experience-card .experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.experience-card.medium .experience-meta {
  margin-bottom: 0;
}

.experience-card .experience-meta i {
  margin-right: 5px;
}

.btn-experience {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
}

.experience-card:hover .btn-experience {
  opacity: 1;
  transform: translateY(0);
}

.btn-experience:hover {
  background-color: white;
  color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .featured-section {
    padding: 70px 0;
  }

  .featured-section .section-title {
    font-size: 2rem;
  }

  .experience-card.large {
    height: 400px;
  }

  .experience-card.medium {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .featured-section {
    padding: 50px 0;
  }

  .featured-section .section-title {
    font-size: 1.8rem;
  }

  .featured-tabs .nav-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .experience-card.large {
    height: 350px;
    margin-bottom: 30px;
  }

  .experience-card.medium {
    height: 180px;
  }

  .experience-card .experience-content {
    padding: 15px;
  }

  .experience-card.large .experience-content {
    padding-bottom: 25px;
  }

  .experience-card:hover .experience-content {
    padding-bottom: calc(15px + 10px);
  }

  .experience-card .experience-title {
    font-size: 1.3rem;
  }

  .experience-card.medium .experience-title {
    font-size: 1rem;
  }
}
.site-footer {
  background-color: #2c3e50;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  margin-top: 50px;
}

.footer-top {
  padding: 80px 0 50px;
  position: relative;
}

.footer-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
}

.footer-logo a {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-logo i {
  color: var(--accent);
  margin-right: 8px;
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links li a:before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

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

.footer-links li a:hover:before {
  color: var(--secondary);
}

.footer-text {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-subscribe .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 30px 0 0 30px;
  color: white;
  height: 46px;
  padding-left: 20px;
}

.footer-subscribe .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn-subscribe {
  background-color: var(--primary);
  color: white;
  border-radius: 0 30px 30px 0;
  border: none;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #0d62d0;
  color: white;
}

.footer-contact {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  font-size: 0.9rem;
}

.payment-methods i {
  font-size: 1.5rem;
  color: white;
  margin-right: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.payment-methods i:hover {
  opacity: 1;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.legal-links .divider {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

.back-to-top {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
  transition: all 0.3s ease;
}

.back-to-top a:hover {
  background-color: #0d62d0;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .footer-top {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer-top {
    padding: 50px 0 20px;
  }

  .footer-heading {
    margin-bottom: 15px;
  }

  .footer-bottom {
    text-align: center;
  }

  .payment-methods {
    margin-bottom: 15px;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
  }
}

/* Add Back to Top Button Functionality */
#backToTop {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}
/* Why Choose Us Section Styles */
.why-choose-us-section {
  padding: 90px 0;
  background-color: #f9fbfd;
  position: relative;
  overflow: hidden;
}

.why-choose-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 115, 232, 0.05);
  border-radius: 50%;
  transform: translate(150px, -150px);
  z-index: 0;
}

.why-choose-us-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background-color: rgba(52, 168, 83, 0.05);
  border-radius: 50%;
  transform: translate(-100px, 100px);
  z-index: 0;
}

.why-choose-us-section .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.why-choose-us-section .subtitle:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.why-choose-us-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.why-choose-us-section .section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Feature Cards */
.feature-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  transform: rotateY(180deg);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: white;
  transform: rotateY(-180deg);
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.feature-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonial Styles */
.testimonial-container {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.testimonial-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
}

.testimonial-card {
  background-color: #f9fbfd;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.2rem;
  margin-right: 3px;
}

.testimonial-text {
  margin-bottom: 20px;
}

.testimonial-text p {
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
}

.testimonial-text p::before {
  content: '"';
  font-size: 5rem;
  color: rgba(26, 115, 232, 0.1);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: serif;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background-color: var(--light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary);
  color: white;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
  width: 25px;
  border-radius: 10px;
}

/* Trust Badges */
.trust-badges {
  margin-top: 40px;
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.trust-badge img {
  max-height: 100%;
  max-width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trust-badge:hover img {
  filter: grayscale(0%);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .why-choose-us-section {
    padding: 70px 0;
  }

  .why-choose-us-section .section-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .testimonial-container {
    padding: 30px 20px;
  }
}

@media (max-width: 767.98px) {
  .why-choose-us-section {
    padding: 50px 0;
  }

  .why-choose-us-section .section-title {
    font-size: 1.8rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }

  .testimonial-header h3 {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text p {
    font-size: 1rem;
  }

  .trust-badge {
    height: 60px;
    margin-bottom: 15px;
  }
}

/* Packages Section Styles */
.packages-section {
  background-color: #f9fbfd;
  padding: 90px 0;
}

.packages-section .subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.packages-section .subtitle:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.packages-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.packages-section .section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Package Card Styles */
.package-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-banner {
  position: absolute;
  top: 20px;
  left: -5px;
  background-color: #ff3d71;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 15px;
  z-index: 10;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 5px 10px rgba(255, 61, 113, 0.3);
}

.package-banner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 5px;
  height: 5px;
  background-color: #c82554;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: -1;
}

.package-trending .package-banner {
  background-color: var(--primary);
  box-shadow: 0 5px 10px rgba(26, 115, 232, 0.3);
}

.package-trending .package-banner:before {
  background-color: #0d62d0;
}

.package-limited .package-banner {
  background-color: var(--secondary);
  box-shadow: 0 5px 10px rgba(52, 168, 83, 0.3);
}

.package-limited .package-banner:before {
  background-color: #2d9249;
}

.package-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.package-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.package-wishlist i {
  color: #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.package-wishlist:hover {
  background-color: white;
  transform: scale(1.1);
}

.package-wishlist:hover i {
  color: #ff3d71;
}

.package-wishlist.active i {
  color: #ff3d71;
}

.package-details {
  padding: 25px;
}

.package-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: #ffaa00;
  margin-right: 8px;
}

.rating-count {
  font-size: 0.85rem;
  color: #666;
}

.package-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.package-card:hover .package-title {
  color: var(--primary);
}

.package-features {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.package-features span {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

.package-features span i {
  color: var(--primary);
  margin-right: 5px;
  font-size: 0.85rem;
}

.package-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

.package-highlights span {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

.package-highlights span i {
  color: var(--secondary);
  margin-right: 8px;
  font-size: 0.85rem;
}

.package-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.price-value {
  display: flex;
  flex-direction: column;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.price-unit {
  font-size: 0.85rem;
  color: #999;
}

.btn-view-deal {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-deal:hover {
  background-color: #0d62d0;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(26, 115, 232, 0.2);
  color: white;
}

.btn-view-all-packages {
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-view-all-packages i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-view-all-packages:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.15);
}

.btn-view-all-packages:hover i {
  transform: translateX(5px);
}

/* Newsletter Styles */
.newsletter-container {
  background: linear-gradient(135deg, var(--primary) 0%, #0d62d0 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 15px 30px rgba(26, 115, 232, 0.2);
  position: relative;
  overflow: hidden;
}

.newsletter-container:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.newsletter-container:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-content h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.newsletter-form {
  position: relative;
  z-index: 2;
}

.newsletter-form .input-group {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
  height: 54px;
  padding-left: 20px;
  font-size: 1rem;
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
}

.btn-subscribe {
  background-color: var(--secondary);
  color: white;
  font-weight: 600;
  padding: 0 30px;
  border: none;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #2d9249;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.form-check-label a {
  color: white;
  text-decoration: underline;
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .packages-section {
    padding: 70px 0;
  }

  .packages-section .section-title {
    font-size: 2rem;
  }

  .newsletter-container {
    padding: 30px;
  }

  .newsletter-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .packages-section {
    padding: 50px 0;
  }

  .packages-section .section-title {
    font-size: 1.8rem;
  }

  .package-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .newsletter-container {
    padding: 25px;
  }

  .newsletter-content h3 {
    font-size: 1.4rem;
  }

  .newsletter-form .form-control {
    height: 48px;
    font-size: 0.9rem;
  }

  .btn-subscribe {
    padding: 0 20px;
    font-size: 0.9rem;
  }
}
