/* FONTS */
@font-face {
  font-family: 'Ethnocentric';
  src: url('https://cdn.jsdelivr.net/gh/chrlnhndrckx/webalu/ethnocentric-it.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Anton';
  src: url('https://cdn.jsdelivr.net/gh/chrlnhndrckx/webalu/anton.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antoncapital';
  src: url('https://cdn.jsdelivr.net/gh/chrlnhndrckx/webalu/antoncapital.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antonregular';
  src: url('https://cdn.jsdelivr.net/gh/chrlnhndrckx/webalu/antonio-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Fira';
    src: url('https://cdn.jsdelivr.net/gh/chrlnhndrckx/webalu/fira-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

h1 {
  font-family: 'Antoncapital', sans-serif;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

h2 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.8px;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

h3 {
  font-family: 'Antonregular', sans-serif;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

h4 {
  font-family: 'Antonregular', sans-serif;
  letter-spacing: 1.3px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

h5 {
  font-family: 'Fira', sans-serif;
  line-height: 1.2;
}

h6 {
  font-family: 'Fira', sans-serif;
  line-height: 1;
}

p {
  font-family: 'Fira', sans-serif;
  line-height: 1.2;
  text-decoration: none !important;
  font-weight: 300;
}

.alucad-style {
  font-size: clamp(3rem, 10vw, 8rem);
  font-family: 'Ethnocentric', sans-serif !important;
  font-style: italic;
  letter-spacing: 2px;
  animation: alucadColorChange 3s ease-in-out forwards;
  color: #005f75;
  text-align: center;
}

@keyframes alucadColorChange {
  0% {
    color: #ffffff;
    text-shadow: none;
  }
  100% {
    color: #005f75;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.6),
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 1);
  }
}

@media (max-width: 768px) {
  .alucad-style {
    text-shadow:
      0 0 5px rgba(255, 255, 255, 0.4),
      0 0 10px rgba(255, 255, 255, 0.6);
  }
}

@media (max-width: 768px) {
  @keyframes alucadColorChange {
    0% {
      color: #cccccc; /* softer than pure white */
      text-shadow: none;
    }
    100% {
      color: #005f75;
      text-shadow:
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 16px rgba(255, 255, 255, 0.7);
    }
  }
}

/* LAYOUT */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 40px 1px;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.nav-item {
  position: relative;
  display: block;
}

.nav-item img {
  height: 30px;
}

.nav-item > a {
  font-family: 'Fira', sans-serif;
  font-weight: 400;
  color: #eef6fd;
  text-decoration: none;
  font-size: 1em;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-item > a:hover {
  color: #00a6c3;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-direction: column;
  min-width: 200px;
}

.nav-item:hover .dropdown {
  display: flex;
}

.dropdown a {
  font-family: 'Fira';
  font-weight: 300;
  color: #eef6fd;
  padding: 4px 0;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown a:hover {
  color: #00a6c3;
}

.has-dropdown > a::after {
  content: "⌄";
  font-size: 1em;
  margin-left: 6px;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-5px);
  color: inherit;
}

.menu-toggle {
  display: none;
  font-size: 2em;
  background: none;
  border: none;
  color: #eef6fd;
  cursor: pointer;
}

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

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 99;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .nav-item > a {
    font-size: 1em;
    padding: 10px 0;
  }

  .dropdown {
    display: none !important; /* hide dropdown in mobile */
  }

  .production-subnav {
    display: none;
    flex-direction: column;
    gap: 15px;
  }
  
  .production-subnav a {
    font-family: 'Inter';
    font-weight: 300;
    line-height: 1;
    padding: 5px 10px;
    color: #eef6fd !important;
    text-decoration: none !important;
    display: block;
    transition: color 0.3s ease;
  }

  .production-subnav a:hover {
    color: #00a6c3 !important;
    text-decoration: none !important;
  }
  
  .back-button {
    font-size: 1em;
    padding: 10px 0;
    background: none;
    border: none;
    color: #eef6fd;
    text-align: left;
    cursor: pointer;
  }
  
  .back-button:hover {
    color: #00a6c3 !important;
    text-decoration: none !important;
  }
}

@media (min-width: 769px) {
  .production-subnav {
    display: none !important;
  }
}

/*FOOTER*/
.footer {
  background-color: #005f75;
  color: #fff;
  padding: 5vh 3vw;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

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

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

.footer-column {
  flex: 1 1 140px;
  min-width: 200px;
  box-sizing: border-box;
  text-align: center;
}

.footer-column h3,
.footer-column h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  color: #fff;
}

.footer-column p {
  margin: 8px 0;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.contact address {
  margin: 8px 0;
  color: #ccc;
  font-size: 0.9rem;
  font-style: normal;
}

.socials {
  margin-top: 15px;
}

.socials p {
  margin: 0 0 5px;
  font-style: italic;
}

.socials a {
  margin-right: 10px;
  display: inline-block;
}

.socials img {
  width: 24px;
  height: 24px;
}

.partners {
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logos img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover {
  opacity: 0.8;
}

/* HOME PAGE: HERO */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: block;
  overflow: hidden;
}

.hero-video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 5vh;
  left: 5vw;
  width: min(80%, 1250px);
  padding: 2rem;
  background: none; 
  border-radius: 16px;
  color: #eef6fd;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
  justify-content: flex-end;
  z-index: 2;
}

.hero-text p {
  margin: 0 0 1em;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: bold;
}

.hero-text h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Antoncapital', sans-serif;
}

.hero-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  pointer-events: none;
}

.hero-button {
  position: relative; 
  display: inline-block;
  z-index: 3;
  padding: 0.5em 1.5em;
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-size: clamp(0.75rem, 3vw, 1.1rem);
  font-weight: 500;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  color: #eef6fd !important;
  background: transparent;
  transition: all 0.8s ease;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #eef6fd !important;
  transition: left 0.8s ease;
  z-index: 3;
}

.hero-button:hover::before {
  left: 0;
}

.hero-button span {
  position: relative;
  z-index: 3;
  transition: color 0.8s ease;
}

.hero-button:hover span {
  color: #005f75 !important;
  text-decoration: none !important;
}

/* HOME PAGE: PROCESS CAROUSEL */
.our-process {
  padding: 6vh 5vw;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.6);
  position: relative;
}

.process-title {
  color: #eef6fd;
  text-align: center;
  margin-bottom: 40px;
}

.process-title h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 2rem 1rem 3rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
}

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

.carousel-slide {
  flex: 0 0 auto;
  width: clamp(260px, 80vw, 600px);
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #005f75, #00a6c3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.carousel-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carousel-content {
  color: #eef6fd;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  max-width: 60%;
}

.carousel-content h3 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  margin: 0;
}

.carousel-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin: 0;
  line-height: 1.4;
}

.carousel-image {
  height: 100%;
  width: 40%;
  object-fit: cover;
  border-radius: 0 15px 15px 0;
}

.carousel-button {
  margin-top: 1rem;
  padding: 0.5rem 1.4rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  font-weight: 300;
  text-decoration: none !important;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  color: #eef6fd !important;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;                
}

.carousel-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #eef6fd !important;
  transition: left 0.8s ease;
  z-index: 1;
}

.carousel-button:hover::before {
  left: 0;
}

.carousel-button span {
  position: relative;
  z-index: 2;
  transition: color 0.8s ease;
}

.carousel-button:hover span {
  color: #005f75 !important;
  text-decoration: none !important;
}

.carousel-controls {
  display:flex;
  gap:15px;
  justify-content:flex-end;
  margin-top: 15px;
}

.carousel-arrow {
  border: 2px solid #eef6fd;
  color: #eef6fd;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: #eef6fd;
  color: #005f75;
}

/* HOME PAGE: USPs */
.usp-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  background: rgba(0, 95, 117, 0.8);
  backdrop-filter: blur(6px);
  color: #eef6fd;
}

