/* ==================== PAPAGENO - CSS GLOBAL ==================== */

/* ========== RESET / BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #2b2b2b;
}

/* Variables de couleur */
:root {
  --accent: #B8894A;
  --text: #2b2b2b;
  --bg: #ffffff;
  --muted-green: #0B4C44;
}

/* Conteneur global */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER PAPAGENO (SOURCE) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  z-index: 1000;
}

.site-header .container {
  max-width: none;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-header .logo img {
  height: 64px;
  display: block;
}

.site-header .logo {
  margin-left: 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}

.btn-cta {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.btn-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.header-spacer {
  height: 80px;
}

/* ========== BURGER MENU ========== */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ========== HERO VIDEO SECTION ========== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(1.18) contrast(1.08) saturate(1.1);
  transition: filter 0.3s;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: #fff;
  max-width: 1200px;
  padding: 0 60px 60px 60px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pretitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.95;
  animation: heroSlideDown 1s ease-out 0.1s backwards;
}

.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: heroSlideDown 1s ease-out 0.2s backwards;
}

@keyframes heroSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: heroSlideDown 1s ease-out 0.4s backwards;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: heroSlideUp 1s ease-out 0.6s backwards;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hero-btn:hover::before {
  transform: scaleX(1);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-video {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 30px;
    text-align: left;
  }
  
  .hero-pretitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .hero-title {
    font-size: 3rem;
    letter-spacing: 1px;
    -webkit-text-stroke: 1.5px #fff;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  
  .hero-cta-group {
    justify-content: flex-start;
  }
  
  .hero-btn {
    padding: 12px 32px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-video {
    height: 70vh;
    min-height: 450px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-pretitle {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    -webkit-text-stroke: 1px #fff;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .hero-btn {
    padding: 11px 28px;
    font-size: 0.7rem;
  }
}

/* ========== ENGAGEMENT SECTION ========== */
.engagement-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
}

.engagement-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  height: 100vh;
}

.engagement-content {
  background: url('../images/fond.png') center/cover no-repeat;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  animation: fadeInLeft 1s ease-out;
  position: relative;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.engagement-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px #AD763C;
  margin-bottom: 35px;
  line-height: 1;
  letter-spacing: 2px;
  display: block;
  margin-bottom: -10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.engagement-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #AD763C;
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: 3px;
  display: block;
  line-height: 1;
  margin-bottom: 35px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.engagement-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 45px;
  max-width: 480px;
}

.engagement-btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #AD763C;
  border: 1.5px solid #AD763C;
  border-radius: 50px;
  background: transparent;
  transition: all 0.35s ease;
  cursor: pointer;
}

.engagement-btn:hover {
  color: #C88A4D;
  border-color: #C88A4D;
  background: rgba(173, 118, 60, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(173, 118, 60, 0.15);
}

.engagement-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.engagement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  transform: scale(1.15);
  transition: transform 0.6s ease;
}

.engagement-image:hover img {
  transform: scale(1.17);
}

/* Responsive Engagement */
@media (max-width: 968px) {
  .engagement-container {
    grid-template-columns: 1fr;
    max-height: none;
  }
  
  .engagement-content {
    padding: 60px 40px;
    order: 2;
  }
  
  .engagement-image {
    order: 1;
    min-height: 350px;
  }
  
  .engagement-title {
    font-size: 2rem;
    letter-spacing: 3px;
    line-height: 0.95;
  }
  
  .engagement-highlight {
    font-size: 3.5rem;
    margin-top: -8px;
  }
  
  .engagement-text {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 35px;
  }
  
  .engagement-btn {
    padding: 12px 35px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .engagement-content {
    padding: 50px 30px;
  }
  
  .engagement-image {
    min-height: 300px;
  }
  
  .engagement-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 0.9;
  }
  
  .engagement-highlight {
    font-size: 3rem;
    margin-top: -6px;
  }
  
  .engagement-text {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 30px;
  }
  
  .engagement-btn {
    padding: 11px 30px;
    font-size: 0.8rem;
  }
}

/* ========== NOTRE MENU SECTION ========== */
.menu-section {
  background-color: #E5DDD5;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.menu-header {
  text-align: center;
  margin-bottom: 70px;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin: 0;
}

.menu-outline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 3px;
  display: inline;
  color: transparent;
  -webkit-text-stroke: 2px #AD763C;
  line-height: 1;
  margin-right: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: capitalize;
}

.menu-highlight {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 500;
  color: #AD763C;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: 4px;
  display: inline;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: lowercase;
}

.menu-cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  padding: 0 5%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.menu-card {
  position: relative;
  width: 19%;
  min-width: 280px;
  height: 520px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: none;
  cursor: default;
}

.menu-card:first-child {
  z-index: 5;
  transform: translateY(0);
}

.menu-card:nth-child(2) {
  z-index: 4;
  transform: translateY(40px);
}

.menu-card:nth-child(3) {
  z-index: 3;
  transform: translateY(-30px);
}

.menu-card:nth-child(4) {
  z-index: 2;
  transform: translateY(40px);
}

.menu-card:nth-child(5) {
  z-index: 1;
  transform: translateY(-30px);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: none;
}

.menu-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  padding: 35px 25px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: none;
}

.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  transition: none;
}

