/*
 * BRAVE Studio - Main Stylesheet
 * This file contains all custom styling for the BRAVE Studio website
 */

/* ===== GENERAL STYLES ===== */
:root {
  --foreground-rgb: 0, 0, 0;
  --background-rgb: 255, 255, 255;
  --primary-color: #000;
  --secondary-color: #fff;
  --transition-speed: 0.3s;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: rgb(var(--foreground-rgb));
  background: rgb(var(--background-rgb));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container-small {
  max-width: 800px;
}

.container-extra-small {
  max-width: 600px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
}

.hero-title {
  font-size: 15vw;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.025em;
}

.heading-large {
  font-size: 14vw;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.025em;
}

.heading-medium {
  font-size: 3rem;
  line-height: 1;
}

.heading-small {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 600;
}

.section-title-text {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.caption {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.paragraph-large {
  font-size: 1.25rem;
  line-height: 1.75;
}

.paragraph-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: relative;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.navbar-header {
  display: flex;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  display: flex;
  align-items: center;
}

.logo-img {
  transition: all 0.3s ease;
  max-height: 100px;
}

.navbar.scrolled .logo-img {
  max-height: 150px;
}

.location {
  display: flex;
  align-items: center;
}

.location-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.navbar-toggle {
  background: transparent;
  border: 1px solid white;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
}

.menu-icon-top,
.menu-icon-middle,
.menu-icon-bottom {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}

.menu-icon-top {
  top: 0;
}

.menu-icon-middle {
  top: 8px;
}

.menu-icon-bottom {
  bottom: 0;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  margin-left: 1.5rem;
}

.navigation-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: white;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s;
}

.navigation-link:hover {
  opacity: 1;
}

.navigation-icon-image {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

/* ===== HERO SECTION ===== */
/* Tailwind classes are used for the hero section */

/* Support for non-Tailwind browsers */
.relative {
  position: relative;
}

.min-h-screen {
  min-height: 100vh;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.text-white {
  color: white;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-\[-1\] {
  z-index: -1;
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.h-\[calc\(100vh-6rem\)\] {
  height: calc(100vh - 6rem);
}

.pt-16 {
  padding-top: 4rem;
}

.items-center {
  align-items: center;
}

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

.text-\[15vw\] {
  font-size: 15vw;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.leading-\[0\.8\] {
  line-height: 0.8;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.mt-auto {
  margin-top: auto;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.opacity-80 {
  opacity: 0.8;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.space-y-0 > * + * {
  margin-top: 0;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.justify-between {
  justify-content: space-between;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.max-w-md {
  max-width: 28rem;
}

.ml-auto {
  margin-left: auto;
}

.inline-flex {
  display: inline-flex;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-white {
  border-color: white;
}

.rounded-full {
  border-radius: 9999px;
}

.hover\:bg-white:hover {
  background-color: white;
}

.hover\:text-black:hover {
  color: black;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

@media (min-width: 768px) {
  .md\:pt-24 {
    padding-top: 6rem;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }
}

/* About Section */
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.gap-12 {
  gap: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.-rotate-90 {
  transform: rotate(-90deg);
}

.origin-bottom-left {
  transform-origin: bottom left;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.-translate-x-full {
  transform: translateX(-100%);
}

.origin-bottom-right {
  transform-origin: bottom right;
}

.ml-4 {
  margin-left: 1rem;
}

.h-px {
  height: 1px;
}

.w-16 {
  width: 4rem;
}

.bg-black {
  background-color: black;
}

.ml-16 {
  margin-left: 4rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.border-black {
  border-color: black;
}

.hover\:bg-black:hover {
  background-color: black;
}

.hover\:text-white:hover {
  color: white;
}

.pt-\[125\%\] {
  padding-top: 125%;
}

@media (min-width: 768px) {
  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid currentColor;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.button.white {
  color: white;
  border-color: white;
}

.button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.button.white:hover {
  background-color: white;
  color: black;
}

.button-container {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.button-inner {
  display: flex;
  align-items: center;
}

.button-icon-front,
.button-icon-back {
  width: 16px;
  height: 16px;
}

.button-icon-back {
  margin-right: 0.5rem;
}

.button-icon-front {
  margin-left: 0.5rem;
}

.button-text-wrapper {
  position: relative;
}

.button-text-front,
.button-text-back {
  position: relative;
  transition: transform 0.3s;
}

.button-text-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.button:hover .button-text-front {
  transform: translateY(-100%);
}

.button:hover .button-text-back {
  transform: translateY(0);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 6rem 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.divider-bottom {
  width: 100%;
  margin-top: 1rem;
}

.title-vertical-wrapper {
  display: flex;
  align-items: center;
}

.number-vertical {
  position: relative;
}

.number-vertical-inner {
  transform: rotate(-90deg);
  transform-origin: bottom left;
  white-space: nowrap;
}

.title-vertical {
  margin-left: 1rem;
}

.divider-vertical {
  width: 4rem;
  height: 1px;
  background-color: black;
  margin-left: 1rem;
}

.divider-vertical.white {
  background-color: white;
}

.about-section-content-inner {
  margin-left: 4rem;
}

.margin-bottom-small {
  margin-bottom: 1rem;
}

.margin-bottom-medium {
  margin-bottom: 2rem;
}

.margin-bottom-large {
  margin-bottom: 4rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image-inner {
  position: relative;
  padding-top: 125%;
}

.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}

.image-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MISSION SECTION ===== */
.mission-title-wrapper {
  margin-bottom: 4rem;
}

.mission-heading-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.mission-heading-number {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-left: 0.5rem;
  vertical-align: top;
}

.mission-heading-number.left {
  margin-left: 0;
  margin-right: 0.5rem;
}

.align-right {
  text-align: right;
}

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

.margin-left {
  margin-left: auto;
}

.mission-image-wrapper {
  margin-bottom: 2rem;
}

.mission-image {
  position: relative;
  padding-top: 150%;
}

/* ===== SERVICES SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
}

.split-image-wrapper {
  position: relative;
  height: 50vh;
}

.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: black; */
}

.split-content {
  background-color: black;
  color: white;
  padding: 4rem 1.5rem;
}

.accordion-wrapper {
  margin-bottom: 4rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
}

.accordion-title {
  font-size: 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-plus {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
}

.accordin-plus-line-v,
.accordin-plus-line-h {
  position: absolute;
  background-color: black;
}

.accordin-plus-line-v {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.accordin-plus-line-h {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-content {
  display: none;
  padding: 1.5rem 0;
}

.accordion-content-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.no-text-indent {
  text-indent: 0;
}

.icons-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.icons-list-item {
  display: flex;
  align-items: center;
}

.icons-list-image {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.icons-list-text {
  font-size: 0.875rem;
}

/* ===== PORTFOLIO SECTION ===== */
.section-header-caption {
  text-align: right;
}

.portfolio-tabs {
  margin-top: 2rem;
}

.portfolio-tabs-menu {
  display: flex;
  margin-bottom: 2rem;
}

.portfolio-tab-link {
  position: relative;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: inherit;
}

.portfolio-tab-link.active {
  font-weight: 600;
}

.portfolio-tab-active {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.portfolio-tab-active-background {
  width: 100%;
  height: 100%;
  background-color: black;
}

.portfolio-tab-pane {
  display: none;
}

.portfolio-tab-pane.active {
  display: block;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.project-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.project-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.project-title-wrapper {
  position: relative;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.project-title-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-link:hover .project-title-back {
  opacity: 1;
}

.project-arrow {
  width: 24px;
  height: 24px;
}

.project-arrow-inner {
  position: relative;
}

.project-arrow-front,
.project-arrow-back {
  position: relative;
  transition: transform 0.3s;
}

.project-arrow-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.project-link:hover .project-arrow-front {
  transform: translateY(-100%);
}

.project-link:hover .project-arrow-back {
  transform: translateY(0);
}

.project-content-footer {
  display: flex;
  gap: 0.5rem;
}

.project-label {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: #f0f0f0;
  border-radius: 0.25rem;
}

/* Projects List View */
.projects-list {
  margin-top: 2rem;
}

.projects-list-item {
  position: relative;
}

.projects-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1rem 0;
  position: relative;
}

.projects-list-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-list-columns {
  display: grid;
  grid-template-columns: 1fr auto auto;
  width: 100%;
  gap: 1rem;
}

.projects-list-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.projects-list-categories {
  display: flex;
  gap: 0.25rem;
}

.projects-list-comma {
  margin-right: 0.25rem;
}

.projects-list-arrow {
  width: 24px;
  height: 24px;
}

.projects-list-arrow-white {
  display: none;
}

.projects-list-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 0.3s;
}

.projects-list-link:hover .projects-list-hover {
  opacity: 0.05;
}

.projects-list-link:hover .projects-list-arrow-black {
  display: none;
}

.projects-list-link:hover .projects-list-arrow-white {
  display: block;
}

/* ===== BENEFITS SECTION ===== */
.section-with-background {
  position: relative;
  color: white;
}

.section-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.section-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.section-background-header {
  padding: 4rem 0;
}

.section-background-header-inner {
  position: relative;
}

.benefits-container {
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefits-placeholder {
  display: none;
}

.benefits-item {
  position: relative;
}

.benefits-item-inner {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
}

.benefits-divider-left,
.benefits-divider-right {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.benefits-divider-left {
  left: 0;
  top: 0;
}

.benefits-divider-right {
  right: 0;
  top: 0;
}

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

.benefits-icons {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.benefits-content {
  margin: 1rem 0;
}

.benefits-text {
  font-size: 0.875rem;
}

/* ===== BLOG SECTION ===== */
.blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2rem;
}

.blog-thumbnail {
  position: relative;
  padding-top: 65%;
  margin-bottom: 1rem;
}

.blog-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item-intro {
  position: relative;
  padding-left: 1.5rem;
}

.blog-item-circle {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: black;
}

.blog-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-item-date {
  font-size: 0.75rem;
  color: #666;
}

/* ===== FOOTER ===== */
.footer {
  background-color: black;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-rows {
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

.footer-row-top {
  margin-bottom: 4rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.margin-bottom-extra-small {
  margin-bottom: 0.5rem;
}

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

.footer-link {
  text-decoration: none;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link-inner {
  position: relative;
}

.footer-link-front,
.footer-link-back {
  position: relative;
  transition: transform 0.3s;
}

.footer-link-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.footer-link:hover .footer-link-front {
  transform: translateY(-100%);
}

.footer-link:hover .footer-link-back {
  transform: translateY(0);
}

.align-right {
  text-align: right;
}

.back-top-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.back-top-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
}

.back-top-icon-inner {
  position: relative;
}

.back-top-icon-front,
.back-top-icon-back {
  position: relative;
  transition: transform 0.3s;
}

.back-top-icon-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.back-top-link:hover .back-top-icon-front {
  transform: translateY(-100%);
}

.back-top-link:hover .back-top-icon-back {
  transform: translateY(0);
}

.footer-row-middle {
  position: relative;
  margin: 4rem 0;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-track-reverse {
  display: inline-block;
  animation: marquee-reverse 30s linear infinite;
}

.marquee-item {
  display: inline-block;
  margin-right: 2rem;
}

.footer-heading {
  font-size: 15vw;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.025em;
  opacity: 0.1;
}

.footer-circle-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-circle-link {
  display: block;
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.footer-circle-backgound {
  position: absolute;
  inset: 0;
  background-color: white;
}

.footer-circle-border {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-circle-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.footer-circle-icon-wrapper {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
}

.footer-circle-icon-front,
.footer-circle-icon-back {
  position: relative;
  transition: transform 0.3s;
}

.footer-circle-icon-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.footer-circle-link:hover .footer-circle-icon-front {
  transform: translateY(-100%);
}

.footer-circle-link:hover .footer-circle-icon-back {
  transform: translateY(0);
}

.footer-row-bottom {
  margin-top: auto;
}

.footer-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.to-right {
  justify-content: flex-end;
}

.link-inverse {
  color: white;
  text-decoration: none;
}

.link-inverse:hover {
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
  transform: translateY(50px);
}

.animate-on-scroll.fade-in {
  opacity: 0;
  transform: translateY(50px);
}

.animate-on-scroll.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.animate-on-scroll.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
}

.animate-on-scroll.zoom-in {
  opacity: 0;
  transform: scale(0.9);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Animation Delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-image-wrapper {
    height: 100vh;
  }

  .split-content {
    padding: 6rem 3rem;
  }

  .accordion-content-inner {
    grid-template-columns: 2fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-placeholder {
    display: block;
  }

  .hero-image-mobile {
    display: none;
  }

  .hidden-xs {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero-image {
    display: none;
  }

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

  .hidden-xs {
    display: none;
  }

  .navbar-nav {
    flex-direction: column;
    padding: 1rem 0;
  }

  .navbar-nav li {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .hero-content-top {
    text-align: center;
  }

  .heading-large,
  .hero-title {
    font-size: 10vw;
  }

  .heading-medium {
    font-size: 2rem;
  }

  .heading-small {
    font-size: 1.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-heading {
    font-size: 10vw;
  }

  .footer-circle-link {
    width: 150px;
    height: 150px;
  }

  .to-right {
    justify-content: flex-start;
  }
}
