/* ========================================
   AHI AUDITION - Premium Design System
   Version 2.0 - Ultra Modern & Luxury
   ======================================== */

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatReverse {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 105, 71, 0.1);
  }

  50% {
    box-shadow: 0 0 40px rgba(99, 105, 71, 0.2);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ===== HERO PREMIUM ===== */
.hero-section {
  position: relative;
  min-height: 80vh;
  padding: 90px 0 50px;
  background: linear-gradient(135deg, #f8faf6 0%, #ffffff 40%, #f5f7f3 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(99, 105, 71, 0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, white, transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-image-container {
  animation: slideInRight 1s ease-out 0.2s both;
}

.hero-image {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow:
    0 60px 120px -20px rgba(0, 0, 0, 0.15),
    0 30px 60px -10px rgba(99, 105, 71, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
}

.hero-image img {
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image:hover img {
  transform: scale(1.08);
}

.hero-floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.hero-floating-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

/* Floating decorative elements */
.hero-section .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-section .floating-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 105, 71, 0.1), transparent);
  top: 10%;
  right: 5%;
  animation: floatReverse 10s ease-in-out infinite;
}

.hero-section .floating-shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(122, 132, 80, 0.08), transparent);
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

/* ===== STATS PREMIUM ===== */
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.stat-item {
  position: relative;
  padding-left: 1.5rem;
}

.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  border-radius: 10px;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

/* ===== GALLERY PREMIUM - MASONRY ===== */
.gallery-section {
  background: white;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(99, 105, 71, 0) 50%,
      rgba(99, 105, 71, 0.8) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  color: white;
  width: 48px;
  height: 48px;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover .gallery-overlay svg {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

/* ===== SERVICES PREMIUM - GLASSMORPHISM ===== */
.services-section {
  background: linear-gradient(180deg, #f8faf6 0%, white 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 3rem;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow:
    0 40px 80px -20px rgba(99, 105, 71, 0.15),
    0 0 0 1px rgba(99, 105, 71, 0.1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 2.2rem;
  border: 2px dashed var(--primary-200);
  opacity: 0;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 40px rgba(99, 105, 71, 0.3);
}

.service-card:hover .service-icon::after {
  opacity: 1;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.service-card>p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  font-weight: 600;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.service-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(99, 105, 71, 0.2);
}

/* ===== ABOUT PREMIUM ===== */
.about-section {
  background: linear-gradient(180deg, white 0%, #f8faf6 100%);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  box-shadow:
    0 60px 100px -30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 60%,
      rgba(99, 105, 71, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-image img {
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image:hover img {
  transform: scale(1.1);
}

.premium-badge {
  position: absolute;
  bottom: -2rem;
  right: 3rem;
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: floatReverse 5s ease-in-out infinite;
  z-index: 5;
}

.premium-badge .stars {
  color: #fbbf24;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.badge-text .rating {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-color);
}

.badge-text .platform {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.about-content .lead {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.about-location {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 2rem;
  border: 1px solid var(--border-color);
  margin: 2.5rem 0;
  transition: all 0.4s ease;
}

.about-location:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(99, 105, 71, 0.1);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* ===== TESTIMONIALS PREMIUM ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonials-section .section-header {
  position: relative;
  z-index: 2;
}

.testimonials-section .about-label {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2.5rem;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-info h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-stars {
  margin-top: 1.5rem;
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 4px;
}

/* ===== TECHNOLOGIES PREMIUM ===== */
.technologies-section {
  background: white;
  position: relative;
}

.discretion-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.discretion-item {
  background: white;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid var(--border-color);
}

.discretion-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.discretion-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 1s ease;
}

.discretion-item:hover img {
  transform: scale(1.1);
}

.discretion-content {
  padding: 2.5rem;
}

.discretion-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.discretion-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.tech-card {
  background: var(--primary-50);
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.tech-card:hover {
  background: white;
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 105, 71, 0.1);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.tech-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.tech-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.brands-section {
  margin-top: 5rem;
  padding: 4rem;
  background: var(--bg-light);
  border-radius: 3rem;
}

.brands-section h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: start;
}

.brand-item {
  text-align: center;
  transition: all 0.3s ease;
}

.brand-item:hover {
  transform: scale(1.1);
}

.brand-item h4 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-color);
  letter-spacing: 0.1em;
}

.brand-item span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .discretion-gallery {
    grid-template-columns: 1fr;
  }

  .tech-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FAQ PREMIUM ===== */
.faq-section {
  background: linear-gradient(180deg, #f8faf6 0%, white 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
  border-color: var(--primary-200);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(99, 105, 71, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 2.5rem 2.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* ===== CTA PREMIUM ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent);
  animation: pulse 10s ease-in-out infinite;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ===== CONTACT PREMIUM ===== */
.contact-section {
  background: linear-gradient(180deg, white 0%, #f8faf6 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 3rem;
  padding: 4rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem 1.75rem;
  font-size: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  background: var(--bg-light);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(99, 105, 71, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
}

@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER PREMIUM ===== */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 105, 71, 0.5), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-contact-item:hover,
.footer-contact-item:hover a {
  color: white;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== MOBILE CTA FIXED ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0.95));
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem;
  background: var(--primary-color);
  color: white;
  font-weight: 700;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(99, 105, 71, 0.3);
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 100px;
  }
}

/* ===== BUTTON ENHANCEMENTS ===== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  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, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

/* ===== SMOOTH SCROLL REVEAL ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== LOADING STATES ===== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ========================================
   PAGE LE CENTRE - Styles Premium
   ======================================== */

/* Hero Section */
.centre-hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.centre-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.centre-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.centre-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55, 65, 55, 0.88) 0%, rgba(35, 45, 35, 0.95) 100%);
}

.centre-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.centre-hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  animation: floatShape 15s ease-in-out infinite;
}

.centre-hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.centre-hero-shapes .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.centre-hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.centre-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
  font-size: 1.2rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.centre-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.centre-hero-content p {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-scroll-indicator span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translateY(10px);
    opacity: 0.5;
  }
}

/* Présentation Section */
.centre-presentation-section {
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.centre-presentation-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.centre-presentation-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.centre-presentation-image {
  position: relative;
}

.centre-presentation-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.3;
}

.centre-presentation-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.centre-presentation-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.centre-presentation-content p:first-of-type::first-letter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}

.centre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--border-color);
}

