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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222222;
  background-color: #ede7de;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #ffffff;
  border-left: 4px solid #0f766e;
  border-radius: 12px;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  color: #374151;
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-link {
  color: #0f766e;
  text-decoration: underline;
  font-size: 14px;
}

.btn-accept {
  background-color: #0f766e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn-accept:hover {
  background-color: #0d5d57;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.header.hidden {
  transform: translateY(-100%);
}

.navbar {
  padding: 1.2rem 0;
  transition: padding 0.3s ease;
}

.header.scrolled .navbar {
  padding: 0.8rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  transition: width 0.3s ease;
}

.logo-link:hover::after {
  width: 100%;
}

.nav-logo h1 {
  color: #4a2f27;
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #4a2f27 0%, #0f766e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-link:hover .nav-logo svg {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(15, 118, 110, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid transparent;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.1),
    rgba(20, 184, 166, 0.1)
  );
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
  border-color: rgba(15, 118, 110, 0.2);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: white;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-link.active::after {
  width: 0;
}

.nav-link.active:hover {
  background: linear-gradient(135deg, #0d5d57 0%, #0f9488 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #7a6c5d;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.05) 0%,
    rgba(74, 47, 39, 0.05) 50%,
    rgba(122, 108, 93, 0.05) 100%
  );
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  height: 500px;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.2);
  animation: float 6s ease-in-out infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(20, 184, 166, 0.3) 0%,
    transparent 50%
  );
  animation: pulseOverlay 4s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s linear infinite;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 118, 110, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 70%
  );
  z-index: 1;
  animation: pulseOverlay 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  animation: shimmer 12s linear infinite;
  z-index: 1;
}

@keyframes pulseOverlay {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  text-align: left;
  animation: fadeInUp 1s ease-out 0.3s both;
  color: #4a2f27;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #4a2f27;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

@keyframes textGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  }
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #374151;
  animation: fadeInUp 1.2s ease-out 0.9s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  border: 2px solid transparent;
  animation: fadeInUp 1.2s ease-out 0.6s both,
    buttonPulse 2s ease-in-out 2s infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.4),
      0 4px 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 12px 35px rgba(15, 118, 110, 0.6),
      0 6px 15px rgba(0, 0, 0, 0.15);
  }
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.8s ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0d5d57 0%, #0f9488 50%, #059669 100%);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 15px 40px rgba(15, 118, 110, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover::after {
  width: 300px;
  height: 300px;
}

.cta-button:active {
  transform: translateY(-3px) scale(1.05);
  transition: all 0.1s ease;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
  background-color: #ffffff;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section:nth-child(even) {
  background-color: #ede7de;
}

.section h2 {
  color: #4a2f27;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* Axes Section */
.axes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.axe-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #d6cec4;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.axe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 118, 110, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.axe-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.axe-card:hover::before {
  left: 100%;
}

.axe-card h3 {
  color: #4a2f27;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.axe-card p {
  color: #374151;
}

/* Publications Section */
.publications-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.publication {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.publication::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0f766e, #14b8a6);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.publication:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.publication:hover::before {
  transform: scaleY(1);
}

.publication h3 {
  color: #4a2f27;
  margin-bottom: 0.5rem;
}

.publication-meta {
  color: #7a6c5d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.publication p:last-child {
  color: #374151;
}

/* Methodology Section */
.methodology-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.method-step {
  text-align: center;
  padding: 2rem;
}

.method-step h3 {
  color: #0f766e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.method-step p {
  color: #374151;
}

/* Indicators Section */
.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.indicator {
  padding: 2rem;
}

.indicator-number {
  font-size: 3rem;
  font-weight: bold;
  color: #0f766e;
  margin-bottom: 1rem;
}

.indicator p {
  color: #374151;
  font-size: 1.1rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border: 2px solid #d6cec4;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.pricing-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-icon svg {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(5deg);
}

.pricing-card:hover .pricing-icon svg {
  filter: drop-shadow(0 4px 8px rgba(15, 118, 110, 0.3));
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #4a2f27);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 118, 110, 0.3);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: #0f766e;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Populaire";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0f766e;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card h3 {
  color: #4a2f27;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #0f766e;
  margin-bottom: 2rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  padding: 0.5rem 0;
  color: #374151;
  border-bottom: 1px solid #d6cec4;
}

.features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.pricing-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;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #0d5d57, #0f9488, #4a2f27);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-btn:hover::before {
  left: 100%;
}

.pricing-btn:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

/* Library Section */
.library-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-category {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #d6cec4;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.resource-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(15, 118, 110, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.resource-category:hover .resource-icon {
  background: rgba(15, 118, 110, 0.2);
  transform: scale(1.1);
}

.resource-category::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0f766e, #14b8a6);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.resource-category:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 118, 110, 0.3);
}

.resource-category:hover::after {
  transform: scaleY(1);
}

.resource-category h3 {
  color: #4a2f27;
  margin-bottom: 1rem;
}

