/* Global Styles */
:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --accent-color: #e74c3c;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #333333;
  --light-text: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--dark-color);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: #777;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
}

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

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

.header-right {
  display: flex;
  align-items: center;
}

.search-bar {
  display: flex;
  margin-right: 20px;
}

.search-bar input {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  width: 200px;
}

.search-bar button {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 0 4px 4px 0;
}

.user-actions button {
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 4px;
  font-weight: 500;
}

.btn-login {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

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

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/1600x900/?travel');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-search {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
}

.search-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.search-box input,
.search-box select {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-search {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  flex: 0 0 auto;
}

/* Featured Destinations */
.featured-destinations {
  padding: 80px 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.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 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.destination-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

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

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

.destination-info p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
}

.destination-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700;
  color: var(--dark-color);
}

.btn-details {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.view-all-container {
  text-align: center;
  margin-top: 50px;
}

.btn-view-all {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

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

/* Special Offers */
.special-offers {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.offer-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 15px;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0 0 0 8px;
}

.offer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.offer-content p {
  margin-bottom: 20px;
  color: #555;
}

.offer-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.offer-price {
  font-weight: 700;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.offer-duration {
  color: #777;
  font-size: 0.9rem;
}

.btn-book-now {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-book-now:hover {
  background-color: #27ae60;
  color: white;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonial-slider {
  margin-top: 40px;
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 100%;
  display: flex;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  margin: 0 15px;
}

.testimonial-image {
  flex: 0 0 100px;
  margin-right: 30px;
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

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

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.testimonial-author span {
  color: #777;
  font-size: 0.9rem;
}

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

.testimonial-prev,
.testimonial-next {
  background-color: white;
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  box-shadow: var(--shadow);
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background-color: var(--dark-color);
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 30px;
  color: #ccc;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  padding: 0 30px;
  border-radius: 0 4px 4px 0;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #1a252f;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-logo h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

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

.footer-column p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
}

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

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  margin-left: 20px;
  font-size: 0.9rem;
}

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

/* Destinations Page Styles */
.destinations-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/1600x400/?travel,map');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.destinations-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destinations-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.destinations-filter {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 150px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.filter-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
}

.btn-apply-filters {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
}

.destinations-map {
  padding: 50px 0;
}

.map-container {
  height: 400px;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.map-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #777;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.destinations-list {
  padding: 50px 0 80px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.destination-details {
  margin: 15px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.detail-item i {
  margin-right: 8px;
  color: var(--primary-color);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.pagination-prev,
.pagination-next {
  background-color: white;
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.pagination-numbers {
  display: flex;
  margin: 0 15px;
}

.pagination-numbers a,
.pagination-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
}

.pagination-numbers a:hover,
.pagination-numbers a.active {
  background-color: var(--primary-color);
  color: white;
}

.destination-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  max-width: 800px;
  margin: 50px auto;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-body {
  padding: 30px;
}

/* Booking Page Styles */
.booking-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/1600x400/?travel,booking');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.booking-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-process {
  padding: 60px 0 80px;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.booking-steps:before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ddd;
  z-index: 1;
}

.booking-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
  color: #777;
  transition: var(--transition);
}

.booking-step.active .step-number {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.step-label {
  font-weight: 500;
  color: #777;
  transition: var(--transition);
}

.booking-step.active .step-label {
  color: var(--primary-color);
}

.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  display: none;
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.booking-form.active {
  display: block;
}

.booking-form h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.checkbox-item {
  display: flex;
  align-items: center;
}

.checkbox-item input {
  margin-right: 10px;
  width: auto;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-prev,
.btn-next {
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
}

.btn-prev {
  background-color: #f1f1f1;
  color: var(--dark-color);
}

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

.selected-destination-preview {
  margin-top: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.preview-placeholder {
  padding: 40px;
  text-align: center;
  color: #777;
}

.preview-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ddd;
}

.preview-content {
  display: flex;
}

.preview-image {
  flex: 0 0 40%;
  height: 200px;
  object-fit: cover;
}

.preview-details {
  flex: 1;
  padding: 20px;
}

.preview-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.preview-rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.preview-description {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.95rem;
}

.preview-price {
  font-weight: 700;
  color: var(--dark-color);
}

.price-calculator {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.price-calculator h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.price-breakdown {
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.price-item.total {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.payment-methods h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-option {
  flex: 1;
  min-width: 150px;
}

.payment-option input {
  display: none;
}

.payment-option label {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.payment-option input:checked + label {
  border-color: var(--primary-color);
  background-color: rgba(52, 152, 219, 0.05);
}

.payment-option label i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.card-details {
  margin-bottom: 30px;
}

.card-details h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.full-width {
  width: 100%;
}

.terms-conditions {
  display: flex;
  align-items: flex-start;
}

.terms-conditions input {
  margin-right: 10px;
  margin-top: 5px;
  width: auto;
}

.confirmation-message {
  text-align: center;
  margin-bottom: 40px;
}

.confirmation-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.confirmation-message h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.booking-reference {
  background-color: #f9f9f9;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  margin: 20px 0;
}

.booking-reference strong {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-left: 5px;
}

.confirmation-details {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.confirmation-details h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.confirmation-item span {
  color: #555;
}

.confirmation-item strong {
  color: var(--dark-color);
}

.next-steps {
  margin-bottom: 40px;
}

.next-steps h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.next-steps ul {
  list-style: none;
}

.next-steps ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.next-steps ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.btn-home,
.btn-download {
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  margin: 0 10px;
}

.btn-home {
  background-color: #f1f1f1;
  color: var(--dark-color);
}

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

.booking-faq {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .search-container {
    flex-direction: column;
  }
  
  .search-box {
    min-width: 100%;
  }
  
  .btn-search {
    width: 100%;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  
  nav {
    display: none;
  }
  
  .header-right {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 15px;
  }
  
  .footer-links a {
    margin: 0 10px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 25px;
  }
  
  .preview-content {
    flex-direction: column;
  }
  
  .preview-image {
    flex: 0 0 100%;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .destination-grid,
  .offers-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-steps {
    flex-wrap: wrap;
  }
  
  .booking-step {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
  
  .booking-form {
    padding: 20px;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .payment-options {
    flex-direction: column;
  }
}
