/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

/* Variables */
:root {
  --primary: #0e3d59; /* deep blue */
  --primary-light: rgba(14, 61, 89, 0.95);
  --secondary: #58a4b0; /* cool teal */
  --accent: #ffc857; /* warm saffron */
  --background: #f1faee; /* frosty near-white */
  --text: #1d1d1d; /* dark charcoal */
  --white: #ffffff;
  --gradient-overlay: linear-gradient(
    to bottom,
    rgba(14, 61, 89, 0.6),
    rgba(14, 61, 89, 0.4)
  );
  --glass-effect: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease-in-out;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --container-padding: 20px;
  --section-spacing: 6rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive container widths */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  html {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }

  html {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }

  html {
    font-size: 13px;
  }
}

/* Navigation */
.navbar {
  background: rgba(14, 61, 89, 0.85);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--glass-effect);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 150vh;
  background: var(--gradient-overlay),
    url("./landingPng.png") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: left;
  color: var(--white);
  margin-top: -80px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  padding: 3rem;
  animation: fadeInUp 1.2s ease-out;
  z-index: 2;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Tours Section */
.tours {
  padding: 8rem 0;
  background: linear-gradient(to bottom, var(--white), var(--background));
  position: relative;
  overflow: hidden;
}

.tours::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 200, 87, 0.15),
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: pulse 8s infinite alternate;
}

.tours::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 61, 89, 0.1), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 8s infinite alternate-reverse;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.tours h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2.8rem;
  font-family: "Playfair Display", serif;
  position: relative;
  padding-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

.tours-subtitle {
  text-align: center;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.tour-card {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  background: var(--white);
  transform: translateY(0);
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.tour-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(
    to bottom,
    rgba(14, 61, 89, 0.2),
    rgba(14, 61, 89, 0.6)
  );
  opacity: 0;
  z-index: 2;
  transition: all 0.4s ease;
}

.tour-card:hover::before {
  opacity: 1;
}

.tour-card::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 2rem;
  z-index: 3;
  opacity: 0;
  transition: all 0.4s ease;
}

.tour-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.tour-card:nth-child(1) {
  animation-delay: 0.2s;
}

.tour-card:nth-child(2) {
  animation-delay: 0.4s;
}

.tour-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tour-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.tour-card:hover img {
  transform: scale(1.1);
}

.tour-content {
  padding: 2rem;
  position: relative;
  background: var(--white);
  z-index: 2;
}

.tour-content h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.tour-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.tour-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.tour-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
}

.tour-detail i {
  color: var(--accent);
  font-size: 1rem;
}

.tour-price {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tour-price span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}

.tour-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid var(--accent);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tour-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.4s ease;
  z-index: -1;
}

.tour-button:hover {
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.tour-button:hover::before {
  left: 0;
}

.tour-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.view-all-tours {
  text-align: center;
  margin-top: 3rem;
  animation: fadeIn 1.5s ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}

.view-all-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  font-size: 1rem;
}

.view-all-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tours {
    padding: 5rem 0;
  }

  .tours h2 {
    font-size: 2.2rem;
  }

  .tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .tour-card img {
    height: 240px;
  }

  .tour-content {
    padding: 1.5rem;
  }

  .tour-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .tours {
    padding: 4rem 0;
  }

  .tours h2 {
    font-size: 2rem;
  }

  .tour-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Search Container */
.search-container {
  background: var(--white);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 95%;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.search-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.search-container.floating {
  position: relative;
  margin-top: 3rem;
  z-index: 10;
}

.search-grid {
  display: flex;
  flex: 1;
  align-items: center;
}

.search-field {
  position: relative;
  padding: 0.5rem 1.5rem;
  flex: 1;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  display: block;
  margin-bottom: 0.2rem;
  color: #ff5a5f;
  font-weight: 600;
  font-size: 0.8rem;
}

.search-field > div {
  display: flex;
  align-items: center;
}

.search-field i {
  color: #ff5a5f;
  font-size: 1.1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.3rem 0;
  border: none;
  font-size: 1rem;
  background-color: transparent;
  color: var(--text);
  font-weight: 500;
}

.search-field input::placeholder {
  color: #888;
  font-weight: normal;
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
}

.search-button {
  background: #ff5a5f;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
}

.search-button i {
  font-size: 1.3rem;
}

.search-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 90, 95, 0.4);
}

