:root {
  --ocean: #0077be;
  --sand: #f4a460;
  --forest: #2c5f2d;
  --sunset: #ff6b6b;
  --white: #ffffff;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
}

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

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  font-size: 15px;
}

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

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

.header {
  background: linear-gradient(135deg, var(--ocean), var(--forest));
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}

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

.logo {
  font-family: 'Righteous', sans-serif;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  padding: 8px 0;
}

.nav a:hover {
  color: var(--sand);
}

.hero-travel {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--forest) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-travel::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 164, 96, 0.3), transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-travel::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.2),
    transparent 70%
  );
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-travel h1 {
  font-family: 'Righteous', sans-serif;
  font-size: 58px;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-travel p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sunset);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  background: #e85555;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.section {
  padding: 60px 0;
}

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

.section-label {
  display: inline-block;
  color: var(--ocean);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section h2 {
  font-family: 'Righteous', sans-serif;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--gray);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--ocean), var(--forest));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.destinations-section {
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.destination-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-content {
  padding: 22px;
}

.destination-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

.destination-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 18px;
}

.destination-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--sunset);
  margin-bottom: 15px;
}

.image-content-section {
  padding: 70px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 119, 190, 0.05),
    rgba(44, 95, 45, 0.05)
  );
}

.image-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-image img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-text h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.content-text p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

.content-highlights {
  margin: 25px 0;
}

.highlight-item {
  margin-bottom: 20px;
}

.highlight-item h4 {
  font-size: 17px;
  color: var(--ocean);
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 14px;
  color: var(--gray);
}

.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--light);
  padding: 28px;
  border-radius: 15px;
  border-left: 4px solid var(--ocean);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 13px;
}

.cta-section {
  background: linear-gradient(135deg, var(--ocean), var(--forest));
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Righteous', sans-serif;
  font-size: 38px;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background: linear-gradient(135deg, var(--ocean), var(--forest));
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: 'Righteous', sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
}

.product-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--sunset);
  margin-bottom: 18px;
}

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--dark);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group span {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--ocean);
  text-decoration: underline;
}

.contact-info-wrapper h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--dark);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 22px;
  color: var(--ocean);
  margin-top: 3px;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--dark);
}

.contact-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.map-section {
  padding: 50px 0;
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--dark);
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.thankyou-section {
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.thankyou-content {
  max-width: 600px;
}

.thankyou-icon {
  font-size: 70px;
  color: var(--forest);
  margin-bottom: 25px;
}

.thankyou-content h1 {
  font-family: 'Righteous', sans-serif;
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 18px;
}

.thankyou-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.error-content {
  max-width: 550px;
}

.error-number {
  font-size: 100px;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark);
}

.error-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
}

.policy-section {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
}

.policy-section h1 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--dark);
}

.policy-section h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--dark);
}

.policy-section h3 {
  font-size: 19px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--dark);
}

.policy-section p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.policy-section ul {
  margin: 15px 0 15px 25px;
  color: var(--gray);
}

.policy-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--sand);
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--sand);
  text-decoration: underline;
  font-size: 14px;
}

.privacy-actions button {
  background: var(--sunset);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.privacy-actions button:hover {
  background: #e85555;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .nav.active {
    max-height: 300px;
  }

  .nav a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-travel h1 {
    font-size: 36px;
  }

  .hero-travel p {
    font-size: 16px;
  }

  .section h2 {
    font-size: 28px;
  }

  .image-content-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .destinations-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 18px;
  }

  .hero-travel h1 {
    font-size: 28px;
  }

  .hero-travel p {
    font-size: 15px;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .feature-card,
  .testimonial-card {
    padding: 22px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 14px;
  }

  .hero-travel h1 {
    font-size: 24px;
  }

  .section h2 {
    font-size: 22px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}
