/* Base styles */
:root {
  --green-primary: #068635;
  --green-secondary: #16a34a;
  --green-accent: #4ade80;
  --green-dark: #15803d;
  --dark-bg: #000000;
  --darker-bg: #050505;
  --card-bg: rgba(10, 15, 25, 0.7);
  --light-gray: #adb5bd;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: white;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Sticky header */
#main-header {
  transition: all 0.3s ease;
  background-color: var(--dark-bg);
}

#main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Sticky coaching button */
.sticky-coaching-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}

.sticky-coaching-btn:hover {
  transform: translateY(-5px);
}

/* Logo */
.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-digital {
  color: var(--green-primary);
}

.text-green {
  color: var(--green-primary);
}

/* Navigation */
.navbar-nav {
  position: relative;
}

.navbar-nav .nav-item {
  position: relative;
  margin: 0 0.5rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.25rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

/* Underline effect for navbar links */
.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  opacity: 0;
}

/* Custom hamburger icon */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-icon {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 0 auto;
}

.hamburger-icon span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  border-radius: 2px;
  left: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

.hamburger-icon span:nth-child(1) {
  top: 0;
}

.hamburger-icon span:nth-child(2) {
  top: 9px;
  width: 75%;
  right: 0;
  left: auto;
}

.hamburger-icon span:nth-child(3) {
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.contact-btn {
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  border-radius: 4px;
  padding: 0.5rem 1rem !important;
  color: white !important;
}

/* Section styles */
.section-title {
  position: relative;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.section-title-no-underline {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
}

.highlight-word {
  position: relative;
  display: inline-block;
}

.highlight-word::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  border-radius: 2px;
}

.bg-darker {
  background-color: var(--darker-bg);
}

/* Hero section */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--green-primary), var(--green-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-light-gray {
  color: var(--light-gray);
}

.lead {
  max-width: 800px;
}

/* Buttons */
.btn-outline-green {
  color: white;
  border: 2px solid var(--green-primary);
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background-color: rgba(34, 197, 94, 0.1);
  color: white;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background: linear-gradient(to right, var(--green-secondary), var(--green-primary));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Services section */
.service-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(34, 197, 94, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(34, 197, 94, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(34, 197, 94, 0.2), 0 0 10px rgba(74, 222, 128, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: transparent;
  background: linear-gradient(to right, var(--green-primary), var(--green-accent));
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(74, 222, 128, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-text {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: bold;
}

/* Pricing cards */
.pricing-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid rgba(34, 197, 94, 0.2);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 197, 94, 0.2);
  border-color: var(--green-primary);
}

.pricing-card.featured {
  border-color: var(--green-primary);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, var(--card-bg) 100%);
}

.pricing-card.featured::before {
  content: "POPULAIRE";
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--green-primary);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--green-primary);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--light-gray);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: bold;
}

.pricing-bonus {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--green-primary);
}

.pricing-bonus h5 {
  color: var(--green-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer-section {
  background-color: var(--darker-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
}

.footer-contact,
.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 0.75rem;
  color: var(--light-gray);
}

.footer-contact li i {
  margin-right: 0.5rem;
  color: var(--green-primary);
}

.footer-links li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: white;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation classes */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
  opacity: 1;
  transform: translate(0);
}

/* Hero text animation */
.hero-text-animated {
  opacity: 0;
  transform: translateY(30px);
}

.hero-text-animated.active {
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-animated.delay-1 {
  animation-delay: 0.3s;
}

.hero-text-animated.delay-2 {
  animation-delay: 0.6s;
}

.hero-text-animated.delay-3 {
  animation-delay: 0.9s;
}

.hero-text-animated.delay-4 {
  animation-delay: 1.2s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.1);
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  h1.display-4 {
    font-size: 2.5rem;
  }

  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-card {
    margin-bottom: 2rem;
  }
}

/* Blog and Article Styles */
.blog-section {
  background-color: var(--dark-bg);
}

.blog-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(34, 197, 94, 0.2), 0 0 10px rgba(74, 222, 128, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: white;
}

.blog-excerpt {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-meta {
  color: var(--light-gray);
  font-size: 0.8rem;
}

.blog-meta i {
  color: var(--green-primary);
}

/* Article Styles */
.article-section {
  background-color: var(--dark-bg);
  min-height: 100vh;
}

.article-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-header h1 {
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.article-meta {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.article-meta i {
  color: var(--green-primary);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-gray);
}

.article-content h3 {
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.article-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  border-radius: 2px;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: var(--light-gray);
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content ul li {
  margin-bottom: 0.5rem;
  color: var(--light-gray);
  position: relative;
}

.article-content ul li::marker {
  color: var(--green-primary);
}

.cta-box {
  background-color: var(--card-bg) !important;
  border: 2px solid var(--green-primary);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
}

.cta-box h4 {
  color: white;
  font-weight: 600;
}

.cta-box p {
  color: var(--light-gray);
}

/* Realizations Styles */
.realisation-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.realisation-item img {
  transition: all 0.5s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.realisation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2rem;
  transform: translateY(100px);
  transition: all 0.3s ease;
  opacity: 0;
}

.realisation-item:hover img {
  transform: scale(1.05);
}

.realisation-item:hover .realisation-overlay {
  transform: translateY(0);
  opacity: 1;
}

.realisation-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.realisation-overlay p {
  color: var(--light-gray);
  font-size: 1rem;
}

.realisation-details h4 {
  color: white;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.results-box {
  background-color: var(--card-bg);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
}

.results-box h5 {
  color: var(--green-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.results-box ul {
  list-style: none;
  padding: 0;
}

.results-box ul li {
  padding: 0.5rem 0;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-box ul li:last-child {
  border-bottom: none;
}

.stat-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-primary);
  display: inline-block;
  margin-right: 0.5rem;
}

.result-text {
  font-weight: 600;
  color: var(--green-primary);
  font-size: 1.1rem;
}

/* Testimonials Styles */
.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem;
  transition: all 0.3s ease;
  border-top: 3px solid var(--green-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(34, 197, 94, 0.1);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(34, 197, 94, 0.2), 0 0 10px rgba(74, 222, 128, 0.1);
}

.testimonial-content p {
  font-style: italic;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.testimonial-author p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--green-primary);
}

/* Carousel Styles */
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(34, 197, 94, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  border: none;
}

.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
  background-color: var(--green-primary);
}

.testimonial-carousel .carousel-indicators {
  bottom: -40px;
}

.testimonial-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #444;
  margin: 0 5px;
  border: none;
}

.testimonial-carousel .carousel-indicators button.active {
  background-color: var(--green-primary);
}

/* New classes */
.text-orange {
  color: var(--green-primary);
}

.btn-orange {
  background: linear-gradient(to right, var(--green-primary), var(--green-secondary));
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(to right, var(--green-secondary), var(--green-primary));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}
