/* 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;
  --card-glow: 0 20px 60px rgba(16, 38, 61, 0.12);
}

body[data-page="job"] {
  background: radial-gradient(circle at 18% 18%, rgba(255, 107, 53, 0.06) 0, rgba(255, 107, 53, 0) 36%),
              radial-gradient(circle at 82% 0%, rgba(28, 58, 69, 0.08) 0, rgba(28, 58, 69, 0) 32%),
              #f7fafc;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* Header */
header {
  background-color: transparent;
  box-shadow: none;
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: 2;
}

.global-header {
  display: flex;
  justify-content: center;
  padding: clamp(18px, 3vw, 32px);
  margin: clamp(12px, 4vw, 24px);
  border-radius: 25px;
  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;
}

.global-header .hero-nav-card {
  margin: 0 auto;
}

body[data-page="about"] .global-header,
body[data-page="post-job"] .global-header,
body[data-page="contact"] .global-header {
  background: #fff;
  background-image: none;
  box-shadow: 0 12px 30px rgba(28, 58, 69, 0.08);
}

body[data-page="home"] .hero .hero-inner > .hero-nav-card {
  box-shadow: 0 12px 30px rgba(28, 58, 69, 0.08);
}

.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;
}

.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);
}

.btn-disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* 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;
  position: relative;
  overflow: hidden;
}

.about-hero-nav {
  max-width: 1100px;
  margin: 0 auto 40px;
}

.about-hero::before,
.about-hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.about-hero::before {
  background: #FF6B35;
  top: -120px;
  right: -80px;
}

.about-hero::after {
  background: #0b1f2b;
  bottom: -160px;
  left: -100px;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.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: radial-gradient(circle at 10% 10%, rgba(255, 107, 53, 0.08), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(12, 31, 53, 0.08), transparent 28%),
              #f8fafc;
  padding: 80px 20px 120px;
}

.about-highlight {
  margin-bottom: 36px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 14px 34px rgba(12, 31, 53, 0.08);
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1C3A45;
  margin-bottom: 4px;
}

.about-stat .stat-label {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  align-items: stretch;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 70px auto;
}

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

.about-story {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 28px;
  box-shadow: 0 18px 40px rgba(12, 31, 53, 0.12);
  position: relative;
  overflow: hidden;
}

.about-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(12, 31, 53, 0.04));
  pointer-events: none;
}

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

.about-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(12, 31, 53, 0.12);
  position: relative;
  overflow: hidden;
}

.about-brand::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.08);
  top: -40px;
  right: -30px;
}

.about-brand img {
  width: 220px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.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: 16px;
}

.expertise-list li {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 28px rgba(12, 31, 53, 0.08);
}

.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;
  position: relative;
  overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.contact-hero::before {
  background: #FF6B35;
  top: -140px;
  left: -100px;
}

.contact-hero::after {
  background: #0b1f2b;
  bottom: -140px;
  right: -120px;
}

.about-hero-nav,
.contact-hero-nav {
  max-width: 1100px;
  margin: 0 auto 40px;
}

.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;
  max-width: 620px;
}

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

.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(12, 31, 53, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

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

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

.contact-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-message .msg-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.contact-message .msg-body {
  flex: 1;
}

.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;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 31, 53, 0.08);
}

.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: #0f172a;
  padding: 100px 20px;
  position: relative;
}

.contact-office::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  filter: blur(90px);
  opacity: 0.6;
  top: -40px;
  right: 10%;
}

.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: clamp(12px, 4vw, 24px);
  border-radius: 25px;
  min-height: clamp(520px, 70vh, 720px);
  padding: clamp(18px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
}

.hero::before {
  background: #FF6B35;
  top: -140px;
  right: -80px;
}

.hero::after {
  background: #1C3A45;
  bottom: -180px;
  left: -160px;
}

.hero-inner {
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 48px);
  align-items: stretch;
}

