/* ========================================
   FIFA WORLD CUP 2026 JOBS - Custom Styles
   Color Palette: FIFA Blue #326295, Gold #FFD700, White #FFFFFF
======================================== */

/* === CSS Variables === */
:root {
  --fifa-blue: #326295;
  --fifa-blue-dark: #1e3a5f;
  --fifa-blue-light: #4a7bb5;
  --fifa-gold: #FFD700;
  --fifa-gold-dark: #dab600;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --dark: #212529;
  --success: #28a745;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(50, 98, 149, 0.08);
  --shadow-md: 0 4px 20px rgba(50, 98, 149, 0.12);
  --shadow-lg: 0 8px 40px rgba(50, 98, 149, 0.16);
  --shadow-xl: 0 16px 60px rgba(50, 98, 149, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base Styles === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-700);
  overflow-x: hidden;
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fifa-blue);
  font-weight: 700;
  line-height: 1.2;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
.text-highlight { color: var(--fifa-gold); }

/* === Contact Bar === */
.contact-bar {
  background: var(--fifa-blue);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}
.contact-bar .contact-item a,
.contact-bar .contact-item {
  color: rgba(255, 255, 255, 0.9);
}
.contact-bar .contact-item a:hover {
  color: var(--fifa-gold);
}
.contact-bar .social-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.contact-bar .social-link:hover {
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  transform: translateY(-2px);
}

/* === Navigation === */
.navbar {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  height: 45px;
  width: auto;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fifa-blue);
  letter-spacing: 0.5px;
}
.navbar-nav .nav-link {
  color: var(--fifa-blue);
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--fifa-gold);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--fifa-blue);
}
.btn-apply-now {
  background: var(--fifa-gold) !important;
  color: var(--fifa-blue) !important;
  border-radius: 25px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  margin-left: 10px;
  border: 2px solid var(--fifa-gold) !important;
}
.btn-apply-now:hover {
  background: var(--fifa-gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.navbar-toggler {
  border: 2px solid var(--fifa-blue);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23326295' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === Utility Classes === */
.section-label {
  display: inline-block;
  color: var(--fifa-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--fifa-blue);
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Buttons === */
.btn-primary-custom {
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--fifa-gold);
  font-size: 16px;
}
.btn-primary-custom:hover {
  background: var(--fifa-gold-dark);
  border-color: var(--fifa-gold-dark);
  color: var(--fifa-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 16px;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--fifa-blue);
  border-color: var(--white);
}

/* === Footer === */
.footer-section {
  background: var(--fifa-blue);
  color: var(--white);
  padding: 80px 0 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo {
  height: 50px;
  width: auto;
}
.footer-brand h5 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 800;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  transform: translateY(-3px);
}
.footer-section h5 {
  color: var(--fifa-gold);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}
.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--fifa-gold);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--fifa-gold);
  padding-left: 5px;
}
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  color: var(--fifa-gold);
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 25px;
}
.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* === Scroll to Top === */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  cursor: pointer;
  font-size: 20px;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  background: var(--fifa-gold-dark);
}

/* === Responsive === */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    margin-top: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
  }
  .btn-apply-now {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
  .section-title {
    font-size: 2rem;
  }
  .brand-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .contact-bar .contact-info {
    flex-direction: column;
    gap: 8px;
  }
  .contact-bar .social-links {
    margin-top: 10px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .footer-section {
    padding: 60px 0 25px;
  }
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575px) {
  .brand-text {
    font-size: 0.9rem;
  }
  .nav-logo {
    height: 35px;
  }
}

/* ========================================
   HOME PAGE SECTIONS
======================================== */

/* === Hero Section === */
.hero-section {
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?w=1920');
  background-size: cover;
  background-position: center;
  animation: slideBackground 20s ease-in-out infinite;
}
@keyframes slideBackground {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(50, 98, 149, 0.9) 0%, rgba(30, 58, 95, 0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--fifa-gold);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}
.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
}
.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg {
  width: 100%;
  height: 100px;
}

