/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nexa", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 100;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  position: relative;
}

.nav-links a:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}

.nav-links a.active {
  color: #3b82f6 !important;
}

.nav-social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.nav-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.nav-social-link.linkedin:hover {
  background: #0077b5;
}

.nav-social-link.email:hover {
  background: #ea4335;
}

.nav-social-link.whatsapp:hover {
  background: #25d366;
}

.nav-instagram-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 12px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.nav-social-link.instagram-dropdown:hover .nav-instagram-menu {
  opacity: 1;
  visibility: visible;
}

.nav-social-link.instagram-dropdown:hover {
  background: #e4405f !important;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 16px;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.language-menu.active {
  opacity: 1;
  visibility: visible;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.language-option:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateX(4px);
}

.flag {
  font-size: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Section Backgrounds */
.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
}

.background-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  background-size: cover;
  background-position: center;
}

/* Services Page */
.services-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.services-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
  opacity: 0.8;
  filter: brightness(0.7) contrast(1.1);
}

/* Section Headers */
.section-header {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.section-title-container {
  text-align: center;
  margin-bottom: 24px;
}

.section-title-text {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #3b82f6;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  margin: 0;
  position: relative;
}

.section-title-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

/* Services Content Card - Updated to match about us page */
.services-content-card {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.content-section {
  margin-bottom: 32px;
}

.content-section h2 {
  color: #3b82f6;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.content-section p,
.content-section li {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 500;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
}

.content-section ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.content-section ul li:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

/* Remove the old service card styles */
.services-detailed-grid,
.service-detailed-card,
.service-icon {
  display: none;
}

/* CTA Button */
.cta-button {
  margin-top: 32px;
  text-align: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -8;
  opacity: 0.9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 100;
}

.contact-info h3 {
  color: #3b82f6;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.vision-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-text p {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.7;
}

.contact-form-container h3 {
  color: #3b82f6;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-form-container p {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(55, 65, 81, 0.9);
  border: 2px solid rgba(75, 85, 99, 0.5);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.contact-form button {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.contact-form button:disabled {
  background: #6b7280;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

.footer-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
  opacity: 0.6;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 18px;
}

.footer-social a:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}

/* Footer Instagram Dropdown */
.footer-instagram-dropdown {
  position: relative;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-instagram-dropdown:hover {
  color: #e4405f;
}

.footer-instagram-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 12px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.footer-instagram-dropdown:hover .footer-instagram-menu {
  opacity: 1;
  visibility: visible;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
  font-weight: 500;
}

.instagram-link:hover {
  background: rgba(228, 64, 95, 0.2);
  transform: translateX(4px);
}

.instagram-link i {
  font-size: 16px;
  color: #e4405f;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  font-weight: 600;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Main Content Wrapper */
.main-content {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-social-links {
    display: none;
  }

  .language-switcher {
    margin-left: 8px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-detailed-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 16px;
  }

  .nav-instagram-menu,
  .footer-instagram-menu {
    left: 0;
    transform: none;
    min-width: 160px;
  }

  .service-detailed-card {
    padding: 24px;
  }

  .services-content-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .service-detailed-card {
    padding: 20px;
  }

  .services-content-card {
    padding: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 28px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b82f6, #8b5cf6);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2563eb, #7c3aed);
}

/* Scroll Animation Effects */
.service-detailed-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.service-detailed-card.animate {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
}

.service-detailed-card.animate:hover {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-12px);
}
/* Fixed Footer */
.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 0;
}