.hero-nav-card {
  width: 100%;
  max-width: 1150px;
  background: #fff;
  padding: clamp(16px, 2vw, 28px) clamp(20px, 3vw, 36px);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.hero-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  flex-wrap: nowrap;
}

.hero-menu nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.hero-menu .lang-selector {
  flex-shrink: 0;
}

.hero-nav-card .logo {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-nav-card .nav-toggle {
  margin-left: auto;
}

.lang-selector {
  position: relative;
  font-family: 'Inter', sans-serif;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #E5E7EB;
  background: #F6F7FB;
  border-radius: 24px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #1C3A45;
}

.lang-toggle i {
  font-size: 12px;
  color: #6B7280;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(28, 58, 69, 0.18);
  padding: 8px;
  min-width: 200px;
  display: none;
  z-index: 50;
}

.lang-selector.open .lang-dropdown,
.lang-selector:focus-within .lang-dropdown {
  display: block;
}

.lang-selector:not(.open):focus-within .lang-dropdown {
  display: block;
}

.lang-dropdown button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.lang-dropdown button:hover {
  background: #F5F5F5;
}

.lang-dropdown button.is-active {
  background: #FFF2E6;
  font-weight: 600;
  color: #FF6200;
}

body.language-modal-open {
  overflow: hidden;
}

.language-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 4000;
}

.language-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.language-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(12, 20, 40, 0.25);
}

.language-modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 16px;
  background: #FFF4EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #FF6200;
}

.language-modal h2 {
  font-size: clamp(20px, 4vw, 28px);
  color: #1C3A45;
  margin-bottom: 8px;
}

.language-modal__subtitle {
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 24px;
}

.language-modal__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  text-align: left;
}

.language-modal__option {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 12px;
  background: #F9FAFB;
  font-size: 15px;
  font-weight: 500;
  color: #1C3A45;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-modal__option:hover,
.language-modal__option:focus-visible {
  background: #FFF2E6;
  border-color: #FF6200;
  color: #FF6200;
}

.language-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  color: #94A3B8;
  cursor: pointer;
}

.language-modal__close:hover {
  color: #1C3A45;
}

@media (max-width: 768px) {
  .language-modal-overlay {
    align-items: flex-start;
    padding: 40px 16px 24px;
  }

  .language-modal {
    margin-top: 10vh;
  }
}

@media (max-width: 600px) {
  .language-modal__options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .language-modal {
    border-radius: 20px;
    padding: 24px;
  }

  .language-modal__options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-nav-card {
    padding: 14px 18px;
    gap: 12px;
  }

  .hero-nav-card .logo {
    flex: 0 1 auto;
  }

  .hero-nav-card .nav-toggle {
    order: 2;
  }

  .hero-nav-card nav {
    order: 3;
    width: 100%;
  }
}

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

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

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: clamp(60px, 10vw, 160px) auto 0;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(32px, 4.8vw, 52px);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(16px, 2.6vw, 20px);
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}

.hero-buttons {
  display: flex;
  gap: clamp(16px, 3vw, 30px);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  text-align: left;
}

.stat-icon {
  font-size: 18px;
  line-height: 1;
}

.stat-label {
  margin: 0;
  font-size: 12px;
  opacity: 0.85;
}

.stat-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin-top: 18px;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-hint:hover {
  opacity: 1;
  transform: translateY(2px);
}

.scroll-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-dot::after {
  content: '';
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  display: block;
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-2px); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}

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

.jobs-section {
  background: linear-gradient(145deg, #fff7f2 0%, #ffffff 32%, #f7fbff 100%);
  border-radius: 30px;
  margin: clamp(24px, 4vw, 48px) auto;
  box-shadow: 0 15px 40px rgba(255, 98, 0, 0.08);
  max-width: 1244px;
  width: min(1244px, 100%);
  padding: clamp(32px, 4vw, 60px);
  border: 1px solid #f1f5f9;
}

.jobs-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.jobs-filters .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jobs-filters label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
}

.filter-input {
  background: #ffffff;
  border-radius: 10px;
}

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

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

