       *, *::before, *::after {
    box-sizing: border-box;
  }
  html {
  scroll-behavior: smooth;
   }
  body {
    margin: 0;
    padding: 0;
    font-family: "Sora", sans-serif;
    background: #ffffff;
    color: #3d3838;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px;
  }
  a {
    color: #AB542D;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #8f3e1b;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   background: rgba(22, 22, 23, .8);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   z-index: 1000;
   height: 60px;
   display: flex;
   align-items: center;
   transition: all 0.3s ease;
  }

  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
  }

  .header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
  }

  .logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo-section img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .logo-section img:hover {
    transform: scale(1.05);
  }

  .global-rating {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .fox-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  #transition-banner.active {
    transform: translateY(100vh);
  }

  .scroll-wheel::before {
    content: "";
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
  }

  @keyframes scroll {
    0%, 20% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    80%, 100% { transform: translateY(20px); opacity: 0; }
  }

  @keyframes fadeInOut {
    0%, 80% { opacity: 1; }
    90%, 100% { opacity: 0; }
  }

  .hero {
    background: linear-gradient(to bottom, #8f3e1b, #ffffff);
    color: white;
    text-align: center;
    padding: 4rem 1rem 4rem 1rem;
    border-radius: 0 0 40px 40px;
    margin-bottom: 3rem;
    margin-top: 0;
  }
  .hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  .hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    opacity: 0.95;
  }

  .spaces-showcase {
    max-width: 1000px;
    margin: 0 auto;
  }

  .spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .space-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .space-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .space-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
  }

  .space-photos {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .space-photo {
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
  }

  .space-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }

  .space-photo:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
  }

  .space-photo:hover img {
    transform: scale(1.1);
  }

  .space-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
  }

  .space-photo.placeholder:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
  }

  .space-video {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .space-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }

  .space-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #AB542D;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .space-video:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
  }

  .space-video.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .space-video.placeholder::before {
    content: "▶";
    position: absolute;
    font-size: 1.2rem;
    margin-right: 0.3rem;
  }

  .space-video:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  h2.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111111;
    border-left: 6px solid #AB542D;
    padding-left: 0.5rem;
  }
  h3.sub-title {
    color: #AB542D;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  section {
    margin-bottom: 3.5rem;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
  }
  .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    padding: 1.8rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(171, 84, 45, 0.3);
  }
  .card p {
    margin-top: 0.5rem;
    color: #444444;
  }

.card img.icon {
  display: block;
  margin: 0 auto 1rem auto;
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img.icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

  .card::after {
    content: "";
    display: table;
    clear: both;
  }

  ul.custom-list {
    list-style: none;
    padding-left: 0;
  }
  ul.custom-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #333333;
  }
  ul.custom-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #AB542D;
    font-weight: 700;
  }

  footer {
    background: #111111;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
  }
  footer a {
    color: #f8c4ac;
  }
  footer a:hover {
    color: #ffffff;
  }
  footer .contact-info {
    margin-bottom: 1rem;
  }
  footer .phone-icon {
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
  }

  blockquote {
    border-left: 4px solid #AB542D;
    padding-left: 1rem;
    color: #666666;
    font-style: italic;
    margin-top: 1rem;
  }

  #loader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ffffff;
    border-top: 6px solid #AB542D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  body.loading {
    overflow: hidden;
  }
  body.loaded #loader {
    opacity: 0;
    visibility: hidden;
  }

.progress-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.progress-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Sora", sans-serif;
  color: #111;
}

.progress-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle .bg {
  fill: none;
  stroke: #eee;
  stroke-width: 10;
}

.progress-circle .progress {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease-out;
}

.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1.2rem;
  color: #AB542D;
}

.progress-card p {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: 140px;
  color: #444;
}

.card.horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.card.horizontal .card-content {
  flex: 1 1 60%;
}

.card.horizontal .card-image {
  flex: 1 1 35%;
  text-align: right;
}

.card.horizontal .card-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.horizontal .card-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.client-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.client-photo {
  text-align: center;
  transition: transform 0.3s ease;
}

