/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #5040ae;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Focus styles */
:focus {
  outline: 2px solid #5040ae;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid #5040ae;
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1em;
}

a {
  color: #5040ae;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #4a3a9e;
  text-decoration: underline;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Main Content */
.main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Breadcrumb */
.breadcrumb {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #dee2e6;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #6c757d;
}

.breadcrumb a {
  color: #5040ae;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn-primary {
  background: #5040ae;
  color: white;
}

.btn-primary:hover {
  background: #4a3a9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 64, 174, 0.3);
}

.btn-outline {
  background: transparent;
  color: #5040ae;
  border: 2px solid #5040ae;
}

.btn-outline:hover {
  background: #5040ae;
  color: white;
  transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */

/* Stack dropdown items (en-jobs header uses .navbar + .dropdown-item) */
.navbar .nav-item.dropdown .dropdown-menu {
  padding: .5rem 0;           /* breathing room inside the panel */
}

.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
  display: block;              /* one per line */
  padding: .6rem 1rem;
  line-height: 1.4;
  white-space: nowrap;         /* keep each item on a single line */
  text-decoration: none;
  color: #2c3e50;
}

.navbar .nav-item.dropdown .dropdown-menu .dropdown-item + .dropdown-item {
  border-top: 1px solid #eef1f5;  /* subtle divider between items */
}

.navbar .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #5040ae;
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  width: 160px;
  height: 40px;
  aspect-ratio: 4 / 1;
}

/* Above-the-fold sections: improve rendering */
.hero-section {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

/* Reserve space for ad slots to avoid layout shifts */
.ad-slot,
.ad-container {
  min-height: 280px;
}

/* Reduce font swap shifts */
html {
  text-rendering: optimizeLegibility;
}

/* Avoid font-size-adjust to reduce any font measurement surprises */
body {
  font-size-adjust: none;
}

.nav-toggle-icon {
  width: 24px;
  height: 3px;
  background: #2c3e50;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background: #2c3e50;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-toggle-icon::before {
  top: -8px;
}

.nav-toggle-icon::after {
  top: 8px;
}

.nav-item {
  position: relative;
}

.nav-item.dropdown {
  position: relative;
}

/* Hide by default */
.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Show when the parent has .open (toggled by JS) */
.nav-item.dropdown.open > .dropdown-menu {
  display: block;
}

.nav-item.dropdown.open > .dropdown-toggle::after { transform: rotate(180deg); }

/* Rotate the caret only when open */
.nav-item.dropdown.open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Optional caret rotation */
.nav-item.dropdown .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: .4rem;
  border: .35rem solid transparent;
  border-top-color: currentColor;
  vertical-align: .15em;
  transition: transform .15s ease;
}
.nav-item.dropdown.open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-item.active .nav-link {
  color: #5040ae;
  font-weight: 600;
}

.nav-link {
  color: #2c3e50;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #5040ae;
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #2c3e50;
  transition: background-color 0.3s ease;
}

.dropdown-link:hover {
  background: #f8f9fa;
  color: #5040ae;
  text-decoration: none;
}

.language-selector select {
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: white;
  color: #2c3e50;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Force horizontal navigation layout */
.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
}
.nav-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem !important;
    margin: 0 !important;
    list-style: none !important;
}
.nav-toggle {
    display: none !important;
}
        
        /* Ensure proper header layout */
        .header {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px) !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
            position: sticky !important;
            top: 0 !important;
            z-index: 1000 !important;
        }
        
        .nav {
            padding: 1rem 0 !important;
        }
        
        /* === Bulgarian header (.navbar*) — horizontal desktop layout === */
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header .navbar .navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header .navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-item {
    border-bottom: 1px solid #eee;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 0;
  }
  
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
  }
  
