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

:root {
  --primary-color: #1a4d7a;
  --secondary-color: #2980b9;
  --accent-color: #e67e22;
  --highlight-color: #16a085;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #ecf0f1;
  --bg-white: #ffffff;
  --border-color: #bdc3c7;
  --success-color: #27ae60;
  --error-color: #e74c3c;
}

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

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

img {
  object-fit: cover;
}

header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 12px 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-white);
  margin: 4px 0;
  transition: 0.3s;
}

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

.nav-menu li a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--highlight-color) 100%
  );
  overflow: hidden;
  background-image: url(../travel_snapshots/traveling.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--bg-white);
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--bg-white);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
  background: #d35400;
}

section {
  padding: 40px 0;
}

section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

section p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.intro {
  background: var(--bg-light);
}

.intro img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.features-grid,
.destinations-grid,
.services-list,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.feature-item,
.destination-card,
.service-item,
.testimonial {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.feature-item:hover,
.destination-card:hover,
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-item h3,
.destination-card h3,
.service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-item p,
.destination-card p,
.service-item p {
  font-size: 13px;
  color: var(--text-light);
}

.link-button {
  display: inline-block;
  margin-top: 12px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: color 0.3s;
}

.link-button:hover {
  color: var(--primary-color);
}

.why-choose {
  background: var(--bg-light);
}

.why-choose img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial {
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.testimonial span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

.action-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.action-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.action-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.action-content p {
  font-size: 15px;
  margin-bottom: 25px;
  color: var(--text-light);
}

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

.page-hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

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

.destinations-showcase,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.destination-detail {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.destination-detail h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.destination-detail ul {
  margin-top: 15px;
  padding-left: 20px;
}

.destination-detail li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 13px;
}

.product-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
  border-color: var(--accent-color);
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.product-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 15px 0;
}

.product-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.product-card li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.product-card li:last-child {
  border-bottom: none;
}

.product-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  margin-top: 15px;
  transition: background 0.3s;
}

.product-button:hover {
  background: var(--primary-color);
}

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

.feature-detail {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
}

.feature-detail h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-detail p {
  font-size: 13px;
  color: var(--text-light);
}

.why-content img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.why-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.why-item p {
  font-size: 13px;
  color: var(--text-light);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.benefit-item {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.benefit-item p {
  font-size: 13px;
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 25px;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.checkbox-group {
  margin-top: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-right: 8px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--secondary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-button {
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.submit-button:hover {
  background: var(--primary-color);
}

.contact-details {
  margin-top: 20px;
}

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

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.map-wrapper {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.thankyou-content,
.error-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.thankyou-icon {
  font-size: 60px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.thankyou-content h1 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.thankyou-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.thankyou-info {
  background: var(--bg-light);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.thankyou-info p {
  font-size: 12px;
  margin-bottom: 5px;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.3s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.error-code {
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.error-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.error-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.error-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

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

.policy-page h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
}

.update-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.policy-section {
  margin-bottom: 35px;
}

.policy-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.policy-section h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.policy-section p {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.policy-section ul {
  margin: 15px 0 15px 20px;
}

.policy-section li {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 35px 0 15px;
  margin-top: 40px;
}

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

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--bg-white);
  font-weight: 600;
}

.footer-section p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

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

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

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

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

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  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 {
  font-size: 12px;
  margin: 0;
  flex: 1;
}

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

.privacy-buttons a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.privacy-buttons button {
  background: var(--accent-color);
  color: var(--bg-white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.privacy-buttons button:hover {
  background: #e67e22;
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    width: 200px;
    padding: 15px;
    border-radius: 0 0 0 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    display: block;
    padding: 10px;
  }

  .hero {
    min-height: 70vh;
    padding: 40px 0;
  }

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

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

  section h2 {
    font-size: 20px;
  }

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

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

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

  .privacy-buttons {
    flex-direction: column;
    width: 100%;
  }

  .privacy-buttons button {
    width: 100%;
  }
}

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

  .logo {
    font-size: 15px;
  }

  .hero {
    min-height: 60vh;
    padding: 30px 0;
  }

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

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

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  section {
    padding: 30px 0;
  }

  section h2 {
    font-size: 18px;
  }

  .features-grid,
  .destinations-grid,
  .services-list,
  .testimonials-grid,
  .destinations-showcase,
  .products-grid,
  .features-list,
  .why-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .thankyou-content,
  .error-content {
    padding: 30px 20px;
  }

  .error-code {
    font-size: 60px;
  }

  .action-content {
    padding: 30px 20px;
  }

  .action-content h2 {
    font-size: 22px;
  }
}

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

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

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

  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }

  section h2 {
    font-size: 16px;
  }

  .feature-item,
  .destination-card,
  .service-item,
  .product-card {
    padding: 15px;
  }
}