@media (max-width: 992px) {
  .search-container {
    max-width: 90%;
    width: 90%;
  }

  .search-field {
    padding: 0.5rem 0.8rem;
  }

  .search-field label {
    font-size: 0.75rem;
  }

  .search-field input,
  .search-field select {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    background-attachment: scroll; /* Better for mobile */
  }

  .hero-content {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    padding: 0;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .tour-grid,
  .testimonial-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .season-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .currency-selector {
    top: 15px;
    right: 10px;
    width: 100px;
  }

  .currency-selector:hover {
    width: 110px;
  }

  .currency-selector .header {
    padding: 8px 12px;
  }

  .currency-selector .currency-option {
    padding: 8px 12px;
  }

  .currency-selector .currency-option:hover {
    padding-left: 15px;
  }

  /* Search container mobile styles */
  .search-container {
    flex-direction: column;
    border-radius: 20px;
    padding: 1rem;
    margin-top: 2rem;
    max-width: 90%;
  }

  .search-grid {
    flex-direction: column;
    width: 100%;
  }

  .search-field {
    width: 100%;
    padding: 0.8rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .search-field:last-of-type {
    border-bottom: none;
    margin-bottom: 0.5rem;
  }

  .search-field > div {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .search-field i {
    margin-right: 0.8rem;
    font-size: 1rem;
  }

  .search-field input,
  .search-field select {
    width: 100%;
    font-size: 0.9rem;
  }

  .search-button {
    margin-top: 1rem;
    width: 100%;
    border-radius: 30px;
    height: 50px;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .tours,
  .testimonials,
  .seasonal-highlights,
  .why-choose-us {
    padding: 3rem 0;
  }

  .tour-card,
  .testimonial-card,
  .season-card,
  .feature-card {
    margin-bottom: 1rem;
  }

  .whatsapp-button {
    left: 15px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-spacing) 0;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--background);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content i {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-content p {
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Seasonal Highlights */
.seasonal-highlights {
  padding: var(--section-spacing) 0;
  background: var(--background);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.season-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.season-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.season-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
}

.season-card.winter::before {
  background: #a0d2eb;
}

.season-card.spring::before {
  background: #8cc084;
}

.season-card.summer::before {
  background: #ffc857;
}

.season-card.autumn::before {
  background: #e67e22;
}

.season-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.season-card p {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.season-card ul {
  list-style: none;
  padding: 0;
}

.season-card ul li {
  color: var(--text);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.season-card ul li:before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* Newsletter */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  width: 100%;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5580 100%);
  color: var(--white);
  padding: 4.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Footer Links */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
}

.footer-section ul li a:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateX(5px);
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
  opacity: 0.9;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-5px);
  opacity: 1;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* Currency Selector */
.currency-selector {
  position: fixed;
  top: 100px;
  right: 10px;
  width: 120px;
  background-color: #ffc65c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.currency-selector:hover {
  border-radius: 8px 8px 0 0;
  width: 130px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.currency-selector .header {
  padding: 10px 15px;
  background-color: #ffc65c;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.currency-selector .header:hover {
  padding: 12px 15px;
  justify-content: space-between;
}

.currency-selector .header::after {
  content: "▼";
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.currency-selector:hover .header::after {
  transform: rotate(180deg);
}

.currency-selector .currency-options {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.currency-selector:hover .currency-options {
  max-height: 200px;
  opacity: 1;
}

.currency-selector .currency-option {
  padding: 10px 15px;
  cursor: pointer;
  background-color: #f5f5f5;
  transition: all 0.2s ease;
}

.currency-selector .currency-option:hover {
  background-color: #e0e0e0;
  padding-left: 20px;
}

.currency-selector .currency-option.touch-active {
  background-color: #e0e0e0;
  padding-left: 20px;
}

/* Button Styles */
.cta-button,
.tour-button,
.submit-button,
.search-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.cta-button:hover,
.tour-button:hover,
.submit-button:hover,
.search-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Custom Modal/Popup Styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.custom-modal-content {
  background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-modal-heading {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

.custom-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.custom-close:hover {
  color: var(--accent);
}

.custom-rounded-input {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.custom-rounded-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(88, 164, 176, 0.2);
}

.custom-rounded-button {
  width: 100%;
  padding: 12px 24px;
  margin-top: 1rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.custom-rounded-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--white), var(--background));
  text-align: center;
}

.why-choose-us h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.why-choose-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover i {
  color: var(--accent);
  transform: scale(1.1);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hamburger Animation */
.hamburger.toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Prevent scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .currency-selector:hover {
    width: 110px;
  }

  .currency-selector .header {
    padding: 8px 12px;
  }

  .currency-selector .currency-option {
    padding: 8px 12px;
  }

  .currency-selector .currency-option:hover {
    padding-left: 15px;
  }

  .currency-options {
    width: 110px; /* Match the hover width */
  }

  .currency-selector.touch-active {
    width: 110px;
  }
}

/* Section Titles */
.tours h2,
.testimonials h2,
.seasonal-highlights h2,
.why-choose-us h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.tours h2::after,
.testimonials h2::after,
.seasonal-highlights h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

@media (max-width: 768px) {
  .tours h2,
  .testimonials h2,
  .seasonal-highlights h2,
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .tour-grid,
  .testimonial-grid,
  .season-grid {
    gap: 1.5rem;
    padding: 0;
  }

  .tour-card {
    max-width: 100%;
  }

  .tour-card img {
    height: 220px;
    border-radius: 30px;
  }

  .tour-content,
  .testimonial-card,
  .season-card {
    padding: 1.5rem;
  }

  .container {
    padding: 0 20px;
  }

  .tours,
  .testimonials,
  .seasonal-highlights,
  .why-choose-us {
    padding: 4rem 0;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-family: "Playfair Display", serif;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.85rem;
}

.seasonal-highlights {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.season-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.season-card:hover {
  transform: translateY(-5px);
}

.season-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.season-content {
  padding: 15px;
}

.season-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #34495e;
}

.season-duration {
  font-size: 1rem;
  color: #1abc9c;
  margin-bottom: 10px;
}

.season-content ul {
  list-style: none;
  padding: 0;
}

.season-content ul li {
  font-size: 1rem;
  color: #555;
  padding: 3px 0;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.payment-icons {
  display: flex;
  color: #ffc857;
  justify-content: center;
  gap: 15px;
}

.payment-icons img {
  width: 60px;
  height: 40px;
}

/* General Styling */
.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-weight: 600;
  color: #e74c3c;
  font-size: 14px;
}

.search-field div {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.search-field div:hover {
  border-color: #e74c3c;
  background: #fff;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.search-field i {
  color: #e74c3c;
  margin-right: 10px;
}

/* Dropdown Styling */
select {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 5px;
  cursor: pointer;
  appearance: none; /* Removes default browser styles */
  width: 100%;
}

/* Custom dropdown arrow */
.search-field div::after {
  content: "\f078"; /* FontAwesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #e74c3c;
  pointer-events: none;
}

/* Style the dropdown menu options */
select option {
  background: #ffffff;
  padding: 12px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
}

/* Hover effect for dropdown options */
select option:hover {
  background: #e74c3c;
  color: white;
}

/* Focused select box */
select:focus {
  outline: none;
  border: none;
}

/* Guests Dropdown */
.guest-selector {
  position: relative;
  cursor: pointer;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #f8f9fa;
}

.guest-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
  min-width: 220px;
  z-index: 1000;
}

.guest-selector.active .guest-dropdown {
  display: block;
}

.guest-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter button {
  background: #007bff;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.counter button:hover {
  background: #0056b3;
}

.counter .count {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* Search Button */
.search-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.search-button:hover {
  background: #0056b3;
}


.zyberly-logo {
  width: 30px; /* Adjust size as needed */
  height: 30px; /* Adjust size as needed */
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;

}
