/* === Basic Reset & Variables === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #fff;
  color: #232323;
  line-height: 1.5;
}

:root {
  --primary: #181818;
  --accent: #e65a35;
  --accent-hover: #f56844;
  --white: #fff;
  --navbar-radius: 40px;
  --navbar-shadow: 0 4px 28px rgba(32, 34, 45, 0.13);
  --overlay: rgba(38, 24, 8, 0.32);
}

/* === Global Layout === */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 3.5rem 1.5rem;
}

.section-padding-lg {
  padding: 5rem 1.5rem;
}

/* === Logo Text Style === */
.logo-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: bold;
  font-size: 1.44rem;
  color: #18183a;
  letter-spacing: -1.5px;
}

/* === Floating Navigation Bar === */
.floating-navbar {
  position: absolute;
  left: 50%;
  top: 2.25rem;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 0 0 6px 6px;
  box-shadow: var(--navbar-shadow);
  width: 1040px;
  max-width: calc(100% - 2rem);
  height: 64px;
  padding: 0 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin-left: 1rem;
  font-size: 14px;
}

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

.navbar-links a {
  font-family: 'Manrope', sans-serif;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: var(--accent);
}

.navbar-login-btn {
  font-family: 'Manrope', sans-serif;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.navbar-login-btn:hover {
  background: var(--accent-hover);
}

/* === Hero Section === */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 820px;
  overflow: hidden;
}

.hero-bg-container {
  position: relative;
  width: 100vw;
  height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9) saturate(0.91) blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(38, 24, 8, 0.32);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.hero-title {
  color: white;
  text-align: center;
  font-weight: 400;
  line-height: 1.07;
  font-size: clamp(2.25rem, 9vw, 4.45rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.058);
}

.hero-cta-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 1.02rem;
  font-weight: 600;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-cta-btn:hover {
  background: var(--accent-hover);
}

/* === Hero Copy Animations === */
.hero-animated .hero-content {
  animation: none;
}

.hero-animated .hero-headline {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.65s ease forwards;
  animation-delay: 0.05s;
}

.hero-animated .hero-subtitle {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.65s ease forwards;
  animation-delay: 0.25s;
}

.hero-animated .hero-cta {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.65s ease forwards;
  animation-delay: 0.45s;
}

.hero-animated .hero-bottom-left,
.hero-animated .hero-bottom-right {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.65s ease forwards;
  animation-delay: 0.65s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Header Style 2: Full Background Image Hero === */
.header-2 {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}

.header-2 .top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #234E52;
  z-index: 10;
}

.header-2 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #2d5a4e;
}

.header-2 .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.header-2 .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 90, 78, 0.45);
  z-index: 1;
}