/* Hero Carousel Styles */
.hero-carousel-img {
  height: 100vh;
  object-fit: cover;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

#heroCarousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* === Categories Section === */
.categories-section {
  padding: 100px 0;
  background: var(--white);
}
.category-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: block;
  height: 100%;
  text-decoration: none;
  border: 2px solid transparent;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--fifa-gold);
}
.category-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.category-card:hover .category-image img {
  transform: scale(1.1);
}
.category-content {
  padding: 25px;
}
.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.category-icon i {
  color: var(--fifa-gold);
  font-size: 1.8rem;
}
.category-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--fifa-blue);
}
.category-content p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 15px;
}
.category-link {
  color: var(--fifa-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.category-card:hover .category-link {
  color: var(--fifa-gold);
}
.category-link i {
  transition: var(--transition);
}
.category-card:hover .category-link i {
  transform: translateX(5px);
}

/* === Benefits Section === */
.benefits-section {
  padding: 100px 0;
  background: var(--gray-100);
}
.benefit-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--fifa-gold);
}
.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.benefit-icon i {
  color: var(--fifa-gold);
  font-size: 2rem;
}
.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--fifa-blue);
}
.benefit-card p {
  color: var(--gray-500);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* === Statistics Section === */
.statistics-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card {
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}
.stat-icon i {
  color: var(--fifa-gold);
  font-size: 1.8rem;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--fifa-gold);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* === Latest Jobs Section === */
.latest-jobs-section {
  padding: 100px 0;
  background: var(--white);
}
.job-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--fifa-gold);
}
.job-header {
  margin-bottom: 15px;
}
.job-badge {
  display: inline-block;
  background: var(--fifa-blue);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--fifa-blue);
}
.job-card p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}
.job-footer {
  margin-top: auto;
}

/* === CTA Section === */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--fifa-blue-dark) 0%, var(--fifa-blue) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%23FFD700' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 35px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Responsive - Home Page === */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
  .categories-section,
  .benefits-section,
  .statistics-section,
  .latest-jobs-section,
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/* ========================================
   JOBS LISTING PAGE
======================================== */

/* === Page Header === */
.page-header-section {
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 20px;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb-item a:hover {
  color: var(--fifa-gold);
}
.breadcrumb-item.active {
  color: var(--fifa-gold);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.page-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* === Search Section === */
.jobs-search-section {
  padding: 40px 0;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}
.search-box-wrapper {
  background: var(--gray-100);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.jobs-search-form .input-group {
  box-shadow: var(--shadow-md);
  border-radius: 50px;
  overflow: hidden;
  background: var(--white);
}
.jobs-search-form .input-group-text {
  background: var(--white);
  border: none;
  padding: 0 20px;
  color: var(--fifa-blue);
  font-size: 1.2rem;
}
.jobs-search-form .form-control {
  border: none;
  padding: 16px 10px;
  font-size: 16px;
  box-shadow: none;
}
.jobs-search-form .form-control:focus {
  box-shadow: none;
  outline: none;
}
.jobs-search-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 16px 35px;
  border: none;
}
.search-results-info {
  color: var(--gray-700);
  font-size: 14px;
}
.search-results-info a {
  color: var(--fifa-blue);
  font-weight: 600;
}
.search-results-info a:hover {
  color: var(--fifa-gold);
}

/* === Job Listings Section === */
.job-listings-section {
  padding: 60px 0 100px;
  background: var(--off-white);
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.results-count {
  color: var(--gray-700);
  font-size: 16px;
  margin: 0;
}
.results-count i {
  color: var(--fifa-blue);
}

/* === Job Listing Card === */
.job-listing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}
.job-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--fifa-gold);
}
.job-listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.job-category-badge {
  display: inline-block;
  background: var(--fifa-blue);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-badge {
  display: inline-block;
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.featured-badge i {
  font-size: 10px;
}
.job-listing-title {
  font-size: 1.4rem;
  color: var(--fifa-blue);
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 700;
}
.job-listing-description {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.job-listing-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--gray-200);
}
.job-listing-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 13px;
}
.job-listing-meta .meta-item i {
  color: var(--fifa-blue);
  font-size: 14px;
}
.job-listing-footer {
  margin-top: auto;
}

