:root {
  --primary-color: #1b6069;
  --text-color: #1b6069;
  --background-color: #eeeccb;
  --accent-color: #bac7a2;
  --brown-color: #28272b;
  --white-variant: #f5f5f0;
  --white-surface: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-color);
  overflow: hidden;
  height: 100vh;
}

/* Hide scrollbar but keep functionality */
.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.snap-container::-webkit-scrollbar {
  display: none;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.4rem 1rem 0.2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.logo {
  padding: 0.5rem 1rem 0.2rem;
}

.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}

nav {
  padding: 0rem 2rem;
  margin: 0rem;
  transition: padding 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  font-size: 1.8rem;
}

nav a {
  text-decoration: none;
  color: var(--white-surface);
  font-weight: 700;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

nav a:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Section styles */
.snap-section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

#accueil {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/old_man.png');
  background-size: cover;
  background-position: 50% 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  scroll-snap-align: start;
  overflow: hidden;
  padding-top: 6rem;
}

#accueil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(238, 236, 203, 0.8);
}

#accueil .content {
  position: relative;
  z-index: 2;
}

#accueil h1 {
  font-size: 4rem;
  margin: 1rem 0 1rem 0;
  text-align: center;
  color: var(--text-color);
  position: relative;
}

#accueil p {
  text-align: center;
  color: #2d2121;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Credit card */
.credit-card {
  position: absolute;
  right: -3rem;
  top: 25%;
  transform: translateY(-50%);
  background: var(--white-surface);
  border-radius: 40px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: left;
  max-width: 200px;
  z-index: 3;
  padding-right: 4rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.credit-percentage {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.credit-percentage span {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.credit-text {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Services section */
#services {
  background: linear-gradient(
    to bottom,
    transparent 50%,
    var(--white-surface) 50%
  );
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  margin-top: 0;
  padding-top: 6rem;
  scroll-snap-align: start;
  overflow: hidden;
}

#services::before {
  display: none;
}

#services .content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.services-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brown-color);
  margin: 0;
  letter-spacing: 2px;
  line-height: 1;
}

.services-subtitle {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brown-color);
  margin: 0;
  margin-bottom: 2rem;
  line-height: 1;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-new {
  background: var(--white-surface);
  padding: 1.8rem 1.2rem;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.service-icon-new {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.service-icon-new i {
  font-size: 28px;
  color: var(--primary-color);
}

.service-card-new h3 {
  color: var(--brown-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-card-new p {
  color: var(--primary-color);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.services-conclusion {
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.services-conclusion p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--brown-color);
  font-weight: 400;
}

.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.services-button {
  background-color: var(--background-color);
  color: var(--brown-color);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.services-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.button-leaf {
  width: 30px;
  height: 30px;
}

.services-button-subtitle {
  color: var(--brown-color);
  font-size: 1rem;
  opacity: 0.8;
}

/* Fixed buttons */
.fixed-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 1000;
  height: 90px;
  display: flex;
}

.fixed-buttons a {
  width: 60px;
  height: 60px;
  background: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
  position: relative;
}

/* .fixed-buttons a:hover {
  transform: translateY(-40px);
} */

.fixed-buttons img {
  width: 24px;
  height: 24px;
}

.fixed-buttons .img-box {
  background-color: var(--background-color);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-extension {
  width: 60px;
  height: 100px;
  background-color: var(--text-color);
  position: absolute;
  top: 50%;
  z-index: -1;
}

.phone-button {
  align-self: flex-end;
}

/* Scroll indicators */
.scroll-indicators {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-color);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--background-color);
  transform: scale(1.2);
}

/* À propos section */
#a-propos {
  background: linear-gradient(
    to bottom,
    var(--accent-color) 0%,
    var(--accent-color) 55%,
    var(--white-surface) 55%,
    var(--white-surface) 100%
  );
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  min-height: 100vh;
}

#a-propos .content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem;
}

.about-title {
  font-size: 3rem;
  color: var(--text-color);
  margin: 0;
  font-weight: 800;
  line-height: 1;
}

.about-subtitle {
  font-size: 2.5rem;
  color: var(--text-color);
  margin: 0;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.about-intro {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}

.comparison-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  margin-top: 2rem;
}

.comparison-column {
  flex: 1;
  padding: 1.5rem;
  border-radius: 25px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: var(--white-surface);
  position: relative;
}

.comparison-column.classic {
  background-color: var(--white-surface);
  margin-top: 2rem;
}

.comparison-column.benevie {
  background-color: var(--primary-color);
  color: var(--white-surface);
  padding: 2rem;
  margin-top: 0;
  transform: scale(1.05);
}

.comparison-column h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comparison-column.classic h4 {
  color: var(--brown-color);
}

.comparison-column.benevie h4 {
  color: var(--white-surface);
}

.comparison-column ul {
  list-style: none;
  padding: 0;
}

.comparison-column li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.3;
}

.comparison-column.classic li {
  color: var(--text-color);
}

.comparison-column.classic strong {
  color: #cc4444;
}

.comparison-column.benevie strong {
  color: var(--white-surface);
}

.arrow-down,
.arrow-up {
  width: 24px;
  height: auto;
}

.about-conclusion {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Avis Vérifiés section */
#avis-verifies {
  background: linear-gradient(
    to bottom,
    var(--accent-color) 0%,
    var(--accent-color) 50%,
    var(--white-surface) 50%,
    var(--white-surface) 100%
  );
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#avis-verifies h2 {
  color: var(--text-color);
  font-size: 3.5rem;
  text-align: center;
  margin: 0;
  line-height: 1;
}

.avis-subtitle {
  color: var(--text-color);
  font-size: 3rem;
  font-weight: lighter;
  text-align: center;
  line-height: 1;
  margin: 0;
  margin-bottom: 2rem;
}

.avis-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.avis-card {
  background: var(--white-surface);
  padding: 1.5rem;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 340px;
  flex: 1;
}

.avis-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avis-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.2rem;
}

