/* Global Styles */
:root {
    --primary-color: #f8b500;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
}



.language-switcher .btn {
    margin-left: 3px;
    border-radius: 20px;
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-switcher .btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.language-switcher .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Hero Section with Video Background */
.hero-section {
    min-height: 70vh; /* 从100vh改为70vh，减少视频展示高度 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Add top padding to avoid navbar overlap */
}

/* Hero Logo in top-left corner */
.hero-logo {
    position: absolute;
    top: 100px;
    left: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; /* 确保超出部分被裁剪 */
}

.youtube-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100vw !important; /* 使用视口宽度确保横向填满 */
    height: auto !important;
    min-width: 100vw !important;
    min-height: 150vh !important; /* 增加高度让上下部分被裁剪 */
    z-index: 1;
    object-fit: cover;
    /* 确保视频横向填满，纵向居中 */
    max-width: none !important;
    max-height: none !important;
}

/* 本地视频背景样式 */
.video-background-content {
    position: absolute !important;
    top: 0 !important; /* PC端从上排列 */
    left: 0 !important; /* PC端从左排列 */
    transform: none !important; /* PC端不使用居中变换 */
    width: 100% !important; /* PC端使用宽度100% */
    height: auto !important;
    min-width: 100% !important;
    min-height: 100% !important;
    z-index: 1;
    object-fit: cover;
    max-width: none !important;
    max-height: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 改为轻微黑色蒙版，让文字更清晰 */
    z-index: 1;
}

/* Navigation */
.navbar {
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-nav {
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    margin: 0 3px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 8px 12px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 14px;
    min-width: fit-content;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(248, 181, 0, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.navbar-brand {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.3);
}

/* Responsive Navigation */
@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 10px !important;
    }
    
    .language-switcher .btn {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        margin-left: 6px;
    }
    
    .navbar-nav {
        gap: 2px;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        padding: 12px 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 6px 15px !important;
        font-size: 14px;
    }
    
    .navbar-nav .nav-item {
        margin: 2px 0;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        margin: 0 8px;
    }
    
    .language-switcher .btn {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .social-icons {
        margin: 10px 0 0 0;
        padding: 8px 0;
    }
    
    .language-switcher {
        margin: 8px 0 0 0;
        padding: 6px 0;
    }
    

}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    .navbar-collapse {
        background: rgba(44, 62, 80, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 0;
        margin: 0;
        padding: 15px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: none;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .navbar-collapse .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 4px 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 20px !important;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
        font-weight: 500;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(248, 181, 0, 0.15);
        border-color: var(--primary-color);
    }
    
    .social-icons {
        justify-content: center;
        margin: 15px 0 0 0;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .social-icon {
        margin: 0 12px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.2s ease;
    }
    
    .social-icon:hover {
        background: var(--primary-color);
        transform: scale(1.05);
    }
    
    .language-switcher {
        justify-content: center;
        margin: 10px 0 0 0;
        padding: 8px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .language-switcher .btn {
        margin: 0 6px;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }
    
    .language-switcher .btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .language-switcher .btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    /* 汉堡菜单按钮优化 */
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }
    
    .navbar-toggler:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .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(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo:hover .logo-w img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(248, 181, 0, 0.6));
}

.logo:hover .logo-w::after {
    opacity: 1;
}

.logo:hover .logo-main {
    background: linear-gradient(45deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-w {
    margin-right: 12px;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-w img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(248, 181, 0, 3));
}

.logo-w::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(248, 181, 0, 0.2) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}



.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #bdc3c7;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* Mobile Hero Logo - Only visible on mobile */
.hero-logo-mobile {
    display: none; /* Hidden by default on desktop */
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
    margin-top: -100px;
}

.hero-logo-mobile img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.3));
}

/* Mobile styles - override desktop styles */
@media (max-width: 767.98px) {
    .hero-logo-mobile {
        display: block !important;
    }
}