/* === No Results === */
.no-results-card {
  background: var(--white);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.no-results-icon {
  width: 100px;
  height: 100px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.no-results-icon i {
  font-size: 3rem;
  color: var(--gray-500);
}
.no-results-card h3 {
  font-size: 1.8rem;
  color: var(--fifa-blue);
  margin-bottom: 15px;
}
.no-results-card p {
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Pagination === */
.pagination-wrapper {
  display: flex;
  justify-content: center;
}
.pagination {
  gap: 8px;
}
.pagination .page-link {
  border-radius: 10px;
  border: 2px solid var(--gray-200);
  color: var(--fifa-blue);
  padding: 10px 18px;
  font-weight: 600;
  transition: var(--transition);
}
.pagination .page-link:hover {
  background: var(--fifa-blue);
  color: var(--white);
  border-color: var(--fifa-blue);
}
.pagination .page-item.active .page-link {
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  border-color: var(--fifa-gold);
}
.pagination .page-item.disabled .page-link {
  opacity: 0.5;
}

/* === Quick Apply CTA === */
.quick-apply-cta {
  padding: 80px 0;
  background: var(--gray-100);
}
.cta-content-box {
  background: var(--white);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
}
.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.cta-icon i {
  font-size: 2.5rem;
  color: var(--fifa-gold);
}
.cta-content-box h3 {
  font-size: 2rem;
  color: var(--fifa-blue);
  margin-bottom: 15px;
}
.cta-content-box p {
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons-inline {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Responsive - Jobs Page === */
@media (max-width: 991px) {
  .page-title {
    font-size: 2.5rem;
  }
  .page-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .page-header-section {
    padding: 60px 0 40px;
  }
  .page-title {
    font-size: 2rem;
  }
  .page-subtitle {
    font-size: 1rem;
  }
  .search-box-wrapper {
    padding: 20px;
  }
  .jobs-search-form .btn {
    padding: 16px 25px;
    font-size: 14px;
  }
  .job-listings-section {
    padding: 40px 0 60px;
  }
  .quick-apply-cta {
    padding: 60px 0;
  }
  .cta-content-box {
    padding: 40px 25px;
  }
  .cta-content-box h3 {
    font-size: 1.6rem;
  }
  .cta-buttons-inline {
    flex-direction: column;
  }
  .cta-buttons-inline .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .page-title {
    font-size: 1.75rem;
  }
  .job-listing-title {
    font-size: 1.2rem;
  }
  .no-results-card {
    padding: 40px 25px;
  }
}

/* ========================================
   JOB DETAIL PAGE
======================================== */

/* === Job Detail Header === */
.job-detail-header {
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.job-detail-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.job-header-content {
  position: relative;
  z-index: 2;
}
.job-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.job-category-badge-lg {
  display: inline-block;
  background: var(--fifa-gold);
  color: var(--fifa-blue);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-badge-lg {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--fifa-gold);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--fifa-gold);
}
.featured-badge-lg i {
  font-size: 12px;
}
.job-detail-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}
.job-quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.quick-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}
.quick-meta-item i {
  color: var(--fifa-gold);
  font-size: 16px;
}

/* === Job Detail Content Section === */
.job-detail-content-section {
  padding: 80px 0;
  background: var(--off-white);
}
.content-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.content-heading {
  font-size: 1.8rem;
  color: var(--fifa-blue);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.content-heading i {
  color: var(--fifa-gold);
  font-size: 1.5rem;
}
.content-text {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
}
.content-text ul {
  padding-left: 20px;
  margin-top: 15px;
}
.content-text ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* === Assurance Box === */
.assurance-box {
  background: linear-gradient(135deg, rgba(50, 98, 149, 0.05), rgba(255, 215, 0, 0.05));
  border: 2px solid var(--fifa-gold);
  border-radius: 20px;
  padding: 35px;
  display: flex;
  gap: 25px;
  align-items: start;
}
.assurance-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assurance-icon i {
  color: var(--fifa-gold);
  font-size: 2rem;
}
.assurance-content h3 {
  font-size: 1.5rem;
  color: var(--fifa-blue);
  margin-bottom: 20px;
  font-weight: 700;
}
.assurance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.assurance-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}
.assurance-list li:last-child {
  margin-bottom: 0;
}
.assurance-list li i {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.assurance-list li strong {
  color: var(--fifa-blue);
}

/* === Apply Section Bottom === */
.apply-section-bottom {
  margin-top: 30px;
}
.apply-cta-box {
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.apply-cta-box h3 {
  font-size: 2rem;
  color: var(--fifa-gold);
  margin-bottom: 15px;
  font-weight: 800;
}
.apply-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 25px;
}

/* === Sidebar === */
.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.sidebar-heading {
  font-size: 1.3rem;
  color: var(--fifa-blue);
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-200);
}
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-200);
}
.summary-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.summary-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}
.summary-value {
  font-size: 15px;
  color: var(--fifa-blue);
  font-weight: 600;
  text-align: right;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.includes-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}
.includes-list li:last-child {
  margin-bottom: 0;
}
.includes-list li i {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === Share Buttons === */
.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}
.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.share-btn.facebook {
  background: #1877f2;
}
.share-btn.twitter {
  background: #000000;
}
.share-btn.linkedin {
  background: #0077b5;
}
.share-btn.whatsapp {
  background: #25d366;
}