.client-photo img {
  width: 100%;
  max-width: 160px;
  border-radius: 12px;
  filter: grayscale(100%) brightness(0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-photo:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.client-photo p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  animation: zoom 0.3s ease-in-out;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

@keyframes zoom {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #ccc;
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #AB542D;
  box-shadow: 0 0 0 2px #AB542D;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #AB542D;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-image img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}


.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #AB542D;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #AB542D;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.partner-logos img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.partner-logos img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #4f4f4f;
  border-radius: 4px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  cursor: pointer;
  color: black;
  z-index: 1;
}

.button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #39bda7;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:hover {
  color: #ffffff;
  border: 1px solid #39bda7;
}

.button:hover:before {
  top: -35%;
  background-color: #39bda7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:hover:after {
  top: -45%;
  background-color: #39bda7;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(171, 84, 45, 0.07);
  padding: 2rem;
  flex: 1 1 400px;
  max-width: 500px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(171, 84, 45, 0.15);
}

.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

nav ul.main-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul.main-menu li {
  position: relative;
}

nav ul.main-menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

nav ul.main-menu li a:hover {
  color: #8f3e1b;
}

nav ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #222;
  list-style: none;
  padding: 0.5rem 1rem; 
  border-radius: 5px;
  min-width: 180px;
  z-index: 1000;
}

nav ul.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
}

nav ul.main-menu li:hover > ul.submenu {
  display: block;
}

nav ul.submenu li:hover > ul.submenu {
  top: 0;
  left: 100%;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-wheel.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
}

.parallax-element {
  will-change: transform;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}


/* À remplacer dans vos media queries */

@media (max-width: 1024px) {
    .hamburger {
        display: block; 
    }
    
    .header-content {
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }
    
    nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px); /* Hauteur complète moins header */
        background: #111111;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto; /* Permet le scroll */
        overflow-x: hidden;
    }

    nav.is-open { 
        transform: translateX(0); 
    }

    nav ul.main-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0; /* Réinitialise le padding */
    }

    nav ul.main-menu li {
        width: 100%;
    }
    
    nav ul.main-menu li a {
        padding: 1rem 1.5rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul.submenu {
        position: static;
        display: none; /* Par défaut fermé */
        background: #2b2b2b;
        padding-left: 1.5rem;
    }

    /* Ouvre le submenu quand on clique sur le parent */
    nav ul.main-menu li.has-submenu.active > ul.submenu {
        display: block;
    }

    .hamburger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


@media (min-width: 1025px) {
    nav {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        background: transparent;
        padding: 0;
        flex: 1;
        display: flex;
        justify-content: flex-end;
        overflow: visible;
    }
    
    nav ul.main-menu {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    nav ul.main-menu li a {
        padding: 0.5rem 0;
        border-bottom: none;
    }
    
    nav ul.submenu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none !important;
    }

    nav ul.main-menu li:hover > ul.submenu {
        display: block !important;
    }
    
    .hamburger {
        display: none; 
    }
}

@media (min-width: 1025px) {
    nav {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        background: transparent;
        padding: 0;
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    
    nav ul.main-menu {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    nav ul.main-menu li a {
        padding: 0.5rem 0;
    }
    
    nav ul.submenu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
    }
    .hamburger {
        display: none; 
    }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  .spaces-grid {
    gap: 1rem;
  }
  .space-photo, .space-video {
    width: 60px;
    height: 45px;
  }
  .progress-wrapper {
    gap: 1.5rem;
  }
  .progress-circle {
    width: 80px;
    height: 80px;
  }
  nav ul.main-menu {
    flex-direction: column;
    gap: 1rem;
  }
  header .container {
    padding: 0 0.5rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero h2 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .spaces-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .space-photo, .space-video {
    width: 70px;
    height: 50px;
  }
  .progress-circle {
    width: 100px;
    height: 100px;
  }
  .card.horizontal {
    flex-direction: column;
    text-align: center;
  }
  .card.horizontal .card-image,
  .card.horizontal .card-content {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero h2 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .spaces-grid {
    gap: 1.2rem;
  }
  .space-photo, .space-video {
    width: 80px;
    height: 60px;
  }
  .progress-circle {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .hero h2 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.25rem;
  }
  .spaces-grid {
    gap: 1.5rem;
  }
  .space-photo, .space-video {
    width: 90px;
    height: 65px;
  }
  .progress-circle {
    width: 120px;
    height: 120px;
  }
}

@media (min-width: 1441px) {
  .hero h2 {
    font-size: 3.2rem;
  }
  .hero p {
    font-size: 1.4rem;
  }
  .spaces-grid {
    gap: 2rem;
  }
  .space-photo, .space-video {
    width: 100px;
    height: 70px;
  }
  .progress-circle {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1024px) {
  .about-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-card {
    max-width: 90%;
  }
  .client-photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .animated-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  header {
    height: 50px;
  }
  header .container {
    flex-direction: column;
    justify-content: center;
    height: auto;
    gap: 0.5rem;
  }
  .logo-section img {
    height: 35px;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  nav ul.main-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 2rem;
  }

  nav ul.submenu {
    top: 100%;
    left: 0;
  }
}