.usp-title-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.usp-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 3rem;
}

.usp-item {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.usp-item h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-align: center;
}

.usp-item p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
}

.usp-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.usp-item.reveal:hover {
  transform: translateY(0) scale(1.05);
}

/* HOME PAGE: KEY NUMBERS */
.key-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 5vw;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: visible;
  z-index: 2;
  text-align: center;
}

.key-years-wrapper {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.key-years {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.key-years .count {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  margin: 0;
  animation: numberColorChange 8s ease-in-out forwards;
}

.key-years.percent .count::after {
  content: "%";
  font-size: 0.6em;
  margin-left: 0.1em;
}

.key-years h4 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  color: #eef6fd;
}

.key-years.percent h4 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  color: #eef6fd;
}

@keyframes numberColorChange {
  0% {
    color: #eef6fd;
    text-shadow: none;
  }
  100% {
    color: #005f75;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.6),
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 1);
  }
}

@media (max-width: 768px) {
  @keyframes numberColorChange {
    0% {
      color: #eef6fd;
      text-shadow: none;
    }
    100% {
      color: #005f75;
      text-shadow:
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 16px rgba(255, 255, 255, 0.7);
    }
  }
}

/* HOME PAGE: APPLICATIONS */
.applications {
  position: relative;
  width: 100%;
  padding: 6vh 3vw;
  background: rgba(0, 95, 117, 0.8);
  backdrop-filter: blur(6px);
  box-sizing: border-box; 
  overflow-x: hidden; 
  z-index: 2;
}

.applications-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #eef6fd;
  margin-bottom: 40px;
  line-height: 1.3;
  max-width: 100%;
  box-sizing: border-box;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.application-item {
  height: clamp(250px, 30vw, 400px);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.8s ease;
  width: 100%; /* ensures items never exceed column bounds */
  box-sizing: border-box;
}

.application-item:hover {
  transform: scale(1.03);
}

.application-label {
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: #eef6fd;
  padding: 0.7rem 0;
  box-sizing: border-box;
}

.application-label p {
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin: 0;
}

/* CTA */
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vh 3vw;
  width: 100%;
  box-sizing: border-box;
}

.cta-box {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.2);
  color: #000000;
  text-align: center;
  padding: clamp(2rem, 5vw, 5rem) clamp(2rem, 8vw, 8rem);
  border-radius: 20px;
  border: 2px solid #000000;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.cta-box h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.cta-button {
  position: relative; 
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #000000;
  border-radius: 999px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  color: #000000;
  transition: all 0.8s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 1;
  transition: left 0.8s ease;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button span {
  position: relative;
  z-index: 2;
  transition: color 0.8s ease;
}

.cta-button:hover span {
  color: #eef6fd;
}

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

.cta-button-b {
  position: relative; 
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #005f75;
  border-radius: 999px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  color: #005f75;
  transition: all 0.8s ease;
}

.cta-button-b::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #005f75;
  z-index: 1;
  transition: left 0.8s ease;
}

.cta-button-b:hover::before {
  left: 0;
}

.cta-button-b span {
  position: relative;
  z-index: 2;
  transition: color 0.8s ease;
}

.cta-button-b:hover span {
  color: #eef6fd;
}

.cta-button-w {
  position: relative; 
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #eef6fd;
  border-radius: 999px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  color: #eef6fd;
  transition: all 0.8s ease;
}

.cta-button-w::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #eef6fd;
  z-index: 1;
  transition: left 0.8s ease;
}

.cta-button-w:hover::before {
  left: 0;
}

.cta-button-w span {
  position: relative;
  z-index: 2;
  transition: color 0.8s ease;
}

.cta-button-w:hover span {
  color: #000000;
}

.cta-section-bg {
  box-sizing:border-box;
  width:100%;
  margin:0 auto;
}

.cta-bg {
    background:
        url("medias/image/ALUCAD/heroimage.webp")
        center center/cover
        no-repeat;
    display:flex;
    justify-content:center;
}

.cta-box-bg {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.2);
  color: #000000;
  text-align: center;
  padding: clamp(2rem, 5vw, 5rem) clamp(2rem, 8vw, 8rem);
  border-radius: 20px;
  border: 2px solid #000000;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  margin: 35px 0;
}

.cta-box-bg h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

/* BACKGROUND */
.bg-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

/*NEW PROD SERVICE PAGE*/
.prod-hero {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  min-height: 70vh;
  width: 100%;
  overflow: hidden;
}

.prod-hero-image {
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.prod-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
}

.prod-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: #00a6c3;
  margin-bottom: 1rem;
}

.prod-hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: #eef6fd;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.prod-hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #eef6fd;
  max-width: 750px;
  line-height: 1.6;
}

.prod-section1 {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom right, #005f75, #00a6c3);
  text-align: center;
  width: 100%;
}

