/**
 * Sirius Landing Pages - Brand Styles
 *
 * Brand colors, typography, and base components for landing pages.
 */

/* ============================================
   CSS Variables (Brand Tokens)
   ============================================ */
:root {
  /* Colors */
  --color-primary: #962630;
  --color-primary-hover: #b66b33;
  --color-accent: #e8c21d;
  --color-text: #262624;
  --color-text-light: #ffffff;
  --color-background: #ffffff;
  --color-background-dark: #262624;

  /* Typography - matches live site Elementor setup */
  --font-heading-h1: 'Roboto', sans-serif;
  --font-heading: 'Roboto Condensed', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --font-button: 'Roboto Condensed', sans-serif;
  --font-accent: 'Roboto Slab', serif;
  --font-alt: 'Oswald', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-family: var(--font-heading-h1);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

.text-accent {
  color: var(--color-accent);
}

.text-primary {
  color: var(--color-primary);
}

.text-light {
  color: var(--color-text-light);
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-lg) 0;
}

.section--dark {
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--color-text-light);
}

.section--primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.section--primary h1,
.section--primary h2,
.section--primary h3 {
  color: var(--color-text-light);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-button);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-text-light);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.btn--accent:hover {
  background-color: #d4af1a;
  color: var(--color-text);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
}

.btn--outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-text);
}

.btn--outline-light {
  background-color: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
}

.btn--outline-light:hover {
  background-color: rgba(255,255,255,0.15);
  color: var(--color-text-light);
}

