@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

:root[data-theme="light"] {
  --text: #2c1810;
  --background: #fff8f0;
  --primary: #e85d04;
  --secondary: #f48c06;
  --accent: #dc2f02;
}

:root[data-theme="dark"] {
  --text: #fff8f0;
  --background: #1c0f0a;
  --primary: #f48c06;
  --secondary: #e85d04;
  --accent: #dc2f02;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%; /* 16px */
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  background: var(--background);
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4.21rem;
} /* 67.36px */
h2 {
  font-size: 3.158rem;
} /* 50.56px */
h3 {
  font-size: 2.369rem;
} /* 37.92px */
h4 {
  font-size: 1.777rem;
} /* 28.48px */
h5 {
  font-size: 1.333rem;
} /* 21.28px */
small {
  font-size: 0.75rem;
} /* 12px */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(4, 3, 22, 0.1);
}

.top-bar {
  background: var(--background-100);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  margin-right: 20px;
  color: var(--text-600);
  text-decoration: none;
}

.social-links a {
  margin-left: 15px;
  color: var(--text-600);
}

.navbar {
  background: var(--background);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  border-bottom: 1px solid rgba(4, 3, 22, 0.1);
}

[data-theme="dark"] .navbar {
  border-bottom: 1px solid rgba(255, 251, 224, 0.1);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 4px;
  background: transparent;
}

.navbar .logo object,
.navbar .logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

[data-theme="dark"] .navbar .logo object,
[data-theme="dark"] .navbar .logo img {
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--background);
}

.nav-menu li {
  position: relative;
  margin: 0 15px;
}

.nav-menu a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a:hover::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background-50);
  box-shadow: 0 2px 5px rgba(var(--text-900), 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  padding: 10px 0;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(var(--background), 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 0;
    transition: 0.3s ease;
    display: none;
  }

  .nav-menu.active {
    left: 0;
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.theme-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.theme-toggle button {
  background: var(--primary-500);
  color: var(--background-50);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.theme-toggle button:hover {
  transform: scale(1.1);
  background: var(--primary-600);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: var(--background);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(232, 93, 4, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(220, 47, 2, 0.15) 0%,
      transparent 50%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero h1 span {
  display: block;
  font-size: 5rem;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(-5deg);
}

.hero-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: 1;
}

.dots-1 {
  top: -50px;
  right: -30px;
}

.dots-2 {
  bottom: -50px;
  left: -30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.hero-stats .stat {
  text-align: left;
}

.hero-stats .stat span {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stats .stat p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.tech-badges {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-badges span {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.tech-badges span:hover {
  transform: translateX(-10px);
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero h1 span {
    font-size: 4rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    transform: none;
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
  }

  .hero-image:hover {
    transform: none;
  }

  .hero-stats {
    justify-content: center;
    text-align: center;
  }

  .hero-stats .stat {
    text-align: center;
  }

  .tech-badges {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
  }
}

/* Next Section */
.next-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--background),
    rgba(144, 208, 202, 0.1)
  );
  overflow: hidden;
}

.tech-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  opacity: 0.05;
  animation: gridMove 20s linear infinite;
}

.next-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.next-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(144, 208, 202, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.next-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.card-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.next-card:hover .card-icon::after {
  transform: translateX(100%);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.card-description {
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--background);
  border-radius: 20px;
  font-size: 0.8rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.next-card.ai-ml .card-icon,
.next-card.security .card-icon,
.next-card.consulting .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

/* About Section */
.about-section {
  position: relative;
  padding: 120px 0;
  background: var(--background);
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: linear-gradient(45deg, var(--primary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--primary) 25%, transparent 25%);
  background-size: 60px 60px;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: 3.5rem;
  margin: 1rem 0 2rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 3rem;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.achievement-card {
  padding: 2rem;
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--accent-rgb), 0.05)
  );
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.achievement-number {
  font-family: "Orbitron", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.core-values {
  margin-top: 4rem;
}

.core-values h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--background);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.value-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.about-visuals {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.stack-img-1,
.stack-img-2 {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.stack-img-1 {
  width: 80%;
  height: 400px;
  object-fit: cover;
  top: 0;
  right: 0;
  z-index: 2;
}

.stack-img-2 {
  width: 70%;
  height: 350px;
  object-fit: cover;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--background);
  z-index: 3;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

.experience-badge .years {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image-stack {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-image-stack {
    height: 400px;
  }

  .stack-img-1,
  .stack-img-2 {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 1rem;
  }

  .experience-badge {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Testimonials Section */
.testimonials {
  position: relative;
  padding: 120px 0;
  background: var(--background);
  overflow: hidden;
}

.testimonial-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.testimonial-card.featured {
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.1),
    rgba(var(--accent-rgb), 0.05)
  );
  transform: scale(1.05);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.15);
  transition: transform 0.3s ease;
}

.client-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.client-avatar:hover {
  transform: scale(1.05);
}

.client-details h4 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.client-details p {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

.rating {
  color: var(--primary);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.project-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--background);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    transform: none;
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 120px 0;
  background: var(--background);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(45deg, var(--primary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--primary) 25%, transparent 25%);
  background-size: 60px 60px;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info {
  padding: 2rem;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 3rem;
}

.contact-cards {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 20px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--background);
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-text p {
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.social-connect {
  margin-top: 3rem;
}

.social-connect h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px) rotate(8deg);
}

.contact-form-wrapper {
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--accent-rgb), 0.08)
  );
  border-radius: 30px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-header p {
  color: var(--text);
  opacity: 0.8;
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 1rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--background);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--background);
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-info {
    padding: 1rem;
  }
}

/* Footer Section */
.footer {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--background);
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.brand-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.newsletter-form .input-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 12px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1rem;
  color: var(--background);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  background: var(--background);
  color: var(--primary);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background: var(--background);
  opacity: 0.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--background);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.contact-info .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-item i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.contact-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  opacity: 0.8;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--background);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--background);
  color: var(--primary);
  transform: translateY(-3px);
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: var(--background);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
}

/* Services Section Enhancements */
.services-grid-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(var(--primary-rgb), 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(var(--accent-rgb), 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: linear-gradient(
    145deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--primary-rgb), 0.03),
    rgba(var(--accent-rgb), 0.03)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--background);
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon i {
  transform: rotateY(-180deg);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card p {
  color: var(--text);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
  opacity: 0.9;
}

.service-features i {
  color: var(--primary);
  font-size: 1.1rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-cta i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-cta i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem;
  }
}
