/* ============================================
   TWR 兔將創意影業 - Sub-page Stylesheet
   ============================================ */

/* ======== SUB-PAGE HEADER (horizontal nav) ======== */
/* Full horizontal nav — only on sub-pages */
.subnav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.subnav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.subnav > li {
  position: relative;
}

.subnav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  height: var(--header-h);
  font-size: 0.8rem;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: color 0.25s;
  position: relative;
}

.subnav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: #c060c0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.subnav > li > a:hover,
.subnav > li > a.active { color: #fff; }
.subnav > li > a:hover::after,
.subnav > li > a.active::after { transform: scaleX(1); }

.subnav > li > a .fa-chevron-down {
  font-size: 0.5rem; opacity: 0.5;
  transition: transform 0.25s;
}
.subnav > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.subnav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,255,255,0.07);
  min-width: 160px;
  padding: 6px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: all 0.22s ease;
  z-index: 500;
  list-style: none;
}
.subnav > li:hover .subnav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  transition: color 0.2s, background 0.2s;
}
.subnav-dropdown li a:hover { color: #fff; background: rgba(255,255,255,0.04); }

/* ======== PAGE TITLE AREA ======== */
.page-title-area {
  margin-top: var(--header-h);
  background: #0a0a0a;
  padding: 48px 0 36px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-title-area h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 14px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  font-family: 'Noto Sans TC', sans-serif;
}
.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep {
  margin: 0 10px;
  color: rgba(255,255,255,0.2);
}

/* ======== CONTENT LAYOUT ======== */
.subpage-body { background: #0a0a0a; color: #fff; font-family: 'Noto Sans TC', sans-serif; }

.subpage-content {
  display: flex;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 80px;
}

/* ======== SIDEBAR ======== */
.subpage-sidebar {
  width: 220px;
  flex-shrink: 0;
  padding-top: 36px;
  position: sticky;
  top: var(--header-h);
  align-self: flex-start;
}

/* Category header block — magenta gradient */
.sidebar-cat-header {
  background: linear-gradient(135deg, #d060d0 0%, #9030a0 50%, #6020a0 100%);
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 0;
}

.sidebar-nav {
  list-style: none;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  margin-bottom: 4px;
}

.sidebar-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.25s, background 0.25s;
}
.sidebar-nav > li > a:hover { color: #fff; background: rgba(255,255,255,0.03); }
.sidebar-nav > li > a.active { color: #fff; font-weight: 700; }
.sidebar-nav > li:last-child > a { border-bottom: none; }

/* Sub-items (year links etc.) */
.sidebar-nav .sidebar-sub { list-style: none; background: rgba(255,255,255,0.02); }
.sidebar-nav .sidebar-sub li a {
  display: block;
  padding: 9px 20px 9px 32px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.25s;
}
.sidebar-nav .sidebar-sub li a:hover { color: #fff; }

.sidebar-expand-icon { font-size: 0.55rem; opacity: 0.4; }

/* ======== MAIN CONTENT ======== */
.subpage-main {
  flex: 1;
  padding: 48px 60px;
  min-width: 0;
}

.subpage-section {
  margin-bottom: 56px;
}
.subpage-section:last-child { margin-bottom: 0; }

.subpage-section h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 5px;
}
.subpage-section .section-en {
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
}
.subpage-divider {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 24px;
}

.subpage-section p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  line-height: 2;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.subpage-section p:last-child { margin-bottom: 0; }

/* Service items */
.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.service-item-box {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 18px;
  transition: border-color 0.3s, background 0.3s;
}
.service-item-box:hover { border-color: rgba(192,96,192,0.4); background: rgba(192,96,192,0.05); }
.service-item-box h4 { font-size: 0.88rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 5px; }
.service-item-box p { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 1px; line-height: 1.6; margin: 0; }

/* Video embed (Vimeo / YouTube responsive wrapper) */
.video-embed {
  position: relative;
  padding: 56.25% 0 0 0;
  margin-bottom: 32px;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Image grid */
.content-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 28px;
}
.content-img-grid img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover; display: block;
  filter: brightness(0.85);
  transition: filter 0.3s;
}
/* Single full-width image: stretch to full content width, natural height */
.content-img-grid.img-full {
  display: block;
}
.content-img-grid.img-full img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: fill;
  filter: brightness(0.85);
}
.content-img-grid img:hover { filter: brightness(1); }

/* Reference URL link */
.subpage-reference {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  font-family: 'Readex Pro', 'Noto Sans TC', sans-serif;
}
.subpage-reference a {
  color: rgba(192,96,192,0.75);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.25s;
}
.subpage-reference a:hover { color: #e090e0; text-decoration: underline; }
.subpage-reference i { margin-right: 6px; color: rgba(192,96,192,0.55); }

/* Single full-width image */
.subpage-img {
  width: 100%; max-width: 720px;
  display: block; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Highlights row */
.highlight-row {
  display: flex; gap: 40px; flex-wrap: wrap; margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.highlight-item { text-align: center; }
.highlight-number {
  font-family: 'Readex Pro', sans-serif;
  font-size: 2rem; font-weight: 700; display: block; margin-bottom: 4px;
}
.highlight-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 1px; }

/* Works grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 3px; margin-top: 24px;
}
.work-thumb {
  position: relative; padding-top: 65%; overflow: hidden;
  background: #111; cursor: pointer;
}
.work-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  color: rgba(255,255,255,0.18); font-size: 0.8rem; letter-spacing: 2px;
}
.work-placeholder i { font-size: 1.4rem; opacity: 0.25; }
.work-overlay {
  position: absolute; inset: 0; background: rgba(120,30,150,0.75);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.work-thumb:hover .work-overlay { opacity: 1; }
.work-overlay span { font-size: 0.82rem; letter-spacing: 2px; font-weight: 700; }

/* ======== FULL FOOTER (injected by components.js) ======== */
.site-footer-full {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0 !important;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 320px;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px 48px;
  align-items: start;
}

/* Left: brand + social */
.footer-brand-col {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
  display: block;
}
.footer-logo-text {
  margin-bottom: 6px;
}
.footer-logo-en {
  font-family: 'Readex Pro', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
}
.footer-company-en {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
  font-family: 'Readex Pro', sans-serif;
  margin-bottom: 20px;
}
.footer-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-links a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social-links a:hover {
  color: #fff;
  border-color: rgba(192,96,192,0.6);
  background: rgba(192,96,192,0.15);
}

/* Middle: office tabs */
.footer-offices-col {
  padding: 0 40px;
}
.footer-office-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-office-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 2px;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.footer-office-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: #c060c0;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.footer-office-tab.active { color: #fff; }
.footer-office-tab.active::after { transform: scaleX(1); }
.footer-office-tab:hover { color: #fff; }

.footer-office-panel { display: none; }
.footer-office-panel.active { display: block; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-contact-row i {
  color: rgba(192,96,192,0.7);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

/* Right: map */
.footer-map-col {
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
/* Transparent click-through overlay → opens Google Maps */
.footer-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  cursor: pointer;
}
.footer-map-iframe {
  width: 100%;
  height: 180px;
  border: none;
  filter: grayscale(80%) brightness(0.65);
  display: block;
  pointer-events: none;  /* overlay link handles all clicks */
}

/* Subsidiaries logos row */
.footer-subsidiaries {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 28px 48px;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.footer-subsidiaries.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-sub-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-sub-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.footer-sub-logos img:hover { opacity: 0.85; }

/* Bottom bar */
.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.5px;
  font-family: 'Readex Pro', sans-serif;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .fas { color: rgba(192,96,192,0.5); margin-right: 4px; }

/* ======== OLD FOOTER (kept for fallback) ======== */
.subpage-footer-company {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-office h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  margin-bottom: 12px; color: rgba(255,255,255,0.55);
}
.footer-office p {
  font-size: 0.74rem; color: rgba(255,255,255,0.3);
  line-height: 1.9; letter-spacing: 0.5px;
}
.footer-office a { color: rgba(255,255,255,0.3); transition: color 0.25s; }
.footer-office a:hover { color: #fff; }

/* ============================================
   ABOUT PAGE — company intro style
   ============================================ */
.about-hero {
  position: relative;
  margin: 0 0 40px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.about-hero img {
  width: 100%; display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: brightness(0.7);
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  display: flex; align-items: center;
  padding: 0 48px;
}
.about-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; letter-spacing: 6px;
  max-width: 520px;
  line-height: 1.4;
}
.about-hero-title .accent { color: #c060c0; }

.slogan-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 36px;
}
.slogan-item {
  padding: 20px 22px;
  background: rgba(192,96,192,0.06);
  border-left: 3px solid #c060c0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 1px;
  line-height: 1.8;
}

.awards-list {
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.awards-list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.awards-list li:last-child { border-bottom: none; }
.award-year {
  flex: 0 0 70px;
  font-family: 'Readex Pro', sans-serif;
  color: #c060c0;
  font-weight: 600;
  letter-spacing: 1px;
}
.award-text { flex: 1; }
.award-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.cdsa-card {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 24px;
}
.cdsa-card img {
  flex: 0 0 120px;
  width: 120px;
  height: auto;
  background: #fff;
  padding: 12px;
  border-radius: 4px;
}
.cdsa-card p { margin: 0; }

/* ============================================
   TEAM PAGE — member cards
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.team-member {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.team-member img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) brightness(0.85);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.team-member:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}
.team-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 20px;
  background: linear-gradient(to top, rgba(10,5,25,0.95) 0%, rgba(10,5,25,0.75) 55%, rgba(10,5,25,0) 100%);
}
.team-info .role {
  font-size: 0.7rem;
  color: rgba(192,96,192,0.9);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Readex Pro', sans-serif;
  display: block;
  margin-bottom: 6px;
}
.team-info .name-zh {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.team-info .name-en {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Readex Pro', sans-serif;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}
.team-info .imdb-link {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}
.team-info .imdb-link:hover { color: #f5c518; }

/* ============================================
   RECRUIT PAGE — "兔將福利制度" (matches reference)
   ============================================ */

/* "加入我們" header bar */
.recruit-join-header {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 36px;
}

/* Two big job-board buttons (104 / BOSS) */
.recruit-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.recruit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 28px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.25s, box-shadow 0.25s;
}
.recruit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192,96,192,0.25);
}
.recruit-btn-logo {
  font-family: 'Readex Pro', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.recruit-btn--104 .recruit-btn-logo { color: #ff6b00; }
.recruit-btn--boss .recruit-btn-logo {
  color: #00b5a0;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* 2-column grid of benefit sections — matches reference */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 48px;
}
.benefit-block {
  padding-top: 2px;
}
.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 4px;
  color: #fff;
}
.benefit-underline {
  width: 100%;
  height: 1px;
  background: rgba(192,96,192,0.25);
  margin-bottom: 20px;
}
.benefit-body ul {
  list-style: none;
  padding: 0; margin: 0;
}
.benefit-body ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.5px;
  line-height: 1.8;
}
.benefit-body ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 5px; height: 5px;
  background: #c060c0;
  border-radius: 50%;
}

/* Working environment location cards (kept) */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
}
.location-card h5 {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
}

/* Location group: city + 3-image grid */
.location-group {
  margin-bottom: 36px;
}
.location-group:last-child { margin-bottom: 0; }
.location-group .content-img-grid { margin-top: 14px; }
.location-city {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .subpage-content { flex-direction: column; }
  .subpage-sidebar { width: 100%; position: static; padding-top: 0; }
  .subpage-main { padding: 32px 24px; }
  .content-img-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-footer-company { grid-template-columns: 1fr; padding: 32px 24px; }
  .slogan-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 36px; }
  .recruit-buttons { grid-template-columns: 1fr; gap: 14px; }
  .location-grid { grid-template-columns: 1fr; }
  .about-hero-overlay { padding: 0 24px; }
  .cdsa-card { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .content-img-grid { grid-template-columns: 1fr; }
  .service-items { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ======== FULL FOOTER RESPONSIVE ======== */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 32px;
  }
  .footer-map-col {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    margin-top: 8px;
  }
  .footer-offices-col { padding: 0 0 0 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; padding: 16px 24px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-col { padding-right: 0; border-right: none; }
  .footer-offices-col { padding: 0; }
  .footer-bottom { text-align: center; }
}