.section-header .see-all-link {
  margin-left: auto;
}

.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;
}

@media (max-width: 640px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header .see-all-link {
    margin-left: 0;
  }
}

/* Job Cards - UPDATED TO MATCH FIGMA */
.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.jobs-list:empty::after {
  content: 'No jobs found with these filters.';
  display: block;
  color: #94A3B8;
  text-align: center;
  padding: 20px;
}

.jobs-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 10px;
}

.jobs-skeleton.hidden {
  display: none;
}

.jobs-skeleton-card {
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

.job-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 22px 24px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 26px rgba(12, 31, 53, 0.06);
}

.job-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: #FF6B35;
  transform: translateY(-2px);
}

.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;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.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;
}

/* =========================
   TRADES SECTION (banner)
   ========================= */
.trades-section {
  background: #FFEFE5;          /* soft peach band */
  padding: 56px 0;
}

.trades-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.trades-copy {
  max-width: 320px;
}

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

.trades-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-start;
  align-items: flex-start;
}

.trade-badge {
  padding: 8px 22px;
  border-radius: 999px;
  border: 2px solid #FF6200;
  color: #FF6200;
  background: transparent;
  font-family: 'Inria Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease, transform 0.2s ease;
}

.trade-badge:hover {
  background-color: #FF6200;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 98, 0, 0.25);
  transform: translateY(-1px);
}

.trades-section.is-collapsed .trade-badge:nth-child(n+7) {
  display: none;
}

.trade-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed #FF6200;
  color: #FF6200;
  background: rgba(255, 107, 53, 0.08);
  cursor: pointer;
}

.featured-roles {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.role-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #ffd4bf;
}

.role-title {
  font-weight: 700;
  color: #1C3A45;
  margin-bottom: 4px;
}

.role-meta {
  color: #6B7280;
  font-size: 13px;
}

/* hide old cone if it’s still in the DOM */
.trades-cone {
  display: none !important;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .trades-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

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

@media (max-width: 600px) {
  .trade-badge {
    width: 100%;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }
}

/* =========================
   STEPS SECTION (cards)
   ========================= */
.steps-section {
  background: #ffffff;
  padding: 80px 0 110px;
}

.steps-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.steps-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #123240;
  line-height: 1.4;
}

.steps-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  position: relative;
  padding-top: 10px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.4), rgba(28, 58, 69, 0.2));
  opacity: 0.35;
}

.step-card {
  background: #FFEFE5;
  border-radius: 22px;
  padding: 28px 32px 32px;
  width: 100%;
  text-align: left;
  box-shadow: 0 18px 40px rgba(255, 98, 0, 0.12);
  height: 100%;
}

.step-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.step-card-number {
  font-family: 'Inria Sans', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 38px;
  color: #6F625A; /* warm grey like in the design */
}

.step-card-icon {
  font-size: 38px;
  opacity: 0.25;
  line-height: 1;
}

/* optional fine–tuning per icon */
.step-card-icon-search { transform: translateY(2px); }
.step-card-icon-doc    { transform: translateY(2px); }

.step-card-title {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: #FF6200;
  margin-bottom: 14px;
}

.step-card-text {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  line-height: 1.7;
}

.steps-cta {
  margin-top: 28px;
  padding: 12px 22px;
}

/* Responsive layout for steps */
@media (max-width: 900px) {
  .steps-grid {
    gap: 24px;
    padding-top: 0;
  }

  .steps-grid::before {
    display: none;
  }
}

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

  .steps-heading {
    font-size: 28px;
  }

  .step-card {
    padding: 24px 22px 26px;
  }
}

/* ===================================
   TESTIMONIAL SECTION – WHAT WORKERS SAY
   =================================== */

.testimonial-section {
  background: #ffffff;
  padding: 90px 20px 110px;
}

.testimonial-shell {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.testimonial-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #123240;
  line-height: 1.3;
  margin-bottom: 34px;
}