.hero-slogan {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-btn {
    background: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
}

.contact-btn:hover {
    background: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 181, 0, 4);
}

/* Global Vision Section */
.global-vision-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.world-map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.world-map {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.world-map:hover {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lightbulb, .location-pin {
    position: absolute;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.lightbulb {
    color: #ffd700;
}

.location-pin {
    color: #e74c3c;
}

.lightbulb-1 { top: 20%; left: 30%; }
.lightbulb-2 { top: 50%; left: 60%; }
.lightbulb-3 { top: 70%; left: 20%; }
.location-pin-1 { top: 40%; left: 70%; }
.location-pin-2 { top: 80%; left: 50%; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.vision-content {
    padding: 2rem;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Professional Team Section */
.professional-team-section {
    background: white;
    padding: 5rem 0;
}

.team-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.team-content {
    padding: 2rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.team-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Innovative Strategy Section */
.innovative-strategy-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.strategy-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.strategy-content {
    padding: 2rem;
}

.strategy-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.strategy-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Investment Philosophy Section */
.investment-philosophy-section {
    background: #e9ecef;
    padding: 5rem 0;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

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

.philosophy-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.philosophy-card-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.philosophy-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.philosophy-card-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.service-icon img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Insights Section */
.insights-section {
    background: white;
}

.insight-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.insight-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.insight-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--bg-dark);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    padding: 15px;
}

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

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(248, 181, 0, 0.25);
    color: white;
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #e6a800;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .vision-title, .team-title, .strategy-title {
        font-size: 2rem;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .language-switcher .btn {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-section {
        padding-top: 70px;
        min-height: 60vh; /* 移动端减少Hero Section高度，与视频显示更匹配 */
    }
    
    /* 移动端视频高度调整 */
    .youtube-video {
        min-height: 140vh !important; /* 移动端增加视频最小高度，让视频显示更大 */
        min-width: 110vw !important; /* 减少宽度，让更多视频内容显示 */
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.1) !important; /* 减少缩放，显示更多内容 */
    }
    
    /* 移动端本地视频优化 */
    .video-background-content {
        top: 50% !important; /* 移动端恢复垂直居中 */
        left: 50% !important; /* 移动端恢复水平居中 */
        width: auto !important; /* 移动端使用自动宽度 */
        height: 100% !important; /* 移动端使用高度100% */
        min-width: auto !important;
        min-height: 100% !important;
        transform: translate(-50%, -50%) !important; /* 移动端恢复居中变换 */
    }
    
    /* Logo responsive adjustments */
    .logo-w img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
    
    /* Content responsive adjustments */
    .vision-content, .team-content, .strategy-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Philosophy responsive adjustments */
    .philosophy-title {
        font-size: 2rem;
    }
    
    .philosophy-subtitle {
        font-size: 1.1rem;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    /* Service Areas responsive adjustments */
    .service-areas-title {
        font-size: 2rem;
    }
    
    .service-areas-subtitle {
        font-size: 1.1rem;
    }
    
    .service-area-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh; /* 小屏幕设备进一步减少Hero Section高度 */
    }
    
    .youtube-video {
        min-height: 130vh !important; /* 小屏幕设备增加视频高度，让视频显示更大 */
        min-width: 115vw !important; /* 减少宽度，让更多视频内容显示 */
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.15) !important; /* 减少缩放，显示更多内容 */
    }
    
    /* 小屏幕设备本地视频优化 */
    .video-background-content {
        top: 50% !important; /* 小屏幕设备恢复垂直居中 */
        left: 50% !important; /* 小屏幕设备恢复水平居中 */
        width: auto !important; /* 小屏幕设备使用自动宽度 */
        height: 100% !important; /* 小屏幕设备使用高度100% */
        min-width: auto !important;
        min-height: 100% !important;
        transform: translate(-50%, -50%) !important; /* 小屏幕设备恢复居中变换 */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .vision-content, .team-content, .strategy-content {
        padding: 1rem;
        text-align: center;
    }
    
    /* Logo small screen adjustments */
    .logo-w img {
        height: 35px;
    }
    
    .logo-main {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    /* Title small screen adjustments */
    .vision-title, .team-title, .strategy-title {
        font-size: 1.8rem;
    }
    
    /* Philosophy small screen adjustments */
    .philosophy-title {
        font-size: 1.8rem;
    }
    
    .philosophy-subtitle {
        font-size: 1rem;
    }
    
    .philosophy-card {
        padding: 1rem;
    }
    
    /* Service Areas small screen adjustments */
    .service-areas-title {
        font-size: 1.8rem;
    }
    
    .service-areas-subtitle {
        font-size: 1rem;
    }
    
    .service-area-card {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Service Areas Section */
.service-areas-section {
    background: white;
    padding: 5rem 0;
}

.service-areas-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-areas-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.service-area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.service-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-area-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.service-area-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-area-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.philosophy-card-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-area-card .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-area-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Services Page Styles */
.services-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Add top padding to avoid navbar overlap, matching index.html */
}

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

.services-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.investment-management-section {
    background: #5D4037;
    color: white;
    padding: 4rem 0;
}

.investment-management-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.investment-management-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-cards-section {
    background: #5D4037;
    padding: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.service-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.service-card-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.feature-tag:hover {
    transform: scale(1.05);
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.contact-item {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-item h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .services-hero-section {
        padding-top: 70px; /* Responsive padding for mobile, matching index.html */
    }
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .investment-management-title {
        font-size: 2.2rem;
    }
    
    .investment-management-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card-title {
        font-size: 1.4rem;
    }
    
    .service-card-image img {
        height: 200px;
    }
}

/* Personalized Investment Solutions Section */
.personalized-solutions-section {
    background-color: #5D4037;
    color: white;
}

.personalized-solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.personalized-solutions-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.personalized-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.personalized-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.personalized-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.personalized-card-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.personalized-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.personalized-card-btn {
    background-color: #8D6E63;
    border-color: #8D6E63;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.personalized-card-btn:hover {
    background-color: #6D4C41;
    border-color: #6D4C41;
    transform: translateY(-2px);
}

/* Customer Support Section */
.customer-support-section {
    background-color: #424242;
    color: white;
}

.customer-support-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.customer-support-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.customer-support-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.customer-support-form .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    color: #333;
}

.customer-support-form .form-control:focus {
    background-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: #333;
}

.customer-support-form .btn {
    background-color: #8D6E63;
    border-color: #8D6E63;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.customer-support-form .btn:hover {
    background-color: #6D4C41;
    border-color: #6D4C41;
    transform: translateY(-2px);
}

/* Responsive adjustments for personalized and support sections */
@media (max-width: 768px) {
    .personalized-solutions-title,
    .customer-support-title {
        font-size: 2rem;
    }
    
    .personalized-solutions-subtitle,
    .customer-support-subtitle {
        font-size: 1rem;
    }
    
    .personalized-card {
        padding: 1rem;
    }
    
    .personalized-card-image img {
        height: 150px;
    }
    
    .customer-support-form {
        padding: 1.5rem;
    }
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    .contact-subtitle {
        font-size: 1.1rem;
    }
    .contact-item {
        padding: 1.5rem 1rem;
    }
}

/* Our Services Section */
.our-services-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.our-services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.our-services-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    text-align: center;
}

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

.service-icon img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-card-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.service-card-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #e6a800;
    transform: scale(1.05);
}

.service-highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    background: linear-gradient(135deg, var(--primary-color), #e6a800);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.highlight-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Insights Page Styles */
.insights-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.insights-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.insights-hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.insights-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.insights-hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Market Analysis Section */
.market-analysis-section {
    background-color: #f8f9fa;
}

.market-analysis-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.market-analysis-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.analysis-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.analysis-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

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

.analysis-card-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.analysis-card-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.analysis-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.analysis-card-btn {
    background-color: #8D6E63;
    border-color: #8D6E63;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.analysis-card-btn:hover {
    background-color: #6D4C41;
    border-color: #6D4C41;
    transform: translateY(-2px);
}

/* Investment Secrets Section */
.investment-secrets-section {
    background-color: #8D6E63;
    color: white;
}

.investment-secrets-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.investment-secrets-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.investment-secret-item {
    margin-bottom: 3rem;
}

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

.secret-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.secret-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.secret-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.report-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.report-card-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.report-date {
    color: #8D6E63;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(141, 110, 99, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.report-card-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.report-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.report-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.report-tag {
    background: #f8f9fa;
    color: #8D6E63;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.report-card-footer {
    margin-top: auto;
}

/* Industry Dynamics Section */
.industry-dynamics-section {
    background-color: #8D6E63;
    color: white;
}

.industry-dynamics-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.industry-dynamics-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.industry-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.industry-card-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.news-feed {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: #8D6E63;
    line-height: 1;
}

.news-date .month {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.news-content {
    flex: 1;
}

.news-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-summary {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for insights page */
@media (max-width: 768px) {
    .insights-hero-section {
        padding-top: 70px;
        min-height: 60vh;
    }
    
    .insights-hero-title {
        font-size: 2.5rem;
    }
    
    .insights-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .market-analysis-title,
    .research-reports-title,
    .market-news-title {
        font-size: 2rem;
    }
    
    .market-analysis-subtitle,
    .research-reports-subtitle,
    .market-news-subtitle {
        font-size: 1rem;
    }
    
    .analysis-card {
        padding: 1rem;
    }
    
    .analysis-card-image img {
        height: 150px;
    }
    
    .report-card {
        padding: 1.5rem;
    }
    
    .news-feed {
        padding: 1.5rem;
    }
    
    .news-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .news-date {
        min-width: auto;
    }
}

/* ===== Cases Page Styles ===== */

/* Case Card Styles */
.case-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.case-image {
    height: 200px;
    overflow: hidden;
}

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

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

.case-content {
    padding: 1.5rem;
}

.case-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.case-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* Testimonial Card Styles */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.testimonial-item {
    margin-bottom: 3rem;
}

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

.testimonial-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.partner-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.partner-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

/* Social Media Section */
.social-media-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Add top padding to avoid navbar overlap */
}

.social-media-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.social-media-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.social-media-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.social-media-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.social-media-btn {
    background: #8D6E63;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.social-media-btn:hover {
    background: #6D4C41;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Us Section */
.contact-us-section {
    background-color: #8D6E63;
    color: white;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-input,
.contact-textarea {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    color: #333;
    font-size: 1rem;
}

.contact-input:focus,
.contact-textarea:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
}

.contact-submit-btn {
    background: #D7CCC8;
    border: none;
    color: #333;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #BCAAA4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-position {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-rating {
    font-size: 1.1rem;
}

/* ===== Contact Page Styles ===== */

/* Contact Info Card Styles */
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

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

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styles */
.contact-form-container {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-form .form-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(248, 181, 0, 0.25);
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
}

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

.contact-form .form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.contact-form .form-check-label a {
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Office Hours Styles */
.office-hours {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.office-hours h3 {
    color: var(--secondary-color);
    font-weight: 600;
}

.office-hours p {
    margin-bottom: 0.5rem;
    color: #666;
}

.office-hours .text-muted {
    font-size: 0.9rem;
}

/* Office Card Styles */
.office-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

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

.office-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Hero Background Image Styles */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

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

/* Responsive Styles for Cases and Contact Pages */
@media (max-width: 768px) {
    .case-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card,
    .office-card {
        margin-bottom: 1rem;
    }
    
    .office-hours {
        padding: 1.5rem;
    }
    
    .case-content {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .case-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .case-content {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
}
