/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 背景视频 */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* 视频遮罩层 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: transparent !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 导航栏滚动后的样式 */
.navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 始终白色背景的导航栏（用于非首页） */
.navbar-white {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-white .nav-link {
    color: #333 !important;
}

.navbar-white .nav-link:hover,
.navbar-white .nav-link.active {
    color: #000 !important;
}

.navbar-white .language-switcher .btn-link {
    color: #333 !important;
}

.navbar-white .language-switcher .btn-link:hover {
    color: #000 !important;
    opacity: 0.7;
}

.navbar-white .language-switcher .dropdown-toggle::after {
    border-top-color: #333;
}

.navbar-white .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
}

/* 语言切换器 */
.language-switcher {
    margin-left: 1rem;
    flex-shrink: 0;
    z-index: 1001;
}

.language-switcher .btn-link {
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    white-space: nowrap;
    border: none;
    background: transparent;
}

.language-switcher .btn-link:hover {
    opacity: 0.7;
}

.language-switcher .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
}

.language-switcher .dropdown-menu {
    min-width: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    background: #fff;
    z-index: 1002;
}

.language-switcher .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    color: #333;
    cursor: pointer;
}

.language-switcher .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
}

.language-switcher .dropdown-item:active {
    background-color: #e9ecef;
    color: #000;
}

