/* Global Styles */
:root {
  --primary-color: #212832;
  --secondary-color: #df6951;
  --accent-color: #f1a501;
  --text-color: #5e6282;
  --heading-color: #14183e;
  --white: #ffffff;
  --light-bg: #f6f6f6;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Volkhov', serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-secondary);
  color: var(--heading-color);
  font-weight: 700;
}

p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 50px;
  margin-bottom: 50px;
  position: relative;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 20px 35px rgba(241, 165, 1, 0.15);
}

.btn-primary:hover {
  background-color: #e29500;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Toggle Menu */
.toggle-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--secondary-color);
}

/* Navbar */
.navbar {
  padding: 30px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.btn-nav-signup {
  background-color: transparent;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-nav-signup:hover {
  background-color: #c85643;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-btn {
  background-color: transparent;
  border: none;
  color: var(--text-color);
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-icon {
  width: 8px;
  height: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 120px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 4px;
  right: 0;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.language-dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  position: relative;
}

.hero-content {
  max-width: 600px;
  z-index: 1;
}

.hero-section h1 {
  font-size: 84px;
  line-height: 1.1;
  margin: 20px 0;
}

.orange-label {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

.hero-section p {
  max-width: 400px;
  margin: 20px 0 30px;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.btn-secondary i {
  font-size: 24px;
}
.hero-image {
  position: absolute;
  top: 50px;
  right: 0;
  max-width: 50%;
  height: auto;
  z-index: 0;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  text-align: center;
  margin-top: 100px;
}


.services-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 36px;
  width: 267px;
  height: 314px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.service-card.highlighted {
  position: relative;
  overflow: hidden;
}

.service-card.highlighted::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background-image: url('assets/Images and icons/Rectangle\ 157.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.2;
}

.service-card.highlighted {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
}

/* Destinations Section */
.destinations-section {
  padding: 100px 0;
  text-align: center;
}

.destinations-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.destination-card {
  background-color: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 315px;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.destination-info {
  padding: 20px;
  text-align: left;
}

.destination-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.destination-info p {
  color: var(--text-color);
  font-size: 16px;
}

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

/* Booking Section */
.booking-section {
  padding: 100px 0;
}

.booking-content {
  display: flex;
  gap: 100px;
  align-items: center;
}

.booking-steps {
  flex: 1;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-color: #f0bb1f;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 30px;
  height: 30px;
}

.step-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.trip-card {
  background-color: var(--white);
  border-radius: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 370px;
  overflow: hidden;
}

.trip-image {
  position: relative;
}

.trip-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.trip-image p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-weight: 600;
}

.trip-details {
  padding: 20px;
}

.trip-info p {
  color: var(--text-color);
  margin-bottom: 20px;
}

.trip-info span {
  font-weight: 600;
  color: var(--heading-color);
}

.trip-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.trip-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}

.trip-people {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.trip-people div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trip-people i {
  color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--light-bg);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-content {
  text-align: left;
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-author {
  text-align: right;
}

.testimonial-author p:first-child {
  font-weight: 600;
  color: var(--heading-color);
}

/* Partners Section */
.partners-section {
  padding: 50px 0;
  background-color: var(--white);
}

.partners-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partners-section img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partners-section img:hover {
  opacity: 1;
}

/* Newsletter Section */
.newsletter-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
}

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

.newsletter-content h2 {
  font-size: 33px;
  margin-bottom: 50px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.newsletter-form button {
  background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 125, 104, 0.3);
}

.newsletter-form button:hover {
  background: linear-gradient(180deg, #FF7D68 0%, #FF6A5B 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(255, 125, 104, 0.4);
}
.input-group {
  position: relative;
  width: 400px;
}

.input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
}

.newsletter-form input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

/* Footer */
.footer {
  padding: 100px 0 30px;
  background-color: var(--white);
}

.footer-content {
  display: flex;
  gap: 100px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
}

.footer-about {
  max-width: 250px;
}

.footer-about p {
  margin: 20px 0;
}

.footer-col h3 {
  font-size: 21px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--secondary-color);
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.app-download {
  display: flex;
  gap: 20px;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 60px;
  }
  
  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }
  
  .hero-image {
    max-width: 40%;
  }
  
  .services-cards, .destinations-cards {
    flex-wrap: wrap;
  }
  
  .booking-content {
    flex-direction: column;
    gap: 50px;
  }
  
  .footer-content {
    flex-wrap: wrap;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
  }
  
  .nav-links {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    position: static;
    max-width: 100%;
    margin-top: 50px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .input-group {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
  }
  
  .footer-col {
    flex: 100%;
  }
}
@media (max-width: 992px) {
  .toggle-menu {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 100px);
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    left: 0;
  }
}