/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Jost:wght@400;500;600;700&family=Instrument+Sans:wght@400;500;600&family=Inria+Sans:wght@300;400;700&display=swap');


html {
  scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background-color: #ffffff;
}

:root {
  --primary: #FF6B35;
  --primary-dark: #e65b2f;
  --navy: #1C3A45;
  --muted: #6B7280;
  --border: #E5E7EB;
  --card: #ffffff;
  --pale: #FFF7F2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: #CA4E00;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-image {
  height: 36px;
  width: 39px;
  object-fit: contain;
}

.logo-text {
  color: #CA4E00;
  text-transform: lowercase;
}

.logo-icon {
  font-size: 20px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: #000;
  font-size: 16px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  padding: 4px 10px;
  transition: all 0.3s;
  border-radius: 5px;
}

nav a:hover,
nav a.active {
  color: #FF6200;
  background: rgba(255, 98, 0, 0.10);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(28, 58, 69, 0.35);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1C3A45;
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-wrapper.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-wrapper.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-selector {
  padding: 8px 10px;
  border: 1px solid #1C3A45;
  border-radius: 20px;
  background: white;
  font-size: 16px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  color: #1C3A45;
  cursor: pointer;
}

.btn {
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #FF6200;
  color: white;
  font-family: 'Instrument Sans', sans-serif;
  border-radius: 20px;
}

.btn-primary:hover {
  background-color: #e55500;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 98, 0, 0.3);
}

.btn-outline {
  background-color: rgba(255, 98, 0, 0.30);
  border: 1px solid #1C3A45;
  color: #1C3A45;
  font-family: 'Inria Sans', sans-serif;
  border-radius: 5px;
}

.btn-outline:hover {
  background-color: #1C3A45;
  color: white;
}

.btn-dark {
  background-color: #1C3A45;
  color: #fff;
  border-radius: 6px;
  min-width: 160px;
}

.btn-dark:hover {
  background-color: #0e252c;
}

.btn-secondary {
  background-color: rgba(255, 98, 0, 0.30);
  border: 1px solid #FF6200;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 5px;
}

.btn-secondary:hover {
  background-color: rgba(255, 98, 0, 0.50);
}

/* Contact Page */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('../images/Gemini_Generated_Image_a.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
}

.about-hero-inner {
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 48px;
  text-align: left;
}

.about-hero-inner h1 {
  font-size: 48px;
  font-family: 'IBM Plex Mono', monospace;
  margin: 10px 0;
}

.about-hero-inner h1 span {
  color: #FF6200;
}

.about-main {
  background: #fff;
  padding: 80px 20px;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.about-story h2 {
  font-size: 36px;
  color: #1C3A45;
  margin-bottom: 16px;
}

.about-story p {
  margin-bottom: 16px;
}

.about-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-brand img {
  width: 220px;
  border-radius: 16px;
}

.about-expertise {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(200px, 1fr);
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
}

.expertise-text h3 {
  font-size: 24px;
  color: #1C3A45;
  margin-bottom: 18px;
  text-align: center;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expertise-list h4 {
  font-size: 18px;
  color: #1C3A45;
  margin-bottom: 8px;
}

.expertise-list ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #333;
}

.expertise-logo {
  display: flex;
  justify-content: center;
}

.expertise-logo img {
  width: 380px;
  border-radius: 0;
  box-shadow: none;
}

.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('../images/Gemini_Generated_Image_pg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero-text h1 {
  font-size: 48px;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 16px;
}

.contact-hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-form-card {
  background: #fff;
  color: #1C3A45;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.contact-form-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.contact-type-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.contact-type-toggle label {
  cursor: pointer;
}

.contact-type-toggle input {
  display: none;
}

.contact-type-toggle span {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: #e5e7eb;
  color: #666;
}

.contact-type-toggle input:checked + span {
  background: #1C3A45;
  color: #fff;
}

.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

.contact-privacy input {
  margin-top: 4px;
}

.job-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.job-field {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.job-field-full {
  grid-column: 1 / -1;
}

.field-info h3 {
  font-size: 16px;
  color: #1C3A45;
  margin-bottom: 6px;
}

.field-info p {
  font-size: 14px;
  color: #666;
}

.field-control input[type="number"],
.field-control input[type="text"],
.field-control select,
.field-control textarea {
  width: 100%;
}

.category-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.category-tags span {
  background: rgba(28, 58, 69, 0.1);
  color: #1C3A45;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.workers-control {
  display: flex;
  align-items: center;
  gap: 16px;
}

.workers-control input {
  width: 80px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  font-size: 16px;
}

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #1C3A45;
  color: #fff;
  cursor: pointer;
}

.experience-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.salary-control {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.salary-range {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.salary-range input {
  width: 120px;
}

.employment-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.employment-options label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience-btn {
  border: 1px solid #CBD5E1;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.job-submit-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-faq {
  background: #fff;
  padding: 80px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 40px;
  color: #1C3A45;
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.faq-question {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  color: #FF6200;
}

.faq-question h3 {
  font-size: 18px;
  color: #1C3A45;
  margin-bottom: 8px;
}

.faq-question p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-question p {
  margin-top: 8px;
  max-height: 200px;
}

.contact-load-more {
  display: block;
  margin: 30px auto 0;
  max-width: 200px;
}

.contact-office {
  background: url('../images/Gemini_Generated_Image_x.png') center/cover no-repeat;
  padding: 100px 20px;
}

.contact-office-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.contact-office-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 16px;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-office-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1C3A45;
}

.contact-office-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-office-card li strong {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 2px;
}

.contact-office-card li span,
.contact-office-card li a {
  font-size: 16px;
  color: #1C3A45;
  text-decoration: none;
}

.contact-note {
  font-size: 13px;
  color: #777;
  margin-top: 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
              url('../images/Gemini_Generated_Image_i.jpg');
  background-size: cover;
  background-position: center;
  margin: 24px 18px;
  border-radius: 25px;
  min-height: 720px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}

.hero-nav-card {
  width: 100%;
  max-width: 920px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.hero-nav-card .logo {
  min-width: 200px;
}

.hero-menu a {
  color: #000;
  font-size: 16px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 5px;
  white-space: nowrap;
}

.hero-menu a.active {
  background: rgba(255, 98, 0, 0.10);
  color: #FF6200;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-content {
  text-align: center;
  max-width: 760px;
  margin-top: 210px;
}

.hero-content h1 {
  font-size: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Section Styles */
section {
  padding: 60px 20px;
}

.jobs-section {
  background: #fff;
  border-radius: 30px;
  margin: 40px auto;
  box-shadow: 0 15px 40px rgba(255, 98, 0, 0.08);
  max-width: 1244px;
  width: calc(100% - 40px);
}

.section-alt {
  background-color: rgba(255, 98, 0, 0.10);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: #1F2937;
}

.section-subtitle {
  font-size: 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: #FF6B35;
  margin-left: 8px;
}

.see-all-link {
  color: #FF6B35;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.see-all-link:hover {
  color: #E85A24;
  text-decoration: underline;
}

/* Job Cards - UPDATED TO MATCH FIGMA */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #FF6B35;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.job-card-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid #E5E7EB;
  font-weight: 600;
  color: #1F2937;
}

.job-card-main {
  flex: 1;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.job-card-title-section {
  flex: 1;
}

.job-code {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.job-company {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #6B7280;
  font-weight: 400;
  text-transform: lowercase;
}

.job-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.job-card-badge {
  padding: 6px 12px;
  background: #F9FAFB;
  border-radius: 20px;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-apply {
  background: #FF6B35;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.job-apply:hover {
  background: #E85A24;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-description {
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

.job-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F3F4F6;
  padding-top: 12px;
  font-size: 14px;
}

.job-salary {
  font-weight: 700;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-time {
  color: #9CA3AF;
  font-size: 13px;
}

/* Pagination - UPDATED TO MATCH FIGMA */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
}

.pagination a,
.pagination span {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #4B5563;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #E5E7EB;
  background: white;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination a:hover {
  background: #F9FAFB;
  border-color: #FF6B35;
  color: #FF6B35;
}

.pagination .active {
  background-color: #FF6B35;
  color: white;
  border-color: #FF6B35;
}

.pagination .ellipsis {
  border: none;
  background: transparent;
  color: #9CA3AF;
}

/* Trade Badges */
.trades-section {
  background: #FFEFE5;
  padding: 70px 0;
}

.trades-layout {
  display: grid;
  grid-template-columns: 1.3fr auto 1.5fr;
  gap: 40px;
  align-items: center;
}

.trades-copy .section-title {
  color: #1C3A45;
  font-size: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
}

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

.trades-cone img {
  max-width: 200px;
  transform: rotate(9deg);
  transform-origin: center;
}

.trades-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: flex-start;
}

.trade-badge {
  padding: 10px 26px;
  border: 2px solid #FF6200;
  border-radius: 999px;
  color: #FF6200;
  font-size: 18px;
  font-family: 'Inria Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s;
}

.trade-badge:hover {
  background-color: #FF6200;
  color: white;
}

/* Steps Section */
.steps-section {
  background: #fff;
}

.steps-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.steps-illustration img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.steps-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.step {
  display: flex;
  text-align: left;
  gap: 15px;
  align-items: flex-start;
}

.step-offset {
  margin-top: 90px;
}

.step-number {
  font-size: 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  color: #FF6200;
}

.step h3 {
  font-size: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}

.step p {
  font-size: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.step-body h3 {
  margin-bottom: 12px;
}

/* TESTIMONIAL SECTION - UPDATED TO MATCH FIGMA */
/* ===================================
   TESTIMONIAL SECTION - CORRECTED
   Matches Figma Design Exactly
   =================================== */

.testimonial-section {
  background: #F5F5F5;
  padding: 80px 20px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonial-card {
  background: #FFF5F0;
  border-radius: 24px;
  border: 3px solid #FF6B35;
  padding: 45px 55px;
  position: relative;
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.12);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.testimonial-card .section-title {
  font-size: 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  color: #1C3A45;
  text-align: center;
  margin: 0 0 20px 0;
}

.testimonial-text {
  font-size: 17px;
  color: #2D3748;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  font-family: 'Inter', sans-serif;
  margin: 0 0 25px 0;
}

/* 202+ BADGE - TOP RIGHT (CRITICAL FIX) */
.testimonial-stats {
  position: absolute;
  top: 40px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  z-index: 10;
}

.stat-highlight {
  color: #FF6B35;
  font-size: 32px;
  font-weight: 700;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1;
}

.testimonial-stats span:not(.stat-highlight) {
  color: #1C3A45;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

/* CAROUSEL CONTAINER */
.testimonial-carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 0;
}

.carousel-track {
  width: 100%;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}

/* AVATAR GRID - 12 AVATARS IN 2 ROWS */
.avatar-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 18px 14px;
  padding: 10px 5px;
  place-items: center;
  margin: 0 auto;
  max-width: 100%;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.avatar:hover {
  transform: scale(1.15);
  z-index: 5;
}

/* Scattered positioning - matches Figma exactly */
.avatar:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  margin-top: 18px;
  margin-left: 5px;
}

.avatar:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  margin-top: 32px;
  margin-left: 10px;
}

.avatar:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  margin-left: 40px;
  margin-top: -5px;
}

.avatar:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
  margin-bottom: 12px;
}

.avatar:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
  margin-top: 8px;
  margin-left: 15px;
}

.avatar:nth-child(6) {
  grid-column: 4;
  grid-row: 1;
  margin-top: 10px;
}

.avatar:nth-child(7) {
  grid-column: 4;
  grid-row: 2;
  margin-left: 30px;
  margin-bottom: 5px;
}

.avatar:nth-child(8) {
  grid-column: 5;
  grid-row: 1;
  margin-top: 35px;
  margin-right: 5px;
}

.avatar:nth-child(9) {
  grid-column: 5;
  grid-row: 2;
  margin-right: 15px;
}

.avatar:nth-child(10) {
  grid-column: 6;
  grid-row: 1;
  margin-left: -8px;
  margin-top: 5px;
}

.avatar:nth-child(11) {
  grid-column: 6;
  grid-row: 2;
  margin-right: 30px;
  margin-top: 10px;
}

.avatar:nth-child(12) {
  grid-column: 1;
  grid-row: 2;
  margin-left: 25px;
  margin-top: 5px;
}

/* NAVIGATION AT BOTTOM - WITH AUTHOR NAME IN CENTER */
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
  padding-top: 20px;
}

.carousel-control {
  background: #1C3A45;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}

.carousel-control:hover {
  background: #2D4A56;
  transform: scale(1.08);
}

.carousel-control.prev {
  order: 1;
}

.carousel-control.next {
  order: 3;
}

.testimonial-author {
  color: #1C3A45;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin: 0;
  text-align: center;
  order: 2;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-container {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

  .testimonial-card {
    padding: 35px 40px;
  }

  .avatar-row {
    gap: 15px 10px;
  }

  .avatar {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 1024px) {
  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .testimonial-stats {
    position: static;
    margin: 0 auto 20px auto;
    align-items: center;
  }

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

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 25px;
    min-height: auto;
  }

  .testimonial-card .section-title {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .avatar-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  /* Reset all margins for mobile */
  .avatar:nth-child(n) {
    margin: 0 !important;
  }

  .testimonial-footer {
    gap: 20px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .avatar-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .avatar {
    width: 44px;
    height: 44px;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 15px;
  }

  .carousel-control.prev,
  .carousel-control.next,
  .testimonial-author {
    order: initial;
  }
}
.newsletter-section {
  background: #FFE9DF;
  padding: 60px 20px 80px;
}

.newsletter-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(255, 98, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.newsletter-card h2 {
  font-size: 32px;
  font-family: 'IBM Plex Mono', monospace;
  color: #1C3A45;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 16px;
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-page {
  padding: 48px 20px 96px;
  background: linear-gradient(180deg, #ffffff 0%, #fff9f5 38%, #fff4ed 100%);
}

.form-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.stacked-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-page-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  gap: 18px 20px;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-span-2 {
  grid-column: span 2;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-row .form-input {
  flex: 1;
}

.input-compact {
  max-width: 150px;
}

.form-section {
  background: var(--card);
  border: 1px solid #EEF2F4;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
  border-radius: 14px;
  padding: 26px 24px 20px;
  margin-bottom: 18px;
}

.section-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-note {
  color: #94A3B8;
  font-size: 13px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-label .required {
  color: #FF6B35;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FF6B35;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.input-hint {
  display: block;
  color: #94A3B8;
  font-size: 12px;
  margin-top: 6px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-button {
  border: 1px solid #CBD5E1;
  background: #F8FAFC;
  color: #1F2937;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-button:hover {
  border-color: var(--navy);
}

.pill-button.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(28, 58, 69, 0.2);
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  font-size: 13px;
}

.tag-remove {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.file-upload-area {
  border: 1px dashed var(--border);
  background: #f9fafb;
  border-radius: 12px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.file-upload-area:hover {
  border-color: var(--primary);
  background: #fff7f2;
}

.upload-icon {
  font-size: 24px;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.upload-helper {
  font-size: 13px;
  color: #6B7280;
}

.upload-helper strong {
  color: var(--primary);
  font-weight: 700;
}

.upload-success {
  text-align: center;
  color: #16A34A;
}

.upload-check {
  font-size: 28px;
  margin-bottom: 4px;
}

.upload-filename {
  font-weight: 600;
  font-size: 14px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #475569;
  font-size: 14px;
}

.submit-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.verify-note {
  color: #94A3B8;
  font-size: 12px;
  margin-bottom: 8px;
}

.form-button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* Messages */
.message {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Job Detail */
.job-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.job-detail-header {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.job-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.job-detail-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-top: 20px;
}

.application-section {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.application-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

/* Footer */
footer {
  background-color: rgba(255, 98, 0, 0.10);
  color: #000;
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #1C3A45;
  font-size: 15px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #000;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FF6200;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #FF6200;
  color: #000;
  font-size: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.footer-card {
  background: #FFE0CF;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  text-align: center;
  font-family: 'Jost', sans-serif;
}

.footer-logo {
  font-size: 20px;
  color: #CA4E00;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* Homepage Footer */
.site-footer {
  background: #FFEFE5;
  padding: 80px 20px 40px;
  color: #1C3A45;
}

.site-footer .footer-newsletter {
  text-align: center;
  margin-bottom: 50px;
}

.site-footer .footer-newsletter h2 {
  font-size: 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: white;
  padding: 10px;
  border-radius: 999px;
  border: 2px solid #F1D7C1;
  box-shadow: 0 10px 25px rgba(255, 98, 0, 0.15);
}

.footer-newsletter-input {
  border: none;
  padding: 14px 20px;
  min-width: 260px;
  font-size: 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  color: #1C3A45;
  outline: none;
}

.footer-newsletter-input::placeholder {
  color: #6b6b6b;
}

.footer-newsletter-btn {
  background: #FF6200;
  border: none;
  color: #fff;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 98, 0, 0.4);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-block img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-logo-text {
  font-size: 16px;
  font-family: 'Jost', sans-serif;
  color: #CA4E00;
}

.site-footer .footer-columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 30px;
}

.site-footer .footer-section h3 {
  color: #1C3A45;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  margin-bottom: 14px;
}

.site-footer .footer-section a {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.footer-divider {
  height: 2px;
  background: #FF6200;
  margin-bottom: 15px;
}

.site-footer .footer-bottom {
  border-top: none;
  padding-top: 0;
  text-align: center;
  color: #1C3A45;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top-color: #FF6B35;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }

  .jobs-section {
    width: calc(100% - 64px);
  }

  .trades-layout {
    grid-template-columns: minmax(320px, 1fr) 1fr;
  }

  .steps-container {
    grid-template-columns: minmax(320px, 1fr) 1fr;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-image {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    margin: 20px;
    min-height: 640px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-wrapper {
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .nav-wrapper .logo {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .nav-wrapper .nav-toggle {
    order: 2;
  }

  .nav-wrapper nav,
  .nav-wrapper .hero-actions,
  .nav-wrapper .header-actions {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    order: 3;
  }

  .nav-wrapper.nav-open nav,
  .nav-wrapper.nav-open .hero-actions,
  .nav-wrapper.nav-open .header-actions {
    display: flex;
  }

  .hero-buttons {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-content {
    margin-top: 140px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-inner {
    padding-left: 20px;
  }

  .about-expertise {
    grid-template-columns: 1fr;
  }

  .job-details-grid {
    grid-template-columns: 1fr;
  }

  .job-field {
    grid-template-columns: 1fr;
  }

  .jobs-section {
    margin: 30px auto;
  }

  .trades-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trades-cone {
    order: -1;
    margin-bottom: 20px;
  }

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

  .steps-container {
    grid-template-columns: 1fr;
  }

  .steps-illustration {
    max-width: 320px;
    margin: 0 auto 30px;
  }

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

  .testimonial-footer {
    flex-direction: column;
    gap: 12px;
  }

  .footer-main {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    margin: 16px;
    padding: 18px;
  }

  .hero-nav-card {
    flex-direction: column;
    text-align: center;
  }

  .hero-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content {
    margin-top: 100px;
  }

  .logo-text {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hero-inner,
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-inner {
    padding-left: 0;
  }

  .contact-form-card {
    padding: 24px;
  }

  .job-field {
    grid-template-columns: 1fr;
  }

  .faq-question {
    flex-direction: column;
    gap: 8px;
  }

  .jobs-section {
    margin: 20px;
    padding: 40px 20px;
  }

  .job-card-top {
    flex-direction: column;
  }

  .job-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .trades-layout,
  .steps-container {
    grid-template-columns: 1fr;
  }

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

  .cones {
    margin-top: 30px;
  }

  .newsletter-card {
    padding: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .form-container {
    padding: 20px;
  }

  .form-grid.two-column {
    grid-template-columns: 1fr;
  }

  .submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .job-detail-header,
  .application-section {
    padding: 20px;
  }

  .steps-content {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
  }

  .step-offset {
    margin-top: 0;
  }

  .footer-newsletter-form {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .footer-newsletter-input {
    min-width: auto;
    width: 100%;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-block {
    flex-direction: column;
  }

  .site-footer .footer-columns {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  /* Testimonial responsive */
  .testimonial-card {
    padding: 35px 30px;
  }

  .testimonial-card .section-title {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .avatar-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  /* Reset margins for mobile */
  .avatar:nth-child(n) {
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 40px 10px;
  }

  .hero {
    margin: 12px;
    min-height: 580px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .jobs-section {
    width: calc(100% - 20px);
    padding: 30px 16px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-office-card {
    max-width: 100%;
  }

  .contact-type-toggle {
    grid-template-columns: 1fr;
  }

  .faq-header h2 {
    font-size: 30px;
  }

  .trade-badge {
    width: 100%;
    text-align: center;
  }

  .testimonial-card {
    padding: 26px;
  }

  .testimonial-carousel {
    gap: 12px;
  }

  .avatar-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .avatar {
    width: 42px;
    height: 42px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .footer-newsletter h2 {
    font-size: 26px;
  }

  .site-footer .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}
