/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    overflow-x: hidden; /* 防止横向滚动条 */
}

html {
    overflow-x: hidden; /* 防止横向滚动条 */
}

body.loaded {
    opacity: 1;
}

/* Page Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: #B8860B;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(184, 134, 11, 0.3);
    border-top: 3px solid #B8860B;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.top-header-left {
    color: #fff;
}

.top-header-right .line-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-header-right .line-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.top-header-right .line-link svg {
    transition: transform 0.3s ease;
    color: #fff;
}

.top-header-right .line-link:hover svg {
    transform: scale(1.1);
    color: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    /* 优化SVG渲染 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    shape-rendering: geometricPrecision;
}

.nav-logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.mobile-company-name {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: #896329;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #B8860B;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: rgba(184, 134, 11, 0.1);
}

.nav-toggle span {
    width: 28px;
    height: 4px;
    background: #B8860B;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active {
    background-color: rgba(184, 134, 11, 0.15);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8.5px, 8.5px);
    background: #8B6914;
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8.5px, -8.5px);
    background: #8B6914;
}

/* Force cache refresh - perfect X hamburger menu */

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.sticky-nav.show {
    transform: translateY(0);
}

.sticky-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.sticky-logo {
    display: flex;
    align-items: center;
}

.sticky-logo img {
    height: 55px;
    width: auto;
    /* 优化SVG渲染 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    shape-rendering: geometricPrecision;
}

.sticky-nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.sticky-nav-links a {
    color: #4b4b4b  !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.sticky-nav-links a:hover {
    color: #B8860B !important;
}

.sticky-nav-links a.active {
    color: #B8860B !important;
}

.sticky-line-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sticky-line-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
}

.sticky-line-btn svg {
    width: 16px;
    height: 16px;
    color: #00C300;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh + 100px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero.scroll-up {
    transform: translateY(-100%);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    top: 40px;
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 3rem;
    border-radius: 10px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-image {
    width: 200px;
    height: auto;
    max-width: min(200px, 40vw);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    /* 优化SVG渲染 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    shape-rendering: geometricPrecision;
    /* 确保图片保持比例 */
    object-fit: contain;
}

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

/* Logo光扫过特效 */
.logo-image::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -150%;
    width: 50%;
    height: 120%;
    background: linear-gradient(
        75deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: logoSweep 3s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
    pointer-events: none;
    transform: skewX(-20deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes logoSweep {
    0% {
        left: -150%;
        opacity: 0;
        transform: skewX(-20deg) scale(0.8);
    }
    15% {
        opacity: 1;
        transform: skewX(-20deg) scale(1);
    }
    85% {
        opacity: 1;
        transform: skewX(-20deg) scale(1);
    }
    100% {
        left: 150%;
        opacity: 0;
        transform: skewX(-20deg) scale(0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Hero Text Section */
.hero-text {
    background: #fff;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 500;
    color: #B8860B;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main {
    background: #fff;
    position: relative;
    z-index: 2;
}

/* Tagline Section */
.tagline {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.tagline h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.tagline p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 0;
    background: #f8f9fa;
}

.service-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.service-split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.service-split-text {
    max-width: 500px;
}

.service-split-text h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.service-split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Medical Service - Gold Background */
.medical-service .service-split-content {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
}

.medical-service .service-split-text h3::before {
    color: white;
}

/* Healthcare Service - Light Background */
.healthcare-service .service-split-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #222;
}

.healthcare-service .service-split-text h3 {
    color: #222;
    font-weight: 700;
}

.healthcare-service .service-split-text h3::before {
    color: #B8860B;
}

.healthcare-service .service-split-text p {
    color: #333;
    font-weight: 500;
}

/* Digital Service - Gold Background */
.digital-service .service-split-content {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
}

.digital-service .service-split-text h3::before {
    color: white;
}

/* Enhanced Button Styles */
.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-gold:hover::before {
    left: 0;
}

.btn-outline-gold:hover {
    color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-gold:active {
    transform: translateY(0);
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #333;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-white:hover::before {
    left: 0;
}

.btn-outline-white:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.3);
}

.btn-outline-white:active {
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #9a7212;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #bab4a5;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    background: transparent;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(154, 114, 18, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Consultation Button Section */
.consultation-section {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
}

.btn-consultation {
    background: transparent;
    border: 2px solid #977011;
    color: #977011;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #977011;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-consultation:hover::before {
    left: 0;
}

.btn-consultation:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(151, 112, 17, 0.4);
}

.btn-consultation:active {
    transform: translateY(-1px);
}

/* CTA Section */
.cta {
    padding: 1rem 0;
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    text-align: center;
    color: #fff;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-logo {
    width: 230px;
    height: 230px;
    object-fit: cover;
}

.cta-info {
    text-align: center;
}

.cta-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-address {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-tel {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #fff;
}

/* Footer Navigation */
.footer-nav {
    background: #fff;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: #B8860B;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}



/* Enhanced Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
}

.fade-up {
    transform: translateY(50px);
}

.fade-up.animate-in {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-left.animate-in {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(50px);
}

.fade-right.animate-in {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.8);
}

.scale-in.animate-in {
    transform: scale(1);
}

.hero-content {
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Header - removed problematic animations */

/* Scrolling Carousel */
.scrolling-carousel {
    background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 50%, #B8860B 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 2px 10px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(212, 175, 55, 0.3);
}

.scrolling-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.scrolling-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.8), transparent);
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: calc(12 * (300px + 20px)); /* 12 items * (width + gap) - 3 sets of 4 */
    will-change: transform;
    transform: translateX(0);
}

.carousel-item {
    position: relative;
    min-width: 300px;
    width: 300px;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 15px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-item:hover .carousel-overlay {
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.95));
    padding: 20px;
}

.carousel-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    text-align: center;
}