/* Avatar cloud + 202+ badge */
.avatar-cluster-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 44px;
}

.avatar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 14px;
  max-width: 460px;
  padding: 6px 5px;
}

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

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

/* scattered offsets – horizontal emphasis on desktop */
.avatar:nth-child(1) { margin-left: -12px; }
.avatar:nth-child(2) { margin-right: 8px; }
.avatar:nth-child(3) { margin-left: 22px; }
.avatar:nth-child(4) { margin-right: -6px; }
.avatar:nth-child(5) { margin-left: 18px; }
.avatar:nth-child(6) { margin-right: -12px; }
.avatar:nth-child(7) { margin-left: 26px; }
.avatar:nth-child(8) { margin-right: 16px; }
.avatar:nth-child(9) { margin-left: -14px; }
.avatar:nth-child(10){ margin-right: 20px; }
.avatar:nth-child(11){ margin-left: 12px; }
.avatar:nth-child(12){ margin-right: -18px; }

/* 202+ badge */
.testimonial-stats-inline {
  position: absolute;
  top: 16px;
  right: -150px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #111827;
  line-height: 1.2;
}

/* Quote */
.testimonial-quote {
  max-width: 650px;
  margin: 0 auto 24px auto;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.8;
  position: relative;
}

.testimonial-quote::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  color: #D1D5DB;
}

.trust-strip {
  background: #0f172a;
  color: #fff;
  padding: 36px 0;
}

.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.trust-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.trust-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
}

.trust-icon {
  font-size: 22px;
  line-height: 1;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rating-score {
  font-weight: 700;
  font-size: 20px;
  color: #0f1f2c;
}

.rating-stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.rating-text {
  color: #475569;
  font-size: 14px;
}

/* Gallery of 3 images */
.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 26px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}

.gallery-item-main {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.gallery-item-side {
  opacity: 0.85;
}

/* Arrows + name */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.carousel-control {
  background: #142c39;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover {
  background: #1f3a48;
  transform: translateY(-1px);
}

.testimonial-name-block {
  margin: 0;
  text-align: center;
}

.testimonial-name {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #FF6B35;
}

.testimonial-role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4B5563;
  margin-top: 4px;
}

