/*--------------------------------------------------------------
# Reset & Base
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00A859;
  --secondary: #005A30;
  --accent: #00D06C;
  --dark: #0A0A0A;
  --gray: #666666;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/*--------------------------------------------------------------
# Loading Screen
--------------------------------------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: 300px;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 30px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  transition: var(--transition);
}

header.scrolled .logo img {
  height: 35px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

header.scrolled nav a {
  color: var(--dark);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.cta-button {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background: transparent;
  transform: translateY(-2px);
  text-decoration: none;
}

header:not(.scrolled) .cta-button:hover {
  border-color: var(--white);
  color: var(--white) !important;
}

header.scrolled .cta-button:hover {
  color: var(--primary) !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

header.scrolled .menu-toggle span {
  background: var(--dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.menu-toggle.active span {
  background: var(--primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 89, 0.3) 0%, rgba(0, 90, 48, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
}

.hero-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title span {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn-primary, .btn-secondary {
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: var(--white);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
  z-index: 999;
  cursor: pointer;
  pointer-events: auto;
}

.scroll-down a {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  pointer-events: auto;
}

.scroll-down a::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  padding: 120px 0;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-grid {
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.about-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.features-list {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--white);
  font-size: 24px;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
#stats {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

#stats .section-title {
  color: var(--white);
}

#stats .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  margin: 0 -15px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  height: 100%;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.stat-icon {
  font-size: 40px;
  color: var(--white);
  opacity: 0.9;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  color: var(--white);
  font-weight: 600;
  margin-left: 5px;
  opacity: 0.9;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Company Strength Section
--------------------------------------------------------------*/
#strength {
  padding: 120px 0;
  background: #f8f8f8;
}

.strength-grid {
  margin: 0 -15px;
}

.strength-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.strength-card.featured {
  height: 100%;
}

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  z-index: 1;
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.strength-card.featured .card-image {
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.strength-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Jobs Section
--------------------------------------------------------------*/
#jobs {
  padding: 120px 0;
  background: var(--white);
}

.job-hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 50px;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.job-hero-caption {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
}

.job-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  display: block;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.job-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.job-card:hover .job-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Interview Section
--------------------------------------------------------------*/
#interview {
  padding: 120px 0;
  background: var(--white);
}

.interview-card-large {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.interview-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.interview-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.interview-card {
  overflow: hidden;
  border-radius: 15px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  background: var(--white);
}

.interview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.interview-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interview-card-large .rounded-left {
  border-radius: 20px 0 0 20px;
}

.display-4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}

.btn-link {
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 0;
}

.btn-link:hover {
  transform: translateX(5px);
  text-decoration: none;
}

/* Bootstrap overrides for buttons */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 12px 30px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background-color: transparent !important;
  font-weight: 600;
  padding: 12px 30px;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 168, 89, 0.3);
}

/* Hero buttons specific */
.hero-buttons .btn-primary {
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 2px solid var(--white) !important;
}

.hero-buttons .btn-primary:hover {
  background: transparent !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
}

.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid var(--white);
  font-weight: 600;
  transition: var(--transition);
  padding: 12px 30px;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Requirements Section
--------------------------------------------------------------*/
#requirements {
  padding: 120px 0;
  background: var(--light-gray);
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

.btn-group .btn {
  min-width: 150px;
  border-radius: 0;
  border-right: 1px solid #dee2e6;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-group .btn:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.btn-group .btn:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  border-right: 1px solid #dee2e6;
}

.btn-group .btn.btn-primary {
  border-color: var(--primary);
  z-index: 1;
}

.btn-group .btn.btn-outline-primary {
  border-color: #dee2e6;
}

.btn-group .btn.btn-outline-primary:hover {
  border-color: var(--primary);
  z-index: 1;
}

.req-table {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.req-table table {
  margin-bottom: 0;
}

.req-table th {
  background: var(--primary);
  color: var(--white) !important;
  padding: 20px 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  width: 30%;
  border: none;
  vertical-align: middle;
}

.req-table td {
  padding: 20px 30px;
  line-height: 1.8;
  color: var(--gray);
  border-color: #eee;
  vertical-align: top;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Badge styles */
.badge-danger {
  background-color: #DC143C;
  font-weight: 600;
  padding: 5px 15px;
  font-size: 12px;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
#cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 208, 108, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  padding: 18px 50px;
  font-size: 18px;
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  margin-bottom: 60px;
}

.footer-brand,
.footer-column {
  margin-bottom: 30px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  text-decoration: none;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-column ul li i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-column ul a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-brand,
  .footer-column {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 168, 89, 0.4);
  text-decoration: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 168, 89, 0.5);
  color: var(--white);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }

  .strength-card.featured {
    height: 100%;
  }

  .strength-card.featured .card-image {
    height: 200px;
  }

  .job-hero-caption {
    left: 50px;
  }
}

@media (max-width: 1260px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 80px 40px;
    gap: 30px;
  }

  nav a {
    color: var(--dark);
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .job-hero-caption {
    left: 30px;
    right: 30px;
    max-width: none;
  }

  .interview-card-large .rounded-left {
    border-radius: 20px 20px 0 0;
  }

  .interview-card img {
    border-radius: 15px 15px 0 0;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .req-table th {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    margin-bottom: 5px;
  }

  .req-table td {
    display: block;
    width: 100%;
    padding: 15px 30px;
  }
}

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

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .card-content {
    padding: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
#stats {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

#stats .section-title {
  color: var(--white);
}

#stats .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

#stats .stats-grid {
  margin: 0 -15px;
}

