/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #000000;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  border-bottom: 1px solid #334155;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.logo-img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
}

.logo-text {
  font-family: "Mokoto", "Orbitron", "Exo", "Rajdhani", "Arial Black", "Impact", sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

/* Navigation Desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0ea5e9;
}

/* CTA Desktop */
.cta-desktop {
  display: none;
}

@media (min-width: 768px) {
  .cta-desktop {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-mobile {
  display: none;
  border-top: 1px solid #334155;
  padding: 1rem 0;
}

.nav-mobile.active {
  display: block;
}

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

.nav-link-mobile {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav-link-mobile:hover {
  color: #0ea5e9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #0ea5e9;
  color: white;
}

.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #0ea5e9;
}

.btn-hero {
  background: #0ea5e9;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-hero:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.btn-mobile {
  width: 100%;
  margin-top: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-form {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8), rgba(30, 64, 175, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.text-accent {
  color: #0ea5e9;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: #1e293b;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: #334155;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid #475569;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: #0ea5e9;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  background: #1e40af;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #60a5fa;
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #000000;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #334155;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid #475569;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: #0ea5e9;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: #1e40af;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #60a5fa;
  font-size: 1.25rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e40af, #1d4ed8, #0ea5e9);
}

.final-cta-content {
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 3.5rem;
  }
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: #dbeafe;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .final-cta-subtitle {
    font-size: 1.5rem;
  }
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .final-cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
}

.footer-logo-text {
  font-family: "Mokoto", "Orbitron", "Exo", "Rajdhani", "Arial Black", "Impact", sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 24rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.contact-item i {
  color: #0ea5e9;
  width: 1rem;
}

.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #0ea5e9;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1e40af, #1d4ed8, #0ea5e9);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}

.page-subtitle {
  font-size: 1.25rem;
  color: #dbeafe;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-subtitle {
    font-size: 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}
