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

:root {
    /* 简约时尚配色 - 现代中性色调 */
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #000000;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar .container {
    max-width: 100%;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.quote-content .section-title::after {
    display: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    position: relative;
    gap: 40px;
    max-width: 100%;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 20px;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-image:hover {
    opacity: 0.8;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name-zh {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.brand-name-en {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    gap: 6px;
    background: var(--bg-light);
    padding: 5px;
    border-radius: 8px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-dark);
}

.lang-btn.active {
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* 下拉菜单 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

/* WhatsApp图标保持绿色 */
.dropdown-item[href*="wa.me"] .dropdown-icon,
.dropdown-item[href*="whatsapp"] .dropdown-icon {
    color: #25D366;
}

/* Facebook图标保持蓝色 */
.dropdown-item[href*="facebook"] .dropdown-icon {
    color: #1877F2;
}

/* TikTok图标保持原色 */
.dropdown-item[href*="tiktok"] .dropdown-icon {
    color: #000000;
}

/* YouTube图标保持红色 */
.dropdown-item[href*="youtube"] .dropdown-icon {
    color: #FF0000;
}

/* 小红书图标显示红色 */
.dropdown-item[href*="xiaohongshu"] .dropdown-icon {
    color: #ff0003;
    fill: #ff0003;
}

/* 电话和邮箱图标 */
.dropdown-item[href^="tel:"] .dropdown-icon,
.dropdown-item[href^="mailto:"] .dropdown-icon {
    color: var(--text-dark);
}

.dropdown-item:hover .dropdown-icon {
    opacity: 0.8;
    transform: scale(1.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* WhatsApp导航按钮 */
.whatsapp-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-nav-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.whatsapp-nav-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-phone {
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* 首页Hero区域 */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fafafa;
    overflow: hidden;
}

/* 房间背景图片 - 开灯效果 */
.room-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    filter: brightness(0.1);
    animation: turnOnLight 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.1s;
    will-change: opacity, filter;
    transform: translateZ(0);
}

@keyframes turnOnLight {
    0% {
        opacity: 0;
        filter: brightness(0.1);
    }
    20% {
        opacity: 0.2;
        filter: brightness(0.3);
    }
    40% {
        opacity: 0.4;
        filter: brightness(0.5);
    }
    60% {
        opacity: 0.6;
        filter: brightness(0.75);
    }
    80% {
        opacity: 0.8;
        filter: brightness(0.95);
    }
    100% {
        opacity: 0.9;
        filter: brightness(1.1);
    }
}

/* 点状纹理背景 */
.dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* 圆形气泡背景 - 已注释 */
/*
.bubble-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
}

.bubble-icon {
    font-size: 40px;
    line-height: 1;
    filter: none;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* 图标位置分布 - 8个图标随机均匀分布在整个页面 */
/*
.bubble:nth-child(1) {
    top: 18%;
    left: 15%;
}
.bubble:nth-child(1) .bubble-icon {
    font-size: 44px;
}

.bubble:nth-child(2) {
    top: 25%;
    right: 15%;
}
.bubble:nth-child(2) .bubble-icon {
    font-size: 42px;
}

.bubble:nth-child(3) {
    top: 35%;
    left: 8%;
}
.bubble:nth-child(3) .bubble-icon {
    font-size: 36px;
}

.bubble:nth-child(4) {
    top: 60%;
    right: 25%;
    transform: translateY(-50%);
}
.bubble:nth-child(4) .bubble-icon {
    font-size: 30px;
}

.bubble:nth-child(5) {
    top: 45%;
    left: 23%;
}
.bubble:nth-child(5) .bubble-icon {
    font-size: 30px;
}

.bubble:nth-child(6) {
    top: 58%;
    right: 10%;
}
.bubble:nth-child(6) .bubble-icon {
    font-size: 39px;
}

.bubble:nth-child(7) {
    bottom: 22%;
    left: 15%;
}
.bubble:nth-child(7) .bubble-icon {
    font-size: 43px;
}

.bubble:nth-child(8) {
    bottom: 12%;
    right: 18%;
}
.bubble:nth-child(8) .bubble-icon {
    font-size: 50px;
}
*/

/* 气泡背景响应式设计 - 已注释 */
/*
@media (max-width: 768px) {
    .bubble {
        width: 60px;
        height: 60px;
    }
    
    .bubble-icon {
        font-size: 28px;
    }
    
    重新分布图标，整个页面均匀分布
    .bubble:nth-child(1) {
        top: 8%;
        left: 5% !important;
    }
    .bubble:nth-child(2) {
        top: 14%;
        right: 6% !important;
    }
    .bubble:nth-child(3) {
        top: 25%;
        left: 4% !important;
    }
    .bubble:nth-child(4) {
        top: 30%;
        right: 5% !important;
    }
    .bubble:nth-child(5) {
        bottom: 35%;
        left: 6% !important;
    }
    .bubble:nth-child(6) {
        bottom: 30%;
        right: 5% !important;
    }
    .bubble:nth-child(7) {
        bottom: 20%;
        left: 4% !important;
    }
    .bubble:nth-child(8) {
        bottom: 15%;
        right: 6% !important;
    }
    .bubble:nth-child(1) .bubble-icon {
        font-size: 32px !important;
    }
    .bubble:nth-child(2) .bubble-icon {
        font-size: 34px !important;
    }
    .bubble:nth-child(3) .bubble-icon {
        font-size: 30px !important;
    }
    .bubble:nth-child(4) .bubble-icon {
        font-size: 33px !important;
    }
    .bubble:nth-child(5) .bubble-icon {
        font-size: 31px !important;
    }
    .bubble:nth-child(6) .bubble-icon {
        font-size: 35px !important;
    }
    .bubble:nth-child(7) .bubble-icon {
        font-size: 29px !important;
    }
    .bubble:nth-child(8) .bubble-icon {
        font-size: 32px !important;
    }
    
    .dot-pattern {
        opacity: 0.3;
        background-size: 20px 20px;
    }
}

@media (max-width: 480px) {
    .bubble {
        width: 50px;
        height: 50px;
    }
    
    .bubble-icon {
        font-size: 24px;
    }
    
    移动端显示6个图标，整个页面均匀分布
    .bubble:nth-child(1) {
        top: 10%;
        left: 6% !important;
    }
    .bubble:nth-child(2) {
        top: 20%;
        right: 8% !important;
    }
    .bubble:nth-child(3) {
        top: 35%;
        left: 4% !important;
    }
    .bubble:nth-child(4) {
        bottom: 40%;
        right: 15% !important;
    }
    .bubble:nth-child(5) {
        bottom: 25%;
        left: 10% !important;
    }
    .bubble:nth-child(6) {
        bottom: 15%;
        right: 6% !important;
    }
    .bubble:nth-child(7),
    .bubble:nth-child(8) {
        display: none;
    }
    
    .bubble:nth-child(1) .bubble-icon {
        font-size: 28px !important;
    }
    .bubble:nth-child(2) .bubble-icon {
        font-size: 30px !important;
    }
    .bubble:nth-child(3) .bubble-icon {
        font-size: 26px !important;
    }
    .bubble:nth-child(4) .bubble-icon {
        font-size: 29px !important;
    }
    .bubble:nth-child(5) .bubble-icon {
        font-size: 27px !important;
    }
    .bubble:nth-child(6) .bubble-icon {
        font-size: 31px !important;
    }
    
    移动端只显示4个气泡
    .bubble:nth-child(5),
    .bubble:nth-child(6) {
        display: none;
    }
    
    .dot-pattern {
        opacity: 0.25;
        background-size: 16px 16px;
    }
}
*/

@media (max-width: 480px) {
    /* 移动端文字优化 */
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* 呼吸灯背景 */
.breathing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(26, 26, 26, 0.02) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 50%,
        rgba(26, 26, 26, 0.02) 0%,
        transparent 50%
    );
    animation: breathe 8s ease-in-out infinite;
    opacity: 0.5;
    will-change: opacity, transform;
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* 几何网格背景 */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.02;
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 26, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    will-change: transform;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* 设计线条装饰 */
.design-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
}

.line {
    position: absolute;
    background: linear-gradient(
        to right,
        transparent,
        rgba(26, 26, 26, 0.3),
        transparent
    );
    animation: lineFlow 15s ease-in-out infinite;
}

.line-1 {
    width: 2px;
    height: 40%;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 50%;
    top: 15%;
    right: 20%;
    animation-delay: -5s;
    animation-duration: 18s;
}

.line-3 {
    width: 30%;
    height: 2px;
    bottom: 25%;
    left: 10%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(26, 26, 26, 0.3),
        transparent
    );
    animation-delay: -10s;
    animation-duration: 20s;
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0.08;
        transform: translateY(0) scaleY(1);
    }
    50% {
        opacity: 0.15;
        transform: translateY(-20px) scaleY(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.1);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 101;
    text-align: center;
    color: var(--text-dark);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4),
                 0 4px 20px rgba(0, 0, 0, 0.3),
                 0 0 30px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-title:hover {
    transform: translateY(-1px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: #f5f5f5;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35),
                 0 0 20px rgba(0, 0, 0, 0.25);
}

.hero-subtitle:hover {
    color: var(--text-dark);
    text-shadow: 0 0 15px rgba(26, 26, 26, 0.12),
                 0 0 30px rgba(26, 26, 26, 0.08);
    transform: translateY(-1px);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.8;
    transition: all 0.4s ease;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3),
                 0 0 15px rgba(0, 0, 0, 0.2);
}

.hero-content:hover .hero-description {
    text-shadow: 0 0 10px rgba(107, 107, 107, 0.1);
    color: var(--text-dark);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3),
                0 0 20px rgba(26, 26, 26, 0.15);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--text-dark);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.5; }
}

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