/* Responsive Menu Section */
@media (max-width: 1200px) {
  .menu-cards-container {
    padding: 0 3%;
  }
  
  .menu-card {
    width: 24%;
    min-width: 240px;
    height: 460px;
    margin-left: -15px;
  }
  
  .menu-card:first-child {
    margin-left: 0;
    transform: translateY(0);
  }
  
  .menu-card:nth-child(2) {
    transform: translateY(30px);
  }
  
  .menu-card:nth-child(3) {
    transform: translateY(-20px);
  }
  
  .menu-card:nth-child(4) {
    transform: translateY(30px);
  }
  
  .menu-card:nth-child(5) {
    transform: translateY(-20px);
  }
}

@media (max-width: 968px) {
  .menu-section {
    padding: 60px 0 80px;
  }
  
  .menu-header {
    margin-bottom: 50px;
  }
  
  .menu-outline {
    font-size: 3rem;
    -webkit-text-stroke: 1.5px #AD763C;
    letter-spacing: 2px;
  }
  
  .menu-highlight {
    font-size: 3rem;
    letter-spacing: 3px;
  }
  
  .menu-cards-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    gap: 0;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  
  .menu-cards-container::-webkit-scrollbar {
    display: none;
  }
  
  .menu-card {
    width: 280px;
    min-width: 280px;
    height: 420px;
    margin-left: -40px;
    scroll-snap-align: center;
  }
  
  .menu-card:first-child {
    margin-left: 0;
  }
  
  .menu-card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 50px 0 60px;
  }
  
  .menu-header {
    margin-bottom: 40px;
  }
  
  .menu-outline {
    font-size: 2.5rem;
    -webkit-text-stroke: 1px #AD763C;
  }
  
  .menu-highlight {
    font-size: 2.5rem;
  }
  
  .menu-card {
    width: 240px;
    min-width: 240px;
    height: 380px;
    margin-left: -30px;
  }
  
  .menu-card-overlay {
    padding: 25px 20px;
  }
  
  .menu-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .menu-outline {
    font-size: 2rem;
  }
  
  .menu-highlight {
    font-size: 2rem;
  }
  
  .menu-card {
    width: 200px;
    min-width: 200px;
    height: 340px;
    margin-left: -25px;
  }
  
  .menu-card-title {
    font-size: 1.1rem;
  }
}

/* ========== MAIN ========== */
main {
  min-height: 40vh;
  padding: 40px 0;
  margin: 0;
}

main p {
  opacity: 0.75;
}

/* Section concept (home) */
#concept {
  padding: 60px 0;
}

/* ===== VALUES SECTION PAPAGENO (SOURCE) ===== */
.values-section {
  background: linear-gradient(135deg, #1a4d45 0%, #0d3832 100%);
  padding: 30px 20px;
  margin: 0;
}

.values-content {
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: start;
}

.value-item {
  text-align: center;
  transition: transform 250ms ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  color: var(--accent);
  transition: transform 300ms ease, color 300ms ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
}

.value-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.value-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== FOOTER PAPAGENO (SOURCE) ===== */
.site-footer {
  background: url('../images/fond.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 15px 20px 8px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 40px;
  right: 40px;
  bottom: 8px;
  border: 1px solid #B8894A;
  pointer-events: none;
  z-index: 0;
  border-radius: 2px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 30px;
}

/* Grille 5 colonnes horizontale */
.footer-grid-five {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 25px;
  margin-bottom: 12px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Colonne centrale avec logo + boutons */
.footer-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-col-center .footer-logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 4px;
}

/* Liens footer */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #B8894A;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 200ms ease, transform 200ms ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #d4a574;
  transform: translateX(3px);
}

/* Boutons CTA */
.footer-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.footer-cta-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #B8894A;
  padding: 7px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 250ms ease;
  text-align: center;
}

.footer-cta-btn:hover {
  background: #B8894A;
  color: #fff;
  transform: translateY(-2px);
}

/* Note Google */
.footer-rating {
  text-align: center;
}

.footer-rating-circle {
  width: 65px;
  height: 65px;
  border: 2px solid #B8894A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  position: relative;
}

.footer-rating-circle::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: 30%;
  border: 3px solid #B8894A;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.footer-rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-rating-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #B8894A;
  margin-bottom: 2px;
}

.footer-rating-source {
  font-size: 0.65rem;
  color: #fff;
  opacity: 0.9;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(184, 137, 74, 0.3);
}

.footer-copyright p {
  font-size: 0.75rem;
  color: #B8894A;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 900px) {
  /* Menu burger visible sur mobile */
  .burger-menu {
    display: flex;
  }
  
  /* Navigation mobile */
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 30px 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-links a:hover {
    background: #f8f8f8;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 15px 10px 8px;
  }
  
  .site-footer::before {
    top: 8px;
    left: 20px;
    right: 20px;
    bottom: 8px;
  }
  
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-grid-five {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 25px 20px;
  }
  
  /* Première ligne : 2 colonnes de liens */
  .footer-col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  
  .footer-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  /* Deuxième ligne : Logo et boutons (centré sur 2 colonnes) */
  .footer-col-center {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
  
  /* Troisième ligne : Réseaux sociaux et note Google */
  .footer-col:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }
  
  .footer-col:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
  }
  
  .footer-col-center .footer-logo-img {
    max-width: 150px;
  }
  
  .footer-cta-buttons {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    max-width: 400px;
  }
  
  .footer-cta-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .footer-rating-circle {
    width: 70px;
    height: 70px;
  }
  
  .footer-rating-score {
    font-size: 1rem;
  }
  
  .values-section {
    padding: 50px 16px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .value-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