/* Hidden slide meta */
.testimonial-slides {
  display: none;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-section {
    padding: 70px 20px 80px;
  }

  .testimonial-heading {
    font-size: 32px;
    letter-spacing: 0.14em;
  }

  .avatar-cluster-wrap {
    transform: translateX(-10px);
  }

  .testimonial-stats-inline {
    position: static;
    margin-top: 18px;
    align-items: center;
  }

  .avatar-row {
    max-width: 360px;
    margin: 0 auto;
  }

  .testimonial-quote::before {
    top: -34px;
  }

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

  .gallery-item-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .testimonial-shell {
    padding: 0 12px;
  }

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

  /* remove offsets on small screens */
  .avatar:nth-child(n) {
    margin: 0 !important;
  }

  .testimonial-gallery {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 26px auto;
  }

  .gallery-item-main {
    grid-column: auto;
    transform: none;
  }

  .gallery-item-side {
    display: none;
  }

  .testimonial-nav {
    gap: 18px;
  }
}

  .testimonial-heading {
    font-size: 26px;
    letter-spacing: 0.12em;
  }

  .testimonial-quote {
    font-size: 15px;
  }

  .carousel-control {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

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


/* 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;
  }
}

  .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;
}

.form-inline-hint {
  font-size: 12px;
  color: #6B7280;
  margin-top: 6px;
}

.field-error {
  color: #b91c1c;
  font-size: 12px;
  margin-top: 6px;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea,
.form-group.has-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  border: 1px dashed #CBD5E1;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F8FAFC;
  color: #1F2937;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.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;
}

.file-upload-area.is-dragging {
  border-color: #16A34A;
  background: #f0fdf4;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.12);
}

.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;
}

.upload-error {
  color: #b91c1c;
  font-weight: 600;
  margin-bottom: 6px;
}

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

.checkbox-line.has-error {
  border: 1px solid #ef4444;
  border-radius: 8px;
  padding: 8px 10px;
}

.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: 14px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid transparent;
}

.message-success {
  background-color: #ecfdf3;
  color: #166534;
  border-color: #bbf7d0;
}

.message-error {
  background-color: #fef2f2;
  color: #b91c1c;
  border-color: #fecdd3;
}

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

.message-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.message-content {
  flex: 1;
}

.message-body {
  color: #475569;
  margin: 6px 0 12px;
}

.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.job-detail-header {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--card-glow);
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.job-detail-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 107, 53, 0.18), transparent 40%),
              radial-gradient(circle at 85% 5%, rgba(28, 58, 69, 0.14), transparent 36%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.job-detail-header > * {
  position: relative;
  z-index: 1;
}

.job-detail-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

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

.job-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.job-detail-meta span::before {
  content: '•';
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.job-detail-description {
  font-size: 16px;
  color: #1f2937;
  line-height: 1.8;
  margin-top: 20px;
  display: grid;
  gap: 12px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.job-detail-description p {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
}

.job-skeleton {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-glow);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.job-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  animation: shimmer 1.6s infinite;
}

.skeleton-chip-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.skeleton-chip,
.skeleton-pill {
  display: inline-block;
  height: 12px;
  width: 120px;
  background: #e5e7eb;
  border-radius: 999px;
}

.skeleton-title {
  height: 28px;
  width: 60%;
  background: #e5e7eb;
  border-radius: 6px;
  margin-bottom: 18px;
}

.skeleton-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.skeleton-paragraph {
  height: 12px;
  width: 100%;
  background: #e5e7eb;
  border-radius: 6px;
  margin-bottom: 10px;
}

.skeleton-paragraph.short {
  width: 70%;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.application-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--card-glow);
  border: 1px solid #e2e8f0;
}

.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;
}

.sticky-apply {
  position: fixed;
  bottom: 18px;
  left: 16px;
  right: 16px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  font-weight: 600;
  z-index: 40;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 900px) {
  .sticky-apply {
    display: none !important;
  }
}

.sticky-mini-cta {
  position: fixed;
  bottom: 24px;
  right: 16px;
  left: 16px;
  background: #0f1f2c;
  color: #fff;
  padding: 12px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  z-index: 60;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-mini-cta .cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.sticky-mini-cta .cta-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.sticky-mini-cta .btn {
  padding: 10px 14px;
}

.sticky-mini-cta .cta-close {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 18px;
  cursor: pointer;
}

@media (min-width: 960px) {
  .sticky-mini-cta {
    left: auto;
    width: 360px;
  }
}

.sticky-mini-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-mini-cta.is-faded {
  opacity: 0.7;
}

.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);
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  justify-content: center;
}

.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;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-block {
  display: inline-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 {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  justify-items: center;
}

.site-footer .footer-section {
  text-align: center;
}

.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 .hero-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 12px;
    margin-top: 10px;
    order: 3;
  }

  .nav-wrapper.nav-open .hero-menu {
    display: flex;
  }

  .hero-menu nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-menu .lang-selector {
    width: 100%;
  }

  .hero-menu .lang-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero-menu .lang-dropdown {
    position: static;
    box-shadow: none;
    margin-top: 0;
  }

  .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-menu {
    flex-wrap: wrap;
    justify-content: center;
  }


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

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

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

  .logo-text {
    display: inline;
  }

  .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;
    padding: 0;
    border-radius: 24px;
    border-width: 1px;
    background: transparent;
    box-shadow: none;
    align-items: stretch;
  }

  .footer-newsletter-input {
    min-width: auto;
    width: 100%;
    border: 1px solid #F1D7C1;
    border-radius: 16px;
    padding: 14px 16px;
  }

  .footer-newsletter-btn {
    width: 100%;
    border-radius: 16px;
    padding: 14px;
  }

  .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;
}