/* 设计案例 */
.design-section {
    background: var(--bg-light);
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.design-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: var(--transition);
}

.design-card:hover .image-placeholder {
    transform: scale(1.1);
}

.modern-kitchen { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.classic-style { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.nordic-style { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.chinese-style { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.industrial-style { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.minimalist-style { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

.design-info {
    padding: 25px;
}

.design-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.design-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.design-card:hover .design-info p {
    white-space: normal;
    overflow: visible;
}

/* 客户案例 */
.cases-section {
    background: var(--bg-white);
}

.cases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-item {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.case-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.case-content {
    padding: 30px;
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.case-location {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.case-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.case-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.case-stats span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 工廠與展廳 */
.factory-section {
    background: linear-gradient(180deg, #fffaf5 0%, #f5f7fa 100%);
}

.factory-intro {
    display: flex;
    gap: 40px;
    align-items: stretch;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-top: 30px;
    flex-wrap: wrap;
}

.factory-text {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.factory-text p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.factory-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.factory-points li {
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
    line-height: 1.7;
    transition: var(--transition);
}

.factory-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.factory-points li:hover::before {
    transform: scale(1.1);
}
.factory-points li:hover {
    color: var(--primary-color);
}

.factory-gallery {
    display: flex;
    gap: 15px;
    flex: 1 1 280px;
    min-width: 260px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.gallery-column img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-column img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.factory-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 25px rgba(38, 50, 56, 0.15);
}

.advantage-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.advantage-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.location-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
}

.location-header {
    margin-bottom: 15px;
}

.location-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.location-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.location-address {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    gap: 8px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    transition: var(--transition);
}

.location-address::before {
    content: '📍';
}

.location-address:hover {
    background: rgba(26, 115, 232, 0.1);
    color: #1a73e8;
    box-shadow: 0 4px 12px rgba(38, 50, 56, 0.12);
}

.location-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-points li {
    position: relative;
    padding-left: 22px;
    color: var(--text-light);
    line-height: 1.6;
}

.location-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.location-gallery {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.location-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.location-gallery img:hover {
    transform: scale(1.03);
}

/* 服务内容 */
.services-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 报价咨询 */
.quote-section {
    background: var(--bg-white);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.whatsapp-cta {
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.form-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    background: var(--bg-light);
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.quote-form {
    margin-top: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.quote-info {
    padding: 20px;
}

.quote-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: start;
}

.info-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 页脚 */
.footer {
    background: #23282d;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.footer-tagline {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: #999;
    font-style: italic;
    margin: 0;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    color: #fff;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* 小红书图标显示为白色 */
.social-icon[href*="xiaohongshu"] img,
.contact-channel[href*="xiaohongshu"] .channel-icon img {
    filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-address {
    white-space: nowrap;
    display: block;
    margin-left: 0;
    padding-left: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-channels {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
}

.contact-channel:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.channel-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.channel-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.channel-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 小红书图标显示为白色 */
.contact-channel[href*="xiaohongshu"] .channel-icon img {
    filter: brightness(0) invert(1);
}

.channel-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar .container {
        padding: 15px 20px;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .whatsapp-nav-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .whatsapp-phone {
        display: none;
    }
    
    .whatsapp-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-brand {
        margin-left: 0;
        padding-left: 0;
    }
    
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        box-shadow: none;
        background: var(--bg-light);
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        max-height: 500px;
        padding: 8px 0;
        margin-top: 10px;
    }
    
    .dropdown-item {
        padding: 10px 20px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-contact-channels {
        justify-content: center;
        gap: 15px;
    }

    .contact-channel {
        padding: 6px 10px;
    }

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

    .logo-image {
        height: 40px;
    }

    .brand-name-zh {
        font-size: 0.95rem;
    }

    .brand-name-en {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .design-grid,
    .cases-container,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .factory-intro {
        flex-direction: column;
        padding: 30px;
    }

    .factory-badges {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .factory-badges .badge {
        flex: 1 1 45%;
    }

    .advantage-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .quote-content {
        padding: 25px;
    }
}

/* 悬浮咨询入口 */
.floating-consult-btn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-consult-btn:hover {
    transform: scale(1.1);
}

.floating-consult-btn::before {
    display: none;
}

.floating-consult-btn::after {
    content: '';
    position: absolute;
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(74, 74, 74, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1000;
}

.floating-consult-btn:hover::before,
.floating-consult-btn:hover::after {
    opacity: 1;
}

.consult-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.consult-text {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 1;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-consult-btn:hover .consult-avatar {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.consult-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.15);
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 咨询弹窗 */
.consult-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.consult-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.consult-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.consult-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.consult-modal-close:hover {
    background: rgba(26, 26, 26, 0.1);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.consult-modal-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px 20px 0 0;
}

.consult-modal-avatar {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.consult-modal-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.consult-modal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.consult-modal-body {
    padding: 30px;
}

.consult-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.consult-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.phone-btn {
    background: #4a4a4a;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 74, 74, 0.2);
}

.phone-btn:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 74, 74, 0.25);
}

.action-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.consult-form-wrapper {
    margin-top: 25px;
}

.consult-quick-form .form-group {
    margin-bottom: 15px;
}

.consult-quick-form input,
.consult-quick-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.consult-quick-form input:focus,
.consult-quick-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.consult-quick-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .floating-consult-btn {
        width: 70px;
        height: 70px;
        bottom: 60px;
        right: 20px;
    }

    .floating-consult-btn::before {
        right: auto;
        left: 50%;
        top: auto;
        bottom: calc(100% + 10px);
        transform: translateX(-50%);
    }

    .floating-consult-btn::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: calc(100% + 4px);
        transform: translateX(-50%);
        border-left-color: transparent;
        border-top-color: rgba(74, 74, 74, 0.85);
        border-bottom: none;
    }

    .consult-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .consult-modal-header {
        padding: 30px 20px 20px;
    }

    .consult-modal-avatar {
        width: 80px;
        height: 80px;
    }

    .consult-modal-header h2 {
        font-size: 1.5rem;
    }

    .consult-modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .floating-consult-btn {
        width: 60px;
        height: 60px;
        bottom: 50px;
        right: 15px;
    }
    
    .consult-text {
        font-size: 0.7rem;
        padding: 4px 8px;
        bottom: -28px;
    }
    
    .floating-consult-btn:hover .consult-text {
        bottom: -32px;
    }
    
    .whatsapp-nav-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
        margin-right: 8px;
    }
    
    .whatsapp-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .consult-quick-actions {
        gap: 12px;
    }

    .consult-action-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