.prod-section3 {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom right, #005f75, #00a6c3);
  text-align: center;
  width: 100%;
}

.prod-section3-1 {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  width: 100%;
}

.prod-section2 {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  width: 100%;
}

.prod-section1-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.prod-section1-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #eef6fd;
  margin-bottom: 1rem;
}

.prod-section2 .prod-section1-header h2 {
  color: #eef6fd;
}

.two-image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.two-image-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.prod-section1-copy {
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}

.prod-section1-copy p {
  color: white;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 100%;
}

.prod-section2-top {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.prod-section2-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prod-section2-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #eef6fd;
  margin: 0;
}

.prod-section2-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}

.prod-section2-images img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.prod-section2-copy {
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}

.prod-section2-copy p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: #eef6fd;
}

.prod-section2-copy a {
  color: #00a6c3;
  font-weight: 700;
}

.prod-box {
  margin: 2.5rem auto 0;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  text-align: center;
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
}

.prod-box h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #eef6fd;
  margin-bottom: 1rem;
}

.prod-box p {
  max-width: 1100px;
  margin: 0 auto 1.8rem;
  color: #eef6fd;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}

.prod-section3-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.prod-section3-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #eef6fd;
  margin: 0;
}

.prod-section3-header-1 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.prod-section3-header-1 h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #eef6fd;
  margin: 0;
}

.prod-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1600px;
  margin: 0 auto;
}

.prod-info-box {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 22px;
  text-align: center;
  transition:transform 0.5s ease, box-shadow 0.5s ease;
}

.prod-info-box:hover {
  transform:translateY(-10px);
  box-shadow:0 10px 24px rgba(0,0,0,0.14);
}

.prod-info-box h3 {
  color: #eef6fd;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 1rem;
}

.prod-info-box p {
  color: #eef6fd;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

.prod-info-box-1 {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
  transition:transform 0.5s ease, box-shadow 0.5s ease;
}

.prod-info-box-1:hover {
  transform:translateY(-10px);
  box-shadow:0 10px 24px rgba(0,0,0,0.14);
}

.prod-info-box-1 h3 {
  color: #eef6fd;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 1rem;
}

.prod-info-box-1 p {
  color: #eef6fd;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .prod-hero,
  .prod-section2-top {
    grid-template-columns: 1fr;
  }

  .prod-hero-image img {
    height: 320px;
  }

  .prod-hero-content,
  .prod-section2-title {
    text-align: left;
  }

  .two-image-row,
  .prod-section2-images,
  .prod-info {
    grid-template-columns: 1fr;
  }

  .two-image-row img,
  .prod-section2-images img {
    height: 260px;
  }
}

.production-benefits {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.production-benefits-b {
  width: 100%;
  background: linear-gradient(to bottom right, #005f75, #00a6c3);
  padding: 80px 20px;
  box-sizing: border-box;
}

.benefits-header {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.benefits-header-b {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.benefits-header h2 {
  color: #eef6fd;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 5px;
}

.benefits-header-b h2 {
  color: #eef6fd;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 5px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0px, 2vw, 40px);
  max-width: 850px; 
  margin: 0 auto;
}

.benefit-box {
  flex: 1 1 clamp(280px, 18%, 400px); 
  text-align: left;
  padding: clamp(1rem, 3vw, 2rem);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefit-box.reveal {
  opacity: 1;
  transform: translateY(0);
}

.benefit-box:hover {
  transform: scale(1.05);
}

.benefit-box p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #eef6fd;
  font-weight: 400;
}

.benefit-box-b {
  flex: 1 1 clamp(280px, 18%, 400px); 
  text-align: left;
  padding: clamp(1rem, 3vw, 2rem);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefit-box-b.reveal {
  opacity: 1;
  transform: translateY(0);
}

.benefit-box-b:hover {
  transform: scale(1.05);
}

.benefit-box-b p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #eef6fd;
  font-weight: 400;
}

.related-reads-section {
  width: 100%;
  height: auto; 
  background: linear-gradient(to bottom right, #005f75, #00a6c3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}

.related-reads-section-w {
  width: 100%;
  height: auto; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}

.related-reads-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
  gap: 2rem;
  text-align: center;
  margin: 0 auto; 
}

.related-reads-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.related-reads-card .blog-card {
  flex: 1 1 clamp(280px, 30%, 350px);
  max-width: 350px;
}

.related-reads-text {
  color: #eef6fd;
  text-align: center;
  max-width: 1200px;
}

.related-reads-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0;
}

.related-reads-text-w h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0;
}

/* ABOUT US PAGE */
.about-section {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem);
  gap: clamp(1rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.about-copy {
  flex: 1 1 clamp(280px, 50%, 600px); 
  max-width: 100%; 
  padding: clamp(1rem, 3vw, 2rem);
  color: #eef6fd;
  text-align: left; 
  box-sizing: border-box;
}

.about-image {
  position: relative;
  flex: 1 1 clamp(280px, 50%, 600px);
  max-width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
}

.about-image video,
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.video-fallback.hidden {
  opacity: 0;
  visibility: hidden;
}

.about-image video {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  font-size: clamp(1.5rem, 4vw, 3rem); 
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
}

.about-copy p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
  font-weight: 400;
}

.values-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1rem, 4vw, 2rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  background: linear-gradient(to bottom right, #005f75, #00a6c3);
  box-sizing: border-box;
}

.value-box {
  text-align: center;
  flex: 1 1 clamp(220px, 22%, 280px);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.value-box.reveal {
  opacity: 1;
  transform: translateY(0);
}

.value-box.reveal:hover {
  transform: translateY(0) scale(1.05);
}

.value-icon img {
  width: clamp(50px, 8vw, 80px);
  height: clamp(50px, 8vw, 80px);
  margin-bottom: clamp(0.8rem, 2vw, 1.25rem);
}

.value-box h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 10px;
  color: #eef6fd;
}

.value-box p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #eef6fd;
  font-weight: 400;
}

.happenings-section {
  padding: clamp(3rem, 6vw, 5rem);
  box-sizing: border-box;
}

.happenings-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #eef6fd;
}

.happenings-header h2 {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #eef6fd;
}

.happening-copy h3 {
  font-size: clamp(1.2rem, 4vw, 2rem); 
  margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
  color: #eef6fd;
}

.happening-copy p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #eef6fd;
}

.happening-group {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.happening-group.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.happening-gallery {
  display: grid;
  gap: 1rem;
}

.happening-gallery.two-images {
  grid-template-columns: repeat(2, 1fr);
}

.happening-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.35s ease;
}

.happening-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 1100px) {

  .happening-group,
  .happening-group.reverse {
    grid-template-columns: 1fr;
  }

  .happening-copy {
    text-align: center;
  }

  .happening-gallery.three-images {
    grid-template-columns: 1fr;
  }

  .happening-gallery.two-images {
    grid-template-columns: 1fr;
  }

  .happening-gallery img {
    height: 280px;
  }
}

