@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@500;700&display=swap');

:root {
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --primary: #06b6d4;
  /* Electric Cyan */
  --secondary: #84cc16;
  /* Lime Green */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border: #334155;
  --gradient-main: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(90deg, #06b6d4, #3b82f6);

  --max-width: 1280px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  /* English headings */
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.jp-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Header */
header {
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block !important;
  line-height: 1.2;
  text-align: left;
}

.logo-en {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.logo-jp {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: 'Noto Sans JP', sans-serif;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

nav a:hover,
nav a.active {
  color: #fff;
}

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 {
  width: 100%;
}

.cta-btn-header {
  background: var(--gradient-accent);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.cta-btn-header:hover {
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-only {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 500px;
  max-height: 550px;
  height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-content {
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.5;

  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 600px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #0f172a;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 4px;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.card p {
  color: var(--text-muted);
}

/* Atmosphere Section */
.atmosphere-section {
  background: #1e293b;
  /* Trustworthy Navy */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.atmosphere-header {
  margin-bottom: 4rem;
}

.atmosphere-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.atmosphere-lead {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2.5rem;
  text-align: left;
}

/* Atmosphere List Redesign */
.atmosphere-list {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.atmosphere-list li {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.atmosphere-list li i {
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.atmosphere-caption {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  text-align: right;
}

.image-placeholder-16x9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
  /* Light gray */
  border: 4px solid #cbd5e1;
  border-radius: 4px;
}

/* Recruit Work Section Redesign */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.work-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #334155;
  border-radius: 4px;
  margin-bottom: 1rem;
  position: relative;
}

.work-card-img-placeholder::after {
  content: 'Photo';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.work-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.work-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.work-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.work-footer-text {
  text-align: left;
  color: #f8fafc;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}



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

/* Recruit Specifics */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  font-family: 'Oswald', sans-serif;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
  width: 50%;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 10px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--bg-dark);
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: -8px;
}

.timeline-item:nth-child(even)::after {
  left: -8px;
}

.timeline-content {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.timeline-content .jp-heading {
  font-weight: 700;
}

.timeline-time {
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/* Interview Section Redesign */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.interview-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.interview-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.interview-img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #334155;
  position: relative;
}

.interview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-img-placeholder {
  width: 100%;
  height: 100%;
  background: #334155;
}

.interview-img-placeholder::after {
  content: 'Photo';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.interview-content {
  padding: 2rem;
}

.interview-role {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.interview-name {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.interview-quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: #f8fafc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 3.2em;
  /* Ensure alignment */
}

.interview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.interview-card:hover .interview-link {
  color: var(--primary);
}

@media (max-width: 768px) {
  .interview-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
/* Footer */
footer {
  background: #020617;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}

.footer-col ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col a {
  color: var(--text-muted);
}

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

/* Mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, visibility 0.3s ease;
    transform: translateX(100%);
    visibility: hidden;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .nav-menu a {
    font-size: 1.5rem;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 30px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    text-align: left !important;
    margin-bottom: 1.5rem;
  }

  .timeline-item::after {
    left: 12px !important;
  }

  .header-inner {
    padding: 0;
  }

  header {
    height: 60px;
  }

  .logo {
    font-size: 1.2rem;
  }
}

/* Image Styles */
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

/* Table Styles */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: rgba(255, 255, 255, 0.05);
  width: 30%;
  color: var(--text-muted);
  font-weight: 700;
}

td {
  color: #fff;
}

tr:last-child th,
tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {

  th,
  td {
    display: block;
    width: 100%;
  }

  th {
    background: transparent;
    padding-bottom: 0.5rem;
    color: var(--primary);
  }

  td {
    padding-top: 0;
  }
}

/* Video Section */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 30px;
  }
}

/* Job Description Details */
.job-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.job-list li {
  margin-bottom: 0.3rem;
  color: #fff;
}

.job-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.job-sub-title {
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Interview Page Specifics */
.interview-container {
  max-width: 800px;
  margin: 0 auto;
}

.interview-profile-section {
  text-align: center;
  margin-bottom: 4rem;
}

.interview-profile-img-wrapper {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.interview-profile-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-profile-content .role {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.interview-profile-content .comment-highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
}

.interview-body {
  margin-bottom: 4rem;
}

.qa-block {
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.qa-block .question {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.qa-block .answer {
  color: #f8fafc;
  line-height: 2;
  font-size: 1rem;
}

.qa-block .speaker {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.return-link-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.return-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.8rem 2rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.3s;
}

.return-link:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(6, 182, 212, 0.1);
}

@media (max-width: 600px) {
  .interview-profile-content .comment-highlight {
    font-size: 1.2rem;
  }
}

/* Mobile Optimization: Corporate Pages */

/* Grid Systems */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.dual-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}



/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
}

/* Mobile Adjustments */
@media (max-width: 768px) {

  /* Layout Stacking */
  .dual-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  /* Hero Adjustments for Index */
  .hero-content h1.jp-heading {
    font-size: 1.8rem !important;
  }

  .hero {
    height: auto !important;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  /* Section Spacing */
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Table Scrolling */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Corporate Pages Hero */
.corporate-hero {
  position: relative;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 3rem;
  padding-top: 60px;
}

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

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

.corporate-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.45);
}

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

.corporate-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.corporate-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .corporate-hero {
    height: 250px;
  }

  .corporate-hero h1 {
    font-size: 2rem !important;
  }
}

/* Recruit Hero Optimization */
.hero-recruit {
  min-height: auto !important;
  max-height: none !important;
  height: auto !important;
  align-items: flex-start !important;
  padding-top: 180px !important;
  padding-bottom: 150px;
}

.hero-recruit p {
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .hero-recruit {
    padding-top: 130px !important;
    padding-bottom: 50px;
  }

  .hero-recruit h1 {
    font-size: 2rem !important;
    line-height: 1.3;
  }
}

/* Business Registration Heading */
/* Business Registration Heading */
.registration-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.registration-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  /* Thicker line like section-title */
  background: var(--primary);
  border-radius: 2px;
}

/* Registration Grid (Card UI) */
.registration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.registration-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.registration-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.reg-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.reg-card-meta {
  font-size: 0.95rem;
  color: #fff;
}

.reg-card-meta p {
  margin-bottom: 0.3rem;
  display: flex;
  justify-content: space-between;
}

.reg-card-meta span.label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Recycling List (2-column UI) */
.recycling-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.recycling-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Subtle divider */
}

.recycling-item:last-child,
.recycling-item:nth-last-child(2) {
  border-bottom: none;
  /* Remove bottom border for last row elements approx */
}

.recycling-label {
  font-weight: 500;
  color: #fff;
}

.recycling-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 768px) {
  .recycling-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.5rem;
  }

  .recycling-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .recycling-item:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.section-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  display: block;
}

/* Access Map */
.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 350px;
  }
}

/* Access Info */
.access-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.access-section p {
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .access-section h3 {
    font-size: 1rem;
  }
}

/* Corporate Homepage Styles */
.corporate-hero {
  height: 65vh !important;
  min-height: 500px;
}

.corporate-hero h1 {
  font-size: 2.8rem !important;
  font-weight: 600;
}

.corporate-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.corporate-section {
  padding: 4rem 0;
}

/* Global Section Title Underline */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.corporate-section .section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.section-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.corporate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0;
  transition: none;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.corporate-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.corporate-card:hover {
  transform: none;
  border-color: var(--border);
}

.corporate-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.corporate-card p {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.text-link i {
  font-size: 0.85rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.info-item h4 {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item p {
  color: #fff;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .corporate-hero h1 {
    font-size: 2rem !important;
  }

  .corporate-section {
    padding: 3rem 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Sub-page Hero Styles (Company & Business) - Requested by User */
.sub-page-hero {
  height: 250px !important;
  min-height: auto !important;
  /* Override the 500px min-height */
}

/* Darker overlay for better text readability on sub-pages */
.sub-page-hero .corporate-hero-bg::after {
  background: rgba(15, 23, 42, 0.8) !important;
}

@media (max-width: 768px) {
  .sub-page-hero {
    height: 150px !important;
  }
}

/* Home Page Hero - Fixed & Enhanced */
/* Home Page Hero - Fixed & Enhanced */
.home-hero {
  position: relative;
  height: 70vh;
  /* Reduced height as requested */
  min-height: 500px;
  /* Reduced min-height */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Left align content */
  padding-top: 80px;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

/* Dynamic Background Overlay */
.home-hero .hero-bg::after {
  background: linear-gradient(120deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.7) 40%,
      rgba(6, 182, 212, 0.1) 100%);
  z-index: 1;
}

/* Ken Burns Effect for Hero Image */
.home-hero .hero-bg img {
  transform-origin: center;
  animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero-content {
  max-width: 1100px;
  /* Increased to allow wider text flow */
}

.hero-text-chunk {
  display: inline-block;
  white-space: nowrap;
  margin-right: 0.2em;
}

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

.hero-text-small {
  font-size: 0.6em;
  /* Smaller size for the last chunk */
}

.home-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  /* Slightly adjusted for better fit */
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
  color: #fff;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

@media (max-width: 900px) {
  .hero-text-chunk {
    display: block;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}

.home-hero p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background: rgba(15, 23, 42, 0.6);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--primary);
  backdrop-filter: blur(8px);
  border-radius: 0 8px 8px 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .home-hero {
    height: auto;
    min-height: 500px;
    padding-bottom: 60px;
  }

  .home-hero h1 {
    font-size: 2.5rem;
  }

  .home-hero p {
    font-size: 0.9rem;
    padding: 1rem;
    line-height: 1.7;
    /* Adjusted line height for better readability with smaller font */
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}