/* Font size adjustments for presentation section on mobile */
@media (max-width: 575.98px) {

  .section-background h1,
  .section-background h2 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
}

/* Video section responsive styles */
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
}

.video-wrapper {
  position: relative;
  flex-shrink: 0;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper video:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-title {
  font-size: 0.9rem;
  color: #333;
  margin-top: 0.5rem;
}

/* Horizontal video styling */
.video-horizontal {
  max-width: 720px;
  flex: 1 1 350px;
}

.video-horizontal video {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Vertical video styling - Hidden on desktop, visible only on mobile */
.video-vertical {
  display: none;
  /* Hidden by default on desktop */
  max-width: 350px;
  flex: 1 1 200px;
}

.video-vertical video {
  aspect-ratio: 9/16;
  object-fit: cover;
}

/* Tablet responsiveness */
@media (max-width: 992px) {
  .video-container {
    gap: 1.5rem;
  }

  .video-horizontal {
    max-width: 500px;
    flex: 1 1 300px;
  }

  /* Keep vertical videos hidden on tablets */
  .video-vertical {
    display: none;
    max-width: 300px;
    flex: 1 1 180px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .video-wrapper {
    max-width: 100% !important;
    width: 100%;
  }

  /* Hide horizontal videos on mobile */
  .video-horizontal {
    display: none !important;
    max-width: 100%;
  }

  .video-horizontal video {
    aspect-ratio: 16/9;
    max-height: 250px;
  }

  /* Show vertical videos only on mobile */
  .video-vertical {
    display: block !important;
    /* Show vertical videos on mobile */
    max-width: 280px;
    margin: 0 auto;
  }

  .video-vertical video {
    aspect-ratio: 9/16;
    max-height: 400px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {

  /* Keep horizontal videos hidden on small mobile */
  .video-horizontal {
    display: none !important;
  }

  .video-horizontal video {
    max-height: 200px;
  }

  /* Vertical videos remain visible on small mobile */
  .video-vertical {
    display: block !important;
    max-width: 240px;
  }

  .video-vertical video {
    max-height: 320px;
  }

  .video-title {
    font-size: 0.8rem;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .video-container {
    flex-direction: row;
    justify-content: center;
  }

  /* Hide horizontal videos in landscape mobile too */
  .video-horizontal {
    display: none !important;
    max-width: 400px;
  }

  /* Keep vertical videos visible in landscape mobile */
  .video-vertical {
    display: block !important;
    max-width: 200px;
  }

  .video-horizontal video,
  .video-vertical video {
    max-height: 180px;
  }
}

/* AVAILABLE FONTS */
/* 
font-family: 'Merriweather', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Rubik', sans-serif;
font-family: 'Vollkorn', serif;
*/

:root {
  /*GRID*/
  --grid-width: 1200px !important;
  --grid-gutter: 20px;

  /*TEXT*/
  --text-family: 'Montserrat', sans-serif;
  --text-fsize: 16px;
  --text-lheight: 1.2rem;

  /*COLORS*/
  --color-primary: #5A308D;
  --color-secondary: #6CB476;
  --color-black: #12191F;
  --color-white: #ffffff;
  --color-grey: #6D747A;
  --color-light-grey: #D3D5D7;

  --color-linkedin: #0A66C2;
  --color-youtube: #e52d27;
  --color-twitter: #1D9BF0;
  --color-facebook: #3b5998;
  --color-instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);

}

[data-ae-animation] {
  transition-property: opacity;
  transition-duration: 0.8s;
  opacity: 0;
}

[data-ae-animation].animated {
  opacity: 1;
}

html,
body {
  font-family: var(--text-family);
  font-size: var(--text-fsize);
  line-height: var(--text-lheight);
  color: var(--color-black);
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  background: #F5F5F5;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 3rem;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

h1:before,
h1:after,
h2:before,
h2:after {
  content: '';
  display: block;
  margin: 0 8px;
  flex: 1;
  border-bottom: 2px solid var(--color-primary);
}

h5 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: var(--color-black);
}

.clip-img {
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.row {
  max-width: var(--grid-width);
  margin: auto;
}

.row.plus {
  max-width: 65%
}

.row.wide {
  max-width: 80%
}

.row.fullwidth {
  max-width: 100%
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(90, 48, 141, .25);
}

.drop-cap p:first-of-type::first-letter {
  float: left;
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  margin-right: 4px;
  text-shadow: var(--color-grey) .05em .05em;
}

/* NAVBAR */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: background-color 0.5s;
}

.nav {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  transition: height 0.25s;
}

.nav__logo {
  text-decoration: none;
  opacity: 0;
}

.nav__logo-image {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.header.header--active {
  background-color: #ffffffa8;
  backdrop-filter: blur(30px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.header.header--active .navigation>li {
  color: var(--color-primary);
}

.header.header--active .nav {
  height: 60px;
}

.navigation {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  gap: 24px;
  padding: 0px;
  background-color: var(--background);
}

.navigation>li {
  display: flex;
  position: relative;
  padding: 0px;
  color: var(--color-primary);
  cursor: pointer;
  width: max-content;
  transition: all 0.2s;
  font-size: 1.2rem;
  font-weight: bold;
}

.navigation>li:hover {
  color: var(--color-primary);
}

.navigation>li::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  border-radius: 1px;
  left: 0;
  /* background: linear-gradient(90deg,var(--color-black), var(--color-primary), var(--color-black)); */
  background: var(--color-primary);
  transform-origin: bottom center;
  transition: transform 0.3s ease-out;
}

.navigation>li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

/* End of NAVBAR */

.feature-banner {
  height: 100vh;
  width: 100%;
}

.feature-banner img {
  position: absolute;
}

.feature-banner img:nth-child(1) {
  width: auto;
  height: 20%;
  inset: -20px 0 0 10px !important;
  scale: 1.1;
}

.feature-banner img:nth-child(2) {
  width: auto;
  height: 60%;
  position: absolute;
  inset: 25% !important;
  transform: translate(-50%, -50%);
}

.feature-banner img:nth-child(3) {
  width: auto;
  height: 80%;
  position: absolute;
  inset: auto 0 0 auto !important;
}

.feature-banner img:nth-child(4) {
  width: auto;
  height: 30%;
  position: absolute;
  inset: auto auto 60px 60px !important;
}


.section-background {
  background: linear-gradient(334deg, #5A308D, #7C4FB0, #A08FC2, #6CB476, #8DCB9A, #FFFFFF);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Box */

.box {
  background: #ffffff;
  border: solid 1px rgba(224, 224, 224, 0.75);
  margin-bottom: 6em;
  padding: 3.5em;
}

.box.alt {
  background: none;
  border: none;
  padding: 0;
}

/* Feature */

.feature {
  position: relative;
  height: 20em;
  background: var(--color-white);
}

.feature:after {
  clear: both;
  content: '';
  display: block;
}

.feature h3,
.feature h4,
.feature h5,
.feature h6 {
  text-align: inherit;
}

.feature .image {
  display: inline-block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 50%;
}

.feature .image img {
  display: block;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}

.feature:before {
  background: blue;
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.feature .content {
  display: inline-block;
  padding: 3.5em;
  vertical-align: middle;
  width: 48%;
}

.feature .content h3 {
  margin-bottom: 0.5em;
}

.feature .content :last-child {
  margin: 0;
}

.feature.left {
  text-align: left;
}

.feature.left .image {
  float: left;
}

.feature.left .image img {
  right: 0;
  top: 0;
}

.feature.left .content {
  padding-right: 0;
}

.feature.right {
  text-align: right;
}

.feature.right .image {
  float: right;
}

.feature.right .image img {
  left: 0;
  top: 0;
}

.feature.right .content {
  padding-left: 0;
}

.feature.long .content {
  padding-top: 0;
}

/* Image */
.image {
  border: 0;
  display: inline-block;
  position: relative;
}

.image:after {
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
}

.feature.left .image:after {
  background: var(--color-primary);
}

.feature.right .image:after {
  background: var(--color-secondary);
}

.image img {
  display: block;
}

.image.fit {
  display: block;
}

.image.fit img {
  display: block;
  width: 100%;
}

.image.feature {
  display: block;
  margin: 0 0 2em 0;
}

.image.feature img {
  display: block;
  width: 100%;
}

.image.icon {
  -moz-perspective: 500px;
  -webkit-perspective: 500px;
  -ms-perspective: 500px;
  perspective: 500px;
}

.image.icon:before {
  -moz-transition: -moz-transform 0.1s ease-in-out, font-size 0.1s ease-in-out;
  -webkit-transition: -webkit-transform 0.1s ease-in-out, font-size 0.1s ease-in-out;
  -ms-transition: -ms-transform 0.1s ease-in-out, font-size 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, font-size 0.1s ease-in-out;
  color: #fff;
  font-size: 6em;
  height: 1em;
  left: 50%;
  line-height: 1em;
  margin: -0.5em 0 0 -0.5em;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 1em;
  z-index: 1;
}

.image.icon:hover:before {
  -moz-transform: translateZ(1em);
  -webkit-transform: translateZ(1em);
  -ms-transform: translateZ(1em);
  transform: translateZ(1em);
}

.image.icon:hover:after {
  opacity: 1;
}

span.image.icon {
  cursor: default;
}

/* Section Container */

.section-container {
  margin: 0 auto;
  max-width: 100%;
  width: 51em;
}

.section-container.medium {
  width: 38.25em;
}

@media screen and (max-width: 1280px) {

  .section-container {
    width: 48em;
  }

  .section-container.medium {
    width: 36em;
  }

}

@media screen and (max-width: 980px) {

  .section-container {
    width: 95%;
  }

  .section-container.medium {
    width: 71.25%;
  }

}

@media screen and (max-width: 840px) {

  .section-container {
    width: 95% !important;
  }

}

@media screen and (max-width: 736px) {

  .section-container {
    width: 90% !important;
  }

}

@media screen and (max-width: 480px) {

  .section-container {
    width: 100% !important;
  }

}

/* accordion */
/* Radio inputs escondidos */
input[type='radio'][name='sh-accordion'] {
  display: none;
}

/* Item e título */
.sh-item {
  display: block;
  margin-bottom: 6px;
}

.sh-title {
  padding: 1.2rem 2.2rem;
  border-radius: 8px;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
  font-size: 1.4rem;
  background: var(--color-white);
}

.sh-title:after {
  content: '\25bc';
  display: inline-block;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Conteúdo escondido */
.sh-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  background: var(--color-white);
}

/* Conteúdo visível ao abrir */
input[type='radio']:checked+.sh-item .sh-content {
  max-height: 100%;
  opacity: 1;
  visibility: visible;
  padding-top: 24px;
  margin-bottom: 12px;
  top: -12px;
  position: relative;
  z-index: -1;
  border: 2px solid var(--color-primary);
}

input[type='radio']:checked+.sh-item .sh-title:after {
  transform: rotate(180deg);
}

/* Estilo dos membros */
.sh-member {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sh-member-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
  object-position: top;
  aspect-ratio: 1/1;
}

.sh-member-info {
  font-size: 1.2rem;
  color: var(--color-primary);
  line-height: 1.4;
}

/* cards */
.card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.card-body {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: background-color .6s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card:hover .card-body {
  background-color: rgba(90, 48, 141, .9);
}

.card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: all .5s .3s;
}

.card:hover .card-body h5 {
  opacity: 1;
  visibility: visible;
}

.card-body p {
  font-size: 1rem;
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: all .5s .3s;
}

.card:hover .card-body p {
  opacity: 1;
  visibility: visible;
}

/* BUTTON SPLIT */
.btn-split,
.btn-split *,
.btn-split :after,
.btn-split :before,
.btn-split:after,
.btn-split:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-split {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  margin: auto;
  border: 3px solid;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  padding: 20px 60px;
  position: relative;
  text-transform: uppercase;
}

.btn-split:disabled {
  cursor: default;
}

.btn-split [hidden] {
  display: none;
}

.btn-split .new,
.btn-split .old span {
  font-weight: 900;
  transition: transform 0.2s;
}

.btn-split .new {
  display: block;
  transform: scale(0);
}

.btn-split:hover .new {
  transform: scale(1);
}

.btn-split .old,
.btn-split .old span {
  inset: 0;
  position: absolute;
}

.btn-split .old span {
  background: var(--color-primary);
  color: var(--color-white);
  display: block;
  display: grid;
  place-items: center;
}

.btn-split .old span:first-child {
  -webkit-clip-path: polygon(0 0, 51% 0, 51% 100%, 0 100%);
  clip-path: polygon(0 0, 51% 0, 51% 100%, 0 100%);
}

.btn-split .old span:nth-child(2) {
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.btn-split:hover .old span:first-child {
  transform: translateY(-100%);
}

.btn-split:hover .old span:nth-child(2) {
  transform: translateY(100%);
}

/* SOCIAL ICONS */

.social-media-buttons {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 24px;
}

.social-media-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 2px solid white;
  cursor: pointer;
  transition: all 0.3s;
  display: grid;
  place-items: center;
}

.social-media-button:hover {
  outline-offset: 3px;
  transition: all 0.3s;
}

.social-media-button i {
  transition: all 0.3s;
}

.social-media-button:hover i {
  transform: scale(1.15);
}

.social-media-button:hover:nth-child(3) {
  background: var(--color-instagram);
}

.social-media-button:hover:nth-child(2) {
  background: var(--color-facebook);
}

.social-media-button:hover:nth-child(1) {
  background: var(--color-linkedin);
}

/* FOOTER*/

.footer ul {
  list-style: none;
}

.footer a {
  text-decoration: none;
  color: inherit;
}

.footer p {
  padding-bottom: 16px;
}

.footer i {
  font-size: 24px;
}

.footer {
  padding-block: 50px;
  padding-bottom: 0px;
  padding-top: 15px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  margin-top: auto;
}

.footer__container {
  max-width: 1160px;
  margin: auto;
  padding: 0 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  row-gap: 20px;
}

.footer__title {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}

.footer__list-link {
  transition: color 0.25s;
}

.footer__list-link:hover {
  color: var(--color-light-grey);
}

.footer__divider {
  margin-block: 15px;
  border: none;
  border-top: 3px solid rgb(255, 255, 255);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__list--bottom {
  flex-direction: row;
}

.footer-bottom {
  height: 60px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--color-secondary);
  padding: 4px;
  color: var(--color-white);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 1160px;
  max-width: 1160px;
  margin: auto;
  padding: 0 15px;
}

.footer-bottom>small {
  font-size: 16px;
  margin: 0 4px;
}

.nav-mobile {
  display: none;
}

/* Mostra só em mobile */
@media (max-width: 1199.98px) {
  .nav-mobile {
    display: block;
    position: sticky;
    top: 0;
    background-color: #ffffffa8;
    backdrop-filter: blur(30px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .nav-mobile__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 16px;
  }

  /* Logo */
  .nav-mobile img {
    height: 40px;
  }

  /* Botão hamburguer */
  .nav-mobile__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
  }

  .nav-mobile__toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  /* Menu lateral oculto (com transição) */
  .nav-mobile__menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    overflow: hidden;
    max-height: 0;
    /* fechado */
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Menu ativo com slide-down */
  .nav-mobile__menu.active {
    max-height: 400px;
    /* suficiente para conter todos os links */
    opacity: 1;
  }

  .nav-mobile__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .nav-mobile__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-mobile__link {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
  }

  .nav-mobile__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ddd;
  }

  /* Animação do hamburguer -> X */
  .nav-mobile__toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
    background-color: var(--color-primary);
  }

  .nav-mobile__toggle.open .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile__toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
    background-color: var(--color-primary);
  }

  .feature {
    display: flex;
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .feature .image {
    width: 100%;
    float: none !important;
    display: block;
    height: auto;
    margin-bottom: 1.5em;
    position: relative;
  }

  .feature .image img {
    position: static;
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .feature .content {
    width: 100%;
    padding: 0 1em 2em 1em;
    text-align: center;
  }

  .feature.left .content,
  .feature.right .content {
    padding: 0 1em 2em 1em;
  }

  .feature.left .image,
  .feature.right .image {
    float: none;
  }

}

@media (max-width: 575.98px) {

  /* XS */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn-split {
    font-size: .9rem;
    padding: 12px 40px;
  }


  .header {
    display: none !important;
  }

  .feature-banner img:nth-child(1) {
    width: 40%;
    height: auto;
    inset: -10px 0 0 10px !important;
    scale: 1.1;
  }

  .feature-banner img:nth-child(2) {
    width: 80%;
    height: auto;
    position: absolute;
    inset: auto auto 60px 60px !important;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .feature-banner img:nth-child(3) {
    width: auto;
    height: 80%;
    position: absolute;
    inset: auto 0 0 auto !important;
  }

  .feature-banner img:nth-child(4) {
    width: 50%;
    height: auto;
    position: absolute;
    inset: 25% 0 0 45% !important;
  }

}

@media (min-width: 576px) and (max-width: 767.98px) {

  /* SM */
  .header {
    display: none !important;
  }

  .feature-banner {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* MD */
  .header {
    display: none !important;
  }

  .feature-banner img:nth-child(1) {
    width: 30%;
    height: auto;
    inset: -10px 0 0 10px !important;
    scale: 1.1;
  }

  .feature-banner img:nth-child(2) {
    width: 50%;
    height: auto;
    position: absolute;
    inset: auto auto 60px 60px !important;
    z-index: 2;
  }

  .feature-banner img:nth-child(3) {
    width: 80%;
    height: auto;
    position: absolute;
    inset: auto 0 0 auto !important;
  }

  .feature-banner img:nth-child(4) {
    width: 40%;
    height: auto;
    position: absolute;
    inset: 25% 0 0 10% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

  /* LG */
  /* .feature-banner {
    display: none !important;
  } */
  .header {
    display: none !important;
  }

  .feature-banner img:nth-child(1) {
    width: auto;
    height: 20%;
    inset: -20px 0 0 10px !important;
    scale: 1.1;
  }

  .feature-banner img:nth-child(2) {
    width: auto;
    height: 60%;
    position: absolute;
    inset: 25% !important;
    transform: translate(-50%, -50%);
  }

  .feature-banner img:nth-child(3) {
    width: auto;
    height: 80%;
    position: absolute;
    inset: auto 0 0 auto !important;
  }

  .feature-banner img:nth-child(4) {
    width: auto;
    height: 30%;
    position: absolute;
    inset: auto auto 60px 60px !important;
  }

}

/* Contact Form Styles */
#form-messages {
  margin-bottom: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

#contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(90, 48, 141, 0.25);
}

#contact-form .form-label {
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

/* Button loading state */
.btn-split:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-split.submitted .new {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.btn-split.submitted .old {
  transform: translateY(100%) !important;
  opacity: 0 !important;
}

/* Form validation feedback */
.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: #28a745;
}

/* Message animations */
#form-messages {
  animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Loading spinner for button */
.btn-split.loading:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}