.factory-section {
  padding:clamp(2rem,6vw,4rem);
  background: linear-gradient(to right, #005f75, #00a6c3);  box-sizing: border-box;
  width: 100%;
}

.factory-wrap {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(1rem,3vw,2rem);
  align-items:start;
  max-width:1700px;
  margin:0 auto;
}

.factory-text {
  text-align:left;
}

.factory-text h2 {
  font-size:clamp(1.5rem, 4vw, 3rem);
  margin:0 0 16px;
  color: #eef6fd;
}

.factory-text p {
  font-size:clamp(1rem,2vw,1.4rem);
  margin:0 0 12px;
  font-weight:400;
  color: #eef6fd;
}

.factory-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(.6rem,1.8vw,1rem);
}

.factory-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  aspect-ratio:4/3;
  margin:0;
}

.factory-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
}

.factory-tag{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:.45rem .75rem;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing:.2px;
  color: #eef6fd;
  backdrop-filter:saturate(120%);
}

.sustainability-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  color: #eef6fd;
}

.sustainability-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.sustainability-heading {
  max-width: 850px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.sustainability-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #eef6fd;
}

.sustainability-intro {
  margin: 0;
  font-size: clamp(1rem,2vw,1.4rem);
  line-height: 1.2;
  font-weight: 400;
  color: #eef6fd;
}

.sustainability-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.sustainability-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.sustainability-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.sustainability-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: #ffffff;
}

.sustainability-card p {
  margin: 0;
  font-size:clamp(1rem,2vw,1.4rem);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .sustainability-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .sustainability-content {
    grid-template-columns: 1fr;
  }
}

@media (hover:hover){
  .factory-card:hover img{transform:scale(1.05);transition:transform .35s ease}
}

@media (max-width: 900px){
  .factory-wrap{grid-template-columns:1fr;gap:1.25rem}
  .factory-text{text-align:center}
}

/* BLOG PAGE */
.blog-container {
  box-sizing:border-box;
  width:100%;
  margin:0 auto;
  padding: 0;
  background:#455062;
}

.blog-header {
    background:
        url("medias/image/ALUCAD/heroimage.webp")
        center center/cover
        no-repeat;
    padding:150px 30px 90px;
    display:flex;
    justify-content:center;
}

.blog-overlay {
    width:min(100%,1200px);
    background: rgba(238, 246, 253, 0.7);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.45);
    border-radius:25px;
    padding:60px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.12);
}

.blog-eyebrow {
  margin: 0 0 14px;
  font-family: 'Fira', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #00a6c3;
  text-align: center;
}

.blog-title {
  margin: auto;
  color: #005f75;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.05;
  text-align: center;
}

.blog-toolbar {
  background:linear-gradient(
    to right,
    #005f75,
    #00a6c3
  );
  padding: 25px clamp(1rem, 4vw, 3rem) 25px;
  position: relative;
  display: flex;
  align-items: center;
} 

.blog-filters {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:0.6rem;
  flex-wrap:wrap;
  justify-content:center;
}

.blog-button {
  appearance:none;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.10);
  color:#ffffff;
  padding:0.42rem 0.72rem;
  border-radius:6px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-button:hover {
  background:rgba(255,255,255,0.18);
  border-color:rgba(255,255,255,0.28);
  transform:translateY(-1px);
}

.blog-button.active {
  background:#00a6c3;
  border-color:#00a6c3;
  color:#ffffff;
}

.blog-search {
  display:flex;
  justify-content:flex-end;
  width:min(360px, 100%);
  margin-left: auto;
}

.blog-search-input {
  width:100%;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.20);
  color:#ffffff;
  padding:0.55rem 0.85rem;
  border-radius:6px;
  font-size:1rem;
  font-weight:600;
  outline:none;
}

.blog-search-input::placeholder {
  color:rgba(255,255,255,0.75);
}

.blog-search-input:focus {
  border-color:#00a6c3;
  box-shadow:0 0 0 3px rgba(0,166,195,0.25);
}

.blog-content {
  max-width:1400px;
  width:100%;
  margin:0 auto;
  padding: clamp(1rem, 3vw, 2.5rem) 0;
}

.blog-grid-wrapper {
  width:100%;
}

.blog-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(280px, 1fr));
  gap:clamp(1rem, 2vw, 1.6rem);
  max-width:1200px;
  margin:0 auto;
  justify-content: center;
}

.blog-card {
  background: #eef6fd;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.image-wrapper {
  position: relative;
  height: 55%;
  overflow: hidden;
  background: #eef6fd;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  height: 45%;
  padding: 0.3rem 0.5rem 0.7rem;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #455062;
}

.blog-card-content small p {
  margin: 0.5rem 0;
  display: inline-block;
  width: fit-content;
  background: #455062;
  color: #ffffff;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-content h5 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.25;
  color: #455062;
}

.blog-card-content a {
  color: #005f75;
  font-weight: 800;
  text-decoration: none;
}

.blog-card-content a p {
  margin: 0;
}

.blog-card-content a:hover {
  color: #00a6c3;
}

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

