/* Landing Page Styles */

* {
  box-sizing: border-box;
}

/* Fonts */
@font-face {
  font-family: 'WDXL Lubrifont SC';
  src: url("/fonts/WDXLLubrifontSC-Regular.woff2") format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("/fonts/Oswald-Variable.woff2") format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gemunu Libre';
  src: url("/fonts/GemunuLibre-Variable.woff2") format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* Navbar */
.landing-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.landing-navbar-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.landing-navbar-brand:hover .landing-navbar-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(0, 255, 204, 0.8));
}

.landing-navbar-title {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
  margin: 0;
  letter-spacing: 0.1em;
}

.landing-navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.landing-navbar-item {
  background: none;
  border: none;
  color: #00ffcc;
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.landing-navbar-item:hover {
  color: #00cc99;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.landing-navbar-button-login {
  border: 1px solid rgba(0, 255, 204, 0.5);
  border-radius: 5px;
}

.landing-navbar-button-login:hover {
  background: rgba(0, 255, 204, 0.1);
  border-color: #00ffcc;
}

.landing-navbar-button-register {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
  border-radius: 5px;
}

.landing-navbar-button-register:hover {
  background: rgba(0, 255, 204, 0.3);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* Main container */
.landing-main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-top: 70px;
}

/* World Map Section */
.world-map-section {
  width: 100%;
  height: 80vh;
  max-height: 80vh;
  position: relative;
  background: #0e484a;
  overflow: hidden;
}

/* Features Section */
.features-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.95));
  z-index: 50;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-title {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 3rem;
  font-weight: normal;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px #00ffcc00, 0 0 20px #00ffcc00, 0 0 30px #00ffcc;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  box-shadow: 0 0 10px #00ffcc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.feature-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

.feature-title {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #dfdfdf;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.feature-description {
  font-family: 'Oswald', 'Monaco', monospace;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  opacity: 0.9;
}

/* Service Details Section */
.service-details-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0.95));
  z-index: 50;
}

.service-details-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-details-title {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 3rem;
  font-weight: normal;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px #00ffcc00, 0 0 20px #00ffcc00, 0 0 30px #00ffcc;
  position: relative;
}

.service-details-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  box-shadow: 0 0 10px #00ffcc;
}

.service-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-item {
  display: flex;
  gap: 2rem;
  background: rgba(14, 72, 74, 0.3);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.service-detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-detail-item:hover::before {
  left: 100%;
}

.service-detail-item:hover {
  border-color: rgba(0, 255, 204, 0.5);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2), inset 0 0 20px rgba(0, 255, 204, 0.05);
  transform: translateX(5px);
}

.service-detail-number {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #00ffcc;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 204, 0.1);
  border: 2px solid #00ffcc;
  border-radius: 50%;
  text-shadow: 0 0 10px #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  flex-shrink: 0;
}

.service-detail-content {
  flex: 1;
}

.service-detail-title {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #00ffcc;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
  letter-spacing: 0.05em;
}

.service-detail-description {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

/* About Section */
.about-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), #000000);
  z-index: 50;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-title {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 3rem;
  font-weight: normal;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px #00ffcc00, 0 0 20px #00ffcc00, 0 0 30px #00ffcc;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  box-shadow: 0 0 10px #00ffcc;
}

.about-content {
  margin-top: 3rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-paragraph {
  font-family: 'WDXL Lubrifont SC', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.about-paragraph:nth-child(1) { animation-delay: 0.1s; }
.about-paragraph:nth-child(2) { animation-delay: 0.2s; }
.about-paragraph:nth-child(3) { animation-delay: 0.3s; }
.about-paragraph:nth-child(4) { animation-delay: 0.4s; }
.about-paragraph:nth-child(5) { animation-delay: 0.5s; }

.about-paragraph strong {
  color: #00ffcc;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.about-highlight {
  font-size: 1.2rem;
  color: #00ffcc;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(0, 255, 204, 0.05);
  border-left: 3px solid #00ffcc;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

/* Animation delays for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

/* Animation delays for service details */
.service-detail-item:nth-child(1) { animation-delay: 0.1s; }
.service-detail-item:nth-child(2) { animation-delay: 0.25s; }
.service-detail-item:nth-child(3) { animation-delay: 0.4s; }
.service-detail-item:nth-child(4) { animation-delay: 0.55s; }
.service-detail-item:nth-child(5) { animation-delay: 0.7s; }

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .landing-navbar {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .landing-navbar-title {
    font-size: 1.2rem;
  }

  .landing-navbar-menu {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .landing-navbar-item {
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
  }

  .landing-main {
    padding-top: 60px;
  }

  .hide-mobile {
    display: none !important;
  }

  .world-map-section {
    height: 50vh;
    max-height: 50vh;
  }

  .features-section,
  .service-details-section,
  .about-section {
    padding: 3rem 1rem;
  }

  .features-title,
  .service-details-title,
  .about-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
  }

  .service-detail-item {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .service-detail-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .service-detail-title {
    font-size: 1.3rem;
  }

  .service-detail-description {
    font-size: 1rem;
    text-align: left;
  }

  .about-paragraph {
    font-size: 1rem;
    text-align: left;
  }

  .about-highlight {
    font-size: 1.1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .features-title,
  .service-details-title,
  .about-title {
    font-size: 1.5rem;
  }

  .service-detail-number {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .service-detail-title {
    font-size: 1.1rem;
  }

  .service-detail-description {
    font-size: 0.95rem;
  }
}