.avis-name {
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.avis-stars i {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.avis-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

/* Quote section */
.quote-section {
  background-color: var(--white-surface);
  padding: 2rem 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.quote-content {
  max-width: 1000px;
  text-align: center;
  position: relative;
  padding: 0 3rem;
}

.quote-text {
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--brown-color);
  font-weight: 300;
}

.quote-text em {
  font-style: italic;
  font-weight: 400;
}

.quote-icon {
  color: var(--accent-color);
  font-size: 6rem;
  position: absolute;
}

.fa-quote-left {
  left: -40px;
  top: -40px;
}

.fa-quote-right {
  right: -40px;
  bottom: -40px;
}

.quote-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote-button {
  background-color: var(--background-color);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.button-subtitle {
  font-size: 0.9rem;
  color: var(--brown-color);
  opacity: 0.8;
  text-align: center;
}

.quote-leaf {
  position: absolute;
  width: 80px;
  height: auto;
  right: -60px;
  bottom: -20px;
  transform: rotate(45deg);
}

/* Contact section */
#contact {
  background-color: var(--accent-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6rem;
  position: relative;
  overflow-y: auto;
}

.contact-header {
  text-align: center;
  padding: 2rem;
  flex-shrink: 0;
}

.contact-header h2 {
  font-size: 3.5rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1;
}

.contact-header h3 {
  font-size: 2.5rem;
  color: var(--text-color);
  font-weight: 300;
  margin: 0;
  line-height: 1;
}

.contact-card {
  background: var(--white-surface);
  max-width: 900px;
  margin: 2rem auto;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-intro,
.contact-join {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-button {
  display: inline-block;
  background: var(--background-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.contact-btn {
  display: inline-block;
  background: var(--background-color);
  color: var(--text-color);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.contact-footer {
  width: 100%;
  background-color: var(--accent-color);
  padding-bottom: 1rem;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-left h4 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin: 0;
}

.footer-cta {
  display: inline-block;
  background: var(--white-surface);
  color: var(--text-color);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--text-color);
}

.footer-cta:hover {
  background: var(--text-color);
  color: var(--white-surface);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-menu h4,
.footer-social h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--white-surface);
  font-size: 1.3rem;
}

.social-icon:hover {
  transform: scale(1.1);
}

.location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 1rem;
}

.location i {
  font-size: 1.2rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.divider {
  height: 1px;
  background: rgba(27, 96, 105, 0.3);
  margin-bottom: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  font-size: 0.9rem;
}

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

.copyright,
.credits {
  color: var(--text-color);
}

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

.legal-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--primary-color);
}

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

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

@keyframes itemSlideUp {
  from {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0);
  }
}

.text-animate {
  opacity: 0;
  animation: slideUp 0.5s forwards;
}

.tile-animate {
  animation: itemSlideUp 0.5s forwards;
}

@media (max-width: 768px) {
  /* Header adjustments */
  header {
    padding: 0.5rem 1rem;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    padding: 0;
  }

  .logo img {
    height: 60px;
  }

  nav {
    padding: 0;
    width: 100%;
  }

  nav ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.4rem;
  }

  nav a {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Hero section */
  #accueil {
    padding: 1rem;
    background-position: 70% 10%;
    text-align: center;
  }

  #accueil h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    text-align: center;
  }

  #accueil p {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
  }

  .credit-card {
    position: static;
    margin: 2rem auto 0;
    transform: none;
    max-width: 280px;
    text-align: center;
  }

  /* Services section */
  #services .content {
    padding: 1rem;
    text-align: center;
  }

  .services-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .services-subtitle {
    font-size: 1.3rem;
    text-align: center;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    justify-items: center;
  }

  .service-card-new {
    padding: 1.5rem 1rem;
    max-width: 320px;
    width: 100%;
    text-align: center;
  }

  .services-conclusion {
    margin: 1.5rem auto;
    text-align: center;
  }

  .services-cta {
    text-align: center;
    align-items: center;
  }

  .services-button {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    margin: 0 auto;
  }

  .services-button-subtitle {
    text-align: center;
  }

  /* About section */
  #a-propos .content {
    padding: 1rem;
    text-align: center;
  }

  .about-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .about-subtitle {
    font-size: 1.8rem;
    text-align: center;
  }

  .about-intro {
    text-align: center;
  }

  .comparison-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .comparison-column.benevie {
    transform: none;
    margin-top: 0;
  }

  .comparison-column {
    padding: 1.2rem;
    max-width: 320px;
    width: 100%;
  }

  .about-conclusion {
    text-align: center;
  }

  /* Reviews section */
  #avis-verifies {
    height: auto;
    min-height: 100vh;
    text-align: center;
  }

  #avis-verifies h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .avis-subtitle {
    font-size: 1.8rem;
    text-align: center;
  }

  .avis-grid {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    align-items: center;
  }

  .avis-card {
    max-width: 320px;
    width: 100%;
    text-align: center;
  }

  .quote-section {
    text-align: center;
  }

  .quote-content {
    padding: 0 1rem;
    text-align: center;
  }

  .quote-text {
    font-size: 1rem;
    text-align: center;
  }

  .quote-icon {
    font-size: 4rem;
  }

  .fa-quote-left {
    left: -20px;
    top: -20px;
  }

  .fa-quote-right {
    right: -20px;
    bottom: -20px;
  }

  .quote-leaf {
    display: none;
  }

  .quote-button-container {
    text-align: center;
    align-items: center;
  }

  .quote-button {
    margin: 0 auto;
  }

  .button-subtitle {
    text-align: center;
  }

  /* Contact section */
  #contact {
    height: auto;
    min-height: 100vh;
  }

  .contact-header {
    padding: 1rem;
    text-align: center;
  }

  .contact-header h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .contact-header h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .contact-card {
    margin: 1.5rem 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .contact-intro,
  .contact-join {
    font-size: 1rem;
    text-align: center;
  }

  .contact-button {
    display: block;
    margin: 1rem auto 0;
    width: fit-content;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .footer-left {
    text-align: center;
    align-items: center;
  }

  .footer-left h4 {
    font-size: 1.4rem;
    text-align: center;
  }

  .footer-cta {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    width: 150px;
    margin: 0 auto;
  }

  .footer-menu {
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .location {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-left-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Fixed buttons */
  .fixed-buttons {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .fixed-buttons a {
    width: 50px;
    height: 50px;
  }

  /* Scroll indicators */
  .scroll-indicators {
    right: 1rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* General spacing adjustments */
  .snap-section {
    padding-top: 5rem;
  }
}
