/* Base Styles */
:root {
  --primary: #009688;
  --secondary: #ff9800;
  --accent: #fbe9e7;
  --background: #ffffff;
  --text-primary: #222222;
  --text-secondary: #555555;
  --button-text: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  margin: 15px auto 0;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--button-text);
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn:hover {
  background-color: #00796b;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: url("https://static01.nyt.com/images/2019/02/03/travel/03frugal-srilanka01/merlin_148552275_74c0d250-949c-46e0-b8a1-e6d499e992cf-superJumbo.jpg?quality=75&auto=webp") center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  background-attachment: fixed; /* Parallax effect */
  animation: heroFadeIn 1.5s ease; /* Animation */
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Tours Section */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tour-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tour-content {
  padding: 20px;
}

.tour-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.tour-location {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tour-highlights span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.tour-highlights i {
  color: var(--secondary);
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.price {
  font-weight: 600;
  color: var(--primary);
}

.book-btn {
  padding: 8px 15px;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 150, 136, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews Section */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.stars {
  color: var(--secondary);
  font-size: 0.9rem;
}

.review-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
}

.review-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.review-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars-input {
  display: flex;
  gap: 5px;
}

.stars-input i {
  color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.stars-input i:hover,
.stars-input i.active {
  color: var(--secondary);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info {
  background-color: var(--accent);
  padding: 30px;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.info-item i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--accent);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary);
}

.guest-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.guest-btn:hover {
  background-color: var(--secondary);
}

#bookingGuests {
  width: 50px;
  text-align: center;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
  }

  .navbar .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .modal-content {
    padding: 20px;
  }
}



/* Add these new styles: */

/* Destinations Section */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.destination-rating {
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.destination-rating .fa-star {
  color: #ccc; /* Default: unfilled star */
  transition: var(--transition);
}

.destination-rating .filled {
  color: var(--secondary); /* Filled star: gold-ish */
}

.destination-rating .fa-star:hover {
  transform: scale(1.1);
}



/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Custom Booking Section */
.booking {
    background-color: var(--accent);
}

#customTourForm {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-secondary {
    background-color: var(--secondary);
    margin-bottom: 20px;
}

.location-group {
    margin-bottom: 15px;
    position: relative;
}

.location-group::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 35px;
    color: var(--primary);
    font-weight: bold;
}

.location-group:last-child::after {
    display: none;
}










/* Toggle Switch Styles */
.toggle-group {
    margin-bottom: 25px;
}

.toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    margin-right: 10px;
    transition: all 0.3s;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
}

input[type="checkbox"]:checked + .toggle-slider {
    background-color: var(--primary);
}

input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Day Sections */
.day-section {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.day-title {
    font-weight: 600;
    color: var(--primary);
}

.remove-day {
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
}

/* Location Groups */
.location-group {
    position: relative;
    margin-bottom: 15px;
}

.remove-location {
    position: absolute;
    right: 10px;
    top: 35px;
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.btn-secondary:hover {
    background-color: #e68a00;
}








/* Improved Toggle Switch */
.toggle-group {
    margin-bottom: 25px;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
}

.toggle-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: #ddd;
    border-radius: 30px;
    margin-right: 15px;
    transition: all 0.3s;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .toggle-slider {
    background-color: var(--primary);
}

input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Form Note */
.form-note {
    background-color: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.form-note i {
    color: var(--primary);
    margin-right: 10px;
}

.form-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Validation Styles */
input:invalid, select:invalid {
    border-color: #ff6b6b;
}

input:focus:invalid, select:focus:invalid {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}












/*  */
/* Day Sections */
.day-section {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.day-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Location Groups */
.location-group {
    position: relative;
    margin-bottom: 15px;
}

.remove-location {
    position: absolute;
    right: 10px;
    top: 35px;
    background: none;
    border: none;
    color: #ff5252;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.btn-secondary:hover {
    background-color: #e68a00;
}

/* Form Note */
.form-note {
    background-color: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.form-note i {
    color: var(--primary);
    margin-right: 10px;
}

.form-note p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Validation Styles */
input:invalid, select:invalid {
    border-color: #ff6b6b;
}

input:focus:invalid, select:focus:invalid {
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}



/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .day-section {
        padding: 12px;
    }
    
    .btn, .btn-secondary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .day-title {
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    input, select, textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-note {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .location-group::after {
        display: none;
    }
}

/* Special Mobile Optimizations */
@media (max-width: 400px) {
    .day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .day-title {
        margin-bottom: 5px;
    }
    
    .remove-location {
        right: 5px;
        top: 30px;
    }
}




/* ...existing code... */

/* Hide extra destination cards on mobile */
@media (max-width: 768px) {
  .destination-card {
    display: none;
  }
  .destination-card:nth-child(1),
  .destination-card:nth-child(2) {
    display: block;
  }
  #destinations-toggle-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

/* Show all cards when expanded */
.destination-grid.expanded .destination-card {
  display: block !important;
}

/* Style for the More/Less button */
.destinations-toggle-btn {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.destinations-toggle-btn:hover {
  background-color: #e68a00;
}






/* ...existing code... */

/* Hide extra gallery items on mobile */
@media (max-width: 768px) {
  .gallery-item {
    display: none;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    display: block;
  }
  #gallery-toggle-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

/* Show all gallery items when expanded */
.gallery-grid.expanded .gallery-item {
  display: block !important;
}

/* Style for the More/Less button */
.gallery-toggle-btn {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.gallery-toggle-btn:hover {
  background-color: #e68a00;
}


/* ...existing code... */
.btn-clear {
  background-color: var(--text-secondary);
  color: var(--button-text);
  margin-left: 10px;
  border: none;
  transition: var(--transition);
}
.btn-clear:hover {
  background-color: #737373;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