@media (max-width: 700px){
  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .blog-filters {
    position: static;
    left: auto;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px){
  .blog-grid {
    display: flex;
    flex-direction: column;
  }

  .blog-card {
    width: 92%;
    max-width: 420px;
    margin: 0 auto;
  }
}

.article-container {
  box-sizing:border-box;
  width:100%;
  margin:0 auto;
  padding: 0;
  background:#eef6fd;
}

.article-post-header {
  background:#455062;
  padding: 110px clamp(1rem, 4vw, 3rem) 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.article-category {
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #00a6c3;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.article-title {
  font-size: clamp(2rem, 4.5vw, 3rem); 
  color: #eef6fd;
  margin: clamp(0.5rem, 2vw, 1rem) 0 clamp(1rem, 3vw, 2rem);
  line-height: 1.2;
}

.article-feature-image {
  display: flex;
  justify-content: center;
  margin: 20px auto 10px;
}

.article-feature-image img {
  width: clamp(800px, 70vw, 1200px);
  max-height: clamp(200px, 30vw, 500px);
  border-radius: 10px;
  margin: 0 auto clamp(1.2rem, 3vw, 2rem);
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-post-container {
  box-sizing: border-box;
  width: min(1200px, 70vw);
  margin: 0 auto;
}

.article-content {
  flex: 1;
  padding: 0 clamp(0.8rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
}

.article-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1rem, 3vw, 1.5rem) 0 clamp(0.5rem, 1vw, 1rem);
  color: #005f75;
  letter-spacing: 0.06em;
}

.article-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  Font-weight: bold;
  margin: 0 0 clamp(0.8rem, 2vw, 1rem);
  color: #455062;
  line-height: 1.5;
}

.article-content p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0 0 clamp(0.8rem, 2vw, 1rem);
  color: #455062;
  line-height: 1.5;
}

.article-button-wrapper {
  display: flex;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.article-linkedin-cta {
  text-align: center;
  padding: 0 1rem 3rem;
  margin-top: 1rem;
}

.article-linkedin-cta p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #455062;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

.article-layout{
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.article-toc{
  flex: 0 0 260px;
  position: sticky;
  top: 120px;
  padding: 1.2rem 1.2rem;
  border-radius: 10px;
  background: #def0ff;
}

.article-toc-title{
  margin: 0 0 0.8rem;
  font-weight: 700;
  color: #005f75;
  font-size: 1.05rem;
}

.article-toc ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc li{
  margin: 0 0 0.7rem;
}

.article-toc a{
  text-decoration: none;
  color: #455062;
  font-size: 0.95rem;
  line-height: 1.35;
}

.article-toc a:hover{
  color: #00a6c3;
}

.light-blue {
  color: #00a6c3 !important;
  text-decoration: none !important;
}

.light-blue:hover {
  color: #005f75 !important; 
  text-decoration: none !important;
}

.white {
  color: #ccc !important;
  text-decoration: underline !important;
}

.white:hover {
  color: #eef6fd !important; 
  text-decoration: underline !important;
}

@media (max-width: 992px){
  .article-layout{
    flex-direction: column;
    gap: 1.5rem;
  }

  .article-toc{
    position: relative;
    top: 0;
    width: 100%;
    flex: none;
  }
}

/* LIBRARIES */
.list-header {
    background:
        url("medias/image/ALUCAD/heroimage.webp")
        center center/cover
        no-repeat;
    padding:150px 30px 90px;
    display:flex;
    justify-content:center;
    width: 100%;
}

.list-overlay {
    width:min(100%,1200px);
    background: rgba(238, 246, 253, 0.7);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.45);
    border-radius:25px;
    padding:60px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.12);
}

.list-eyebrow {
  margin: 0 0 14px;
  font-family: 'Fira', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #00a6c3;
  text-align: center;
}

.list-title {
  margin: auto;
  color: #005f75;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.05;
  text-align: center;
}

.library-background {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 6vw, 4rem);
  gap: clamp(1rem, 4vw, 2.5rem);
  background: #000000;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.library-background p {
  font-size: clamp(0.8rem, 1.5vw, 1.5rem);
  color: #ffffff;
  font-weight: 400;
  text-align: center;
}

.library-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 0 clamp(10px, 3vw, 40px);
}

.library-carousel {
  display: flex;
  overflow-x: auto;
  gap: clamp(10px, 4vw, 40px);
  scroll-behavior: smooth;
  padding: clamp(20px, 5vw, 40px) 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  cursor: grab;
}

.library-carousel.dragging {
  cursor: grabbing;
  user-select: none;
}

.library-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.library-card {
  flex: 0 0 auto;
  width: clamp(150px, 25vw, 250px);
  background-color: #ffffff;
  border-radius: 10px;
  padding: clamp(10px, 2vw, 20px);
  text-align: center;
  color: #005f75;
  transition: transform 0.3s ease;
}

.library-card h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-family: 'Antonregular', sans-serif;
  margin-bottom: 10px;
  font-weight: bold;
}

.library-card hr {
  width: 80%;
  margin: 0 auto 20px auto;
  border: 1px solid #005f75;
}

.library-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.library-arrow {
  background: none;
  border: none;
  color: white;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  cursor: pointer;
  z-index: 2;
  padding: 10px;
  transition: transform 0.2s ease;
}

.library-arrow:hover {
  transform: scale(1.2);
}

.library-arrow.left {
  position: absolute;
  left: clamp(-10px, -2vw, -20px);
}

.library-arrow.right {
  position: absolute;
  right: clamp(-10px, -2vw, -20px);
}

/* Gallery layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3; /* Keeps uniform height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: #fff;
    padding: 15px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.gallery-card:hover .overlay {
    opacity: 0;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* LINK TO DESIGN GUIDE */
.alucad-design-guide {
    width: 100%;
    background: rgba(0, 95, 117, 0.85);
    backdrop-filter: blur(6px);
    padding: 3rem 6%;
    box-sizing: border-box;
}

.design-guide-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(300px, 1fr);
    align-items: center;
    gap: 4rem;
}

.design-guide-content h2 {
    margin: 0;
    font-family: 'Fira', sans-serif;
    font-style: italic;
    color: #eef6fd;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 1.2;
}

.design-guide-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.design-guide-text p {
    margin: 0;
    color: #eef6fd;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.5;
}

.design-guide-text .cta-button-w {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .alucad-design-guide {
        padding: 2.5rem 1.5rem;
    }

    .design-guide-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .design-guide-text {
        align-items: center;
    }
}