/* === Help Card === */
.help-card {
  background: linear-gradient(135deg, var(--gray-100), var(--off-white));
  border: 2px solid var(--fifa-blue);
  text-align: center;
}
.help-icon {
  width: 60px;
  height: 60px;
  background: var(--fifa-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.help-icon i {
  color: var(--fifa-gold);
  font-size: 1.8rem;
}
.help-card p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 20px;
}

/* === Related Jobs Section === */
.related-jobs-section {
  padding: 80px 0;
  background: var(--white);
}

/* === Responsive - Job Detail === */
@media (max-width: 991px) {
  .job-detail-title {
    font-size: 2.5rem;
  }
  .sidebar-card {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .job-detail-header {
    padding: 60px 0 40px;
  }
  .job-detail-title {
    font-size: 2rem;
  }
  .job-quick-meta {
    gap: 15px;
  }
  .quick-meta-item {
    flex-basis: 100%;
  }
  .content-card {
    padding: 25px;
  }
  .content-heading {
    font-size: 1.5rem;
  }
  .assurance-box {
    flex-direction: column;
    padding: 25px;
  }
  .apply-cta-box {
    padding: 30px 20px;
  }
  .apply-cta-box h3 {
    font-size: 1.6rem;
  }
  .job-detail-content-section {
    padding: 60px 0;
  }
  .related-jobs-section {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .job-detail-title {
    font-size: 1.75rem;
  }
  .job-category-badge-lg,
  .featured-badge-lg {
    font-size: 11px;
    padding: 6px 14px;
  }
  .content-heading {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: start;
  }
}

/* ========================================
   APPLICATION PAGE
======================================== */

/* === Application Header === */
.application-header {
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.application-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.application-header-content {
  position: relative;
  z-index: 2;
}
.application-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 800;
}
.application-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}
.job-info-summary {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.info-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.info-badge i {
  color: var(--fifa-gold);
}

/* === Application Form Section === */
.application-form-section {
  padding: 80px 0;
  background: var(--off-white);
}

/* === Application Notice === */
.application-notice {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(50, 98, 149, 0.05));
  border: 2px solid var(--fifa-gold);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: start;
}
.notice-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--fifa-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-icon i {
  color: var(--fifa-blue);
  font-size: 1.5rem;
}
.notice-content h4 {
  font-size: 1.2rem;
  color: var(--fifa-blue);
  margin-bottom: 15px;
  font-weight: 700;
}
.notice-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-content ul li {
  color: var(--gray-700);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.notice-content ul li:last-child {
  margin-bottom: 0;
}
.notice-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--fifa-gold);
  font-size: 20px;
  line-height: 1;
}

/* === Application Form Card === */
.application-form-card {
  background: var(--white);
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

/* === Form Sections === */
.form-section {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 2px solid var(--gray-200);
}
.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.form-section-title {
  font-size: 1.5rem;
  color: var(--fifa-blue);
  margin-bottom: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.form-section-title i {
  color: var(--fifa-gold);
  font-size: 1.3rem;
}

/* === Form Controls === */
.form-label {
  font-weight: 600;
  color: var(--fifa-blue);
  margin-bottom: 8px;
  font-size: 14px;
}
.form-control,
.form-select {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--fifa-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
  outline: none;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-text {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 5px;
}
.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  margin-top: 2px;
}
.form-check-input:checked {
  background-color: var(--fifa-gold);
  border-color: var(--fifa-gold);
}
.form-check-label {
  color: var(--gray-700);
  font-size: 14px;
  margin-left: 8px;
}
.form-check-label a {
  color: var(--fifa-blue);
  font-weight: 600;
  text-decoration: underline;
}
.form-check-label a:hover {
  color: var(--fifa-gold);
}

/* === Alert Info === */
.alert-info {
  background: rgba(50, 98, 149, 0.05);
  border: 1px solid var(--fifa-blue);
  color: var(--gray-700);
  border-radius: 12px;
  padding: 15px;
  font-size: 14px;
}
.alert-info i {
  color: var(--fifa-blue);
}

/* === Form Submit Section === */
.form-submit-section {
  margin-top: 35px;
}

/* === Sidebar Tips === */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tips-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}
.tips-list li:last-child {
  margin-bottom: 0;
}
.tips-list li i {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === Timeline === */
.timeline {
  position: relative;
  padding-left: 0;
}
.timeline-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:last-child::after {
  display: none;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% + 5px);
  background: var(--gray-200);
}
.timeline-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--fifa-blue);
  color: var(--fifa-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
  position: relative;
}
.timeline-content h5 {
  font-size: 15px;
  color: var(--fifa-blue);
  margin-bottom: 5px;
  font-weight: 700;
}
.timeline-content p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* === Responsive - Application Page === */
@media (max-width: 991px) {
  .application-title {
    font-size: 2.5rem;
  }
  .application-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .application-header {
    padding: 60px 0 40px;
  }
  .application-title {
    font-size: 2rem;
  }
  .application-subtitle {
    font-size: 1rem;
  }
  .job-info-summary {
    flex-direction: column;
  }
  .info-badge {
    display: block;
    text-align: center;
  }
  .application-form-section {
    padding: 60px 0;
  }
  .application-form-card {
    padding: 30px 20px;
  }
  .application-notice {
    flex-direction: column;
    padding: 20px;
  }
  .form-section-title {
    font-size: 1.3rem;
  }
  .sidebar-card {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .application-title {
    font-size: 1.75rem;
  }
  .form-section-title {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: start;
  }
  .notice-content h4 {
    font-size: 1.1rem;
  }
}



/* ========================================
   ABOUT PAGE STYLES
======================================== */

/* === About Page Header === */
.about-page-header {
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.about-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.about-page-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.about-page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* === About Event Section === */
.about-event-section {
  padding: 100px 0;
  background: var(--white);
}
.about-image-wrapper {
  position: relative;
}
.about-event-img {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  width: 100%;
}
.event-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background: var(--fifa-gold);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.badge-content {
  text-align: center;
}
.badge-year {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--fifa-blue);
  line-height: 1;
  font-family: var(--font-display);
}
.badge-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--fifa-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-event-content {
  padding-left: 30px;
}
.lead-text {
  font-size: 1.2rem;
  color: var(--fifa-blue);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}
.event-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.event-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--gray-100);
  padding: 20px;
  border-radius: 15px;
  transition: var(--transition);
}
.event-stat-item:hover {
  background: var(--fifa-blue);
  transform: translateY(-5px);
}
.event-stat-item:hover .stat-icon-box {
  background: var(--fifa-gold);
}
.event-stat-item:hover .stat-icon-box i {
  color: var(--fifa-blue);
}
.event-stat-item:hover .stat-info h4,
.event-stat-item:hover .stat-info p {
  color: var(--white);
}
.stat-icon-box {
  width: 50px;
  height: 50px;
  background: var(--fifa-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.stat-icon-box i {
  color: var(--fifa-gold);
  font-size: 1.5rem;
}
.stat-info h4 {
  font-size: 1.1rem;
  color: var(--fifa-blue);
  margin-bottom: 3px;
  font-weight: 700;
}
.stat-info p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}

/* === Why Apply Section === */
.why-apply-section {
  padding: 100px 0;
  background: var(--gray-100);
}
.why-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--fifa-gold);
}
.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i {
  color: var(--fifa-gold);
  font-size: 2rem;
}
.why-card h4 {
  font-size: 1.2rem;
  color: var(--fifa-blue);
  margin-bottom: 12px;
  font-weight: 700;
}
.why-card p {
  color: var(--gray-600);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* === Host Cities Section === */
.host-cities-section {
  padding: 100px 0;
  background: var(--white);
}
.host-country-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.host-country-card:hover {
  border-color: var(--fifa-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.country-flag {
  font-size: 4rem;
  margin-bottom: 15px;
}
.host-country-card h3 {
  font-size: 1.5rem;
  color: var(--fifa-blue);
  margin-bottom: 20px;
  font-weight: 700;
}
.cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.cities-list li {
  padding: 10px 15px;
  margin-bottom: 8px;
  background: var(--gray-100);
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
}

/* === Key Assurances Section === */
.key-assurances-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--fifa-blue) 0%, var(--fifa-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
.assurances-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.assurances-box {
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}
.assurance-main-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.assurance-main-icon i {
  color: var(--fifa-gold);
  font-size: 3rem;
}
.assurances-box h2 {
  font-size: 2.2rem;
  color: var(--fifa-blue);
  margin-bottom: 15px;
  font-weight: 800;
}
.assurances-box > p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 0;
}
.assurance-feature {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 25px;
  background: var(--gray-100);
  border-radius: 15px;
  transition: var(--transition);
}
.assurance-feature:hover {
  background: var(--fifa-blue);
  transform: translateY(-5px);
}
.assurance-feature:hover .feature-icon {
  background: var(--fifa-gold);
}
.assurance-feature:hover .feature-icon i {
  color: var(--fifa-blue);
}
.assurance-feature:hover h4,
.assurance-feature:hover p {
  color: var(--white);
}
.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--fifa-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.feature-icon i {
  color: var(--fifa-gold);
  font-size: 1.8rem;
}
.feature-text h4 {
  font-size: 1.1rem;
  color: var(--fifa-blue);
  margin-bottom: 8px;
  font-weight: 700;
}
.feature-text p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* === How It Works Section === */
.how-it-works-section {
  padding: 100px 0;
  background: var(--white);
}
.process-timeline {
  position: relative;
  padding-left: 0;
}
.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}
.process-step:last-child {
  margin-bottom: 0;
}
.process-step:last-child::after {
  display: none;
}
.process-step::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  width: 3px;
  height: calc(100% - 30px);
  background: var(--gray-200);
}
.step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--fifa-blue), var(--fifa-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--fifa-gold);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}
.step-content {
  flex: 1;
  padding-top: 10px;
}
.step-content h3 {
  font-size: 1.5rem;
  color: var(--fifa-blue);
  margin-bottom: 12px;
  font-weight: 700;
}
.step-content p {
  color: var(--gray-600);
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

/* === Requirements Section === */
.requirements-section {
  padding: 100px 0;
  background: var(--gray-100);
}
.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.requirement-item {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  border-left: 4px solid var(--success);
  transition: var(--transition);
}
.requirement-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}
.requirement-item.nice-to-have {
  border-left-color: var(--fifa-gold);
}
.requirement-item i {
  color: var(--success);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.requirement-item.nice-to-have i {
  color: var(--fifa-gold);
}
.requirement-item h5 {
  font-size: 1.1rem;
  color: var(--fifa-blue);
  margin-bottom: 5px;
  font-weight: 700;
}
.requirement-item p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}
.timeline-expectations {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.timeline-expectations h3 {
  font-size: 1.5rem;
  color: var(--fifa-blue);
  margin-bottom: 25px;
  font-weight: 700;
}
.expectation-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--gray-200);
}
.expectation-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.expectation-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--fifa-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expectation-icon i {
  color: var(--fifa-gold);
  font-size: 1.2rem;
}
.expectation-content h5 {
  font-size: 15px;
  color: var(--fifa-blue);
  margin-bottom: 5px;
  font-weight: 700;
}
.expectation-content p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* === FAQ Section === */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.accordion-item {
  border: 2px solid var(--gray-200);
  border-radius: 15px !important;
  margin-bottom: 15px;
  overflow: hidden;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-button {
  background: var(--white);
  color: var(--fifa-blue);
  font-weight: 700;
  font-size: 16px;
  padding: 20px 25px;
  border: none;
}
.accordion-button:not(.collapsed) {
  background: var(--fifa-blue);
  color: var(--white);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--fifa-gold);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23326295'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 20px 25px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}

/* === Final CTA Section === */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--fifa-blue-dark) 0%, var(--fifa-blue) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%23FFD700' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.final-cta-content {
  position: relative;
  z-index: 2;
}
.final-cta-content h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}
.final-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

