:root {
  --primary: #3b9cff;
  --primary-dark: #2563eb;
  --accent-orange: #ff9933;
  --accent-grey: #94a3b8;
  --dark: #0f172a;
  --dark-card: #1e293b;
  --darker: #020617;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--white);
  background: var(--darker);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #0f172a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(59, 156, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.logo {
  font-family: "Audiowide", cursive;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-text {
  display: flex;
}

.logo-az {
  color: var(--primary);
}

.logo-systems {
  color: #c0c5ce;
}

.logo-img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 120px 2rem 4rem;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: "Audiowide", cursive;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-text h1 .gradient-text {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--accent-grey);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-visual {
  flex: 1;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tech-card {
  background: var(--dark-card);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(59, 156, 255, 0.2);
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 150px;
}

.tech-card:hover {
  border-color: var(--primary);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.tech-card h4 {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: var(--dark);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: "Audiowide", cursive;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-header .highlight {
  color: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--accent-grey);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(59, 156, 255, 0.2);
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
}

.service-card:hover {
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.service-card p {
  color: var(--accent-grey);
  line-height: 1.8;
  font-size: 1rem;
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: var(--darker);
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: "Audiowide", cursive;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--accent-grey);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--dark-card);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(59, 156, 255, 0.2);
  flex: 1 1 calc(50% - 1rem);
  min-width: 150px;
}

.stat-card:hover {
  border-color: var(--primary);
}

.stat-number {
  font-family: "Audiowide", cursive;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--accent-grey);
  font-weight: 600;
}

.about-visual {
  flex: 1;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  background: var(--dark-card);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px solid rgba(59, 156, 255, 0.2);
}

.feature-item:hover {
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--accent-grey);
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: var(--dark);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-family: "Audiowide", cursive;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--accent-grey);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--dark-card);
  border-radius: 15px;
  border: 2px solid rgba(59, 156, 255, 0.2);
}

.info-item:hover {
  border-color: var(--primary);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}

.info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--white);
  font-weight: 600;
}

.info-text p {
  font-size: 1rem;
  color: var(--accent-grey);
  margin: 0;
}

.contact-actions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--dark-card);
  color: var(--white);
  border: 2px solid rgba(59, 156, 255, 0.2);
}

.action-btn:hover {
  border-color: var(--primary);
}

.action-btn span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.action-btn.whatsapp span {
  background: #25d366;
}

.action-btn.email span {
  background: var(--primary);
}

.action-btn.call span {
  background: var(--accent-orange);
}

/* Footer */
footer {
  background: var(--darker);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(59, 156, 255, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-family: "Audiowide", cursive;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: var(--dark);
    width: 250px;
    padding: 2rem;
    height: calc(100vh - 80px);
    gap: 1.5rem;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content,
  .about-content,
  .contact-container {
    flex-direction: column;
  }

  .tech-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .service-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .tech-card {
    flex: 1 1 100%;
  }

  .stat-card {
    flex: 1 1 100%;
  }
}
