:root {
  --primary-color: #EE6300;
  --primary-gradient: linear-gradient(47deg, rgba(255, 161, 0, 1) 0%, rgba(238, 99, 0, 1) 100%);
  --secondary-color: #FFA100;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --font-primary: 'winkysans', sans-serif;
  --font-secondary: 'ptsans', sans-serif;
}

@font-face {
  font-family: "winkysans";
  src: url("./assets/fonts/WinkySans.ttf") format("truetype");
}

@font-face {
  font-family: "ptsans";
  src: url("./assets/fonts/PTSans-Regular.ttf") format("truetype");
}

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

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
  font-family: var(--font-primary);
}

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

/* Header */
header {
  padding: 20px 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px;
  transition: all 0.3s ease;
}

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

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

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

.logo {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  transition: color 0.3s;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(238, 99, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 99, 0, 0.5);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 80vh;
  background: radial-gradient(circle at top right, rgba(255, 161, 0, 0.1), transparent 40%);
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.hero-image img {
  max-width: 100%;
  max-height: 600px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  border-radius: 20px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.feature-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
}

.benefits-content {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.benefit-list {
  list-style: none;
  margin-top: 30px;
}

.benefit-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
}

.benefit-list li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.pricing-container {
  position: relative;
  margin-top: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  filter: grayscale(1) blur(2px) opacity(0.4);
  pointer-events: none;
  user-select: none;
}

.beta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.beta-box {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 600px;
  border: 4px solid var(--primary-color);
  animation: float 4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.beta-badge-label {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 10px rgba(238, 99, 0, 0.3);
}

.beta-box h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.1;
  font-weight: 800;
}

.beta-box p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #555;
  max-width: 480px;
  line-height: 1.5;
}

.beta-box .btn {
  font-size: 1.1rem;
  padding: 15px 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.popular::before {
  content: "Popular";
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-gradient);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-family: var(--font-primary);
}

.plan-name {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  margin-bottom: 15px;
  color: #555;
}

.plan-features li strong {
  color: var(--primary-color);
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-links h4 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #888;
  font-size: 0.9rem;
}

/* Tour Page Styles */
.page-header {
  background: var(--light-bg);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.tour-section {
  padding: 80px 0;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tour-section.reverse {
  background-color: var(--light-bg);
}

.tour-section.reverse .tour-grid {
  direction: rtl;
  /* Simple way to reverse order visually */
}

.tour-section.reverse .tour-grid>* {
  direction: ltr;
  /* Reset content direction */
}

.step-badge {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.tour-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tour-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.tour-content p {
  margin-bottom: 20px;
  color: #666;
  font-size: 1.1rem;
}

.tour-image img {
  max-width: 100%;
  border-radius: 20px;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: ratdial-gradient(circle at center, rgba(255, 161, 0, 0.1), transparent 70%);
}

.cta-section h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 40px;
  color: var(--primary-color);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 30px;
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .burger-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    right: 0px;
    height: 100vh;
    top: 90px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 50px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    transform: translateX(0%);
  }

  .nav-links li {
    opacity: 0;
    margin: 20px 0;
  }

  .nav-links.active li {
    opacity: 1;
    transition: opacity 0.5s ease 0.2s;
  }

  .pricing-card.popular {
    transform: none;
  }

  .beta-box {
    padding: 30px 20px;
    margin: 20px;
  }

  .beta-box h3 {
    font-size: 1.6rem;
  }

  .beta-box p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* Tour Page Mobile */
  .tour-grid,
  .tour-section.reverse .tour-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tour-section.reverse .tour-grid {
    direction: ltr;
    /* Reset direction */
  }

  .tour-image {
    order: -1;
    /* Image first on mobile usually looks better, or keep it last */
    margin-bottom: 30px;
  }
}