@charset "UTF-8";

:root {
  --primary-color: #124BB1;
  /* Deep Navy Blue */
  --accent-color: #FFC426;
  /* Gold/Yellow */
  --text-color: #252525;
  --text-color-sub: #5c5c5c;
  --bg-color: #FFFFFF;
  --light-bg: #F9F9F9;
  --font-main: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* =========================================
   PC (Desktop): 1440px ~ 1919px
   ========================================= */
@media screen and (max-width: 1919px) {

  /* Container max-width is already 1440px in common.css */
  .container {
    padding: 0 40px;
    /* Slightly more breathing room on large screens */
  }
}

/* =========================================
   PC (Laptop): 960px ~ 1439px
   ========================================= */
@media screen and (max-width: 1439px) {

  /* Header */
  .header-container {
    padding: 0 30px;
  }

  nav ul {
    gap: 40px;
  }


  nav ul li a {
    font-size: 13px;
    padding: 28px 0;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 52px;
  }

  /* Services */
  .service-grid-3,
  .service-grid-2 {
    gap: 20px;
  }

  .service-item {
    /* Allow items to shrink slightly */
    flex: 1;
  }

  /* Consulting Process */
  .consulting-process .section-title {
    margin-bottom: 250px;
    min-width: 440px;
  }

  .process-phase {
    /* max-width: 900px; */
  }

  .phase-mascot01 {
    top: -224px;
    left: 50%;
    transform: translateX(-50%);
  }

  .phase-mascot02 {
    top: -247px;
    right: 50%;
    transform: translateX(50%);
  }

  .phase-mascot03 {
    top: -188px;
    left: 50%;
    transform: translateX(-50%);
  }

  .phase-steps {
    gap: 10px;
  }

  .step-header-small {
    font-size: 14px;
  }

  .phase-step p {
    font-size: 11px;
  }

  .process-arrow-down {
    margin-bottom: 250px;
  }

  .display-max1439 {
    display: block;
  }

  .case-study-title-en {
    font-size: 65px;
    top: -50px;
  }
}

/* =========================================
   Functional Hamburger Menu (<= 959px)
   ========================================= */

/* Default: Hide Hamburger on larger screens */
.hamburger-menu {
  display: none;
}

/* Ensure SP elements hidden on desktop */
@media screen and (min-width: 960px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 959px) {

  /* Header Layout */
  header {
    position: relative;
    /* Ensure z-index context if needed */
  }

  .header-container {
    padding: 20px;
    height: auto;
    flex-direction: row;
    /* Logo Left, Ham Right */
    justify-content: space-between;
    align-items: center;
  }

  /* Logo */
  .logo {
    margin: 0;
    z-index: 1002;
    /* Above menu */
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  /* Hide Desktop Elements */
  .header-right {
    display: none;
  }

  /* Hamburger Icon Styling */
  .hamburger-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1002;
    padding: 0;
  }

  .hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #103688;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
  }

  .hamburger-menu span:nth-child(1) {
    top: 0;
  }

  .hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger-menu span:nth-child(3) {
    bottom: 0;
  }

  /* Animation when open */
  header.menu-open .hamburger-menu span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  header.menu-open .hamburger-menu span:nth-child(2) {
    opacity: 0;
  }

  header.menu-open .hamburger-menu span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  /* Nav Menu (Drawer) */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    /* White background as requested */
    transition: right 0.4s ease;
    z-index: 1001;
    /* Behind Logo/Ham */
    padding: 80px 20px 40px;
    /* Space for logo/ham + bottom padding */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
  }

  header.menu-open nav {
    right: 0;
  }

  /* List Layout */
  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* text-align: center; */
    /* Align left */
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    margin-right: auto;
    /* Reset center */
    padding-bottom: 20px;
  }

  nav ul li {
    width: 100%;
  }

  /* Main Links Styling */
  nav ul>li>a,
  nav ul>li>button {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid var(--accent-color);
    /* Yellow underline separator */
    text-align: center;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .has-dropdown {
    border-bottom: 2px solid var(--accent-color);
  }

  /* Reset button specific resets for menuTrigger */
  nav ul>li>button.menuTrigger {
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 0;
    padding-bottom: 15px;
  }

  nav ul li a::after {
    display: none;
    /* Remove hover underline animation */
  }

  /* Dropdown (Submenu) */
  .dropdown-menu {
    position: sticky;
    display: block;
    /* Always show */
    background: transparent;
    /* padding: 10px 0 20px 10px; */
    /* Indent */
    box-shadow: none;
    border: none;
    margin: 0;
    margin-bottom: 15px;
    width: 90%;
    max-width: 150px;
    /* Spacing after sub-block */
  }

  .dropdown-menu li {
    border: none !important;
    /* No yellow borders for sub-items */
  }

  .dropdown-menu li a {
    font-size: 16px;
    font-weight: normal;
    padding: 8px 0;
    color: #333;
    border-bottom: none;
    text-align: left;
    /* No yellow separator */
  }

  .dropdown-menu li a::before {
    content: '- ';
    /* Dash prefix */
  }

  /* Language Switcher in Drawer */
  .lang-item {
    margin-top: 20px;
  }

  header .bogo-language-switcher {
    margin: 0;
    display: flex !important;
    gap: 10px;
    flex-direction: column;
  }

  header .bogo-language-switcher li {
    list-style: none;
    border-bottom: none;
    /* Remove main link border */
  }

  /* Styling bogo links as buttons */
  header .bogo-language-switcher a,
  header .bogo-language-switcher span {
    display: block;
    /* padding: 10px 15px; */
    /* background: #f0f0f0; */
    text-align: center;
    /* color: #333; */
    font-weight: bold;
    /* border: 1px solid #ddd; */
  }

  header .bogo-language-switcher .current span {
    /* background: #333;
    color: #fff;
    border-color: #333; */
  }

  /* Slash removal for header mobile (just in case) */
  header .bogo-language-switcher .ja::after {
    display: none;
  }

  /* Helper Class */
  .sp-only {
    display: block;
  }

  /* Contact Button */
  .mobile-contact-item {
    margin-top: 30px;
    border-bottom: none;
  }

  .btn-yellow-contact {
    background: var(--accent-color);
    /* Yellow */
    color: #fff !important;
    text-align: center !important;
    border-radius: 4px;
    padding: 15px 0;
    font-weight: bold;
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .btn-yellow-contact img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Make icon white */
  }

  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .success-story-layout {
    flex-direction: column;
    gap: 40px;
  }

  .success-story-sidebar {
    width: 100%;
  }

  .related-post-item {
    border-bottom: 1px dotted #ccc;
  }
}

