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

:root {
  --primary: #0f766e;
  --secondary: #14b8a6;
  --accent: #f59e0b;
  --dark: #0f172a;
  --light: #f1f5f9;
  --white: #ffffff;
  --gray: #64748b;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  font-size: 14px;
}

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

header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

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

nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.hero p {
  font-size: 17px;
  color: var(--white);
  opacity: 0.95;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--white);
  transition: all 0.3s;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--white);
  opacity: 0.9;
}

.section-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-header p {
  font-size: 15px;
  color: var(--gray);
}

section {
  padding: 60px 0;
}

h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--dark);
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

p {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.features {
  background: var(--white);
}

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

.feature-item {
  background: var(--light);
  padding: 28px 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.showcase {
  background: var(--light);
}

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

.showcase-list {
  list-style: none;
  margin: 20px 0;
}

.showcase-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray);
  font-size: 14px;
}

.showcase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.destination-card {
  background: var(--light);
  padding: 28px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s;
}

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

.destination-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.destination-meta {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--gray);
}

.btn-text {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

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

.how-it-works {
  background: var(--light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

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

.testimonial-rating {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-author {
  margin-top: 16px;
}

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

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

.trust {
  background: var(--light);
}

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

.trust-item {
  text-align: center;
}

.trust-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter p {
  color: var(--white);
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  min-width: 280px;
}

.about {
  background: var(--white);
}

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 20px;
}

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

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-section p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.thankyou-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.thankyou-content {
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.thankyou-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.thankyou-content h1 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
}

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

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-actions .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.thankyou-actions .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom p {
  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: 16px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  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;
}

.privacy-content p {
  margin: 0;
  font-size: 13px;
  color: var(--white);
}

.privacy-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.privacy-buttons a {
  color: var(--white);
  text-decoration: underline;
  font-size: 13px;
}

.privacy-buttons button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

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

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

.page-hero p {
  font-size: 16px;
  color: var(--white);
  opacity: 0.95;
}

.planner-intro,
.trips-intro {
  text-align: center;
}

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

.planner-card {
  background: var(--light);
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.planner-card:hover {
  transform: translateY(-4px);
}

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

.timeline-item {
  background: var(--light);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.timeline-number {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 14px;
}

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

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

.product-card:hover {
  transform: translateY(-6px);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-content {
  padding: 24px;
}

.product-features {
  list-style: none;
  margin: 16px 0;
}

.product-features li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--gray);
}

.product-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid var(--light);
}

.duration {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.price {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}

.product-card .btn {
  width: 100%;
  text-align: center;
}

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

.benefit-item {
  background: var(--light);
  padding: 28px;
  border-radius: 12px;
  text-align: center;
}

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

.info-items {
  margin-top: 28px;
}

.info-item {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 32px;
  border-radius: 12px;
}

.form-description {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
}

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

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

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

.checkbox-group a {
  color: var(--primary);
}

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

.map-wrapper {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
}

.thankyou-page,
.error-page {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-container,
.error-container {
  text-align: center;
  color: var(--white);
  padding: 40px;
  max-width: 600px;
}

.thankyou-content h1,
.error-content h1 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--white);
}

.error-content h1 {
  font-size: 80px;
  font-weight: 800;
}

.error-content h2 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.thankyou-content p,
.error-content p {
  font-size: 16px;
  margin-bottom: 28px;
  color: var(--white);
  opacity: 0.95;
  line-height: 1.7;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-page {
  padding: 50px 0;
}

.policy-page h1 {
  font-size: 34px;
  margin-bottom: 10px;
  text-align: center;
}

.update-date {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 14px;
  text-align: left;
}

.policy-content h3 {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.policy-content li {
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 0;
    transition: left 0.3s;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    margin-bottom: 20px;
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    padding: 50px 0 40px;
  }

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

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

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

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

  .showcase-content,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
    min-width: auto;
  }

  section {
    padding: 45px 0;
  }

  .thankyou-content h1 {
    font-size: 32px;
  }

  .error-content h1 {
    font-size: 64px;
  }

  .error-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .logo {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

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

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  .btn,
  .btn-outline {
    padding: 10px 22px;
    font-size: 13px;
  }

  .features-grid,
  .destinations-grid,
  .steps,
  .testimonials-grid,
  .trust-grid,
  .planner-grid,
  .timeline,
  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-content h2 {
    font-size: 20px;
  }

  .policy-content h3 {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  section {
    padding: 35px 0;
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  .btn,
  .btn-outline {
    padding: 9px 18px;
    font-size: 12px;
  }

  .stat-number {
    font-size: 22px;
  }
}
