/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #cccccc;
}

.nav-link.nav-cta {
  border: 1px solid #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link.nav-cta:hover {
  background: #ffffff;
  color: #000000;
}

.language-switcher {
  display: flex;
  gap: 0.3rem;
  margin-left: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.2rem;
}

.lang-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #666666;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

.lang-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1);
  font-weight: 600;
}

.lang-link:hover:not(.active) {
  color: #aaaaaa;
  transform: scale(0.95);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding-top: 80px; /* Account for fixed navbar */
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #aaaaaa;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-bottom: 3rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 600;
}

/* Processus Section */
.processus-section {
  background: #0a0a0a;
}

.processus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.processus-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.processus-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.processus-icon {
  flex-shrink: 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.processus-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.processus-content p {
  color: #aaaaaa;
  font-size: 1rem;
  line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
  background: #000000;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.expertise-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.expertise-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.expertise-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.expertise-description {
  color: #cccccc;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.expertise-list {
  list-style: none;
}

.expertise-list li {
  color: #aaaaaa;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.expertise-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* About Section */
.about-section {
  background: #0a0a0a;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 4rem;
  line-height: 1.7;
}

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

.feature-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #333333, #555555);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 2px solid #666666;
}

.feature-item h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-item p {
  color: #aaaaaa;
  font-size: 1rem;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  background: #000000;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.value-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #333333, #555555);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  border: 2px solid #666666;
}

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.value-item p {
  color: #aaaaaa;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background: #0a0a0a;
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.contact-brand {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.contact-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
  margin-bottom: 2rem;
}

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

.footer-logo-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-tagline {
  color: #cccccc;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact p {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
}

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

.footer-contact a:hover {
  color: #aaaaaa;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #666666;
  font-size: 0.9rem;
  margin: 0;
}

/* Jobs Page */
.jobs-page {
  padding-top: 80px; /* Account for fixed navbar */
}

.hero-jobs {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-jobs-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.jobs-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.jobs-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.jobs-description {
  font-size: 1.2rem;
  color: #aaaaaa;
  line-height: 1.7;
}

.jobs-content {
  padding: 6rem 0;
  background: #0a0a0a;
}

.coming-soon {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu .nav-link {
    margin: 1rem 0;
    font-size: 1.2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .language-switcher {
    margin-left: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .processus-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .jobs-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .logo-circle-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .expertise-card,
  .value-item {
    padding: 1.5rem;
  }
}
