/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* ============================================
   GLOBAL RESETS
   ============================================ */
:root {
  --primary-50-teal: #00aac1;
  --neutral-20-white: #fff;
  --neutral-20-black: #000;
  --secondary-30-nuvia-black: #001011;
  --tints-shades-primary-teal-10: #dbf3f6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mona Sans", sans-serif;
}

a {
  text-decoration: none;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.nav-bar {
  display: flex;
  padding: 16px 200px;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out both;
}

.nav-bar.scrolled {
  background: rgba(255, 255, 255, 0.29);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-bar.scrolled .nav-links a {
  color: var(--neutral-20-black, #000);
}

.nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--neutral-20-black, #000);
  text-align: right;
  position: relative;

  /* Desktop/Body/Regular/Medium */
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  transition: all 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: flex;
  height: 48px;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  background: var(--primary-50-teal, #00aac1);
  color: #ffffff;
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
}

.btn-arrow {
  width: 0;
  opacity: 0;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 170, 193, 0.35);
}

.btn:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

/* ============================================
   DECORATIVE LINES
   ============================================ */
.left-line {
  width: 0.4px;
  height: 100%;
  background: #ffffff;
  left: 121px;
  top: 0;
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: lineGrow 1.2s ease-out 0.3s both;
}

.right-line {
  position: absolute;
  top: 0;
  right: 121px;
  width: 0.4px;
  height: 100%;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
  animation: lineGrow 1.2s ease-out 0.3s both;
}

.top-line {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 0.4px;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 111px 120px 0px 120px;
  position: relative;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 24, 28, 0.8) 75%),
    url("../assets/images/Hero Section Image.png") lightgray 50% / cover
      no-repeat;
}