@media screen and (max-width: 1180px) {
  nav ul {
    gap: 15px;
  }
}

/* =========================================
   Tablet: 768px ~ 960px
   ========================================= */
@media screen and (max-width: 959px) {

  /* Header */
  .header-container {
    height: auto;
    /* flex-direction: column; */
    padding: 15px 20px;
  }

  nav ul {
    margin-top: 15px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li a {
    padding: 5px 0;
    font-size: 13px;
  }

  nav ul li a::after {
    bottom: 0;
  }

  .display-max959 {
    display: block;
  }

  .header-right {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .logo img {
    height: 60px;
  }

  /* Hero */
  .hero {
    margin-top: 0px;
    /* Adjust for taller header */
    padding-left: 5%;
    height: calc(100vh - 60px);
  }

  .hero-content h1 {
    font-size: 42px;
  }

  /* About */
  .about-title {
    font-size: 32px;
  }

  /* Services */
  .service-grid-3 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-grid-3 .service-item {
    flex: 0 0 calc(50% - 15px);
    max-width: none;
  }

  /* Do Grid */
  .do-grid {
    gap: 40px;
  }

  .official-bg-text {
    width: 90%;
    margin: 30px auto 30px auto;
  }

  .official-bg-text img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .news-wrapper {
    display: block;
  }

  /* Footer */
  .footer-content {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-left {
    flex: 0 0 100%;
    text-align: center;
  }

  .footer-logo img {
    margin: 0;
  }

  .footer-address-sns-wrapper {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    /* position: static; */
    /* justify-content: center; */
  }

  .footer-tagline {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .footer-center,
  .footer-right {
    flex: 0 0 45%;
    text-align: left;
  }

  .page-hero {
    margin-top: 0;
  }

  /* Intro */
  .intro-flex,
  .sales-intro-flex {
    /* flex-direction: column; */
    gap: 30px;
  }

  /* .intro-img,
  .intro-text,
  .sales-intro-img,
  .sales-intro-text {
    flex: 0 0 100%;
    width: 100%;
  } */

  .intro-img img,
  .sales-intro-img img {
    width: 100%;
    max-width: 500px;
    /* Limit image size when stacked */
    margin: 0 auto;
  }

  .consulting-process {
    padding: 100px 0;
  }

  .consulting-case .btn-yellow {
    margin: 0 auto;
  }

  .case-study-title-en {
    font-size: 52px;
    top: -42px;
  }

  .consulting-case-card {
    flex-direction: column;
    gap: 0;
  }

  /* .case-card-img {
    width: 100%;
    height: 200px;
  } */

  .case-card-content {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
  }

  /* Consulting Process */
  .process-phase {
    padding: 60px 30px 40px;
  }

  .phase-banner {
    font-size: 32px;
    padding: 3px 30px;
  }

  .phase-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-date {
    font-size: 18px;
  }

  .achievement-title {
    font-size: 18px;
  }

  .exp-challenge-unit {
    width: 100%;
  }

  .cost-content-box {
    padding: 30px 10px;
  }

  .cost-col-header {
    /* font-size: 12px; */
  }

  .cost-col-header::before,
  .cost-col-header::after {
    border-width: 7px 5px 0 5px;
    margin: 0 7px;
  }

  .reduction-badge {
    display: none;
  }

  .reduction-badge-sp {
    display: block;
    background-color: #EF4545;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
  }

  .badge-amount {
    font-size: 24px;
  }

  .badge-amount>span {
    font-size: 18px;
  }

  .cost-footer-note {
    margin-top: 15px;
  }

  .tag-cloud {
    justify-content: center;
  }

  .pagination nav {
    position: unset;
    width: auto;
    height: auto;
    padding: 0;
  }
}

/* =========================================
   Smartphone: 375px ~ 767px
   ========================================= */
@media screen and (max-width: 767px) {

  /* Header */
  header {
    position: relative;
    /* Unlock from fixed to prevent taking too much screen */
  }

  .header-container {
    /* flex-direction: column; */
    height: auto;
    padding: 20px;
  }

  .logo img {
    height: 38px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    /* Horizontal scroll if needed */
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  nav ul li a {
    font-size: 14px;
    padding: 10px 0;
  }

  nav ul li a::after {
    bottom: 5px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 0;
    /* background-color: #f9f9f9; */
    width: 90%;
    max-width: 150px;
    margin: 0 auto;
    /* display: none; */
    /* User needs to tap */
  }

  .has-dropdown:hover .dropdown-menu {
    display: block;
    /* Basic hover fallback */
  }

  .header-right {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero {
    margin-top: 0;
    height: calc(100vh - 78px);
    padding: 40px 20px;
    align-items: start;
  }

  .hero-image-gradation-sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: linear-gradient(180deg, rgba(0, 50, 131, 1) 49%, rgba(20, 75, 163, 0) 76%);
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: unset;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 0px;
  }

  /* Common */
  .container {
    padding: 0 20px;
  }

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

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 18px 15px;
    margin-top: 20%;
  }

  .arrow-right {
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-bottom: 0;
  }

  .btn-blue {
    font-size: 16px;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-yellow {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* About */
  .about {
    padding: 80px 0;
  }

  .about-title {
    font-size: 24px;
  }

  .about-title-en {
    font-size: 33px;
  }

  .about-subtitle {
    margin: 40px 0 50px;
    font-size: 22px;
  }

  /* Services & Sales Support */
  .service-img-wrapper {
    margin-bottom: 15px;
  }

  .img-overlay-text {
    font-size: 48px;
  }

  .service-title-jp {
    font-size: 22px;
    display: flex;
    justify-content: center;
  }

  .service-title-jp::before {
    display: none;
  }

  .service-desc {
    text-align: center;
  }

  .service-grid-3,
  .service-grid-2,
  .support-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .service-item,
  .service-grid-2 .service-item,
  .support-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    /* Force full width */
  }

  /* Features */
  .features {
    padding: 80px 0;
  }

  .feature-list {
    gap: 40px;
  }

  .feature-item {
    padding: 30px 20px 60px;
    /* Bottom padding for banner */
  }

  .feature-number {
    width: 75px;
    top: 10px;
    right: 10px;
  }

  .feature-banner {
    width: 260px;
    justify-content: end;
    box-sizing: border-box;
    padding: 5px 20px;
  }

  /* What we do */
  .what-we-do {
    padding: 80px 0;
  }

  .do-grid {
    display: block;
  }

  .do-item {
    margin-bottom: 40px;
  }

  .do-img {
    height: 200px;
  }

  /* Public Institutions */
  .public-institutions {
    padding-top: 50px;
  }

  .official-header {
    margin-bottom: 30px;
  }

  .official-title-text {
    font-size: 24px;
  }

  .official-subtitle {
    font-size: 14px;
  }

  .institution-grid-wrapper {
    width: 90%;
    margin: 0 auto;
    border-radius: 5px;
    padding: 20px 0;
  }

  .institution-grid-top,
  .institution-grid-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .institution-card {
    width: 95%;
    max-width: 360px;
  }

  /* Case Study */
  .case-study {
    padding: 80px 0;
  }

  .slider-container {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    /* overflow-x: auto; */
    /* Allow scroll if simple */
  }

  .slider-track {
    width: 100%;
  }

  .slide {
    width: 100%;
    margin-bottom: 30px;
  }

  .case-info h3 {
    font-size: 18px;
  }

  .case-detail p {
    font-size: 14px;
  }

  .slider-dots {
    margin: 0 0 30px;
    /* display: none; */
    /* Hide dots if stacking */
  }

  .news {
    padding-bottom: 80px;
  }

  .news-desc-box {
    padding-left: 10px;
  }

  .news-lead {
    font-size: 18px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-list {
    margin-top: 20px;
  }

  .news-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }

  .news-item a {
    padding: 15px 0;
  }

  /* Contact Section Background (Vertical Stack) */
  .contact-section::before {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 45%);
  }

  .contact-section::after {
    clip-path: polygon(0 45%, 100% 55%, 100% 100%, 0 100%);
  }

  .contact-section-bg-filter {
    padding: 60px 0;
  }

  .contact-title,
  .contact-subtitle {
    display: none;
  }

  .contact-cards {
    flex-direction: column;
    gap: 40px;
  }

  .contact-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .btn-contact-yellow {
    padding: 20px 20px;
  }

  /* Footer */
  footer {
    padding: 70px 0 30px;
  }

  .footer-content {
    gap: 40px 20px;
  }

  .footer-left {
    text-align: left;
    width: 100%;
  }

  .footer-center,
  .footer-right {
    flex: 0 0 45%;
    text-align: left;
  }

  .footer-logo img {
    height: 72px;
  }

  .footer-tagline {
    margin-top: -20px;
  }

  .address-title {
    font-weight: normal;
  }

  .footer-address-sns-wrapper {
    margin-left: 0;
    align-items: normal;
  }

  .footer-socials {
    left: 55px;
    bottom: 42px;
  }

  .footer-heading {
    margin-bottom: 10px;
    display: block;
    padding-bottom: 15px;
  }


  .footer-main-links li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  footer .bogo-language-switcher {
    justify-content: end;
    margin: 0 5%;
  }

  /* =====================
     Page Consulting
     ===================== */
  .page-hero-overlay {
    padding: 60px 0;
  }

  .page-title-en {
    font-size: 32px;
  }

  .lead-section {
    padding: 40px 0;
  }

  .lead-box h2 {
    font-size: 20px;
  }

  .lead-box p {
    font-size: 14px;
  }

  /* .consulting-lead-box {
    padding: 30px 20px;
  } */

  /* .consulting-lead-box h2 {
    font-size: 20px;
  } */

  /* Intro */
  .intro-flex {
    flex-direction: column;
  }

  .intro-img {
    margin-bottom: 30px;
  }

  .intro-description p {
    font-size: 14px;
  }

  /* Process Flow */
  .consulting-process {
    padding: 60px 0 0 0;
  }

  .consulting-process .section-title {
    font-size: 22px;
    margin-bottom: 160px;
    min-width: 280px;
    padding: 20px 0;
  }

  .process-phase,
  .process-phase.reverse {
    flex-direction: column;
    padding: 140px 0 40px;
    /* Huge top padding for mascot */
    gap: 0;
    width: auto;
  }

  /* Reset Mascot Positioning for Mobile */
  .phase-mascot-wrapper {
    position: absolute;
    /* top: -30px; */
    /* Sit on top edge */
    /* left: 50%; */
    /* right: auto; */
    /* transform: translateX(-50%); */
    /* margin: 0; */
    /* width: 140px; */
    /* Smaller mascot */
  }

  .phase-mascot01 {
    top: -150px;
  }

  .phase-mascot02 {
    top: -175px;
  }

  .phase-mascot03 {
    top: -110px;
  }

  .phase-content {
    padding: 20px;
    /* Padding for banner */
  }

  .phase-banner {
    position: absolute;
    top: -74px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    justify-content: center;
    padding: 10px;
    /* flex-direction: column; */
    /* Stack label and title if long */
    /* text-align: center; */
    gap: 5px;
    /* white-space: normal; */
    /* Allow wrap on mobile */
  }

  .process-phase.reverse .phase-banner {
    /* justify-content: center; */
    /* padding: 10px; */
    /* left: 50%; */
    /* right: auto; */
    /* border-radius: 5px; */
    /* flex-direction: column; */
  }

  .phase-label {
    font-size: 18px;
    line-height: 25px;
    /* border-right: none; */
    /* padding-right: 0; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    /* padding-bottom: 5px; */
    /* margin-bottom: 5px; */
    /* width: 100%; */
    /* text-align: center; */
  }

  .display-max767 {
    display: block;
  }

  .phase-num {
    font-size: 32px;
  }

  .phase-title {
    font-size: 20px;
    /* border-left: none; */
    padding-left: 0;
  }

  .phase-steps,
  .phase-steps.steps-2-col {
    grid-template-columns: 1fr;
    /* margin-top: 20px; */
    gap: 20px;
  }

  .phase-step {
    padding: 0;
    min-height: auto;
    border: none;
    background: none;
  }

  .phase-step p {
    font-size: 14px;
  }

  .step-header {
    font-size: 18px;
  }

  .process-arrow-down {
    margin-bottom: 150px;
  }

  /* Consulting Case */
  .consulting-case {
    margin-top: 60px;
  }

  .yellow-bg-deco {
    padding: 60px 0 80px;
  }

  .case-study-title-en {
    font-size: 40px;
    top: -31px;
    width: 100%;
  }

  .consulting-case-card {
    padding: 30px 5%;
  }

  /* .consulting-case-card {
    flex-direction: column;
  }

  .case-card-content {
    width: 100%;
    padding: 30px 20px;
  } */

  .case-card-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .case-card-content p {
    margin-bottom: 20px;
  }

  .btn-case-detail {
    font-size: 17px;
    padding: 15px 0;
  }

  /* Intro Title Box */
  .intro-title-box {
    padding: 20px;
    font-size: 18px;
    margin-bottom: 40px;
  }

  .intro-title-box .emphasis {
    font-size: 24px;
    text-emphasis-position: over;
    /* Ensure adjustment if needed */
  }

  /* Seminar Page */
  .seminar-section {
    padding-bottom: 50px;
  }

  .seminar-intro {
    padding-bottom: 60px;
  }

  .seminar-intro-header {
    margin-bottom: 20px;
  }

  .seminar-intro-header h3 {
    font-size: 22px;
  }

  .seminar-intro-content {
    flex-direction: column;
    gap: 20px;
  }

  .seminar-intro-text {
    width: 100%;
    text-align: center;
  }

  .seminar-intro-text p {
    text-align: center;
    font-size: 14px;
  }

  .intro-label {
    font-size: 18px;
  }

  .btn-blue {
    display: flex;
    width: 100%;
    max-width: 300px;
    /* Or full width */
    margin: 0 auto;
  }

  .seminar-achievement-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  /* Seminar Achievement List */
  .achievement-row {
    flex-direction: column;
    gap: 10px;
    padding: 20px 10px;
  }

  .achievement-date {
    min-width: auto;
    font-size: 14px;
    /* color: #666; */
    text-align: left;
  }

  .achievement-title {
    font-size: 15px;
  }

  .seminar-footer-text {
    margin-top: 40px;
  }

  .seminar-footer-text p {
    font-size: 18px;
  }

  /* Seminar Case */
  .seminar-case {
    padding: 50px 0 30px;
  }

  .seminar-case-card {
    padding: 40px 20px;
  }

  .seminar-case-card h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .seminar-case-img {
    margin-bottom: 30px;
  }

  .seminar-case-text p {
    margin-bottom: 20px;
  }

  .seminar-case .btn-primary {
    margin: 0;
  }

  /* .btn-blue-gradient {
    padding: 15px 20px;
    font-size: 14px;
    width: 100%;
  } */

  /* Marketing Page */
  .marketing-intro {
    padding: 40px 0 50px;
  }

  .marketing-intro .intro-title-box {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .marketing-intro .intro-title-box::after {
    display: none;
  }

  .marketing-intro-content {
    flex-direction: column;
    gap: 30px;
  }

  .marketing-step-card {
    padding: 30px 20px;
  }

  .intro-point h4 {
    font-size: 18px;
  }

  .intro-point p {
    font-size: 14px;
  }

  .step-header-row {
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .step-badge {
    width: 40px;
    height: 40px;
    font-size: 22px;
    margin-bottom: 0;
  }

  .marketing-step-card h3 {
    font-size: 22px;
  }

  .marketing-steps {
    padding: 0 0 60px;
  }

  .section-header-blue {
    margin-bottom: 40px;
  }

  .section-header-blue h2 {
    font-size: 22px;
    padding: 0 5%;
  }

  .step-sub-section h4 {
    font-size: 16px;
  }

  .step-divider {
    margin: 20px 0;
  }

  /* =========================================
   Expatriate Services Mobile (767px)
   ========================================= */
  .exp-challenges {
    padding: 50px 0;
  }

  .exp-section-header-box {
    width: 100%;
    border-radius: 0;
    margin-bottom: 20px;
  }

  .exp-section-lead {
    font-size: 16px;
    margin-bottom: 40px;
    /* text-align: left; */
  }

  .exp-challenge-unit {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .exp-unit-header {
    justify-content: center;
    margin-bottom: 15px;
  }

  .exp-num-box {
    font-size: 22px;
    padding: 10px;
    margin-right: 10px;
  }

  .exp-unit-header h3 {
    font-size: 18px;
  }

  .exp-unit-text-box {
    font-size: 14px;
    padding: 20px 15px;
  }

  .exp-unit-img-col img {
    position: unset;
  }

  .exp-unit-text-box .time-sub-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .quote-text {
    font-size: 14px;
    margin-bottom: 15px !important;
  }

  .time-overlay-text {
    position: unset;
    transform: none;
    padding: 30px 20px 40%;
  }

  .time-bg-col-gradation-sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(18, 75, 177, 0.6);
  }

  .time-overlay-label {
    font-size: 18px;
  }

  .time-overlay-year {
    font-size: 60px;
  }

  .year-unit {
    font-size: 20px;
  }

  .exp-challenge-row,
  .exp-challenge-row.reverse {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .exp-challenge-header {
    width: 100%;
    height: auto;
    padding: 15px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }

  .challenge-num {
    font-size: 24px;
    margin-bottom: 0;
  }

  .exp-challenge-header h3 {
    font-size: 18px;
  }

  .exp-challenge-content {
    flex-direction: column;
    width: 100%;
  }

  .challenge-img img {
    max-width: 100%;
  }

  /* Time Challenge Mobile */
  .time-challenge .time-img-wrapper {
    width: 100%;
    flex: 0 0 200px;
  }

  /* Cost Table Mobile */
  .exp-challenge-row.cost-challenge {
    padding: 20px 10px;
  }

  .cost-comparison-wrapper {
    padding-bottom: 20px;
  }

  .cost-table {
    min-width: 600px;
    /* Force horizontal scroll */
  }

  /* Staff Mobile */
  .exp-staff {
    padding: 50px 0;
  }

  .staff-flex {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .staff-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .staff-content p {
    font-size: 14px;
  }

  /* Support Mobile */
  .exp-support {
    padding-bottom: 60px;
  }

  .support-grid {
    flex-direction: column;
  }

  .ribbon-title-wrapper {
    width: 90%;
    padding: 5px 10px;
    text-align: center;
    margin-bottom: 20px;
  }

  .ribbon-title {
    font-size: 20px;
  }

  .support-card {
    width: 70%;
  }

  .exp-achievements {
    padding-bottom: 50px;
  }

  .wreath-title h2 {
    font-size: 19px;
    padding: 0 35px;
    margin: 25px 0 30px;
  }

  .wreath-title h2::before,
  .wreath-title h2::after {
    width: 25px;
    height: 40px;
  }

  .exp-achievements-wrapper {
    padding-bottom: 40px;
  }

  /* Achievements Mobile */
  .tag-cloud {
    gap: 10px;
  }

  .tag-cloud span {
    padding: 8px 15px;
    font-size: 12px;
  }

  /* CTA Mobile */
  .cta-box-blue {
    padding: 30px 20px 50px;
  }

  .cta-main-msg {
    font-size: 18px;
  }

  .cta-box-blue .btn-primary {
    margin-top: 30px;
  }

  .cta-msg {
    /* font-size: 20px; */
  }

  /* =========================================
   Challenge 03 Cost Unit (Mobile)
   ========================================= */
  .cost-3col-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 40px;
    /* Scrollbar space */
  }

  .cost-col-container {
    min-width: 260px;
    /* Ensure columns don't crush */
  }

  .reduction-badge {
    right: 0;
    top: -25px;
  }

  /* Make horizontal scrollbar visible if needed */
  .cost-3col-grid::-webkit-scrollbar {
    height: 8px;
  }

  .cost-3col-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  .sales-promotion-intro {
    padding: 40px;
  }

  .sales-intro-flex {
    flex-direction: column;
    gap: 20px;
  }

  .sales-intro-description p {
    font-size: 14px;
  }

  .sales-support-section {
    padding: 40px 0;
  }

  .sales-support-section .section-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .support-grid {
    flex-direction: column;
    gap: 20px;
  }

  .ribbon-title-wrapper {
    /* width: 95%;
    transform: skewX(0);
    border-radius: 5px; */
  }

  .ribbon-title {
    /* transform: skewX(0);
    font-size: 18px; */
  }

  /* =========================================
   Company Overview Page (Mobile)
   ========================================= */
  /* Company Info Table */
  .company-info-section {
    padding: 40px 0 50px;
  }

  .info-label {
    padding: 5px 10px;
    width: 90px;
  }

  /* Staff Section */
  .staff-intro-section {
    padding: 0;
  }

  .staff-section-title {
    font-size: 24px;
    padding-top: 50px;
  }

  .staff-lead-en {
    font-size: 12px;
  }

  .staff-profile {
    padding: 0 3%;
  }

  .profile-layout {
    flex-direction: column;
    gap: 30px;
  }

  .reverse-mobile {
    flex-direction: column-reverse;
    flex-direction: column;
  }

  .role-overlay {
    font-size: 14px;
    padding: 25px 15px 5px 0;
    bottom: 0;
    clip-path: polygon(0 25px, 100% 0, 100% 100%, 0% 100%);
  }

  .profile-name {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .profile-desc {
    line-height: normal;
  }

  .other-staff-grid {
    flex-direction: column;
    gap: 35px;
    padding-bottom: 50px;
  }

  .staff-card {
    padding: 20px;
  }

  .staff-card-top {
    align-items: center;
    min-height: auto;
  }

  .staff-img-right img {
    width: 80px;
    height: 90px;
  }

  .contact-info-box {
    padding: 15px 3%;
  }

  .hq-info-section {
    padding: 45px 0 50px;
  }

  .vp-profile .profile-layout {
    flex-direction: column-reverse;
  }

  /* HQ Section */
  .hq-container {
    flex-direction: column;
    gap: 30px;
    width: 90%;
  }

  .hq-text {
    padding: 30px 20px;
  }

  .hq-name {
    font-size: 18px;
  }

  .hq-info-row {
    /* flex-direction: column; */
    font-size: 14px;
    margin-bottom: 15px;
  }

  .hq-label {
    margin-bottom: 5px;
    flex: 0 0 75px;
    /* flex: none; */
    /* width: 100%; */
  }

  /* .hq-text p is gone, replaced by .hq-name and .hq-info-row */

  .hq-img,
  .hq-img img {
    height: auto;
    width: 100%;
    position: static;
    /* Reset absolute positioning */
  }

  .hq-info-section::before {
    height: 50%;
    /* Adjust background height on mobile */
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0% 100%);
  }

  .hq-divider {
    margin: 15px 0;
  }

  .news-meta {
    gap: 10px;
  }

  .single-title {
    font-size: 24px;
  }

  .single-meta {
    gap: 15px;
  }

  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .success-story-thumb {
    height: auto;
    aspect-ratio: 16/9;
  }


}