* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
}

/* NAV */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.logo {
  font-size: 28px;
  font-weight: 800;
}

.logo span {
  color: #ff6a00;
}

nav a {
  margin-left: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/hero-bg.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.9)
  );
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: 96px;
  letter-spacing: 4px;
}

.tagline {
  font-size: 28px;
  margin: 15px 0;
  color: #ff6a00;
}

.subtitle {
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 30px;
}

button {
  padding: 14px 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.primary {
  background: #ff6a00;
  color: #000;
  margin-right: 15px;
}

.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 100px 15%;
  text-align: center;
}

.section.dark {
  background: #111;
}

.section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.section p {
  max-width: 700px;
  margin: auto;
  opacity: 0.85;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.feature {
  padding: 20px 30px;
  border: 1px solid #333;
}

/* CARDS */
.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.card {
  background: #000;
  padding: 30px;
  width: 280px;
  border: 1px solid #333;
}

/* APPLY */
.apply-form {
  margin-top: 40px;
}

.apply-form input {
  display: block;
  margin: 10px auto;
  padding: 12px;
  width: 300px;
}

.apply-form button {
  background: #ff6a00;
  color: #000;
  margin-top: 20px;
}

.countdown-section {
  background: #0b0b0b;
  color: #FF6A00; /* FINAL 40 Orange */
  text-align: center;
  padding: 80px 20px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.countdown-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #FF6A00;
}

#timer {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FF6A00;
}

#timer span {
  display: inline-block;
  min-width: 50px;
}


/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  background: #000;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 56px;
  }

  .tagline {
    font-size: 20px;
  }

  .hero {
    background-position: center top;
  }
}
.seo-content {
  background: #0b0b0b;
  color: #eaeaea;
  padding: 80px 20px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.seo-container {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h1 {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #ffffff;
}

.seo-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #FF6A00; /* gold accent */
}

.seo-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 16px;
}

.seo-content .intro {
  font-size: 18px;
  color: #dddddd;
  border-left: 4px solid #FF6A00;
  padding-left: 16px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .seo-content h1 {
    font-size: 32px;
  }

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

  .seo-content p {
    font-size: 16px;
  }
}
.faq {
  background: #0b0b0b;
  color: #eaeaea;
  padding: 80px 20px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #FF6A00; /* FINAL 40 Orange */
  text-align: center;
}

.faq-item {
  margin-bottom: 24px;
  border-left: 4px solid #FF6A00;
  padding-left: 16px;
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #FF6A00;
  transition: transform 0.3s;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-top: 8px;
  display: none; /* hidden initially */
}

/* Toggle open */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
  }
}
#about {
  background: #0b0b0b;
  color: #eaeaea;
  padding: 80px 20px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

#about h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #FF6A00; /* Orange heading */
}

#about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #cccccc;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background-color: #FF6A00; /* Orange background */
  color: #000000; /* Black text */
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  min-width: 120px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

/* Hover effect */
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,106,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 15px;
  }
}
#about .orka-link {
  color: #FF6A00; /* FINAL 40 Orange */
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

#about .orka-link:hover {
  color: #000000; /* black on hover */
  text-decoration: underline;
}