/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 默认使用视差效果 */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.page-header .container {
    text-align: center;
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    text-align: center;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: center;
    margin: 0 auto;
}

/* 桌面端保持视差效果 */
@media (min-width: 769px) {
    .page-header {
        background-attachment: fixed !important;
    }
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #fff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #00d4ff;
    color: #fff;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Active navigation link */
.nav-menu a.active {
    color: #05869f;
}

/* Company Overview - Y's NEXT Style */
.company-overview {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.company-overview h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.company-intro {
    max-width: 800px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.company-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #333;
}

.company-intro p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.company-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.company-images img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.mv-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mv-icon svg {
    color: #B8860B;
    transition: transform 0.3s ease;
}

.mv-item:hover .mv-icon svg {
    transform: scale(1.1);
}

.mv-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.mv-item p {
    color: #666;
    line-height: 1.6;
}

/* Company Info */
.company-info {
    padding: 0 0 5rem 0;
    background: #fff;
}

.company-info h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

/* Company Table Styles - Y's NEXT Style */
.company-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1rem;
    border: 2px solid #ccc;
}

.company-table th {
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    text-align: left;
    border: 1px solid #ccc;
    width: 120px;
    vertical-align: top;
}

.company-table td {
    padding: 1.2rem 1.5rem;
    color: #666;
    line-height: 1.8;
    border: 1px solid #ccc;
    vertical-align: top;
    background: #fff;
}

/* Mobile Company Table Styles */
@media (max-width: 768px) {
    .company-table,
    .company-table thead,
    .company-table tbody,
    .company-table th,
    .company-table td,
    .company-table tr {
        display: block;
    }

    .company-table {
        border: 2px solid #ccc;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .company-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .company-table th {
        display: none;
    }

    .company-table tr {
        border: none;
        margin-bottom: 0;
    }

    .company-table tr::before {
        content: attr(data-label);
        display: block;
        background: #f5f5f5;
        color: #333;
        font-weight: 600;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #ccc;
    }

    .company-table td {
        border: none;
        border-bottom: 1px solid #ccc;
        position: relative;
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        background: #fff;
        color: #666;
        box-sizing: border-box;
    }

    .company-table tr[data-label="事業内容"] td {
        text-align: left;
    }

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

/* Consultation Button */
.consultation-button {
    text-align: center;
    margin-top: 3rem;
}

.btn-consultation {
    display: inline-block;
    background: #B8860B;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(184, 134, 11, 0.3);
}

.btn-consultation:hover {
    background: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
    color: #fff;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

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

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-title {
    color: #00d4ff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* History Section */
.history-section {
    padding: 5rem 0;
    background: #fff;
}

.history-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00d4ff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: #00d4ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 0 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #00d4ff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }

    .nav-menu {
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 0.4rem;
    }

    .nav-menu {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    /* 防止移动端横向滚动 */
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
        overflow-x: hidden;
    }

    .top-header {
        display: none; /* Hide top header on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
        backdrop-filter: blur(15px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        color: #333;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(184, 134, 11, 0.1);
        color: #B8860B;
    }

    .logo-image {
        width: 150px;
    }

    /* Sticky Navigation Mobile - 完全隐藏 */
    .sticky-nav {
        display: none !important;
    }

    .sticky-nav-links {
        display: none;
    }

    .sticky-nav-container {
        padding: 8px 1rem;
        justify-content: space-between;
    }

    .sticky-logo img {
        height: 30px;
    }

    .sticky-line-btn {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    /* Mobile Back to Top Button */
    .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .back-to-top svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Hide elements that should not show on mobile */
    .hero-subtitle {
        display: none;
    }

    /* Mobile navigation adjustments - 固定在顶部 */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(184, 134, 11, 0.2);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        padding: 0.8rem 1rem;
        justify-content: space-between;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-logo .logo {
        width: 50px;
        height: 50px;
    }

    .nav-logo .mobile-company-name {
        display: block !important;
        font-size: 1rem !important;
        color: #bcac71 !important;
        font-weight: 400 !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .nav-logo a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    /* Mobile hero adjustments */
    .hero {
        height: 70vh;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .logo-image {
        width: min(120px, 30vw);
        max-width: 120px;
        min-width: 80px;
    }

    /* 移动端logo光扫特效调整 */
    .logo-image::before {
        animation: logoSweep 3.5s ease-in-out infinite;
        animation-delay: 2.5s;
        width: 60%;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }

    /* Mobile services adjustments */
    .service-split-content {
        padding: 30px 20px;
    }

    .service-split-text h3 {
        font-size: 1.8rem;
    }

    .service-split-text h3::before {
        font-size: 2rem;
        margin-right: 10px;
    }

    .service-split-text p {
        font-size: 1rem;
    }

    /* Mobile Mission & Vision adjustments */
    .mv-item {
        padding: 2rem;
    }

    .mv-icon svg {
        width: 40px;
        height: 40px;
    }

    .mv-item h3 {
        font-size: 1.3rem;
    }

    .mv-item p {
        font-size: 0.95rem;
    }

    /* Mobile consultation button */
    .btn-consultation {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Mobile carousel adjustments */
    .scrolling-carousel {
        padding: 20px 0;
        overflow: hidden; /* 确保不产生横向滚动条 */
    }

    .carousel-container {
        overflow: hidden; /* 确保不产生横向滚动条 */
    }



    .hero-subtitle {
        font-size: 1.2rem;
    }

    .service-split {
        flex-direction: column;
        min-height: auto;
    }

    .service-split-image {
        height: 300px;
    }

    .service-split-content {
        padding: 40px 30px;
    }

    .service-split-text h3 {
        font-size: 2rem;
    }

    .service-split-text h3::before {
        font-size: 2.2rem;
    }

    .tagline h2 {
        font-size: 2rem;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-nav {
        padding: 0.8rem 0;
    }

    .footer-bottom {
        padding: 0.8rem 0;
    }

    .nav-logo .logo {
        width: 50px;
        height: 50px;
        /* 优化移动端SVG渲染 */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        shape-rendering: geometricPrecision;
    }

    /* Page Header Mobile Fixes */
    .page-header {
        padding: 6rem 0 3rem !important;
        background-attachment: scroll !important; /* 移动端使用scroll避免iOS问题 */
        background-size: cover !important;
        background-position: center !important;
        min-height: 50vh;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .page-header .container {
        text-align: center !important;
        width: 100% !important;
    }

    .page-header h1 {
        font-size: 2.5rem;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
    }

    .page-header p {
        font-size: 1rem;
        text-align: center !important;
        margin: 0 auto !important;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .company-overview h1 {
        font-size: 2.5rem;
    }

    .company-intro h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .company-intro p {
        font-size: 0.9rem;
    }

    /* Company Images Mobile */
    .company-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .company-images img {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

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

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

    /* Company Table Mobile - Y's NEXT Style */
    .company-table {
        margin: 0;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }

    .company-table th {
        width: 100px;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .company-table td {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Mobile consultation button */
    .btn-consultation {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

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

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline-content {
        margin: 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Carousel adjustments for mobile */
    .carousel-item {
        min-width: 250px;
        width: 250px;
        height: 150px;
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .carousel-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .carousel-overlay {
        padding: 10px 15px;
    }

    .carousel-overlay h3 {
        font-size: 1rem;
    }

    .carousel-track {
        width: calc(12 * (250px + 20px)); /* 12 items for mobile - 3 sets of 4 */
        max-width: none; /* 确保不超出容器 */
    }

    /* CTA Section Mobile */
    .cta-logo {
        width: 100px;
        height: 100px;
    }

    .cta-info h2 {
        font-size: 1.6rem;
    }

    .cta-address {
        font-size: 1rem;
    }

    .cta-tel {
        font-size: 1.2rem;
    }

    /* Access Section Mobile - 基础样式 */
    .access-section {
        padding: 3rem 0;
    }

    .access-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .address-section h3 {
        font-size: 1.3rem;
    }

    .transport-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .line {
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
}

/* Access Section */
.access-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.access-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 3rem;
    position: relative;
}

.access-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #DAA520);
    border-radius: 2px;
}

.access-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.access-map {
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-info {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 1rem;
}

.address-section .address {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.address-section .website a {
    color: #B8860B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.address-section .website a:hover {
    color: #DAA520;
    text-decoration: underline;
}

.transport-section h4,
.car-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.line {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-right: 0.8rem;
    min-width: 50px;
    text-align: center;
}

.line.jr {
    background: #00B04F;
}

.line.metro {
    background: #0078BA;
}

.line.tokyu {
    background: #E60012;
}

.line.keio {
    background: #E85298;
}

.car-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.parking-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Map Section */
.map-section {
    padding: 0;
    margin: 0;
    background: #fff;
    width: 100%;
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 0;
    padding: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

/* ===== MEDICAL CONSULTING PAGE STYLES ===== */

/* Service Tags */
.medical-services .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    justify-content: flex-start;
}

.medical-services .service-tag {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.medical-services .service-tag:hover,
.medical-services .service-tag.active {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Service Content */
.medical-services .service-content {
    margin-top: 1rem;
}

.medical-services .service-detail {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.medical-services .service-detail.active {
    display: block;
    opacity: 1;
}

.medical-services .service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #000;
    border-radius: 20px;
    padding: 3rem;
    min-height: 500px;
}

.medical-services .service-image {
    width: 100%;
}

.medical-services .service-text {
    color: #fff;
}

.medical-services .service-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.medical-services .service-text h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.medical-services .service-text p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
}

/* Responsive for Medical Services */
@media (max-width: 768px) {
    .medical-services .service-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.8rem;
        max-width: 100%;
        padding: 0 1rem;
        flex-direction: column;
    }

    .medical-services .service-tag {
        flex: 0 0 auto !important;
        text-align: center !important;
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
        min-height: auto !important;
        border-width: 1px !important;
    }

    .medical-services .service-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .medical-services .service-text h3 {
        font-size: 1.8rem;
    }

    .medical-services .service-text h4 {
        font-size: 1.1rem;
    }
}

/* Tagline Section */
.tagline {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.tagline h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.tagline p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 1000px;
    margin: 0 auto;
}

/* Medical Services Overview */
.medical-services {
    padding: 4rem 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.medical-services h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tag {
    background: transparent;
    border: 2px solid #B8860B;
    color: #B8860B;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-tag:hover {
    background: #B8860B;
    color: #000;
    transform: translateY(-2px);
}

/* HR Section */
.hr-section {
    padding: 5rem 0;
    background: #fff;
}

.hr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hr-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hr-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 1rem;
}

.hr-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.hr-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

/* Startup Support Section */
.startup-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.startup-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    text-align: center;
    margin-bottom: 3rem;
}

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

.startup-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.startup-item:hover {
    transform: translateY(-5px);
}

.startup-icon {
    margin-bottom: 1.5rem;
}

.startup-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.startup-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* M&A Section */
.ma-section {
    padding: 5rem 0;
    background: #fff;
}

.ma-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8860B;
    text-align: center;
    margin-bottom: 3rem;
}

.ma-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.ma-item {
    padding: 2rem;
    border-left: 4px solid #B8860B;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
}

.ma-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.ma-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Responsive Design for Medical Consulting */
@media (max-width: 768px) {
    .tagline h2 {
        font-size: 2rem;
    }

    .medical-services h2 {
        font-size: 2rem;
    }

    .service-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.8rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .service-tag {
        flex: 0 0 auto !important;
        text-align: center !important;
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        line-height: 1.2 !important;
        min-height: auto !important;
        border-width: 1px !important;
    }

    .hr-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .ma-content {
        grid-template-columns: 1fr;
    }

    .startup-section h2,
    .ma-section h2 {
        font-size: 2rem;
    }

    /* Access Section Mobile - 最终覆盖 */
    .access-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        grid-template-columns: none !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }

    .access-info {
        padding: 2rem !important;
        order: 1 !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .access-map {
        height: 400px !important;
        order: 2 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .access-map iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        display: block !important;
    }

    /* 强制覆盖任何可能的grid布局 */
    .container .access-layout {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* 额外的移动端强制样式 - 在所有其他样式之后 */
@media screen and (max-width: 768px) {
    .access-section .access-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem !important;
    }

    .access-section .access-info {
        order: 1 !important;
        width: 100% !important;
    }

    .access-section .access-map {
        order: 2 !important;
        width: 100% !important;
        height: 400px !important;
    }
}

/* 小屏幕设备额外优化 */
@media screen and (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 1.5rem 0.5rem;
    }

    .logo-image {
        width: min(100px, 25vw) !important;
        max-width: 100px !important;
        min-width: 70px !important;
    }

    /* 调整hero section的padding */
    .hero-logo {
        gap: 1rem;
    }

    /* Page Header小屏幕优化 */
    .page-header {
        padding: 5rem 0 2.5rem !important;
        min-height: 45vh !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-attachment: scroll !important; /* 小屏幕使用scroll */
    }

    .page-header .container {
        text-align: center !important;
        width: 100% !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
    }

    .page-header p {
        font-size: 0.95rem !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
}

/* 超小屏幕设备 */
@media screen and (max-width: 360px) {
    .logo-image {
        width: min(90px, 22vw) !important;
        max-width: 90px !important;
        min-width: 60px !important;
    }

    .hero {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 1rem 0.5rem;
    }

    /* Page Header超小屏幕优化 */
    .page-header {
        padding: 4rem 0 2rem !important;
        min-height: 40vh !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-attachment: scroll !important; /* 超小屏幕使用scroll */
    }

    .page-header .container {
        text-align: center !important;
        width: 100% !important;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
        margin: 0 auto 0.5rem auto !important;
        text-align: center !important;
    }

    .page-header p {
        font-size: 0.9rem !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    /* Service Tags 小屏幕优化 */
    .service-tags {
        gap: 0.6rem !important;
        padding: 0 0.5rem !important;
    }

    .service-tag {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.7rem !important;
    }

    .medical-services .service-tag {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
}
