:root {
  --primary: #FF6B35; /* Orange indien */
  --secondary: #003366; /* Bleu russe */
  --accent: #C41E3A; /* Rouge russe */
  --turquoise: #40E0D0; /* Turquoise indien */
  --light: #F8F9FA;
  --dark: #212529;
  --gold: #FFD700; /* Or pour accents */
}

.bg-orange {
  background-color: var(--primary) !important; /* Orange indien */
  background: linear-gradient(135deg, var(--primary) 0%, #e05a28 100%) !important;
}


/* Base Styles */
body {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  padding-top: 80px;
  line-height: 1.6;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 2rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.navbar-scrolled {
  background-color: rgba(33, 37, 41, 0.9) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary) !important;
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  margin-right: 10px;
}

.logo-icon {
  font-size: 1.2rem;
  color: var(--secondary);
}

.nav-link {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem !important;
  color: var(--dark);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: calc(100% - 2rem);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 135, 94, 0.7) 0%, rgba(196, 30, 58, 0.7) 100%);
  z-index: -1;
}

/* Couleur orange personnalisÃ©e */
.text-orange {
  color: var(--primary) !important;
}

.btn-orange {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white !important;
}

.btn-orange:hover {
  background-color: #e05a28;
  border-color: #e05a28;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* Services Section */
.service-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.05);
}

.service-card:hover .service-icon {
  background-color: var(--primary) !important;
  color: white !important;
}

/* Destinations Section */
.destination-card {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.destination-inde {
  background-image: url('../img/inde.webp');
}

.destination-russie {
  background-image: url('../img/russie.webp');
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: all 0.5s ease;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: white;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Process Section */
.process-step {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.process-step:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--primary);
}

.process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.whatsapp-float::after {
  content: "Discuter sur WhatsApp";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover::after {
  opacity: 1;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: white;
  padding: 3rem 0;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  color: white;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 600px;
  }
  
  .destination-card {
    height: 350px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
  }
  
  .nav-item {
    margin-bottom: 0.5rem;
  }
  
  .btn-nav {
    margin-top: 0.5rem;
    margin-left: 0 !important;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 72px;
  }
  
  .hero-section {
    height: auto;
    padding: 7rem 0 4rem;
    min-height: auto;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .destination-card {
    height: 300px;
    margin-bottom: 1.5rem;
  }
  
  .process-step:after {
    display: none;
  }
  
  .process-step {
    margin-bottom: 2rem;
    padding-bottom: 0;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .whatsapp-float::after {
    font-size: 0.75rem;
    right: 60px;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .display-3 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  footer .row > div {
    margin-bottom: 1.5rem;
  }
}

/* Progress Steps */
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step-indicator.active .step-number {
  background-color: var(--primary);
  color: white;
}

.step-label {
  color: #6c757d;
  font-size: 0.9rem;
  text-align: center;
}

.step-indicator.active .step-label {
  color: var(--primary);
  font-weight: 500;
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: #e9ecef;
  margin: 0 10px;
  position: relative;
  top: 20px;
}

.step-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--primary);
  transition: width 0.5s ease;
}

.step-indicator.active ~ .step-line::after {
  width: 100%;
}