/* DESIGN GUIDE PAGE */
.Guide-header {
  text-align: center;
  background: linear-gradient(to top right, #005f75, #00a6c3);
  width: 100%;
  padding: 110px 50px 50px 50px;
}

.Guide-header h1 {
  color: #eef6fd;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.Guide-header p {
  color: #eef6fd;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 300;
  padding-top: 20px;
}

.Guide-page {
  background: #eef6fd;
}

.Guide-section {
  background: #eef6fd;
  color: #455062;
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: clip;
}

.Guide-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 70vh;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.Guide-toc {
  background: #eef6fd;
  border-right: 1px solid #dfe3e6;
  padding: 15px 15px;
  position: sticky;
  top: 0;
  height: calc(100vh - 24px);
  overflow: auto;
  min-width: 0;
}

.Guide-tocGroup {
  margin-top: 10px;
}

.Guide-tocBtn {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: #455062;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  line-height: 1.25;
  transition: background 200ms ease, border-color 200ms ease, transform 120ms ease;
}

.Guide-tocBtn:hover {
  background: #eef6fd;
  border-color: rgba(0, 166, 195, 0.55);
  color: #455062;
}

.Guide-tocBtn.active {
  background: linear-gradient(to right, #005f75, #00a6c3);
  border-color: transparent;
  color: #eef6fd;
  font-weight: 600;
}

.Guide-subGroup {
  margin: 6px 0 0 10px;
  padding-left: 10px;
  border-left: 2px solid #dfe3e6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms ease, opacity 180ms ease;
}

.Guide-tocBtn.active + .Guide-subGroup {
  max-height: 600px;
  opacity: 1;
}

.Guide-subBtn {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #455062;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.95;
}

.Guide-subBtn:hover {
  color: #005f75;
  background: rgba(223, 227, 230, 0.45);
}

.Guide-content {
  padding: 26px 26px 34px;
  background: #eef6fd;
  min-width: 0;
  max-width: 100%;
}

.Guide-panel {
  display: none;
  max-width: 1200px;
  min-width: 0;
}

.Guide-panel.active {
  display: block;
}

.Guide-panel h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #005f75;
  margin: clamp(0.5rem, 2vw, 1rem) 0 clamp(1rem, 3vw, 2rem);
  line-height: 1.2;
}

.Guide-panel h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin: clamp(1.1rem, 1.2vw, 2.2rem) 0 clamp(0.2rem, 1vw, 0.7rem);
  color: #005f75;
}

.Guide-panel h4 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #455062;
  margin: 0 0 clamp(0.5rem, 1.5vw, 1rem);
}

.Guide-panel h5 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #455062;
  font-weight: bold;
  margin: 0 0 clamp(0.2rem, 1vw, 0.7rem);
}

.Guide-panel p {
  font-size: clamp(1rem, 1.5vw, 1.2em);
  margin: clamp(0.8rem, 1.5vw, 1rem) 0;
  color: #455062;
}

.Guide-divider {
  height: 1px;
  background: #dfe3e6;
  margin: 18px 0;
}

.Guide-callout {
  border-left: 4px solid #00a6c3;
  background: rgba(0, 166, 195, 0.06);
  padding: 12px 14px;
  border-radius: 12px;
  margin: 16px 0;
  color: #455062;
}

.Guide-bullets {
  padding-left: 18px;
  margin: 10px 0 0;
}

.Guide-nextRow {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #dfe3e6;
  padding-top: 16px;
}

.Guide-navBtn,
.Guide-nextBtn {
  border: 1px solid #dfe3e6;
  background: #ffffff;
  color: #005f75;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 160ms ease, border-color 160ms ease, transform 80ms ease;
}

.Guide-navBtn:hover,
.Guide-nextBtn:hover {
  background: rgba(223, 227, 230, 0.35);
  border-color: rgba(0, 95, 117, 0.35);
}

.Guide-navBtn:active,
.Guide-nextBtn:active {
  transform: translateY(1px);
}

.Guide-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 166, 195, 0.10);
  border: 1px solid rgba(0, 166, 195, 0.25);
  color: #005f75;
  font-weight: 700;
}

.Guide-arrow--left {
  order: -1;
}

.Guide-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.Guide-images img {
  width: calc(50% - 6px);
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.Guide-images img:nth-child(3) {
  width: 100%;
}

.Guide-images img:only-child {
  width: 100%;
}

.Guide-tableWrap {
  margin: 12px 0 0;
  border: 1px solid #dfe3e6;
  border-radius: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.Guide-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px;
}

.Guide-table p {
  font-size: clamp(0.7rem, 1.3vw, 1em);
  color: #455062;
  margin: 0;
}

.Guide-table thead th {
  position: sticky;
  top: 0;
  background: #f7f9fa;
  color: #005f75;
  text-align: left;
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid #dfe3e6;
  white-space: nowrap;
}

.Guide-table tbody th,
.Guide-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #dfe3e6;
  vertical-align: top;
}

.Guide-table tbody tr:last-child th,
.Guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.Guide-table tbody tr:hover {
  background: rgba(0, 166, 195, 0.05);
}

.Guide-table thead th:first-child {
  border-top-left-radius: 14px;
}

.Guide-table thead th:last-child {
  border-top-right-radius: 14px;
}

.Guide-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 5px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85em;
  border: 1px solid rgba(0, 95, 117, 0.18);
  background: rgba(0, 95, 117, 0.06);
  color: #005f75;
  white-space: nowrap;
}

.Guide-pill.is-high {
  border-color: rgba(0, 166, 195, 0.55);
  background: rgba(0, 166, 195, 0.25);
  color: #005f75;
}

.Guide-pill.is-mid {
  border-color: rgba(0, 166, 195, 0.40);
  background: rgba(0, 166, 195, 0.15);
  color: #00a6c3;
}

.Guide-pill.is-low {
  border-color: rgba(223, 227, 230, 0.9);
  background: rgba(223, 227, 230, 0.45);
  color: #455062;
}

.Guide-tableWrap:focus {
  outline: 3px solid rgba(0, 166, 195, 0.25);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .Guide-layout {
    grid-template-columns: 1fr;
  }

  .Guide-toc {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #dfe3e6;
  }

  .Guide-content {
    padding: 18px 16px 26px;
  }

  .Guide-header {
    padding: 90px 10px 40px;
  }
}

@media (max-width: 700px) {
  .Guide-images {
    flex-direction: column;
  }

  .Guide-images img {
    width: 100%;
  }

  .Guide-table {
    min-width: 720px;
  }
}

/* GET IN TOUCH */

.contact-intro {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  padding-top: clamp(7rem, 12vh, 10rem);
  text-align: center;
}