.header-2 .nav-2 {
  position: relative;
  z-index: 260;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.header-2 .nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-2 .logo {
  font-family: 'Georgia', serif;
  font-weight: bold;
  font-size: 23px;
  color: white;
  letter-spacing: -0.04em;
}

.header-2 .logo .logo-highlight {
  color: #2d5a4e;
}

.header-2 .nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-2 .nav-center a {
  font-family: 'Manrope', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.header-2 .nav-center a:hover {
  opacity: 0.7;
}

.header-2 .nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-2 .nav-right a {
  font-family: 'Manrope', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

/* removed hover opacity for nav-right links */
.header-2 .nav-btn {
  font-family: 'Manrope', sans-serif;
  background: #1f3d34;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s ease;
}

.header-2 .nav-btn:hover {
  background: #1a332b;
  transform: translateY(-1px);
}

.header-2 .nav-btn:active {
  transform: translateY(0);
}

.header-2 .hero-content {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  height: calc(85vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 8vh;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.header-2 .hero-headline {
  color: white;
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
  text-align: left;
}

.header-2 .hero-headline .hero-highlight {
  color: #ffffff;
}

.header-2 .hero-subtitle {
  color: white;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  text-align: left;
  opacity: 0.95;
}

.header-2 .hero-cta {
  font-family: 'Manrope', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2d5a4e;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: fit-content;
  margin-left: 0;
}

.header-2 .hero-cta:hover {
  background: #23453c;
}

.header-2 .hero-bottom-bar {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--bh-max);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.header-2 .hero-bottom-left {
  font-family: 'Manrope', sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.header-2 .hero-bottom-right {
  font-family: 'Manrope', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-2 .hero-bottom-right::after {
  content: '↓';
  font-size: 20px;
  transition: transform 0.2s ease;
}

.header-2 .hero-bottom-right:hover,
.header-2 .hero-bottom-right:focus {
  color: #d0f4e3;
}

.header-2 .hero-bottom-right span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.header-2 .hero-bottom-right:hover::after,
.header-2 .hero-bottom-right:focus::after {
  transform: translateY(3px);
}

.header-2 .hero-bottom-right:hover span,
.header-2 .hero-bottom-right:focus span {
  transform: translateY(3px);
}

/* === Logo Cloud Section === */
.logo-cloud {
  background: white;
}

.logo-cloud-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2.5rem 2.5rem;
}

.logo-cloud img {
  height: 2.2rem;
  width: auto;
  filter: brightness(0) contrast(100%);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.logo-cloud img.logo-large {
  height: 2.5rem;
}

.logo-cloud img:hover {
  opacity: 1;
}

/* === Text Block Section === */
.text-blocks-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 24px;
}

.text-block-1 {
  max-width: 1440px;
  margin: 0;
  text-align: left;
  padding: 3rem 24px;
}

.text-block-1 h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #181818;
  max-width: 800px;
}

.text-block-1 p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #666;
  font-weight: 400;
  margin-left: 0;
  margin-bottom: 1.5rem;
  margin-right: 0;
  padding-left: 25rem;
  max-width: 80ch;
}

.text-block-1 p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .text-block-1 p {
    padding-left: 18rem;
    max-width: 76ch;
  }
}

@media (max-width: 960px) {
  .text-block-1 p {
    padding-left: 12rem;
    max-width: 72ch;
  }
}

@media (max-width: 768px) {
  .text-blocks-container {
    padding: 3rem 24px;
  }

  .text-block-1 {
    padding: 2rem 24px;
  }

  .text-block-1 h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
  }

  .text-block-1 p {
    padding-left: 0;
    max-width: 100%;
    font-size: clamp(1rem, 3vw, 1.125rem);
  }
}

@media (max-width: 480px) {
  .text-blocks-container {
    padding: 2rem 20px;
  }

  .text-block-1 {
    padding: 1.5rem 20px;
  }

  .text-block-1 h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
  }

  .text-block-1 p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* === Intro Section === */
.intro-section {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}

.intro-heading {
  grid-column: span 12;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.08;
  font-size: 54px;
  width: 80%;
}

.intro-copy {
  grid-column: span 12;
  font-size: 16px;
  line-height: 1.7;
  color: #202020;
  max-width: 38ch;
}

.intro-copy-right {
  grid-column: span 12;
  font-size: 16px;
  line-height: 1.7;
  color: #202020;
  max-width: 38ch;
}

/* === Solutions Section === */
.solutions-section {
  padding: 4rem 2rem;
  background: #fafafa;
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-section-premium {
  background: transparent;
}

.solutions-heading {
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #181818;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-heading br {
  display: none;
}

@media (min-width: 640px) {
  .solutions-heading br {
    display: block;
  }
}

.solutions-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  position: relative;
  border-radius: 6px;
  padding: 2.5rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.solution-tag {
  font-family: 'Manrope', sans-serif;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 1.5rem;
}

.solution-tag-candidates {
  background: rgba(255, 255, 255, 0.2);
}

.solution-tag-employers {
  background: rgba(255, 255, 255, 0.2);
}

.solution-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.solution-decor {
  display: none;
}

/* Premium Style 1: Clean Outline Border - Beige Accent */
.solution-card-premium1-candidates {
  background: transparent;
  border: 1px solid #8b7560;
  border-top: 4px solid #744210;
  border-radius: 6px;
  min-height: 600px;
  max-height: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-card-premium1-candidates .solution-tag {
  background: #744210;
  color: #f5f2eb;
  border: none;
}

.solution-card-premium1-candidates h3 {
  color: #181818;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.2;
}

.solution-card-premium1-candidates .solution-subtitle {
  font-family: 'Manrope', sans-serif;
  color: #333;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
}

.solution-card-premium1-candidates .solution-section-title {
  font-family: 'Manrope', sans-serif;
  color: #6b5a4a;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.solution-card-premium1-candidates .solution-section-title:first-of-type {
  margin-top: 0;
}

.solution-card-premium1-candidates .solution-feature {
  font-family: 'Manrope', sans-serif;
  color: #333;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.solution-card-premium1-candidates .solution-feature strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.solution-card-premium1-employers {
  background: transparent;
  border: 1px solid #4a6b5a;
  border-top: 4px solid #234E52;
  border-radius: 6px;
  min-height: 600px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-card-premium1-employers .solution-tag {
  background: #234E52;
  color: #f0f5f0;
  border: none;
}

.solution-card-premium1-employers h3 {
  color: #181818;
}

.solution-card-premium1-employers .solution-subtitle {
  font-family: 'Manrope', sans-serif;
  color: #333;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
}

.solution-card-premium1-employers .solution-section-title {
  font-family: 'Manrope', sans-serif;
  color: #3a5a4a;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.solution-card-premium1-employers .solution-section-title:first-of-type {
  margin-top: 0;
}

.solution-card-premium1-employers .solution-feature {
  font-family: 'Manrope', sans-serif;
  color: #333;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.solution-card-premium1-employers .solution-feature strong {
  font-weight: 600;
  display: inline;
  margin-bottom: 0;
  margin-right: 0.25rem;
}

.solution-card-premium1-employers .solution-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.solution-card-premium1-employers .solution-list li {
  font-family: 'Manrope', sans-serif;
  color: #333;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.solution-card-premium1-employers .solution-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #3a5a4a;
}

/* Fixed Header Area */
.solution-card-premium1-candidates .solution-card-header,
.solution-card-premium1-employers .solution-card-header {
  flex-shrink: 0;
}

/* Scrollable Content Area */
.solution-card-premium1-candidates .solution-card-scrollable {
  flex: 1;
  overflow-y: visible;
  overflow-x: hidden;
  padding-right: 0;
  margin-right: 0;
  margin-top: 0.5rem;
}

.solution-card-premium1-employers .solution-card-scrollable {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1rem;
  margin-right: -1rem;
  margin-top: 0.5rem;
  scroll-behavior: smooth;
}

/* Custom Scrollbar Styling */
.solution-card-premium1-employers .solution-card-scrollable::-webkit-scrollbar {
  width: 6px;
}

.solution-card-premium1-employers .solution-card-scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.solution-card-premium1-employers .solution-card-scrollable::-webkit-scrollbar-thumb {
  background: rgba(45, 90, 78, 0.3);
  border-radius: 3px;
  transition: background 0.2s ease;
}

.solution-card-premium1-employers .solution-card-scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 90, 78, 0.4);
}

/* Firefox Scrollbar */
.solution-card-premium1-employers .solution-card-scrollable {
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 90, 78, 0.3) transparent;
}

/* === How We Do It Section === */
.how-section {
  background: white;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem 4rem;
}

.how-left {
  grid-column: span 12;
}

.how-heading {
  font-family: 'Manrope', sans-serif;
  color: #111;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-list li {
  font-family: 'Manrope', sans-serif;
  color: #d6d6d6;
  font-size: 36px;
  line-height: 1.2;
}

.how-card {
  grid-column: span 12;
  border-radius: 6px;
  background: #f5efe7;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.how-card-svg-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.how-card-svg {
  width: 68%;
  max-width: 360px;
  height: auto;
}

.how-card-text {
  font-family: 'Manrope', sans-serif;
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 1.7;
  color: #202020;
}

.how-card-btn {
  font-family: 'Manrope', sans-serif;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: #111;
  color: white;
  font-size: 14px;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.how-card-btn:hover {
  background: #333;
}

/* === About Us Section === */
.about-section {
  background: white;
  padding: 5rem 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-heading {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 2rem;
  font-family: 'Manrope', sans-serif;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-intro {
  font-size: 22px;
  line-height: 1.5;
  color: #0f172a;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
}

.about-body {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  font-family: 'Manrope', sans-serif;
}

@media (min-width: 768px) {
  .about-heading {
    font-size: 56px;
  }

  .about-intro {
    font-size: 26px;
  }

  .about-body {
    font-size: 20px;
  }
}

/* === Testimonials Section === */
.testimonials-section {
  background: #f8f5ed;
}

.testimonials-section .section-padding-lg {
  padding: 3rem 1.5rem;
}

.testimonials-section.testimonials-style-7 {
  background: #f8f5ed;
}

.testimonials-section.testimonials-style-8 {
  background: white;
}

.testimonials-section.testimonials-style-9 {
  background: white;
}

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

.testimonials-heading {
  font-size: 28px;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 400;
}

.testimonials-heading strong {
  font-weight: 600;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #0f172a;
}

.testimonials-controls-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: #0f172a;
}

.testimonials-btn {
  height: 2.25rem;
  width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonials-btn:hover {
  background: white;
}

.testimonials-section.testimonials-style-7 .testimonials-btn {
  background: #2d5a4e;
  border: 1px solid #2d5a4e;
  box-shadow: none;
  color: white;
}

.testimonials-section.testimonials-style-7 .testimonials-btn:hover {
  background: white;
  color: #2d5a4e;
}

.testimonials-section.testimonials-style-8 .testimonials-btn {
  background: #2d5a4e;
  border: none;
  color: white;
  box-shadow: none;
}

.testimonials-section.testimonials-style-8 .testimonials-btn:hover {
  background: #1f4238;
  color: white;
}

.testimonials-section.testimonials-style-9 .testimonials-btn {
  background: white;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

.testimonials-section.testimonials-style-9 .testimonials-btn:hover {
  border-color: #2d5a4e;
  background: #f0f5f0;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 320px;
  max-width: 360px;
  scroll-snap-align: start;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.testimonials-section.testimonials-style-7 .testimonial-card {
  border: 1px solid rgba(45, 90, 78, 0.2);
  box-shadow: none;
}

.testimonials-section.testimonials-style-8 .testimonial-card {
  border: 2px solid #2d5a4e;
  box-shadow: none;
}

.testimonials-section.testimonials-style-9 .testimonial-card {
  border-left: 3px solid #2d5a4e;
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none;
}

.testimonial-text {
  color: #0f172a;
  line-height: 1.625;
  font-size: 16px;
  margin: 0;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.testimonial-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(45, 90, 78, 0.2);
  text-decoration: none;
  color: #2d5a4e;
  border-radius: 4px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.testimonial-linkedin:hover {
  opacity: 0.7;
}

.testimonial-avatar {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
}

.testimonial-name {
  color: #0f172a;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-link {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: underline;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.2;
  margin-top: 0.25rem;
}

/* === Contact Section === */
.contact-section {
  background: black;
  color: white;
}

.contact-section.contact-style-3 {
  background: transparent;
  color: #0f172a;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem 2.5rem;
}

.contact-left {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-heading {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 400;
}

.contact-section.contact-style-3 .contact-heading {
  color: #0f172a;
}

.contact-social {
  margin-top: 3.5rem;
  color: #9b9b9b;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-social a {
  display: block;
  color: #9b9b9b;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-social a:hover {
  color: white;
}

.contact-section.contact-style-3 .contact-social a {
  color: #64748b;
}

.contact-section.contact-style-3 .contact-social a:hover {
  color: #2d5a4e;
}

.contact-right {
  grid-column: span 12;
}

.contact-intro {
  font-size: 22px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 46ch;
}

.contact-section.contact-style-3 .contact-intro {
  color: #0f172a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-section.contact-style-3 .contact-label {
  color: #0f172a;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.5rem 0;
  outline: none;
  color: white;
  transition: border-color 0.2s;
}

.contact-input:focus,
.contact-textarea:focus {
  border-bottom-color: white;
}

.contact-section.contact-style-3 .contact-input,
.contact-section.contact-style-3 .contact-textarea {
  background: white;
  border: 1px solid rgba(45, 90, 78, 0.2);
  border-radius: 6px;
  padding: 0.75rem;
  color: #0f172a;
}

.contact-section.contact-style-3 .contact-input:focus,
.contact-section.contact-style-3 .contact-textarea:focus {
  border-color: #2d5a4e;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-textarea {
  resize: vertical;
  min-height: 3rem;
}

.contact-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-section.contact-style-3 .contact-checkbox-group {
  color: #0f172a;
}

.contact-checkbox {
  height: 1rem;
  width: 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  accent-color: white;
}

.contact-checkbox-label {
  font-size: 14px;
}

.contact-checkbox-label a {
  color: white;
  text-decoration: underline;
}

.contact-section.contact-style-3 .contact-checkbox-label a {
  color: #2d5a4e;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: black;
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: auto;
}

.contact-submit:hover {
  background: #f0f0f0;
}

.contact-section.contact-style-3 .contact-submit {
  background: #2d5a4e;
  color: white;
  padding: 0.875rem 2rem;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-section.contact-style-3 .contact-submit:hover {
  background: #1f4238;
  transform: translateY(-1px);
}

.contact-success {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: #f7fffb;
  border: 1px solid rgba(45, 90, 78, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  color: #1c2f29;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.contact-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 90, 78, 0.16);
}

.contact-success.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-success-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-success-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-success-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #324741;
}

.contact-success-dismiss {
  background: none;
  border: none;
  color: #2d5a4e;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 0.25rem;
  position: absolute;
  top: 10px;
  right: 10px;
}

.contact-success-dismiss:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.contact-input.is-error,
.contact-textarea.is-error {
  border-color: rgba(215, 64, 64, 0.6);
  box-shadow: 0 0 0 2px rgba(215, 64, 64, 0.12);
}

.contact-checkbox-label.is-error {
  color: #d74040;
}

/* === Footer === */
.footer {
  background: #ececec;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}

.footer-newsletter {
  grid-column: span 12;
}

.footer-heading {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 0;
}

.footer-email-input {
  width: 100%;
  max-width: 520px;
  border-radius: 6px;
  background: #d6d6d6;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
  color: #111;
}

.footer-email-input::placeholder {
  color: #555;
}

.footer-subscribe-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #111;
  color: white;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-subscribe-btn:hover {
  background: #333;
}

.footer-subscribe-btn span {
  transform: translateY(1px);
}

.footer-col {
  grid-column: span 12;
}

.footer-col-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #6b6b6b;
}

.footer-links a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d1d1d1;
  font-size: 14px;
  color: #6b6b6b;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #111;
}

/* === Responsive Design === */
@media (min-width: 640px) {
  .navbar-links {
    display: flex;
  }

  .logo-cloud-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-cloud img {
    height: 2.25rem;
  }

  .intro-copy,
  .intro-copy-right {
    font-size: 17px;
  }

  .solutions-heading {
    font-size: 30px;
  }

  .solutions-heading br {
    display: block;
  }

  .solution-card {
    padding: 2.25rem;
  }

  .solution-card h3 {
    font-size: 30px;
  }

  .how-heading {
    font-size: 44px;
  }

  .how-list li {
    font-size: 42px;
  }

  .how-card {
    padding: 2rem;
  }

  .how-card-text {
    font-size: 16px;
  }

  .testimonials-heading {
    font-size: 34px;
  }

  .contact-heading {
    font-size: 56px;
  }

  .contact-intro {
    font-size: 26px;
  }

  .contact-form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-heading {
    font-size: 24px;
  }

  .footer-col {
    grid-column: span 6;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .solutions-section {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }

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

@media (min-width: 1024px) {
  .logo-cloud-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .intro-copy-right {
    grid-column-start: 8;
    grid-column-span: 5;
  }

  .how-left {
    grid-column: span 6;
    padding-right: 2rem;
  }

  .how-card {
    grid-column: span 6;
    padding: 2.5rem;
    padding-left: 2rem;
  }

  .contact-left {
    grid-column: span 5;
  }

  .contact-right {
    grid-column: span 7;
  }

  .footer-newsletter {
    grid-column: span 6;
  }

  .footer-col {
    grid-column: span 3;
  }
}

@media (max-width: 1080px) {
  .floating-navbar {
    width: calc(100vw - 20px);
    height: 56px;
    padding: 0 16px;
  }
}

@media (max-width: 720px) {
  .navbar-inner {
    gap: .55rem;
  }

  .navbar-links {
    gap: 0.75rem;
    margin-left: 0.6rem;
  }

  .navbar-login-btn {
    margin-left: 0.6rem;
  }

  .hero-bg-container {
    height: 320px;
  }

  .hero-section {
    min-height: 340px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .hero-cta-btn {
    padding: 0.5em 1em;
    min-width: 0;
  }

  .navbar-links {
    display: none;
  }
}

/* Responsive styles for Header Style 2 */
@media (max-width: 1080px) {
  .header-2 {
    height: 80vh;
    min-height: 600px;
  }

  .header-2 .nav-2 {
    padding: 1rem 1.5rem;
  }

  .header-2 .nav-center {
    gap: 1.5rem;
  }

  .header-2 .nav-center a {
    font-size: 14px;
  }

  .header-2 .hero-content {
    padding-top: 10vh;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header-2 .hero-bottom-bar {
    padding: 0 1.5rem;
    bottom: 1.5rem;
  }

  .header-2 .hero-bottom-left,
  .header-2 .hero-bottom-right {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-2 {
    height: auto;
    min-height: auto;
  }

  .header-2 .nav-2 {
    padding: 1rem;
  }

  .header-2 .nav-center {
    display: none;
  }

  .header-2 .nav-btn {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }

  .header-2 .hero-content {
    padding-top: 6vh;
    padding-bottom: 6vh;
    padding-left: 1rem;
    padding-right: 1rem;
    height: auto;
  }

  .header-2 .hero-headline {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .header-2 .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
  }

  .header-2 .hero-cta {
    font-size: 14px;
    padding: 0.75rem 1.5rem;
  }

  .header-2 .hero-bottom-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-section .section-padding-lg {
    padding: 2.5rem 1.5rem;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }

  .testimonials-controls {
    display: none;
  }

  .testimonials-controls-mobile {
    display: flex;
  }

  .testimonials-heading {
    font-size: 24px;
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .testimonials-section .section-padding-lg {
    padding: 2rem 1.5rem;
  }

  .header-2 {
    height: 64vh;
    min-height: 420px;
  }

  .header-2 .hero-content {
    padding: 72px 1.5rem 2.5rem;
  }

  .header-2 .hero-headline {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .header-2 .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .header-2 .hero-cta {
    font-size: 13px;
    padding: 0.65rem 1.25rem;
  }

  .testimonials-heading {
    font-size: 20px;
  }

  .testimonials-controls-mobile {
    margin-top: 1.5rem;
  }
}

/* Responsive styles for Premium Style 1 Solutions */
@media (max-width: 1080px) {

  .solution-card-premium1-candidates,
  .solution-card-premium1-employers {
    min-height: 550px;
    max-height: 650px;
  }
}

@media (max-width: 768px) {
  .solutions-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card-premium1-candidates,
  .solution-card-premium1-employers {
    min-height: auto;
    max-height: none;
    padding: 2rem 1.5rem;
  }

  .solution-card-premium1-candidates .solution-card-scrollable,
  .solution-card-premium1-employers .solution-card-scrollable {
    overflow-y: visible;
  }
}

/* === Accordion Styles === */
.accordion-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.accordion-section-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #181818;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.accordion-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: transparent;
  padding: 0;
}

.accordion-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-bottom: 3px solid transparent;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.accordion-item:hover {
  border-color: #744210;
}

.accordion-item-active {
  background: white;
  border-color: #744210;
  border-bottom: 3px solid #744210;
}

.accordion-item-active .accordion-label {
  color: #181818;
  font-weight: 600;
  font-size: 1.5rem;
}

.accordion-item:not(.accordion-item-active) .accordion-label {
  color: #666;
  font-weight: 400;
  font-size: 1.25rem;
}

.accordion-label {
  font-family: 'Manrope', sans-serif;
  display: block;
  transition: all 0.2s ease;
}

.accordion-item:hover:not(.accordion-item-active) .accordion-label {
  color: #333;
}

.accordion-content-panel {
  background: white;
  border: 1px solid #744210;
  border-radius: 8px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.accordion-text {
  flex: 1;
}

.accordion-text p {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #666;
  margin: 0;
  text-align: left;
  font-weight: 400;
}

@media (max-width: 768px) {
  .accordion-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accordion-item {
    padding: 1rem 1.25rem;
  }

  .accordion-item-active .accordion-label {
    font-size: 1.25rem;
  }

  .accordion-item:not(.accordion-item-active) .accordion-label {
    font-size: 1rem;
  }

  .accordion-content-panel {
    padding: 2rem 1.5rem;
  }

  .accordion-text p {
    font-size: 1rem;
  }
}

/* === Sticky Navigation Utilities === */
.nav-placeholder {
  display: none;
  width: 100%;
}

.nav-placeholder.active {
  display: block;
}

.nav-2.is-sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  padding: 1.5rem 2rem;
  background: rgba(248, 245, 237, 0.92);
  border: 1px solid rgba(47, 52, 50, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: none;
  z-index: 320;
}

.nav-2.is-sticky .logo,
.nav-2.is-sticky a,
.nav-2.is-sticky .nav-btn {
  font-family: 'Outfit', sans-serif !important;
  color: #2f3432;
}

.nav-2.is-sticky .logo {
  font-family: 'Georgia', serif;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.nav-2.is-sticky .nav-center a,
.nav-2.is-sticky .nav-right a {
  color: #2f3432;
}

.nav-2.is-sticky .nav-center a:hover,

.nav-2.is-sticky .nav-btn {
  background: #2d5a4e;
  color: #ffffff !important;
  border: none;
  border-radius: 6px;
  padding: 0.625rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.nav-2.is-sticky .nav-btn:hover {
  background: #23453c;
}

.nav-2[data-sticky-nav] {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-2[data-sticky-nav].is-sticky {
  opacity: 0;
  transform: translateX(-50%) translateY(-16px);
}

.nav-2[data-sticky-nav].is-sticky.sticky-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bh-success-message {
  margin: 12px 0 0 0;
  font-size: 14px;
  color: #2d5a4e;
  background: rgba(45, 90, 78, 0.08);
  padding: 10px 14px;
  border-radius: 6px;
  display: none;
}

.bh-success-message.is-visible {
  display: inline-block;
}

.header-2::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(12, 19, 17, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 80;
}

.header-2.nav-open::after {
  opacity: 1;
  pointer-events: auto;
}

.header-2 .nav-toggle {
  display: none;
  position: relative;
  z-index: 200;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(12, 19, 17, 0.58);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-2 .nav-toggle:hover {
  background: rgba(12, 19, 17, 0.72);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.header-2 .nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: transform 0.25s ease;
}

.header-2 .nav-toggle span::before,
.header-2 .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-2 .nav-toggle span::before {
  top: -6px;
}

.header-2 .nav-toggle span::after {
  top: 6px;
}

.header-2.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.header-2.nav-open .nav-toggle span::before {
  transform: rotate(90deg);
  top: 0;
}

.header-2.nav-open .nav-toggle span::after {
  opacity: 0;
}

.header-2 .mobile-nav {
  display: none;
}

@media (max-width:960px) {

  .header-2 .nav-center,
  .header-2 .nav-right {
    display: none;
  }

  .header-2 .nav-toggle {
    display: flex;
  }

  .header-2 .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 84vw);
    background: #f8f5ed !important;
    background-color: #f8f5ed !important;
    border-left: 2px solid rgba(45, 90, 78, 0.28);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.22);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.24s ease;
    z-index: 240;
  }

  .header-2 .mobile-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2d5a4e;
  }

  .header-2 .mobile-nav a {
    color: #23302c;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: .01em;
  }

  .header-2.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
}

body.nav-locked {
  overflow: hidden;
}

.nav-2.is-sticky .nav-toggle {
  border-color: rgba(47, 52, 50, 0.24);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-2.is-sticky .nav-toggle span,
.nav-2.is-sticky .nav-toggle span::before,
.nav-2.is-sticky .nav-toggle span::after {
  background: #25302d;
}

.header-2 .mobile-nav .nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d5a4e;
  color: #ffffff;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
  transition: background 0.2s ease;
}

.header-2 .mobile-nav .nav-btn:hover {
  background: #23453c;
}