/* === Responsive - About Page === */
@media (max-width: 991px) {
  .about-page-title {
    font-size: 2.5rem;
  }
  .about-event-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .event-stats-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    gap: 20px;
  }
  .process-step::after {
    left: 29px;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .about-page-header {
    padding: 60px 0 40px;
  }
  .about-page-title {
    font-size: 2rem;
  }
  .about-page-subtitle {
    font-size: 1rem;
  }
  .about-event-section,
  .why-apply-section,
  .host-cities-section,
  .key-assurances-section,
  .how-it-works-section,
  .requirements-section,
  .faq-section,
  .final-cta-section {
    padding: 60px 0;
  }
  .event-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 20px;
  }
  .assurances-box {
    padding: 35px 25px;
  }
  .final-cta-content h2 {
    font-size: 2rem;
  }
  .final-cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .about-page-title {
    font-size: 1.75rem;
  }
  .event-stat-item {
    flex-direction: column;
    text-align: center;
  }
  .process-step {
    flex-direction: column;
    gap: 15px;
  }
  .process-step::after {
    left: 39px;
    top: 90px;
  }
  .step-number {
    margin: 0 auto;
  }
  .step-content {
    text-align: center;
    padding-top: 0;
  }
  .accordion-button {
    font-size: 14px;
  }
}