/* 导航菜单 */
.navbar-collapse {
    flex-grow: 0;
    margin-right: 1rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

.navbar-nav {
    gap: 1.5rem;
    align-items: center;
    margin: 0;
}

/* 导航链接颜色 - 透明背景时 */
.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0.5rem 0 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

/* 导航栏滚动后，链接颜色变为深色 */
.navbar.scrolled .nav-link {
    color: #333 !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #000 !important;
}

.navbar.scrolled .language-switcher .btn-link {
    color: #333 !important;
}

.navbar.scrolled .language-switcher .btn-link:hover {
    color: #000 !important;
    opacity: 0.7;
}

.navbar.scrolled .language-switcher .dropdown-toggle::after {
    border-top-color: #333;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero 内容 */
.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* 联系我们按钮 */
.btn-contact {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff !important;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c047 0%, #c9a428 100%);
    color: #fff;
}

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

/* 移动端适配 */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar .container-fluid {
        flex-wrap: nowrap;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .navbar .d-flex {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }
    
    .language-switcher {
        margin-left: 0;
        order: 1;
        flex-shrink: 0;
    }
    
    .language-switcher .btn-link {
        padding: 0.2rem 0.35rem;
        font-size: 0.8rem;
    }
    
    .language-switcher .dropdown-menu {
        font-size: 0.85rem;
    }
    
    .language-switcher .dropdown-item {
        padding: 0.4rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .navbar-toggler {
        order: 2;
        flex-shrink: 0;
        margin-left: 0.5rem;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
    }
    
    .navbar.scrolled .navbar-collapse {
        background: #fff;
    }
    
    .navbar-nav {
        gap: 0.5rem;
        margin-top: 0;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0 !important;
        color: #333 !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #000 !important;
    }
    
    /* 移动端语言切换器始终在顶部右侧 */
    .navbar .d-flex {
        position: relative;
    }
    
    /* 确保语言切换器在移动端不会被菜单遮挡 */
    .language-switcher {
        position: relative;
        z-index: 1002;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-contact {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 500px;
    }
    
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .language-switcher {
        margin-left: 0;
    }
    
    .language-switcher .btn-link {
        padding: 0.15rem 0.3rem;
        font-size: 0.75rem;
    }
    
    .language-switcher .dropdown-menu {
        font-size: 0.8rem;
    }
    
    .language-switcher .dropdown-item {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.4rem;
        margin-left: 0.25rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-contact {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* 确保视频在移动端也能正常播放 */
@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    opacity: 1;
}

.content-section .section-title,
.content-section .section-description,
.content-section img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-section .section-title.fade-in,
.content-section .section-description.fade-in,
.content-section img.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.content-section img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-section .row {
    min-height: 400px;
}

.content-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Content Sections 移动端适配 */
@media (max-width: 991.98px) {
    .content-section {
        padding: 3rem 0;
    }
    
    .content-section .row {
        min-height: auto;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .content-section {
        padding: 2.5rem 0;
    }
    
    .content-section .row {
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
    position: relative;
}

.team-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.team-section-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Cards */
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.team-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.team-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

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

.team-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.team-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

/* Team Section 移动端适配 */
@media (max-width: 991.98px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .team-section-description {
        font-size: 1rem;
    }
    
    .team-card-image {
        height: 220px;
    }
    
    .team-card-content {
        padding: 1.5rem;
    }
    
    .team-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .team-section {
        padding: 2.5rem 0;
    }
    
    .team-section-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .team-section-description {
        font-size: 0.95rem;
    }
    
    .team-card-image {
        height: 200px;
    }
    
    .team-card-content {
        padding: 1.25rem;
    }
    
    .team-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .team-card-description {
        font-size: 0.9rem;
    }
}

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

.advantages-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.advantages-section-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.advantages-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.advantages-item-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.advantages-section img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.advantages-section img.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.advantages-item-title,
.advantages-item-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.advantages-item-title.fade-in,
.advantages-item-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Advantages Section 移动端适配 */
@media (max-width: 991.98px) {
    .advantages-section {
        padding: 3rem 0;
    }
    
    .advantages-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .advantages-section-description {
        font-size: 1rem;
    }
    
    .advantages-item-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .advantages-item-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .advantages-section {
        padding: 2.5rem 0;
    }
    
    .advantages-section-title {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .advantages-section-description {
        font-size: 0.95rem;
    }
    
    .advantages-item-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .advantages-item-description {
        font-size: 0.95rem;
    }
}

/* Footer */
.site-footer {
    background-color: #556b2f;
    padding: 2rem 0;
    margin-top: 0;
}

.footer-text {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

/* Footer 移动端适配 */
@media (max-width: 575.98px) {
    .site-footer {
        padding: 1.5rem 0;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
}

/* Business Page Styles */
.business-hero-section {
    padding: 6rem 0 4rem;
    background: #fff;
    margin-top: 70px; /* 为固定导航栏留出空间 */
}

.business-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.business-hero-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 400;
    margin-bottom: 0;
}

.business-content-section {
    padding: 5rem 0;
}

.business-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.business-section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-business {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff !important;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-business:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e5c047 0%, #c9a428 100%);
    color: #fff !important;
}

.business-content-section img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.business-content-section img.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.business-section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-section-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.business-section-title,
.business-section-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.business-section-title.fade-in,
.business-section-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Business Page 移动端适配 */
@media (max-width: 991.98px) {
    .business-hero-section {
        padding: 6rem 0 3rem;
    }
    
    .business-hero-title {
        font-size: 2.2rem;
    }
    
    .business-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .business-content-section {
        padding: 3rem 0;
    }
    
    .business-section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .business-section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .business-section-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .business-hero-section {
        padding: 5rem 0 2.5rem;
    }
    
    .business-hero-title {
        font-size: 1.75rem;
    }
    
    .business-hero-subtitle {
        font-size: 1rem;
    }
    
    .business-content-section {
        padding: 2.5rem 0;
    }
    
    .business-section-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .business-section-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-business {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
    
    .business-section-image {
        height: 250px;
    }
}

/* Professional Consulting Section */
.professional-consulting-section {
    padding: 5rem 0;
    background: rgb(55, 60, 50);
}

.professional-consulting-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.professional-consulting-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.professional-consulting-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.professional-consulting-item-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
}

.professional-consulting-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.professional-consulting-image.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.professional-consulting-item-title,
.professional-consulting-item-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.professional-consulting-item-title.fade-in,
.professional-consulting-item-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.professional-consulting-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Professional Consulting Section 移动端适配 */
@media (max-width: 991.98px) {
    .professional-consulting-section {
        padding: 4rem 0;
    }
    
    .professional-consulting-title {
        font-size: 2rem;
    }
    
    .professional-consulting-subtitle {
        font-size: 1.1rem;
    }
    
    .professional-consulting-item-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .professional-consulting-item-description {
        font-size: 1rem;
    }
    
    .professional-consulting-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .professional-consulting-section {
        padding: 3rem 0;
    }
    
    .professional-consulting-title {
        font-size: 1.75rem;
    }
    
    .professional-consulting-subtitle {
        font-size: 1rem;
    }
    
    .professional-consulting-item-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .professional-consulting-item-description {
        font-size: 0.95rem;
    }
    
    .professional-consulting-image {
        height: 250px;
    }
}

/* FinTech Future Section */
.fintech-future-section {
    padding: 5rem 0;
    background: #fff;
}

.fintech-future-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.fintech-future-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0;
    font-weight: 400;
}

.fintech-future-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.fintech-future-item-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.fintech-future-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fintech-future-image.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fintech-future-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fintech-future-item-title,
.fintech-future-item-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fintech-future-item-title.fade-in,
.fintech-future-item-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* FinTech Future Section 移动端适配 */
@media (max-width: 991.98px) {
    .fintech-future-section {
        padding: 4rem 0;
    }
    
    .fintech-future-title {
        font-size: 2rem;
    }
    
    .fintech-future-subtitle {
        font-size: 1.1rem;
    }
    
    .fintech-future-item-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .fintech-future-item-description {
        font-size: 1rem;
    }
    
    .fintech-future-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .fintech-future-section {
        padding: 3rem 0;
    }
    
    .fintech-future-title {
        font-size: 1.75rem;
    }
    
    .fintech-future-subtitle {
        font-size: 1rem;
    }
    
    .fintech-future-item-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .fintech-future-item-description {
        font-size: 0.95rem;
    }
    
    .fintech-future-image {
        height: 250px;
    }
}

/* Data-Driven Insights Section */
.data-driven-insights-section {
    padding: 5rem 0;
    background: rgb(55, 60, 50);
}

.data-driven-insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.data-driven-insights-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.data-driven-insights-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.data-driven-insights-item-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
}

.data-driven-insights-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.data-driven-insights-image.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.data-driven-insights-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.data-driven-insights-item-title,
.data-driven-insights-item-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.data-driven-insights-item-title.fade-in,
.data-driven-insights-item-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Data-Driven Insights Section 移动端适配 */
@media (max-width: 991.98px) {
    .data-driven-insights-section {
        padding: 4rem 0;
    }
    
    .data-driven-insights-title {
        font-size: 2rem;
    }
    
    .data-driven-insights-subtitle {
        font-size: 1.1rem;
    }
    
    .data-driven-insights-item-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .data-driven-insights-item-description {
        font-size: 1rem;
    }
    
    .data-driven-insights-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .data-driven-insights-section {
        padding: 3rem 0;
    }
    
    .data-driven-insights-title {
        font-size: 1.75rem;
    }
    
    .data-driven-insights-subtitle {
        font-size: 1rem;
    }
    
    .data-driven-insights-item-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .data-driven-insights-item-description {
        font-size: 0.95rem;
    }
    
    .data-driven-insights-image {
        height: 250px;
    }
}

/* News Page Styles */
.news-hero-section {
    padding: 6rem 0 4rem;
    background: #f5f5f5;
    margin-top: 70px; /* 为固定导航栏留出空间 */
}

.news-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.news-hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.news-content-section {
    padding: 4rem 0;
    background: #f5f5f5;
    position: relative;
}

.news-content-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
}

.news-content-section.bg-light {
    background: #fafafa;
}

/* 新闻内容区域图片统一大小 */
.news-content-section .col-lg-6:first-child {
    display: flex;
    align-items: center;
}

.news-content-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-content-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-item-date {
    font-size: 1rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.news-item-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-item-link {
    color: #d4af37;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-item-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

.news-content-section img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.news-content-section img.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.news-item-title,
.news-item-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-item-title.fade-in,
.news-item-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* News Page 移动端适配 */
@media (max-width: 991.98px) {
    .news-hero-section {
        padding: 5rem 0 3rem;
    }
    
    .news-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .news-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .news-content-section {
        padding: 3rem 0;
    }
    
    .news-item-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .news-item-date {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .news-item-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .news-content-section img {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .news-hero-section {
        padding: 4rem 0 2.5rem;
    }
    
    .news-hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .news-hero-subtitle {
        font-size: 1rem;
    }
    
    .news-content-section {
        padding: 2.5rem 0;
    }
    
    .news-item-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .news-item-date {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .news-item-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .news-item-link {
        font-size: 0.95rem;
    }
    
    .news-content-section img {
        height: 250px;
    }
}

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

.analysis-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.analysis-section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.analysis-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.analysis-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.analysis-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.analysis-card:hover .analysis-card-image img {
    transform: scale(1.1);
}

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

.analysis-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex: 1;
}

.analysis-card-date {
    font-size: 0.95rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 0;
}

/* Analysis Section 移动端适配 */
@media (max-width: 991.98px) {
    .analysis-section {
        padding: 3rem 0;
    }
    
    .analysis-section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .analysis-section-subtitle {
        font-size: 1.1rem;
    }
    
    .analysis-card-image {
        height: 200px;
    }
    
    .analysis-card-content {
        padding: 1.25rem;
    }
    
    .analysis-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .analysis-section {
        padding: 2.5rem 0;
    }
    
    .analysis-section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .analysis-section-subtitle {
        font-size: 1rem;
    }
    
    .analysis-card-image {
        height: 180px;
    }
    
    .analysis-card-content {
        padding: 1rem;
    }
    
    .analysis-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .analysis-card-date {
        font-size: 0.9rem;
    }
}

/* Success Cases Section */
.success-cases-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e6c865 0%, #d4af37 100%);
    position: relative;
}

.success-cases-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.success-cases-subtitle {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.success-case-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.success-case-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.success-cases-section img {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.success-cases-section img.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.success-case-title,
.success-case-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.success-case-title.fade-in,
.success-case-description.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Success Cases Section 移动端适配 */
@media (max-width: 991.98px) {
    .success-cases-section {
        padding: 3rem 0;
    }
    
    .success-cases-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .success-cases-subtitle {
        font-size: 1.1rem;
    }
    
    .success-case-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .success-case-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .success-cases-section {
        padding: 2.5rem 0;
    }
    
    .success-cases-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .success-cases-subtitle {
        font-size: 1rem;
    }
    
    .success-case-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .success-case-description {
        font-size: 0.95rem;
    }
}

/* Contact Page Hero Section */
.contact-hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-top: 70px;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0;
}

/* Custom Accordion Styles */
.accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.accordion-item:first-child .accordion-button {
    border-radius: 8px 8px 0 0;
}

.accordion-item:first-child .accordion-button.collapsed {
    border-radius: 8px;
}

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

.accordion-item:last-child .accordion-button.collapsed {
    border-radius: 8px;
}

.accordion-item:last-child .accordion-collapse:not(.collapse) {
    border-radius: 0 0 8px 8px;
}

.accordion-button {
    background: linear-gradient(135deg, #e6c865 0%, #d4af37 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.accordion-button.collapsed {
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(0) invert(1);
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: #fff;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    border-radius: 0 0 8px 8px;
}

.accordion-body p {
    margin-bottom: 0;
    color: #555;
}

/* FAQ Section 移动端适配 */
@media (max-width: 991.98px) {
    .contact-hero-section {
        padding: 5rem 0 3rem;
        margin-top: 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .contact-hero-section {
        padding: 4rem 0 2.5rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Customer Reviews Section */
.customer-reviews-section {
    padding: 5rem 0;
    background: rgb(190, 159, 65);
}

.customer-reviews-section .container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.customer-reviews-section .container > .row:first-child {
    background: transparent;
    padding: 0 0 2rem 0;
    margin: 0;
    border-radius: 0;
}

.customer-reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.customer-reviews-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
}

.customer-reviews-section .container > .row:last-child {
    padding: 0;
    margin: 0;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.review-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.review-card:hover .review-card-image img {
    transform: scale(1.05);
}

.review-card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.review-card-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Customer Reviews Section 移动端适配 */
@media (max-width: 991.98px) {
    .customer-reviews-section {
        padding: 4rem 0;
    }
    
    .customer-reviews-section .container {
        padding: 0;
    }
    
    .customer-reviews-section .container > .row:first-child {
        padding: 0 0 1.5rem 0;
        margin: 0;
    }
    
    .customer-reviews-title {
        font-size: 2rem;
    }
    
    .customer-reviews-subtitle {
        font-size: 1.1rem;
    }
    
    .review-card-image {
        height: 220px;
    }
    
    .review-card-content {
        padding: 1.5rem;
    }
    
    .review-card-title {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }
    
    .review-card-description {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .customer-reviews-section {
        padding: 3rem 0;
    }
    
    .customer-reviews-section .container {
        padding: 0;
    }
    
    .customer-reviews-section .container > .row:first-child {
        padding: 0 0 1.25rem 0;
        margin: 0;
    }
    
    .customer-reviews-title {
        font-size: 1.75rem;
    }
    
    .customer-reviews-subtitle {
        font-size: 1rem;
    }
    
    .review-card-image {
        height: 200px;
    }
    
    .review-card-content {
        padding: 1.25rem;
    }
    
    .review-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .review-card-description {
        font-size: 0.95rem;
    }
}

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

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-form-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-form .form-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.btn-submit {
    background: linear-gradient(135deg, #e6c865 0%, #d4af37 100%);
    color: #1a1a1a;
    border: none;
    padding: 0.875rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #d4af37;
    width: 30px;
    text-align: center;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Contact Form Section 移动端适配 */
@media (max-width: 991.98px) {
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .contact-form-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .form-label {
        font-size: 1rem;
    }
    
    .contact-form .form-control {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 0.75rem 2.5rem;
        font-size: 1rem;
    }
    
    .contact-info-item {
        font-size: 1rem;
    }
    
    .contact-info-item i {
        font-size: 1.25rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