.contact-intro h1 {
  color: #eef6fd;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
}

.contact-lead {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #eef6fd;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  font-weight: bold;
  line-height: 1.5;
}

.email-contact-card {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(1.8rem, 5vw, 2.5rem);
  background-color: #dfe3e6;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.email-contact-card p {
  margin-top: 0;
}

.email-card-label {
  color: #455062;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.primary-email {
  display: inline-block;
  width: fit-content;
  margin: 0.2rem auto 1.2rem;

  color: #00a8c6;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  text-decoration: none;

  user-select: text;
  -webkit-user-select: text;

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.primary-email:hover {
  color: #008ba5;
  text-decoration: underline;
}

.email-help {
  max-width: 500px;
  margin: 0 auto 1.5rem !important;
  color: #455062;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: bold;
  line-height: 1.5;
}

.email-button {
  display: inline-block;
  padding: 0 22px;
  background-color: #00a8c6;
  border-radius: 7px;
  text-decoration: none;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.email-button p {
  margin: 12px 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
}

.email-button:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.response-time {
  margin: 1.5rem 0 0 !important;
  color: #455062;
  font-size: 0.9rem;
  font-weight: bold;
}

.form-section-intro {
  max-width: 500px;
  width: 90%;
  margin: 4rem auto 1rem;
  text-align: center;
}

.form-section-intro h2 {
  margin: 0 0 0.5rem;
  color: #eef6fd;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.form-section-intro p {
  margin: 0;
  color: #eef6fd;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  font-weight: bold;
}

.form {
  max-width: 500px;
  width: 90%;
  margin: 20px auto;
  padding: clamp(20px, 5vw, 30px);
  background-color: #dfe3e6;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.form-label {
  display: block;
  margin: 2px 0 5px 0;
  font-weight: bold;
  color: #455062;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-label p {
  color: #455062;
  font-size: clamp(0.8rem, 3vw, 1rem);
  font-weight: bold;
}

.form-input[type="text"],
.form-input[type="email"],
.form-input[type="tel"],
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: #fff;
}

.form-button {
  display: inline-block;
  margin: 10px;
  padding: 5px;
  background-color: #00a8c6;
  border-radius: 7px;
  text-decoration: none;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.form-button p {
  margin: 12px 0;
  color: #ffffff;
  font-size: 1rem;
}

.form-button:hover {
  transform: translateY(-3px);
  opacity: 0.7;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.heard-wrap {
  max-width: 560px;
  margin: 24px auto 0;
  padding: 0;
  text-align: left;
}

.heard-wrap h4 {
  color: #eef6fd;
}

.heard-wrap p {
  color: #eef6fd;
}

#heard-form {
  display: grid;
  gap: 12px;
}

#heard-form select,
#heard-form input[type="text"] {
  font: inherit;
  line-height: 1.4;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #dfe3e6;
  box-sizing: border-box;
}

#heard-form select:focus,
#heard-form input[type="text"]:focus {
  outline: 3px solid rgba(59, 130, 246, 0.25);
  border-color: #93c5fd;
}

.cta-button--small {
  padding: 10px 16px;
  font-size: 1rem;
}

.form-msg {
  min-height: 1.2em;
  margin: 0;
  color: #455062;
}

.form-msg.error {
  color: #455062;
}

@media (max-width: 600px) {

  .contact-intro {
    width: 92%;
    padding-top: 6rem;
  }

  .contact-intro h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .email-contact-card {
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .primary-email {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
    word-break: break-word;
  }

  .email-button {
    width: 100%;
    box-sizing: border-box;
  }

  .form-section-intro {
    margin-top: 3rem;
  }

  .form {
    padding: 20px;
    box-sizing: border-box;
  }

  .heard-wrap {
    width: 90%;
  }
}

/* FAQ PAGE */

.faq-body {
  background: #eef6fd;
}

.faq-hero{
    background:
        url("medias/image/ALUCAD/heroimage.webp")
        center center/cover
        no-repeat;
    padding:180px 30px 120px;
    display:flex;
    justify-content:center;
}

.faq-overlay{
    width:min(100%,1400px);
    background: rgba(238, 246, 253, 0.7);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.45);
    border-radius:25px;
    padding:60px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.12);
}

.faq-hero-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  text-align: center;
}

.faq-eyebrow {
  margin: 0 0 14px;
  font-family: 'Fira', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #00a6c3;
}

.faq-hero h1 {
  max-width: 1300px;
  margin: 0 auto 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #005f75;
}

.faq-intro {
  max-width: 1000px;
  margin: 0 auto 36px;
  font-family: 'Fira', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  color: #455062;
}

.faq-search {
  display: flex;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 7px;
  background: #eef6fd;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.faq-search input {
  min-width: 0;
  flex: 1;
  padding: 15px 17px;
  border: 0;
  border-radius: 3px;
  font-family: 'Fira', sans-serif;
  font-size: 1rem;
  color: #455062;
  background: #fff;
}

.faq-search input:focus {
  outline: 2px solid #00a6c3;
  outline-offset: -2px;
}

.faq-search button {
  padding: 13px 24px;
  border: 0;
  border-radius: 10px;
  font-family: 'Fira', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  background: #455062;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.faq-search button:hover {
  background: #00a6c3;
}

.faq-search-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-family: 'Fira', sans-serif;
  color: #fff;
}

.faq-category-nav {
  position: sticky;
  top: 70px;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  overflow-x: auto;
  background: #eef6fd;
  border-bottom: 1px solid #e6e8eb;
  backdrop-filter: blur(5px);
}

.faq-category-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 2px;
  font-family: 'Fira', sans-serif;
  font-size: 1rem;
  color: #455062;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.faq-category-nav a:hover {
  color: #fff;
  background: #00a6c3;
}

.faq-page-inner {
  width: min(1120px, calc(100% - 60px));
  margin: 0 auto;
  padding: 80px 0 100px;
}

