
/* Reset and Base Styles */
:root {
  --primary: #DF6951;
  --secondary: #181E4B;
  --accent: #FF7A50;
  --text: #5E6282;
  --light-bg: #FFF1DA;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --blue-hue: #59B1E6;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Volkhov', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%; 
}

h1, h2, h3, h4 {
  font-family: 'Volkhov', serif;
  color: var(--secondary);
}

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

section {
  padding: 80px 0;
  position: relative;
}

/* Header Styles */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #fff 63.4%, var(--light-bg) 63.4%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 30px;
  width: auto;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.07);
}

/* Navigation */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mobile-auth {
  display: none;
}

.login {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
}

.signup {
  text-decoration: none;
  color: var(--white);
  background-color: var(--accent);
  padding: 10px 20px;
  border-radius: 5px;
  transition: var(--transition);
}

.signup:hover {
  background-color: #E56A42;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

/* Mobile menu button - hidden by default */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
  z-index: 10;
}

/* Hero Section */
.hero {
  padding: 100px 0 30px; 
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 120%;
  background-color: var(--light-bg);
  top: -20%;
  right: -20%;
  border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
  transform: rotate(-5deg);
  z-index: -1;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

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

.hero-subtitle {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins';
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight-enjoy {
  position: relative;
  display: inline-block;
}

.highlight-enjoy::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 12px;
  background-color: var(--primary);
  opacity: 1;
  border-radius: 6px;
  z-index: -1;
}

.hero-text {
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
  font-weight: 550;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: orange;
  color: var(--white);
  box-shadow: 0 15px 30px rgba(223, 105, 81, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(223, 105, 81, 0.4);
}

.btn-play {
  color: var(--text);
}

.play-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.play-icon i {
  color: var(--white);
  font-size: 18px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

/* Services Section */
.services {
  background-color: var(--white);
  text-align: center;
  position: relative;
  overflow: visible; 
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3 {
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 267px);
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: 36px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  width: 267px;
  height: 314px;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-card.highlighted {
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(223, 105, 81, 0.1);
  position: relative;
  overflow: visible;
}

.service-card.highlighted::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50% 0 50% 50%;
  z-index: -1;
}

.service-card.highlighted:hover::before {
  z-index: -1;
}


.service-icon {
  width: 92px;
  height: 78px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.service-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-icon.mic i {
  color: #c0c0c0;
  text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-icon.settings i {
  color: #888;
  font-size: 42px;
}

.service-title {
  font-family: 'Open Sans';
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-description {
  font-family: 'Poppins';
  font-size: 14px;
  color: var(--text);
}

/* Destinations Section */
.destinations {
  text-align: center;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.destination-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

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

.destination-image {
  width: 100%;
  height: 400px;
  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.05);
}

.destination-info {
  padding: 25px;
}

.destination-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.destination-name {
  font-size: 18px;
  font-weight: 500;
}

.destination-price {
  font-weight: 500;
}

.destination-duration {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Booking Section */
.booking-section {
  padding: 80px 0 40px;
  position: relative;
}

.booking-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.booking-content {
  flex: 1;
}

.booking-subtitle {
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 550;
  color: #5E6282;
}

.booking-title {
  font-family: 'Volkhov';
  font-size: 45px;
  font-weight: 600;
  color: #14183E;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 20px;
}

.step-icon.destination {
  background-color: #F0BB1F;
}

.step-icon.payment {
  background-color: #F15A2B;
}

.step-icon.airport {
  background-color: #006380;
}

.step-content h4 {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary);
}

.step-content p {
  font-family: 'Poppins';
  font-size: 16px;
  color: var(--text);
}

.booking-image-container {
  flex: 1;
  position: relative;
}

.main-trip-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.1),
    15px -15px 50px -15px rgba(89, 177, 230, 0.3),
    30px -30px 60px -30px rgba(89, 177, 230, 0.2);
}

.main-trip-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(89, 177, 230, 0.4) 0%, rgba(89, 177, 230, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.trip-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.trip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-details {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.trip-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.trip-dates {
  font-size: 14px;
  color: #84829A;
  margin-bottom: 15px;
}

.trip-stats {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.trip-stat i {
  color: #84829A;
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.trip-people {
  display: flex;
  align-items: center;
}

.avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--white);
  margin-right: -10px;
}

.avatar:nth-child(2) {
  background-color: #F15A2B;
}

.people-count {
  font-size: 14px;
  color: #84829A;
  margin-left: 15px;
}

.trip-heart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.small-trip-card {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 250px;
  background: var(--white);
  border-radius: 16px;
  padding: 15px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 15px;
  z-index: 2;
}

.small-trip-photo {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.small-trip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-trip-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.small-trip-status {
  font-size: 12px;
  color: #84829A;
  margin-bottom: 5px;
}

.small-progress-bar {
  height: 4px;
  background-color: #F5F5F5;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 5px;
}

.small-progress-fill {
  height: 100%;
  background-color: #8A79DF;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 64px;
  }
  
  .subscription-container {
    width: 90%;
    height: auto;
    padding: 40px 20px;
  }
}

@media (max-width: 992px) {
  .header {
    background: linear-gradient(to right, #fff 60%, var(--light-bg) 60%);
  }

  body.no-scroll {  
    overflow-y: hidden;
  }
  
  .header .container {
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Mobile menu button */
  .menu-toggle {
    display: block;
    order: 2; 
    margin-left: 0;
    margin-right: 15px;
  }
  
  .logo {
    order: 1; 
    margin-right: auto;
    margin-left: 20px;
  }
  
  /* Mobile menu styles */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 80px 30px 30px;
    transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 5;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li:not(.mobile-auth) {
    width: 100%;
  }
  
  .nav-links a {
    font-size: 18px;
    padding: 10px 0; 
    display: block;
  }
  
  .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px; 
    width: 100%;
    padding-left: 0; 
  }
  
  .mobile-auth .login {
    display: block; 
    text-align: left;
    padding: 10px 0; 
    color: var(--secondary);
    font-weight: 600;
  }
  
  .mobile-auth .signup {
    display: block;
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
  }
  
  .auth-links {
    display: none;
  }
  
  .hero {
    margin-top: 70px;
    padding: 70px 0 30px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    width: 95%;
    margin-top: -50px;
    max-height: none; 
  }
  
  .hero-image img {
    max-height: 450px; 
    object-fit: contain;
  }
  
  section {
    padding: 60px 0;
  }
   .booking-section { 
    padding: 60px 0 30px; 
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; 
  }

  .service-card { 
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .booking-container {
    flex-direction: column;
    gap: 50px; 
  }
  
  .small-trip-card {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 30px;
    width: 100%;
    max-width: 350px; 
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonials-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .testimonial-card {
    min-width: 100%; 
  }
  
  .subscription-container {
    border-top-left-radius: 5rem;
    padding: 40px 20px;
    height: auto;
  }
  
  .title {
    font-size: 28px;
    margin: 1.5rem 0 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-navigation {
    justify-content: center;
    margin: 20px auto 0;
  }
  
  .form-container {
    flex-direction: column;
    max-width: 100%;
  }
  
  .subscribe-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    padding: 15px;
  }
  
  /* Reduce underline size on mobile */
  .highlight-enjoy::after {
    height: 8px;
    bottom: 3px;
  }
}

@media (max-width: 768px) {
  .header {
    background: linear-gradient(to right, #fff 62%, var(--light-bg) 62%);
  }
  .hero {
    margin-top: 60px;
    padding-top: 60px;
  }
  .hero-image {
    width: 100%;
  }
  .hero-image img {
    max-height: 480px;
  }

  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 48px;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-text {
    font-size: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px; 
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  
  .highlight-enjoy::after {
    height: 8px;
    bottom: 2px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  /* .section-header,
  .destinations-grid,
  .services-grid,
  .testimonials-container,
  .partners-grid,
  .footer-container {

  } */


  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    height: auto;
    padding: 25px 20px;
  }
  
  .service-card.highlighted::before {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -10px;
  }
  
  .booking-container {
    flex-direction: column;
    align-items: center;
  }
  
  .small-trip-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 30px auto 0;
    width: 100%;
    max-width: 300px;
  }
  
  .subscription-container {
    width: 95%;
    margin: 40px auto;
    padding: 30px 15px;
    border-top-left-radius: 3rem;
  }
  
  .title {
    font-size: 24px;
    margin: 1rem 0;
  }
  
  .form-container {
    flex-direction: column;
  }
  
  .subscribe-btn {
    margin: 10px 0 0;
    width: 100%;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-section {
    padding: 60px 0 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-left {
    align-items: center;
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo h2 {
    font-size: 36px;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-column h3 {
    text-align: center;
  }

  .footer-column ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px; 
  }
  
  .footer-column li {
    margin-bottom: 0;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .testimonials {
    padding-top: 40px;
  }
  
  .testimonials-container {
    flex-direction: column;
  }
  
  .testimonial-card {
    min-width: 100%;
    padding: 25px;
  }
  
  .testimonial-nav {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .nav-arrow i {
    transform: rotate(90deg);
  }
  
  .testimonial-navigation {
    justify-content: center;
  }
  
  .main-trip-card::before { 
    display: none;
  }
}

@media (max-width: 576px) {
  .header {
    height: 70px;
  }
  
  .logo img {
    height: 20px;
  }
  
  .signup {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px; 
    justify-content: center;
    padding: 12px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .form-container {
    flex-direction: column;
  }
  
  .subscribe-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-nav {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .subscription-container {
    border-top-left-radius: 3rem;
    padding: 30px 15px;
  }
  
  .title {
    font-size: 20px; 
    margin: 1rem 0 1.5rem; 
  }
  
  .email-input {
    padding: 15px 15px 15px 40px;
  }
  
  .input-wrapper::before {
    left: 15px;
    font-size: 18px;
  }
  
  /* Further reduce section padding on small devices */
  section {
    padding: 40px 0;
  }
  .booking-section {  
    padding: 40px 0 20px; 
  }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
