/* Base Styles */
:root {
  --primary-bg: #121212;
  --secondary-bg: #1E1E1E;
  --accent: #00E5FF;
  --secondary-accent: #FF3D71;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --border-color: #333333;
  --overlay: rgba(0, 0, 0, 0.75);
  --grid-gap: 2rem;
  --section-spacing: 6rem;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--secondary-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 4rem 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

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

.btn-primary:hover {
  background-color: var(--text-primary);
  color: var(--primary-bg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

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

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--secondary-bg);
  transition: right var(--transition-speed) ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.main-nav.active {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  padding: 0;
}

.nav-item {
  margin-bottom: 1.5rem;
}

.nav-link {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin-top: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Features Section */
.features {
  background-color: var(--secondary-bg);
  padding: 4rem 1rem;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.feature-item {
  background-color: var(--primary-bg);
  padding: 2rem;
  border-left: 3px solid var(--accent);
  transition: transform var(--transition-speed) ease;
}

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

.feature-icon {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--text-secondary);
}

/* Information Sections */
.info-section {
  padding: 4rem 1rem;
}

.info-section:nth-child(odd) {
  background-color: var(--secondary-bg);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

.info-desc {
  margin-bottom: 2rem;
}

.info-image {
  overflow: hidden;
}

.info-image img {
  transition: transform 0.5s ease;
}

.info-image:hover img {
  transform: scale(1.05);
}

/* Timeline Section */
.timeline {
  padding: 4rem 1rem;
  background-color: var(--secondary-bg);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
  display: none;
}

.timeline-item {
  padding: 2rem;
  background-color: var(--primary-bg);
  border-left: 3px solid var(--accent);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-date {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content h3 {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 4rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.contact-info {
  background-color: var(--secondary-bg);
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 1rem;
  min-width: 24px;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--secondary-bg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition-speed) ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--primary-bg);
  padding: 3rem 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: var(--text-secondary);
  transition: color var(--transition-speed) ease;
}

.footer-link a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 1.25rem;
  margin-right: 0.75rem;
  min-width: 20px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-bg);
  padding: 1rem;
  z-index: 9999;
  border-top: 1px solid var(--border-color);
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings {
  margin-top: 0.5rem;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.cookie-modal-content {
  background-color: var(--secondary-bg);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-title {
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  margin: 0;
  font-size: 1.25rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: var(--transition-speed);
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-primary);
  transition: var(--transition-speed);
}

input:checked + .cookie-slider {
  background-color: var(--accent);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-modal-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Thanks Page */
.thanks-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  padding: 2rem;
  margin:  0 auto;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-text {
  margin-bottom: 2rem;
}

/* Policy Pages */
.policy-section {
  padding: 8rem 1rem 4rem;
}

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

.policy-date {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.policy-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.policy-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section p {
  margin-bottom: 1.5rem;
}

.policy-section ul, 
.policy-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Media Queries */
@media (min-width: 576px) {
  .hero-cta {
    flex-direction: row;
  }
  
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .cookie-text {
    margin-bottom: 0;
    flex: 1;
    margin-right: 1rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  section {
    padding: 6rem 2rem;
  }
  
  .header-container {
    padding: 1.5rem 2rem;
  }
  
  .feature-grid,
  .info-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-container::after {
    display: block;
  }
  
  .timeline-item {
    width: calc(50% - 2rem);
    margin-left: auto;
    border-left: none;
  }
  
  .timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    border-right: 3px solid var(--accent);
    border-left: none;
  }
  
  .timeline-item:nth-child(even) {
    border-left: 3px solid var(--accent);
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .timeline-item:nth-child(odd)::before {
    right: -12px;
  }
  
  .timeline-item:nth-child(even)::before {
    left: -12px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
  
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  
  .nav-close {
    display: none;
  }
  
  .nav-list {
    display: flex;
    align-items: center;
  }
  
  .nav-item {
    margin-bottom: 0;
    margin-left: 2rem;
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  .info-section:nth-child(odd) .info-grid {
    direction: rtl;
  }
  
  .info-section:nth-child(odd) .info-content {
    direction: ltr;
  }
  
  .info-section:nth-child(odd) .info-title::after {
    left: 0;
  }
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

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

/* Utility classes */
.text-accent {
  color: var(--accent);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.text-center {
  text-align: center !important;
}

/* IntlTelInput styles overrides */
.iti {
  width: 100%;
}

.iti__flag-container {
  display: flex;
  align-items: center;
}

.iti__selected-flag {
  background-color: var(--primary-bg) !important;
  border-right: 1px solid var(--border-color);
}

.iti__country-list {
  background-color: var(--secondary-bg) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}

.iti__country {
  padding: 8px 10px !important;
}

.iti__country:hover {
  background-color: var(--primary-bg) !important;
}