.nav-item.dropdown .dropdown-menu {
    position: static;
    display: none;            /* still hidden by default */
    box-shadow: none;
    background: #f8f9fa;
    margin-top: 0.5rem;
    border: none;
  }
  .nav-item.dropdown.open > .dropdown-menu {
    display: block;           /* show only when .open */
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero {
  content-visibility: auto;
  contain-intrinsic-size: 480px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-form {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.search-inputs {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.input-group {
  display: flex;
  flex-direction: column;
}

.search-input,
.search-select {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: #2c3e50;
  background: transparent;
}

.search-input:focus,
.search-select:focus {
  outline: 2px solid #5040ae;
  outline-offset: -2px;
}

.search-btn {
  background: #5040ae;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-btn:hover {
  background: #4a3a9e;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .search-inputs {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* ===== PAGE HEADER SECTION ===== */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.page-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== SEARCH AND FILTER SECTION ===== */
.search-filter {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
}

.search-filter-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.search-box {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #5040ae;
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #5040ae;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: #4a3a9e;
}

.search-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: white;
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e9ecef;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
  background: #5040ae;
  border-color: #5040ae;
  color: white;
}

/* ===== FEATURED COMPANIES SECTION ===== */
.featured-companies {
  padding: 6rem 0;
  background: #f8f9fa;
}

.companies-grid {
  padding: 3rem 0;
}

.companies-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .companies-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .company-card {
    padding: 1.5rem;
  }
}

.load-more-container {
  text-align: center;
  margin-top: 2rem;
}

.company-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Company Header Styles */
.company-header {
  padding: 2rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.company-header-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.company-logo {
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-logo img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

.company-info {
  flex: 1;
  min-width: 0;
}

.company-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.company-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0 0 1rem 0;
}

.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.company-industry,
.company-location {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .company-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .company-title {
    font-size: 1.5rem;
  }
  
  .company-meta {
    justify-content: center;
  }
}

.company-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.company-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5040ae;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-link:hover {
  color: #4a3a9e;
}

/* ===== JOB CATEGORIES SECTION ===== */
.job-categories {
  padding: 6rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(80, 64, 174, 0.1), transparent);
  transition: left 0.5s ease;
}

.category-card:hover::before {
  left: 100%;
}

.category-card:hover {
  border-color: #5040ae;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(80, 64, 174, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #5040ae, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  z-index: 1;
}

.category-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5040ae;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.category-link:hover {
  color: #4a3a9e;
}

/* ===== APPLICATION SECTION ===== */
.application-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.application-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #495057;
}

.application-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.application-form h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload:hover .file-upload-label,
.file-upload.dragover .file-upload-label {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #3b82f6;
}

.file-upload-icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.privacy-checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.privacy-checkbox label {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.privacy-checkbox a {
    color: #3b82f6;
    text-decoration: underline;
}

.privacy-checkbox a:hover {
    color: #1d4ed8;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn.loading {
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-messages {
    margin-top: 1rem;
}

.success-message,
.error-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-disclaimer {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.5;
}

.form-disclaimer strong {
    color: #78350f;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group .error-text {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.has-error .error-text {
    display: block;
}

/* Responsive Design for Application Form */
@media (max-width: 768px) {
    .application-form {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .application-form h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .application-form {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .privacy-checkbox {
        padding: 0.75rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Print Styles */
@media print {
    .application-form {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .submit-btn {
        display: none;
    }
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #5040ae;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.error-message {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.2em;
}

.form-submit-btn {
  width: 100%;
  background: #5040ae;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-submit-btn:hover {
  background: #4a3a9e;
  transform: translateY(-2px);
}

.form-submit-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.form-submit-btn.loading .btn-text {
  display: none;
}

.form-submit-btn.loading .btn-loading {
  display: block;
}

.form-disclaimer {
  font-size: 0.875rem;
  color: #6c757d;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .application-form-container {
    padding: 2rem;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
  background: #f8f9fa;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.footer-description {
  color: #bdc3c7;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #5040ae;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #bdc3c7;
}

.copyright {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #5040ae;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll.delay-1 {
  animation-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  animation-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  animation-delay: 0.3s;
}

/* ===== UTILITY CLASSES ===== */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-primary {
  color: #5040ae;
}

.text-muted {
  color: #6c757d;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .search-filter {
    padding: 1.5rem 0;
  }
  
  .search-filter-content {
    gap: 1.5rem;
  }
  
  .filter-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .filter-tab {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .page-header {
    padding: 3rem 0;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .companies-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .company-card,
  .category-card {
    padding: 1.5rem;
  }
  
  /* Company Directory Mobile */
  .company-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }
  
  .company-actions {
    margin-left: 0;
    width: 100%;
  }
  
  .company-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .company-name {
    font-size: 1.125rem;
  }
  
  .pagination-btn {
    min-width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .application-section,
  .search-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero {
    background: none;
    color: black;
    padding: 1rem 0;
  }
  
  .section-title {
    font-size: 18pt;
    margin-bottom: 0.5rem;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    border: 2px solid #000;
  }
  
  .btn-outline {
    border-color: #000;
    color: #000;
  }
  
  .nav-link:hover {
    background: #000;
    color: #fff;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


        .company-hero {
            background: linear-gradient(135deg, #5040ae 0%, #4a3a9e 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .company-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .company-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .company-content {
            padding: 4rem 0;
        }
        
        .info-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .info-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .info-box h2 {
            color: #5040ae;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .info-box h3 {
            color: #2c3e50;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            border-bottom: 2px solid #f8f9fa;
            padding-bottom: 0.5rem;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .recruitment-list, .office-list {
            list-style: none;
            padding: 0;
        }
        
        .recruitment-list li, .office-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .recruitment-list li:before, .office-list li:before {
            content: "⚓";
            color: #5040ae;
            font-weight: bold;
        }
        
        .faq-box {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }
        
        .faq-box h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }
        
        .faq-box dt {
            font-weight: 600;
            color: #5040ae;
            margin-bottom: 0.5rem;
            margin-top: 1rem;
        }
        
        .faq-box dd {
            margin-left: 0;
            margin-bottom: 1rem;
            color: #6c757d;
            line-height: 1.6;
        }
        
        .contact-box {
            background: linear-gradient(135deg, #5040ae 0%, #4a3a9e 100%);
            color: white;
            text-align: center;
        }
        
        .contact-box h2 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .contact-box p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-box a {
            color: white;
            text-decoration: underline;
            font-weight: 500;
        }
        
        .breadcrumb {
            background: #f8f9fa;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #5040ae;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.icon-spin {
  animation: spin 1s linear infinite;
}
        
/* ===== MODERN FORM STYLES ===== */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 2rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #5040ae;
    box-shadow: 0 0 0 3px rgba(80, 64, 174, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-file {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-label:hover {
    border-color: #5040ae;
    background: #f0f0ff;
}

.file-upload-button {
    background: #5040ae;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-help {
    margin-top: 0.25rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #5040ae;
    border-color: #5040ae;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-submit {
    margin-top: 1rem;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #5040ae;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.form-submit:hover {
    background: #4a3a9e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 64, 174, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== ENHANCED CONTENT BOXES ===== */
.content-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #5040ae;
}

.faq-box h2,
.faq-box h3 {
    color: #5040ae;
    margin-bottom: 1.5rem;
}

.faq-box dl {
    margin: 0;
}

.faq-box dt {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.faq-box dt:first-child {
    margin-top: 0;
}

.faq-box dd {
    margin-left: 0;
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.6;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Company Directory Styles */
.page-info {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

/* Companies Grid */
.companies-grid {
    margin-bottom: 3rem;
}

.companies-list {
    display: grid;
    gap: 1.5rem;
}

.company-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.company-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.company-actions {
    margin-left: 1rem;
}

/* Pagination Styles */
.pagination {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
    text-decoration: none;
}

.pagination-btn.current {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    cursor: default;
}

.pagination-btn.current:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.pagination-btn.prev,
.pagination-btn.next {
    padding: 0 16px;
    font-weight: 600;
}

.pagination-btn.prev:hover,
.pagination-btn.next:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .content-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
}
/* Base icon styling for inline SVGs */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
}