.faq-category {
  scroll-margin-top: 150px;
  margin-bottom: 90px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-heading {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-bottom: 30px;
}

.faq-category-number {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: #005f75;
}

.faq-category-heading h2 {
  margin: 0 0 5px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: #005f75;
}

.faq-category-heading > div > p {
  max-width: 760px;
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5e6570;
}

.faq-list {
  border-top: 1px solid #dfe3e7;
}

.faq-item {
  border-bottom: 1px solid #dfe3e7;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 24px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question > span:first-child {
  font-family: 'Fira', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #455062;
  transition: color 0.25s ease;
}

.faq-question:hover > span:first-child,
.faq-item.is-open .faq-question > span:first-child {
  color: #00a6c3;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #00a6c3;
  border-radius: 50%;
  font-family: 'Fira', sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: #00a6c3;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.faq-item.is-open .faq-icon {
  color: #fff;
  background: #00a6c3;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 55px 27px 4px;
}

.faq-answer-inner {
  max-width: 850px;
  padding-left: 20px;
  border-left: 2px solid #00a6c3;
}

.faq-answer p {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.4;
  color: #455062;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  display: inline-block;
  font-family: 'Fira', sans-serif;
  font-weight: 500;
  color: #00a6c3;
  text-decoration: none;
}

.faq-answer a:hover {
  color: #005f75;
}

.faq-no-results {
  margin-bottom: 50px;
  padding: 35px;
  border: 1px solid #dfe3e7;
  text-align: center;
  background: #f8f9fa;
}

.faq-no-results h2 {
  margin-top: 0;
  color: #262c37;
}

.faq-no-results p {
  margin-bottom: 0;
}

.faq-contact-section {
  padding: 0 40px 100px;
}

.faq-contact-box {
  width: min(1000px, 100%);
  margin: auto;
  padding: 65px;
  border-radius:25px;
  text-align: center;
  background: linear-gradient(to bottom, #00a6c3, #005f75);
}

.faq-contact-box h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 400;
  color: #eef6fd;
}

.faq-contact-box p {
  max-width: 800px;
  margin: 0 auto 28px;
  font-family: 'Fira', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.4;
  color: #eef6fd;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .faq-category-nav {
    justify-content: flex-start;
  }

  .faq-page-inner {
    width: min(100% - 40px, 1120px);
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 120px 20px 55px;
  }

  .faq-hero h1 {
    font-size: 2.3rem;
  }

  .faq-intro {
    font-size: 1rem;
  }

  .faq-category-nav {
    top: 70px;
    padding: 11px 15px;
  }

  .faq-page-inner {
    width: calc(100% - 32px);
    padding: 60px 0 80px;
  }

  .faq-category {
    margin-bottom: 70px;
  }

  .faq-category-heading {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .faq-category-number {
    font-size: 1.4rem;
  }

  .faq-question {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 14px;
    padding: 20px 0;
  }

  .faq-question > span:first-child {
    font-size: 1rem;
  }

  .faq-icon {
    width: 31px;
    height: 31px;
  }

  .faq-answer {
    padding: 0 0 24px;
  }

  .faq-answer-inner {
    padding-left: 15px;
  }

  .faq-contact-section {
    padding: 0 16px 70px;
  }

  .faq-contact-box {
    padding: 45px 22px;
  }
}

@media (max-width: 520px) {
  .faq-search {
    display: block;
    padding: 6px;
  }

  .faq-search input {
    width: 100%;
  }

  .faq-search button {
    width: 100%;
    margin-top: 5px;
  }
}

/* MINI FAQ SECTION */

.mini-faq-section {
  padding: 90px 40px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

.mini-faq-container {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.mini-faq-heading {
  max-width: 900px;
  margin: 0 auto 45px;
  text-align: center;
}

.mini-faq-eyebrow {
  margin: 0 0 12px;
  font-family: 'Fira', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  color: #00a6c3;
}

.mini-faq-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: #00a6c3;
}

.mini-faq-heading > p:not(.mini-faq-eyebrow) {
  margin: 0;
  font-family: 'Fira', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  color: #eef6fd;
}

.mini-faq-list {
  border-top: 1px solid #eef6fd;
}

.mini-faq-item {
  border-bottom: 1px solid #eef6fd;
}

.mini-faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 23px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.mini-faq-question > span:first-child {
  font-family: 'Fira', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #eef6fd;
  transition: color 0.25s ease;
}

.mini-faq-question:hover > span:first-child,
.mini-faq-item.is-open .mini-faq-question > span:first-child {
  color: #00a6c3;
}

.mini-faq-icon {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid #00a6c3;
  border-radius: 50%;
  font-family: 'Fira', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #00a6c3;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.mini-faq-item.is-open .mini-faq-icon {
  color: #eef6fd;
  background: #00a6c3;
  transform: rotate(45deg);
}

.mini-faq-answer {
  padding: 0 55px 24px 4px;
}

.mini-faq-answer-inner {
  max-width: 850px;
  padding-left: 20px;
  border-left: 2px solid #00a6c3;
  text-decoration: none;
}

.mini-faq-answer p {
  margin: 0;
  font-family: 'Fira', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #eef6fd;
}

.mini-faq-link-wrapper {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 768px) {
  .mini-faq-section {
    padding: 65px 20px;
  }

  .mini-faq-heading {
    margin-bottom: 35px;
  }

  .mini-faq-question {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 14px;
    padding: 20px 0;
  }

  .mini-faq-question > span:first-child {
    font-size: 1rem;
  }

  .mini-faq-icon {
    width: 30px;
    height: 30px;
  }

  .mini-faq-answer {
    padding: 0 0 22px;
  }

  .mini-faq-answer-inner {
    padding-left: 15px;
  }
}

/* THANK YOU */
.thank-you-page {
  background: #000000
}

.thank-you-box {
  max-width: 500px;
  margin: clamp(4rem, 10vh, 8rem) auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #005f75;
  font-family: inherit;
}

.thank-you-box h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.thank-you-box p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* PRIVACY POLICIES */
.privacy-container {
    display: flex;
    justify-content: center;
    padding: clamp(1rem, 3vw, 3rem);
    margin: clamp(4rem, 10vh, 8rem) auto; 
    box-sizing: border-box;
}

.privacy-policy {
    max-width: 1200px;
    width: 100%;
    background: #fff; 
    padding: clamp(1.5rem, 2vw, 3rem);
    line-height: 1.6;
    border-radius: 8px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
}

/* Cookie banner */
.cc-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #eef6fd;
  box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}

.cc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cc-btn--reject {
  border: 1px solid #b0bfc5;
  background: #b0bfc5;
  color: #455062;
}

.cc-btn--accept {
  border: 1px solid #00a6c3;
  background: #00a6c3;
  color: #455062;
}