.centre-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.centre-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.centre-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.centre-stat span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Équipe Section */
.centre-equipe-section {
  background: white;
  position: relative;
}

.centre-equipe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
  z-index: 0;
}

.centre-equipe-section .container {
  position: relative;
  z-index: 1;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.equipe-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.equipe-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.equipe-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.equipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipe-card:hover .equipe-image img {
  transform: scale(1.08);
}

.equipe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.equipe-card:hover .equipe-overlay {
  opacity: 1;
}

.equipe-social {
  display: flex;
  gap: 0.75rem;
}

.equipe-social .social-link {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: transform 0.3s, background 0.3s;
}

.equipe-social .social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.equipe-info {
  padding: 2rem;
  text-align: center;
  background: white;
}

.equipe-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.equipe-role {
  display: inline-block;
  font-size: 0.85rem;
  color: white;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.equipe-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Valeurs Section */
.centre-valeurs-section {
  background: linear-gradient(180deg, white 0%, #f8f9fa 50%, white 100%);
  position: relative;
  overflow: hidden;
}

.centre-valeurs-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.valeur-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.valeur-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.valeur-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.valeur-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform 0.4s;
}

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

.valeur-icon-bg {
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  opacity: 0.15;
  animation: pulse 2s ease-in-out infinite;
}

.valeur-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

.valeur-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.valeur-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.valeur-card:hover .valeur-decoration {
  transform: scaleX(1);
}

/* Équipements Section */
.centre-equipements-section {
  background: white;
}

.equipements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.equipement-card {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.equipement-card:hover {
  transform: translateY(-5px);
}

.equipement-image {
  height: 200px;
  overflow: hidden;
}

.equipement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipement-info {
  padding: 1.5rem;
}

.equipement-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.equipement-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Localisation Section */
.centre-localisation-section {
  background: var(--bg-light);
}

.localisation-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.localisation-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.localisation-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.localisation-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.localisation-item h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.localisation-item p,
.localisation-item a {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.localisation-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.centre-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-icon-wrapper {
  margin-bottom: 1.5rem;
}

.cta-emoji {
  font-size: 4rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.centre-cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.centre-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
}

.cta-feature svg {
  color: rgba(255, 255, 255, 0.8);
}

.centre-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.centre-cta-section .btn-primary {
  background: white;
  color: var(--primary-color);
  font-weight: 700;
  padding: 1rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.centre-cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.centre-cta-section .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.centre-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .centre-hero-section {
    height: 70vh;
  }

  .centre-presentation-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .centre-presentation-image::before {
    display: none;
  }

  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .localisation-inner {
    grid-template-columns: 1fr;
  }

  .cta-features {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .centre-hero-section {
    height: 80vh;
    min-height: 500px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .centre-hero-content h1 {
    font-size: 2.5rem;
  }

  .equipe-grid,
  .equipements-grid {
    grid-template-columns: 1fr;
  }

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

  .centre-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .centre-presentation-content p:first-of-type::first-letter {
    font-size: 2.5rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .centre-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .centre-cta-section .btn-primary,
  .centre-cta-section .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}