#stats .stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  height: 100%;
}

#stats .stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#stats .stat-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

#stats .stat-icon {
  font-size: 40px;
  color: var(--white);
  opacity: 0.9;
}

#stats .stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

#stats .stat-suffix {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  color: var(--white);
  font-weight: 600;
  margin-left: 5px;
  opacity: 0.9;
}

#stats .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Multi-Card News Carousel Section
--------------------------------------------------------------*/
#news-multi-carousel {
  padding: 100px 0;
  background: #f8f9fa;
}

.multi-news-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.multi-news-carousel-wrapper {
  overflow: hidden;
  margin: 0 60px; /* Space for controls */
}

.multi-news-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.multi-news-slide {
  flex: 0 0 calc(33.333% - 17px); /* Show 3 cards at once */
  width: calc(33.333% - 17px);
  margin-right: 25px;
  box-sizing: border-box;
}

.multi-news-item {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid #e9ecef;
  height: 320px;
  display: flex;
  flex-direction: column;
}


.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 15px;
  color: var(--white);
  flex-shrink: 0;
  margin-bottom: 20px;
}

.date-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.date-month {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  width: fit-content;
}

.category-recruit {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.category-company {
  background: rgba(0, 168, 89, 0.1);
  color: var(--primary);
}

.category-welfare {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}

.category-event {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.news-link:hover {
  color: var(--secondary);
  text-decoration: none;
  transform: translateX(5px);
}

/* Multi Carousel Controls */
.multi-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.multi-carousel-btn {
  width: 55px;
  height: 55px;
  background: rgba(0, 168, 89, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 168, 89, 0.3);
}

.multi-carousel-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 168, 89, 0.4);
}

.multi-carousel-prev {
  margin-left: -15px;
}

.multi-carousel-next {
  margin-right: -15px;
}

/* Multi Carousel Indicators */
.multi-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.multi-indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 168, 89, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.multi-indicator.active {
  background: var(--primary);
  transform: scale(1.3);
}

.multi-indicator:hover {
  background: var(--secondary);
}

.news-more {
  text-align: center;
  margin-top: 50px;
}

.news-more .btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.news-more .btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 168, 89, 0.3);
}

/* Responsive Design for Multi-Card News Carousel */
@media (max-width: 1200px) {
  .multi-news-slide {
    flex: 0 0 calc(50% - 12.5px); /* Show 2 cards on medium screens */
    width: calc(50% - 12.5px);
  }
  
  .multi-news-carousel-container {
    padding: 0 30px;
  }
  
  .multi-news-carousel-wrapper {
    margin: 0 50px;
  }
}

@media (max-width: 768px) {
  .multi-news-slide {
    flex: 0 0 100%; /* Show 1 card on mobile */
    width: 100%;
  }
  
  .multi-news-carousel-container {
    padding: 0 20px;
  }
  
  .multi-news-carousel-wrapper {
    margin: 0 40px;
  }
  
  .multi-news-item {
    padding: 25px;
    height: auto;
    min-height: 280px;
  }
  
  .news-date {
    width: 60px;
    height: 60px;
  }
  
  .date-day {
    font-size: 24px;
  }
  
  .date-month {
    font-size: 10px;
  }
  
  .multi-carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .multi-carousel-prev {
    margin-left: -10px;
  }
  
  .multi-carousel-next {
    margin-right: -10px;
  }
}

@media (max-width: 480px) {
  .multi-news-carousel-wrapper {
    margin: 0 35px;
  }
  
  .multi-news-item {
    padding: 20px;
  }
  
  .news-title {
    font-size: 16px;
  }
  
  .news-excerpt {
    font-size: 13px;
  }
}

/* ===============================================
   YouTube Section Styles
   =============================================== */

/* Section Divider - Top border only */
.section-divider {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 0;
  padding: 0;
}

/* Section Alternate Background */
.section-alt {
  background-color: var(--light-gray);
  padding: 80px 0;
}

/* YouTube Grid Layout */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* YouTube Card */
.youtube-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.youtube-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* YouTube Thumbnail Container */
.youtube-thumb {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  overflow: hidden;
}

.youtube-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.youtube-card:hover .youtube-thumb img {
  opacity: 0.8;
}

/* Play Button Overlay */
.youtube-thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"/><path fill="%23fff" d="M 45,24 27,14 27,34"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.youtube-card:hover .youtube-thumb::after {
  opacity: 1;
}

/* YouTube Card Content */
.youtube-content {
  padding: 20px;
}

.youtube-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.youtube-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive YouTube Grid */
@media (max-width: 991px) {
  .youtube-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .section-alt {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-alt {
    padding: 50px 0;
  }

  .youtube-content h3 {
    font-size: 16px;
  }

  .youtube-content p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .section-alt {
    padding: 40px 0;
  }

  .youtube-content {
    padding: 15px;
  }
}