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

/* ==========================================================================
   Design System & Custom Properties
   ========================================================================== */
:root {
  /* Color Palette (HSL Tailored for calming, warm, and professional vibe) */
  --hue-primary: 155; /* Warm forest green */
  --hue-accent: 35;   /* Gentle earthy gold/sand */
  --hue-neutral: 45;  /* Soft cream/beige base */
  
  --color-primary: hsl(var(--hue-primary), 35%, 28%);
  --color-primary-light: hsl(var(--hue-primary), 25%, 93%);
  --color-primary-dark: hsl(var(--hue-primary), 40%, 18%);
  --color-accent: hsl(var(--hue-accent), 45%, 45%);
  --color-accent-light: hsl(var(--hue-accent), 50%, 96%);
  
  --color-bg-base: hsl(var(--hue-neutral), 30%, 98%);
  --color-bg-card: hsl(0, 0%, 100%);
  --color-text-main: hsl(210, 25%, 15%);
  --color-text-sub: hsl(210, 15%, 40%);
  --color-text-light: hsl(0, 0%, 100%);
  
  --color-border: hsl(var(--hue-neutral), 20%, 88%);
  --color-success: hsl(145, 60%, 35%);
  --color-error: hsl(5, 75%, 45%);

  /* Typography */
  --font-body: 'Noto Sans JP', sans-serif;
  --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;
  --space-xxl: 7rem;

  /* UI Helpers */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --box-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --box-shadow-md: 0 8px 24px rgba(40, 60, 50, 0.06);
  --box-shadow-lg: 0 16px 40px rgba(40, 60, 50, 0.1);
  --transition-normal: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.8;
  overflow-x: hidden;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

li {
  list-style: none;
}

/* Focus Outline for Accessibility */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ==========================================================================
   Reusable UI Elements
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section:nth-of-type(even) {
  background-color: hsl(var(--hue-neutral), 25%, 96%);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title .en {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.section-title h2 {
  font-size: 2.25rem;
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

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

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

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

.btn-accent:hover {
  background-color: hsl(var(--hue-accent), 45%, 38%);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--box-shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-normal);
}

.header.scrolled .header-inner {
  height: 75px;
}

.logo-link {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 0.5rem 0.8rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

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

.nav-link:hover::after {
  width: 80%;
}

.nav-btn {
  padding: 0.75rem 1.8rem;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-dark);
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  overflow: hidden;
}

.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;
  transform: scale(1.05);
  animation: zoomHero 15s forwards ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(40, 60, 50, 0.85) 30%, rgba(40, 60, 50, 0.3) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
}

.hero h1 {
  font-size: 3.25rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.scroll-indicator span {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: var(--color-text-light);
  animation: scrollDown 2s infinite ease-in-out;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.about-mission {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.about-desc {
  margin-bottom: var(--space-md);
  color: var(--color-text-sub);
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

/* ==========================================================================
   Services (作業内容) Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--color-border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--color-primary-light);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-body {
  padding: var(--space-md);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  margin-bottom: var(--space-md);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.service-tag {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

/* ==========================================================================
   Schedule Section
   ========================================================================== */
.schedule-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.schedule-timeline {
  position: relative;
  padding: var(--space-md) 0;
}

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

.schedule-item {
  display: flex;
  margin-bottom: var(--space-lg);
  position: relative;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.schedule-marker {
  position: absolute;
  left: 111px;
  top: 8px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 3px solid var(--color-bg-base);
  z-index: 2;
  transition: var(--transition-fast);
}

.section:nth-of-type(even) .schedule-marker {
  border-color: hsl(var(--hue-neutral), 25%, 96%);
}

.schedule-item:hover .schedule-marker {
  background-color: var(--color-primary);
  transform: translateX(-50%) scale(1.3);
}

.schedule-time {
  width: 110px;
  padding-right: 30px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  text-align: right;
  flex-shrink: 0;
}

.schedule-content {
  background-color: var(--color-bg-card);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
  border: 1px solid var(--color-border);
  flex-grow: 1;
  transition: var(--transition-normal);
  margin-left: 25px;
}

.schedule-item:hover .schedule-content {
  box-shadow: var(--box-shadow-md);
  transform: translateX(4px);
  border-color: var(--color-primary-light);
}

.schedule-content h4 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--color-primary-dark);
}

.schedule-content p {
  font-size: 0.95rem;
  color: var(--color-text-sub);
}

/* ==========================================================================
   Flow (ご利用の流れ) Section
   ========================================================================== */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flow-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--box-shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.flow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
  border-color: var(--color-primary);
}

.flow-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: var(--transition-normal);
}

.flow-card:hover .flow-num {
  color: var(--color-accent);
}

.flow-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.flow-card p {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  text-align: left;
}

/* Arrow indicator between flow cards on desktop */
.flow-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-text-sub);
  pointer-events: none;
  font-weight: 300;
}

/* ==========================================================================
   Overview (事業所概要) Section
   ========================================================================== */
.overview-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow-md);
  border: 1px solid var(--color-border);
  max-width: 900px;
  margin: 0 auto;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
}