.hero-content {
  position: absolute;
  bottom: 150px;
  left: 120px;
  right: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: #ffffff;
  text-align: center;
  /* Desktop/Headings/H1/Bold */
  font-family: "Mona Sans";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 69.6px */
  padding-bottom: 12px;
  margin: 0px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.highlight {
  color: var(--primary-50-teal, #00aac1);

  /* Desktop/Headings/H1/Bold */
  font-family: "Mona Sans";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.hero-subtext {
  color: var(--neutral-20-white, #fff);
  text-align: center;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  margin: 0px;
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  margin: 0;
  gap: 24px;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.hero-btn-1 {
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  background: var(--primary-50-teal, #00aac1);
  color: #ffffff;
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
}

.hero-btn-1:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 170, 193, 0.4);
}

.hero-btn-1:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.hero-btn-1:active {
  transform: scale(0.97);
}

.hero-btn-2 {
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  color: var(--primary-50-teal, #00aac1);
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
}

.hero-btn-2:hover {
  transform: scale(1.03);
  background: rgba(0, 170, 193, 0.1);
}

.hero-btn-2:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.hero-btn-2:active {
  transform: scale(0.97);
}

/* About Page — Hero Override */
.about-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 24, 28, 0.8) 75%),
    url("../assets/images/about/Hero Section.png") lightgray 50% / cover
      no-repeat;
}

/* ============================================
   ABOUT PAGE — VISION SECTION
   ============================================ */
.vision {
  display: flex;
  padding: 100px 130px;
  justify-content: center;
  align-items: center;
  background: var(--neutral-20-white, #fff);
}

.vision-content {
  display: flex;
  gap: 100px;
  justify-content: center;
  align-items: center;
  height: 720px;
}

.vision-head {
  color: var(--secondary-30-nuvia-black, #001011);

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
}

.vision-paragraph {
  color: var(--neutral-20-black, #000);

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  margin: 0px;
  padding: 0px;
}

.vision-content-left {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.vision-content-right {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

/* ============================================
   ABOUT PAGE — MISSION SECTION
   ============================================ */
.mission {
  display: flex;
  padding: 100px 130px;
  justify-content: center;
  align-items: center;
  background: var(--tints-shades-primary-teal-10, #dbf3f6);
}

.mission-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  justify-content: center;
  align-items: center;
  height: 720px;
}

.mission-content-left {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.mission-content-right {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.mission-head {
  color: var(--secondary-30-nuvia-black, #001011);

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
}

.mission-paragraph {
  color: var(--neutral-20-black, #000);

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  margin: 0px;
  padding: 0px;
}

/* ============================================
   ABOUT PAGE — CORE VALUES SECTION
   ============================================ */
.core-values {
  display: flex;
  flex-direction: column;
  padding: 100px 130px;
  gap: 60px;
  justify-content: center;
  align-items: center;
  background: var(--neutral-20-white, #fff);
}

.core-values-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.row-1 {
  display: flex;
  gap: 48px;
}

.row-2 {
  display: flex;
  gap: 48px;
}

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

.cvtext {
  color: var(--secondary-30-nuvia-black, #001011);

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.teamwork,
.innovation,
.customer-focus,
.entrepreneural-spirit,
.transparency {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teamwork {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.innovation {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.customer-focus {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 50%;
}

.entrepreneural-spirit {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.transparency {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.teamwork-title,
.innovation-title,
.customer-focus-title,
.entrepreneural-spirit-title,
.transparency-title {
  color: var(--secondary-30-nuvia-black, #001011);

  /* Desktop/Headings/H4/Bold */
  font-family: "Mona Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 26.4px */
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 12px;
}

.team-work-paragraph,
.innovation-paragraph,
.customer-focus-paragraph,
.entrepreneural-spirit-paragraph,
.transparency-paragraph {
  color: var(--neutral-20-black, #000);

  /* Desktop/Body/Regular */
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
  margin: 0px;
  padding: 0px;
}

/* ============================================
   ABOUT PAGE — SECTION 5 (CTA)
   ============================================ */
.about-cta.section-5 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%),
    url("../assets/images/about/cta image.png") lightgray 50% / cover no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 745px;
  padding: 100px 0px;
}

.about-cta .s5-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 0px 100px 119px;
}

.about-cta .s5-header {
  color: var(--neutral-20-white, #fff);
  text-align: left;

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.about-cta .s5-paragraph {
  color: var(--neutral-20-white, #fff);
  text-align: left;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  padding-bottom: 48px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 40%;
}

.about-cta .btn.s5-button {
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  background: var(--primary-50-teal, #00aac1);
  align-self: flex-start;
  width: fit-content;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 130px;
  background: var(--neutral-20-white, #fff);
}

.faq-head {
  padding-bottom: 100px;
}

.faqh2 {
  color: var(--primary-50-teal, #00aac1);
  text-align: center;

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  margin: 0;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.faq-accordion {
  width: 100%;
  max-width: 900px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.faq-item {
  border-top: 1px solid #d9d9d9;
}

.faq-item:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Mona Sans";
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: var(--primary-50-teal, #00aac1);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-50-teal, #00aac1);
  margin-left: 24px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

/* Vertical bar (hidden when active) */
.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 32px;
}

.faq-answer p {
  font-family: "Mona Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  color: var(--neutral-20-black, #000);
  margin: 0;
}

.faq-view-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.faq-view-more .faq-btn {
  height: 64px;
  padding: 0 36px;
  width: fit-content;
}
/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #00aac1;
  padding: 100px 120px 100px 120px;
  display: flex;
  flex-direction: column;
}

.footer-elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% entry 100%;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 484px;
  padding: 0px;
}

.footer-paragraph {
  color: var(--neutral-20-white, #fff);

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
}

.footer-divider {
  width: 100%;
  height: 0.4px;
  background: #fff;
  margin-bottom: 50px;
}

.company-title,
.contact-title {
  color: #fff;

  /* Desktop/Body/Regular/Regular */
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  padding-bottom: 24px;
  margin: 0px;
}

.footer-links a {
  color: #fff;

  /* Desktop/Body/Large/Bold */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 29.7px */
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 0.4px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-elements {
  display: flex;
  padding: 24px 48px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  background: var(--neutral-20-white, #fff);
  box-shadow:
    0 8px 18px -6px rgba(24, 39, 75, 0.12),
    0 12px 42px -4px rgba(24, 39, 75, 0.12);
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% entry 100%;
}

.copyright-text {
  color: var(--primary-50-teal, #00aac1);

  /* Desktop/Body/Large/Medium */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 29.7px */
}

.social-icons {
  display: flex;
  gap: 24px;
}

.social-icons a {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

/* ============================================
   HAMBURGER MENU (hidden on desktop)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-bar.scrolled .hamburger span {
  background: #000;
}

.nav-bar.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-bar.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-bar.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   FALLBACK: Browsers without scroll-driven animations
   ============================================ */
@supports not (animation-timeline: view()) {
  .vision-content-left,
  .vision-content-right,
  .mission-content-left,
  .mission-content-right,
  .cvtext,
  .teamwork,
  .innovation,
  .customer-focus,
  .entrepreneural-spirit,
  .transparency,
  .about-cta .s5-header,
  .about-cta .s5-paragraph,
  .about-cta .btn.s5-button,
  .faqh2,
  .faq-accordion,
  .faq-view-more,
  .footer-elements,
  .social-elements {
    animation: none;
  }
}

/* ============================================
   RESPONSIVE: Tablet (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .nav-bar {
    padding: 16px 60px;
  }

  .nav-links {
    gap: 32px;
  }

  .hero-section {
    padding: 111px 60px 0 60px;
  }

  .hero-content {
    left: 60px;
    right: 60px;
  }

  /* Vision */
  .vision {
    padding: 80px 60px;
  }

  .vision-content {
    gap: 60px;
    height: auto;
  }

  /* Mission */
  .mission {
    padding: 80px 60px;
  }

  .mission-content {
    gap: 60px;
    height: auto;
  }

  /* Core Values */
  .core-values {
    padding: 80px 60px;
  }

  /* FAQ */
  .faq {
    padding: 80px 60px;
  }

  .about-cta .s5-content {
    padding: 400px 60px 100px 60px;
  }

  footer {
    padding: 80px 60px;
  }

  .footer-links {
    width: auto;
    gap: 60px;
  }
}

/* ============================================
   RESPONSIVE: Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  .nav-bar {
    padding: 16px 24px;
  }

  /* Dropdown menu */
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 0 24px;
    gap: 0;
    background: rgba(0, 16, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.35s ease;
  }

  .nav-bar.nav-open .nav-links {
    max-height: 300px;
    opacity: 1;
    padding: 8px 24px 16px;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #fff;
    text-align: left;
    border-bottom: 0.4px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* When scrolled, dropdown matches the white navbar */
  .nav-bar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-bar.scrolled .nav-links a {
    color: #000;
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .nav-bar .btn.btn-primary {
    display: none;
  }

  /* Hero */
  .hero-section {
    padding: 80px 24px 0 24px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 80px;
  }

  h1 {
    font-size: 36px;
  }

  .highlight {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero-btn-1,
  .hero-btn-2 {
    height: 52px;
    padding: 0 24px;
    font-size: 14px;
    width: 100%;
  }

  .left-line,
  .right-line {
    display: none;
  }

  .top-line {
    top: 70px;
  }

  /* Vision */
  .vision {
    padding: 60px 24px;
  }

  .vision-content {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  .vision-content-left {
    order: 1;
  }

  .vision-content-right {
    order: 2;
  }

  .vision-content-right,
  .mission-content-right {
    display: flex;
    justify-content: center;
  }

  .vision-content-right svg,
  .mission-content-right svg {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .vision-head,
  .mission-head {
    font-size: 28px;
  }

  .vision-paragraph,
  .mission-paragraph {
    font-size: 16px;
  }

  /* Mission */
  .mission {
    padding: 60px 24px;
  }

  .mission-content {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  /* Core Values */
  .core-values {
    padding: 60px 24px;
    gap: 40px;
  }

  .cvtext {
    font-size: 28px;
  }

  .row-1,
  .row-2 {
    flex-direction: column;
    gap: 40px;
  }

  .core-values-content {
    gap: 40px;
  }

  /* FAQ */
  .faq {
    padding: 60px 24px;
  }

  .faq-head {
    padding-bottom: 60px;
  }

  .faqh2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
    padding: 24px 0;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    margin-left: 16px;
  }

  .faq-icon::before {
    width: 12px;
  }

  .faq-icon::after {
    height: 12px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-view-more .faq-btn {
    height: 52px;
    padding: 0 24px;
    width: 100%;
  }

  /* Section 5 CTA */
  .about-cta.section-5 {
    height: auto;
    background-position: 65% center;
  }

  .about-cta .s5-content {
    padding: 260px 24px 60px 24px;
    min-height: auto;
    justify-content: flex-end;
  }

  .about-cta .s5-header {
    font-size: 28px;
  }

  .about-cta .s5-paragraph {
    font-size: 16px;
  }

  .about-cta .btn.s5-button {
    height: 52px;
    padding: 0 24px;
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 60px 24px;
  }

  .footer-elements {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .about {
    padding-bottom: 48px;
    border-bottom: 0.4px solid rgba(255, 255, 255, 1);
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .company-links {
    padding-bottom: 32px;
    border-bottom: 0.4px solid rgba(255, 255, 255, 1);
  }

  .social-elements {
    flex-direction: column;
    border-radius: 24px;
    padding: 24px;
    gap: 24px;
  }

  .social-icons {
    gap: 16px;
  }

  /* Hide <br> tags on mobile */
  br {
    display: none;
  }
}

/* ============================================
   RESPONSIVE: Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .highlight {
    font-size: 28px;
  }

  .hero-btn-1,
  .hero-btn-2 {
    height: 48px;
    padding: 0 20px;
  }

  /* Vision */
  .vision-head {
    font-size: 24px;
  }

  /* Mission */
  .mission-head {
    font-size: 24px;
  }

  /* Core Values */
  .cvtext {
    font-size: 24px;
  }

  .teamwork-title,
  .innovation-title,
  .customer-focus-title,
  .entrepreneural-spirit-title,
  .transparency-title {
    font-size: 18px;
  }

  .team-work-paragraph,
  .innovation-paragraph,
  .customer-focus-paragraph,
  .entrepreneural-spirit-paragraph,
  .transparency-paragraph {
    font-size: 14px;
  }

  /* FAQ */
  .faqh2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  /* Section 5 CTA */
  .about-cta .s5-header {
    font-size: 24px;
  }

  .about-cta .btn.s5-button {
    height: 48px;
    padding: 0 20px;
  }
}
