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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.5;
  color: #333;
  background: #fff;
}

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

.header-unique {
  background: #1a202c;
  padding: 12px 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

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

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

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

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.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="%23f59e0b" opacity="0.3"/></svg>');
  opacity: 0.1;
}

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

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.9;
  color: #e2e8f0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #f59e0b;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: #cbd5e0;
  margin-top: 4px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: #2d3748;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s;
  border: 1px solid #4a5568;
}

.btn-secondary:hover {
  background: #1a202c;
  border-color: #f59e0b;
}

section {
  padding: 40px 0;
}

h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #2d3748;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2d3748;
}

p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #4a5568;
}

.services-intro {
  background: #f7fafc;
}

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

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border-top: 3px solid #f59e0b;
}

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

.why-choose {
  background: #fff;
}

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

.feature-item {
  padding: 20px;
  border-left: 3px solid #f59e0b;
  background: #f7fafc;
}

.how-it-works {
  background: #f7fafc;
}

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

.step {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.destinations {
  background: #fff;
}

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

.dest-card {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #4a5568;
}

.dest-card h3 {
  color: #f59e0b;
}

.dest-card p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials {
  background: #f7fafc;
}

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

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: #f59e0b;
  font-size: 13px;
}

.cta-section {
  background: #f7fafc;
  color: #2d3748;
  text-align: center;
  padding: 60px 0;
  border-top: 2px solid #e2e8f0;
}

.cta-section h2 {
  color: #2d3748;
  margin-bottom: 12px;
}

.cta-section p {
  color: #4a5568;
  margin-bottom: 24px;
  font-size: 16px;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f59e0b;
}

.page-hero {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

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

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.service-details {
  background: #fff;
}

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

.detail-card {
  padding: 20px;
  background: #f7fafc;
  border-radius: 8px;
}

.products-section {
  background: #f7fafc;
}

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

.product-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

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

.product-card.featured {
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #f59e0b;
  margin: 16px 0;
}

.benefits {
  background: #fff;
}

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

.benefit-item {
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.concierge-features {
  background: #f7fafc;
}

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

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.process-section {
  background: #fff;
}

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

.process-step {
  padding: 20px;
  background: #f7fafc;
  border-radius: 8px;
  border-top: 3px solid #f59e0b;
}

.contact-section {
  background: #fff;
}

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

.contact-info {
}

.info-block {
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-form-wrapper {
  background: #f7fafc;
  padding: 24px;
  border-radius: 8px;
}

.contact-form {
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #2d3748;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f59e0b;
}

.checkbox-group {
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
}

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

.map-section {
  background: #f7fafc;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

footer {
  background: #2d3748;
  color: #fff;
  padding: 40px 0 20px;
}

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

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col p {
  font-size: 13px;
  color: #cbd5e0;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: #cbd5e0;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #cbd5e0;
}

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

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: #fff;
  padding: 16px;
  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;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

.btn-accept {
  background: #f59e0b;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-accept:hover {
  background: #d97706;
}

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

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

.update-date {
  font-size: 13px;
  color: #718096;
  margin-bottom: 24px;
}

.policy-content h2 {
  margin-top: 30px;
  font-size: 22px;
}

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

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  text-align: center;
  padding: 20px;
}

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

.thankyou-content h1,
.error-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #f59e0b;
}

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

.thankyou-content h2,
.error-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff;
}

.thankyou-content p,
.error-content p {
  font-size: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a202c;
    flex-direction: column;
    padding: 15px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

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

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

  .hero-stats {
    gap: 25px;
  }

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

  h2 {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

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

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

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

  .hero {
    padding: 50px 0;
  }

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

  .hero-stats {
    gap: 20px;
  }

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

  .stat-label {
    font-size: 12px;
  }

  section {
    padding: 30px 0;
  }

  h2 {
    font-size: 20px;
  }

  .services-grid,
  .features-list,
  .steps-grid,
  .dest-grid,
  .testimonial-grid,
  .detail-grid,
  .products-grid,
  .benefits-list,
  .features-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

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

  .logo {
    font-size: 14px;
  }

  .hero {
    padding: 40px 0;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

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

  .stat-label {
    font-size: 11px;
  }

  h2 {
    font-size: 18px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 12px;
    padding: 8px 16px;
  }

  .cta-box {
    padding: 25px 15px;
  }

  .service-card,
  .product-card,
  .feature-box {
    padding: 18px;
  }
}