.overview-table tr {
  border-bottom: 1px solid var(--color-border);
}

.overview-table tr:last-child {
  border-bottom: none;
}

.overview-table th, .overview-table td {
  padding: var(--space-md);
  text-align: left;
  vertical-align: top;
}

.overview-table th {
  width: 250px;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  background-color: var(--color-primary-light);
  border-radius: 4px;
}

.overview-table td {
  color: var(--color-text-main);
  padding-left: var(--space-lg);
}

/* ==========================================================================
   Access (アクセス) Section
   ========================================================================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.access-info h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.access-address {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-main);
}

.access-route {
  margin-bottom: var(--space-lg);
}

.access-route dt {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.access-route dd {
  color: var(--color-text-sub);
  margin-left: 0;
  margin-bottom: var(--space-sm);
}

.map-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
  border: 1px solid var(--color-border);
}

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

/* ==========================================================================
   Contact (お問い合わせ) Section
   ========================================================================== */
.contact-container {
  max-width: 750px;
  margin: 0 auto;
}

.contact-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--box-shadow-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.required-badge {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  margin-left: var(--space-xs);
  vertical-align: middle;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-base);
  transition: var(--transition-fast);
  color: var(--color-text-main);
}

.form-control:focus {
  border-color: var(--color-accent);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(180, 140, 80, 0.15);
  outline: none;
}

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

.form-feedback {
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-feedback.error {
  color: var(--color-error);
  display: block;
}

.form-submit {
  text-align: center;
  margin-top: var(--space-lg);
}

.form-submit .btn {
  width: 100%;
  max-width: 320px;
}

.form-status-msg {
  text-align: center;
  margin-top: var(--space-sm);
  padding: 0.8rem;
  border-radius: var(--border-radius-sm);
  display: none;
  font-size: 0.95rem;
}

.form-status-msg.success {
  background-color: hsl(145, 50%, 93%);
  color: var(--color-success);
  display: block;
}

.form-status-msg.error {
  background-color: hsl(5, 55%, 94%);
  color: var(--color-error);
  display: block;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-md) 0;
  border-top: 2px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-info h3 {
  color: var(--color-text-light);
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-text-light);
  padding-left: 4px;
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.footer-contact-item .label {
  font-weight: 700;
  color: var(--color-accent-light);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
}

.footer-creator {
  color: rgba(255, 255, 255, 0.5);
}

.footer-creator a {
  color: var(--color-accent-light);
  font-weight: 600;
}

.footer-creator a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes zoomHero {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.0);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(60px);
  }
  100% {
    transform: translateY(60px);
  }
}

/* Scroll Fade In Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --space-xl: 3.5rem;
    --space-xxl: 5rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .about-grid, .access-grid {
    gap: var(--space-lg);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .flow-card:nth-child(2)::after {
    display: none;
  }
  
  .flow-card:not(:last-child)::after {
    right: -15px;
  }
}

@media (max-width: 768px) {
  /* Navigation Mobile Toggle */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-md) var(--space-md) var(--space-md);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    z-index: 1050;
    gap: var(--space-sm);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-btn {
    width: 100%;
    margin-top: var(--space-sm);
  }
  
  /* Menu Hamburger Animation */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Sections Mobile */
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .about-grid, .access-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .flow-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .flow-card::after {
    display: none !important;
  }
  
  .overview-table th {
    width: 150px;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-xs);
  }
  
  .overview-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  :root {
    --space-xxl: 4rem;
  }
  
  .header-inner {
    height: 75px;
  }
  
  .logo-title {
    font-size: 1.15rem;
  }
  
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .schedule-time {
    width: 75px;
    padding-right: 15px;
    font-size: 0.95rem;
  }
  
  .schedule-timeline::before {
    left: 75px;
  }
  
  .schedule-marker {
    left: 76px;
  }
  
  .schedule-content {
    margin-left: 15px;
  }
  
  .overview-table th, .overview-table td {
    display: block;
    width: 100%;
    padding: var(--space-xs) 0;
  }
  
  .overview-table td {
    padding-bottom: var(--space-sm);
    border-bottom: 1px dashed var(--color-border);
  }
  
  .overview-table tr:last-child td {
    border-bottom: none;
  }
}