.btn--large {
  font-size: 1.125rem;
  padding: 1.125rem 3rem;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  background-color: var(--color-background-dark);
  padding: var(--spacing-sm) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 50px;
  width: auto;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.hero h1 {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: var(--color-background);
  padding: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card__title {
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-label {
  display: block;
  font-family: var(--font-button);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #ced4da;
  background-color: var(--color-background);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  padding: var(--spacing-md) 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer a {
  color: var(--color-accent);
}

.footer a:hover {
  color: #d4af1a;
}

/* ============================================
   Utilities
   ============================================ */
.text-center {
  text-align: center;
}

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

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ============================================
   Hero Grid (2-column layout)
   ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  text-align: left;
}

.hero-split__content {
  padding-right: var(--spacing-md);
}

.hero-split__image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 8px;
}

.hero-split__image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top;
}

/* Hero Checklist */
.hero-checklist {
  list-style: none;
  margin: var(--spacing-md) 0;
  padding: 0;
}

.hero-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.hero-checklist__icon {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Buttons Row */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   Hero Variation B: Gradient Fade Background
   ============================================ */
.hero--bg-gradient {
  background-color: transparent;
  background-image:
    linear-gradient(to right, rgba(38, 38, 36, 0.8) 0%, rgba(38, 38, 36, 0.7) 40%, rgba(38, 38, 36, 0.4) 55%, transparent 70%),
    url('/assets/images/hero-warehouse-1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.hero--bg-gradient .container {
  max-width: 650px;
  margin-left: 4rem;
  margin-right: auto;
  padding-left: 0;
}

.hero--bg-gradient .hero-split {
  display: block;
}

.hero--bg-gradient .hero-split__image {
  display: none;
}

.hero--bg-gradient .hero-split__content {
  padding-right: 0;
  max-width: 550px;
}

/* ============================================
   Hero Variation C: Overlay Box
   ============================================ */
.hero--bg-overlay {
  background-image: url('/assets/images/img-3.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
}

.hero--bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero--bg-overlay .container {
  position: relative;
  z-index: 1;
}

.hero--bg-overlay .hero-split {
  display: block;
}

.hero--bg-overlay .hero-split__image {
  display: none;
}

.hero--bg-overlay .hero-split__content {
  background: rgba(38, 38, 36, 0.75);
  padding: var(--spacing-lg);
  border-radius: 8px;
  max-width: 600px;
}

/* ============================================
   Job Cards Grid
   ============================================ */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.job-card {
  display: block;
  background: #f5f5f5;
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.job-card:hover {
  background: #ebebeb;
  transform: translateY(-2px);
}

.job-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.job-card__location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.job-card__location::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

/* Legacy - keeping for backwards compatibility */
.job-card__link {
  color: var(--color-primary);
  font-family: var(--font-button);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-card__link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* Job Card Meta (pay rate, job type) */
.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

.job-card__type,
.job-card__pay {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
}

.job-card__type {
  background: rgba(150, 38, 48, 0.12);
  color: #7a2028;
}

.job-card__pay {
  background: rgba(232, 194, 29, 0.2);
  color: #8a7010;
}

.job-card__category {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #888;
}

/* ============================================
   Value Props Grid (3+3 layout on desktop)
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

.value-card__icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.value-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.value-card__text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================
   Benefits Checklist
   ============================================ */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
}

.benefits-list--centered {
  margin: 0 auto;
}

.benefits-list__item {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.benefits-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   Testimonials Grid
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--color-primary);
}

.testimonial-card__quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.testimonial-card__quote::before {
  content: '"';
  font-size: 1.5rem;
  color: var(--color-primary);
}

.testimonial-card__author {
  font-weight: 700;
  font-family: var(--font-heading);
  color: #666;
  font-size: 0.9rem;
}

.testimonial-card__author::before {
  content: "— ";
}

/* ============================================
   Testimonials Variation B: Quote Bubbles
   ============================================ */
.testimonials--bubbles .testimonial-card {
  background: #fff;
  border-left: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 3rem;
  text-align: center;
}

.testimonials--bubbles .testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  background: var(--color-primary);
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.testimonials--bubbles .testimonial-card__quote {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.6;
}

.testimonials--bubbles .testimonial-card__quote::before {
  display: none;
}

.testimonials--bubbles .testimonial-card__author {
  color: var(--color-primary);
  font-size: 0.95rem;
}

.testimonials--bubbles .testimonial-card__author::before {
  display: none;
}

/* ============================================
   Testimonials Variation C: Star Ratings
   ============================================ */
.testimonials--stars .testimonial-card {
  background: transparent;
  border: 2px solid #e5e5e5;
  border-left: 2px solid #e5e5e5;
  border-radius: 8px;
  text-align: left;
}

.testimonials--stars .testimonial-card__stars {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonials--stars .testimonial-card__quote {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonials--stars .testimonial-card__quote::before {
  display: none;
}

.testimonials--stars .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.testimonials--stars .testimonial-card__author::before {
  display: none;
}

.testimonials--stars .testimonial-card__author-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ============================================
   Search Form (Visual)
   ============================================ */
.search-form {
  display: flex;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.search-form__input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.search-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.search-form__input--location {
  max-width: 200px;
  background-color: #f5f5f5;
}

/* ============================================
   CTA Banner with Job Links
   ============================================ */
.cta-jobs {
  text-align: center;
}

.cta-jobs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 3rem;
  max-width: 800px;
  margin: var(--spacing-md) auto;
  text-align: left;
}

.cta-jobs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-jobs__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.cta-jobs__list li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.cta-jobs__link {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.cta-jobs__link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================
   Section Header (centered)
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

.section-header__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: var(--spacing-sm);
}

/* ============================================
   Footer Extended
   ============================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-lg);
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.footer__section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--spacing-sm);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.footer__social a:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-light);
}

.footer__copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-sm);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ============================================
   Search Dropdown Autocomplete
   ============================================ */
.search-form-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.search-form {
  position: relative;
  z-index: 2;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-dropdown.active {
  display: block;
}

.search-dropdown__item {
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: var(--color-text);
  font-family: var(--font-body);
  transition: background-color 0.15s ease;
}

.search-dropdown__item:last-child {
  border-bottom: none;
}

.search-dropdown__item:hover,
.search-dropdown__item.highlighted {
  background-color: #f5f5f5;
}

.search-dropdown__item-title {
  font-weight: 600;
  color: var(--color-primary);
}

.search-dropdown__item-location {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

.search-dropdown__no-results {
  padding: 1rem 1.25rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: var(--spacing-lg) 0;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-split__content {
    padding-right: 0;
  }

  .hero-split__image {
    order: -1;
    margin-bottom: var(--spacing-md);
  }

  .hero-checklist {
    text-align: left;
    display: inline-block;
  }

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

  .section {
    padding: var(--spacing-md) 0;
  }

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

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

  .value-card {
    padding: 1.5rem 1rem;
  }

  .value-card__icon {
    font-size: 2.5rem;
  }

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

  .cta-jobs__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-jobs__list li {
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .cta-jobs__list li::before {
    position: static;
  }

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

  .search-form__input--location {
    max-width: none;
  }

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

  .footer__social {
    justify-content: center;
  }

  .btn--large:not(.hero .btn--large) {
    width: 100%;
  }

  /* Keep hero gradient solid on mobile for readability */
  .hero--bg-gradient {
    background-image:
      linear-gradient(to right, rgba(38, 38, 36, 0.95) 0%, rgba(38, 38, 36, 0.9) 60%, rgba(38, 38, 36, 0.8) 100%),
      url('/assets/images/hero-warehouse-1.jpg');
  }

  .hero--bg-gradient .container {
    margin-left: var(--container-padding);
  }
}

/* ============================================
   Job Detail Modal
   ============================================ */
.job-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.job-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.job-modal__content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.job-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
}

.job-modal__close:hover {
  background: var(--color-primary);
  color: #fff;
}

.job-modal__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.job-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.job-modal__location {
  color: #666;
  font-size: 1rem;
}

.job-modal__location i {
  color: var(--color-primary);
  margin-right: 0.25rem;
}

.job-modal__type,
.job-modal__pay,
.job-modal__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.job-modal__type {
  background: rgba(150, 38, 48, 0.12);
  color: #7a2028;
}

.job-modal__pay {
  background: rgba(232, 194, 29, 0.2);
  color: #8a7010;
}

.job-modal__category {
  background: #f0f0f0;
  color: #555;
}

.job-modal__posted {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.job-modal__posted i {
  margin-right: 0.25rem;
  color: #888;
}

.job-modal__body {
  margin-bottom: 1.5rem;
}

.job-modal__section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-modal__description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.job-modal__more-info {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  padding: 0.75rem 1rem;
  background: #f8f8f8;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.job-modal__more-info i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.job-modal__description ul,
.job-modal__description ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.job-modal__description li {
  margin-bottom: 0.5rem;
}

.job-modal__description p {
  margin-bottom: 1rem;
}

.job-modal__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-modal__apply {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.job-modal__details {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.job-modal__details:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Modal Mobile Adjustments */
@media (max-width: 600px) {
  .job-modal__content {
    width: 95%;
    padding: 1.5rem;
    max-height: 90vh;
  }

  .job-modal__title {
    font-size: 1.4rem;
  }

  .job-modal__meta {
    gap: 0.5rem;
  }

  .job-modal__actions {
    flex-direction: column;
  }

  .job-modal__apply,
  .job-modal__details {
    width: 100%;
    min-width: auto;
  }
}