.resource-category p {
  color: #374151;
}

/* Ethics Section */
.ethics-content {
  text-align: center;
}

.ethics-content > p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ethics-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.principle {
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.principle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(15, 118, 110, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.principle:hover .principle-icon {
  background: rgba(15, 118, 110, 0.2);
  transform: scale(1.1);
}

.principle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.05),
    rgba(20, 184, 166, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.principle:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.1);
}

.principle:hover::before {
  opacity: 1;
}

.principle h3 {
  color: #0f766e;
  margin-bottom: 1rem;
}

.principle p {
  color: #374151;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #4a2f27);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-member:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.team-member:hover::before {
  transform: scaleX(1);
}

.member-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid #0f766e;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.member-avatar svg {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 8px rgba(15, 118, 110, 0.2));
}

.team-member:hover .member-avatar {
  transform: scale(1.1);
}

.team-member:hover .member-avatar svg {
  transform: rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(15, 118, 110, 0.3));
}

.member-info h3 {
  color: #4a2f27;
  margin-bottom: 0.5rem;
  text-align: center;
}

.member-title {
  color: #0f766e;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.member-bio {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.expertise-tag {
  background: #0f766e;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Methodology Section */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.methodology-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.methodology-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0f766e, #14b8a6);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.methodology-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.1);
}

.methodology-item:hover::after {
  transform: scaleY(1);
}

.methodology-icon {
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.methodology-icon svg {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 4px rgba(15, 118, 110, 0.2));
}

.methodology-item:hover .methodology-icon {
  transform: scale(1.05) rotate(-3deg);
}

.methodology-item:hover .methodology-icon svg {
  stroke: #14b8a6;
  filter: drop-shadow(0 4px 8px rgba(15, 118, 110, 0.3));
}

.methodology-content h3 {
  color: #4a2f27;
  margin-bottom: 1rem;
}

.methodology-content p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.methodology-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-point {
  color: #0f766e;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.author-info h4 {
  color: #4a2f27;
  margin-bottom: 0.3rem;
}

.author-role {
  color: #0f766e;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.program-badge {
  background: #0f766e;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.rating .stars {
  color: #ffd700;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info h3 {
  color: #4a2f27;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item strong {
  color: #4a2f27;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: #374151;
  margin: 0;
  line-height: 1.4;
}

.contact-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.contact-hours h4 {
  color: #4a2f27;
  margin-bottom: 1rem;
}

.contact-hours p {
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(214, 206, 196, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: #4a2f27;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(214, 206, 196, 0.4);
  border-radius: 12px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f766e;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(116, 108, 99, 0.6);
  font-size: 0.95rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

.submit-btn {
  background: linear-gradient(135deg, #0f766e 0%, #0d5d57 100%);
  color: white;
  padding: 18px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-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;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0d5d57 0%, #0a4f4a 100%, #4a2f27);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

.submit-btn:disabled {
  background: #7a6c5d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn:disabled::before {
  display: none;
}

/* Footer */
.footer {
  background-color: #4a2f27;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section p,
.footer-section li {
  color: #d6cec4;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #d6cec4;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #0f766e;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #7a6c5d;
  color: #d6cec4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 80vh;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    height: 300px;
    margin-bottom: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
    letter-spacing: 0.3px;
  }

  .section {
    padding: 40px 0;
    margin: 20px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-popup {
    width: 300px;
    bottom: 15px;
    right: 15px;
  }

  .cookie-content {
    gap: 12px;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .methodology-item {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 70vh;
    background-attachment: scroll;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 15px;
  }

  .hero-visual {
    height: 250px;
    border-radius: 15px;
  }

  .hero-content {
    text-align: center;
    padding: 0;
  }

  .hero h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    border-radius: 30px;
  }

  .hero::before {
    animation: none;
  }

  .hero::after {
    animation: none;
  }

  .section {
    padding: 30px 0;
  }

  .axe-card,
  .contact-form,
  .resource-category {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }
}

/* Scroll Animations */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Specific animations for different elements */
.axe-card.animate-element {
  transform: translateY(40px) scale(0.95);
}

.axe-card.animate-in {
  transform: translateY(0) scale(1);
}

.team-member.animate-element {
  transform: translateX(-30px) rotateY(10deg);
}

.team-member.animate-in {
  transform: translateX(0) rotateY(0);
}

.methodology-item.animate-element {
  transform: translateX(30px) rotateY(-10deg);
}

.methodology-item.animate-in {
  transform: translateX(0) rotateY(0);
}

.pricing-card.animate-element {
  transform: translateY(50px) scale(0.9);
}

.pricing-card.animate-in {
  transform: translateY(0) scale(1);
}

.section-header.animate-element {
  transform: translateY(20px);
}

.section-header.animate-in {
  transform: translateY(0);
}

.hero-content.animate-element {
  transform: translateY(40px) scale(0.98);
}

.hero-content.animate-in {
  transform: translateY(0) scale(1);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
