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

body {
    font-family: 'Noto Sans TC', 'Playfair Display', serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: #FEFEFE;
    overflow-x: hidden;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 導航欄 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 164, 132, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

@media (min-width: 769px) {
    .nav-container {
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        transform: none !important;
        flex-direction: row !important;
        padding: 0 !important;
    }
    
    .nav-link {
        padding: 10px 0 !important;
        border-bottom: none !important;
        text-align: left !important;
    }
}

.nav-logo h2 {
    color: #C4A484;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 11px;
    color: #8B8B8B;
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover {
    color: #C4A484;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C4A484;
    transition: width 0.3s ease;
}

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

/* 手機端漢堡菜單按鈕 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #C4A484;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 英雄區塊 */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 241, 235, 0.9) 0%, rgba(249, 247, 244, 1) 100%);
    background-image: url('background picture/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.brand-logo {
    font-size: 5rem;
    font-weight: 700;
    color: #C4A484;
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(196, 164, 132, 0.3);
}

.brand-type {
    display: block;
    font-size: 1.2rem;
    color: #8B8B8B;
    font-weight: 400;
    letter-spacing: 8px;
    margin-top: 10px;
}

.brand-slogan {
    font-size: 0.9rem;
    color: #8B8B8B;
    margin-top: 30px;
    line-height: 1.8;
    letter-spacing: 1px;
}

/* 英雄區塊按鈕 */
.hero-cta {
    margin-top: 60px;
    text-align: center;
}

.welcome-btn {
    background: linear-gradient(135deg, #C4A484 0%, #E8D5C4 100%);
    border: none;
    color: white;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 35px;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 164, 132, 0.4);
}

.welcome-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(196, 164, 132, 0.3);
}

/* 區塊標題 */
.section-header, .upgrade-header, .services-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title, .services-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2C2C2C;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.since-text {
    font-size: 1rem;
    color: #C4A484;
    font-weight: 400;
    letter-spacing: 1px;
    margin-left: 20px;
}

/* 品牌升級區塊 */
.upgrade-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F4F1EB 0%, #FEFEFE 100%);
    position: relative;
}

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

.upgrade-section .section-title {
    font-size: 2.5rem;
    color: #8B8B8B;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    display: inline-block;
    position: relative;
}

.upgrade-section .section-title::before {
    content: "品牌升級";
    font-weight: 700;
    color: #6B6B6B;
    margin-right: 30px;
    font-size: 2.5rem;
}

.upgrade-section .since-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #A8A8A8;
    letter-spacing: 1px;
}

.upgrade-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

/* 上方橢圓形圖片區域 */
.upgrade-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}

.oval-image-container {
    position: relative;
    width: 800px;
    height: 500px;
    border-radius: 250px 0 0 250px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 164, 132, 0.3);
}

.oval-image {
    width: 100%;
    height: 100%;
    background-image: url('background picture/11.jpg');
    background-size: cover;
    background-position: center;
}



/* 下方內容區域 */
.upgrade-text {
    padding: 40px 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 164, 132, 0.2);
    box-shadow: 0 10px 40px rgba(196, 164, 132, 0.1);
    position: relative;
    z-index: 2;
}

.upgrade-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 25px;
    color: #2C2C2C;
    letter-spacing: 0.5px;
}

.upgrade-description strong {
    color: #C4A484;
    font-weight: 600;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .upgrade-visual {
        justify-content: flex-end !important;
        padding-right: 5px;
        height: 300px;
        align-items: center;
    }
    
    .oval-image-container {
        width: 400px;
        height: 300px;
        border-radius: 150px 0 0 150px;
        margin-left: auto;
        margin-right: 0;
        transform: translateX(10px);
    }
    
    .upgrade-text {
        padding: 25px 10px;
        margin: 0 5px;
        width: calc(100% - 10px);
        max-width: none;
    }
}

/* 品牌理念區塊 */
.concept-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 247, 244, 0.8) 100%);
    background-image: url('background picture/12.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

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

.concept-section .section-title {
    font-size: 2.5rem;
    color: #8B8B8B;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    display: inline-block;
    position: relative;
}

.concept-section .section-title::before {
    content: "品牌理念";
    font-weight: 700;
    color: #6B6B6B;
    margin-right: 30px;
    font-size: 2.5rem;
}

.concept-section .since-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #A8A8A8;
    letter-spacing: 1px;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.concept-visual {
    background-image: url('background picture/12.jpg');
    background-size: cover;
    background-position: center bottom;
    border-radius: 30px;
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 164, 132, 0.3);
}

.concept-text {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    color: #2C2C2C;
    letter-spacing: 0.5px;
}

/* 品牌使命區塊 */
.mission-section {
    padding: 120px 0 60px 0;
    background: linear-gradient(135deg, rgba(249, 247, 244, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-image: url('background picture/5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

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

.mission-section .section-title {
    font-size: 2.5rem;
    color: #8B8B8B;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    display: inline-block;
    position: relative;
}

.mission-section .section-title::before {
    content: "品牌使命";
    font-weight: 700;
    color: #6B6B6B;
    margin-right: 30px;
    font-size: 2.5rem;
}

.mission-section .since-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #A8A8A8;
    letter-spacing: 1px;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.9);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.problem-card {
    text-align: center;
    padding: 40px 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(196, 164, 132, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 164, 132, 0.1);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 164, 132, 0.15);
}

.problem-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
}

.problem-dry { background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%); }
.problem-spots { background: linear-gradient(135deg, #F0D5B8 0%, #E8C5A0 100%); }
.problem-acne { background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B0 100%); }
.problem-wrinkles { background: linear-gradient(135deg, #F5E6D3 0%, #E0D0C0 100%); }
.problem-sensitive { background: linear-gradient(135deg, #F0D5B8 0%, #E8C5A0 100%); }

.problem-card h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #2C2C2C;
    font-family: 'Playfair Display', serif;
}

/* 專注解決肌膚6大問題 - 淺灰標題 */
.problems-title-dark {
    text-align: center !important;
    font-size: 2.5rem !important;
    color: #8B8B8B !important;
    margin-bottom: 80px;
    font-weight: 600 !important;
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 2px;
    position: relative !important;
    z-index: 10 !important;
    text-shadow: none !important;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.solution-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(196, 164, 132, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(196, 164, 132, 0.1);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 164, 132, 0.1);
}

.solution-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.solution-item h4 {
    font-size: 1.2rem;
    color: #2C2C2C;
    font-weight: 400;
    letter-spacing: 1px;
}

.commitment-text {
    text-align: center;
    font-size: 1rem;
    color: #8B8B8B;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 2;
    position: relative;
    z-index: 10;
}

/* 服務項目區塊 */
.services-section {
    padding: 60px 0 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 247, 244, 0.9) 100%);
    background-image: url('background picture/6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
}

.services-banner {
    background: rgba(196, 164, 132, 0.08);
    padding: 40px 60px;
    border-radius: 20px;
    border: 2px solid rgba(196, 164, 132, 0.15);
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    white-space: nowrap;
}

.services-subtitle {
    font-size: 0.9rem;
    color: #8B8B8B;
    letter-spacing: 2px;
}

.team-info {
    font-size: 1rem;
    color: #8B8B8B;
    line-height: 1.8;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* 服務展示區域 */
.services-showcase {
    margin: 80px 0;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 164, 132, 0.1);
}

/* 第一個服務展示區塊 - 調整頂部邊距 */
.services-showcase:first-child {
    margin-top: 30px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-left {
    position: relative;
}

.showcase-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 164, 132, 0.3);
    height: 450px;
}

.showcase-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.showcase-image-main:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(196, 164, 132, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px 30px;
}

.image-overlay h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.showcase-right {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.showcase-text {
    position: relative;
    z-index: 10;
}

.showcase-text h3 {
    font-size: 2.2rem;
    color: #2C2C2C;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.showcase-text p {
    font-size: 1.1rem;
    color: #8B8B8B;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.showcase-text p:first-of-type {
    font-size: 1.3rem;
    color: #C4A484;
    font-weight: 500;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.showcase-features {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(196, 164, 132, 0.1) 0%, rgba(196, 164, 132, 0.05) 100%);
    color: #C4A484;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid rgba(196, 164, 132, 0.2);
}

.showcase-description {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(196, 164, 132, 0.2);
}

.showcase-description p {
    font-size: 0.95rem;
    color: #A8A8A8;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* 第二個展示區域的特定樣式 */
.showcase-highlight {
    font-size: 1.3rem !important;
    color: #C4A484 !important;
    font-weight: 500 !important;
    margin-bottom: 18px !important;
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
}

.showcase-description-text {
    font-size: 1.1rem !important;
    color: #8B8B8B !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
    letter-spacing: 0.3px !important;
}

.services-grid {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #C4A484;
    margin: 15px auto;
}

.service-item h4 {
    font-size: 1rem;
    color: #2C2C2C;
    font-weight: 400;
    letter-spacing: 1px;
}

/* 品質服務區塊 */
.quality-section {
    padding: 120px 0 120px 0;
    background: linear-gradient(135deg, #F4F1EB 0%, #FEFEFE 100%);
    position: relative;
}

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

.quality-section .section-title {
    font-size: 2.5rem;
    color: #8B8B8B;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
    display: inline-block;
    position: relative;
}

.quality-section .section-title::before {
    content: "服務承諾";
    font-weight: 700;
    color: #6B6B6B;
    margin-right: 30px;
    font-size: 2.5rem;
}

.quality-section .since-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #A8A8A8;
    letter-spacing: 1px;
}





.quality-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 60px 40px;
    background: rgba(196, 164, 132, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(196, 164, 132, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 164, 132, 0.1);
}

.feature-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.feature-item h4 {
    font-size: 1.4rem;
    color: #2C2C2C;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-subtitle {
    font-size: 0.8rem;
    color: #C4A484;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.6;
}

.feature-desc {
    color: #8B8B8B;
    line-height: 1.8;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* 肌膚測量區塊 */
.skin-measurement-section {
    padding: 60px 0 120px 0;
    background: linear-gradient(135deg, rgba(196, 164, 132, 0.1) 0%, rgba(249, 247, 244, 0.8) 100%);
    background-image: url('background picture/14.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 500px;
}

.skin-measurement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.75);
}

.measurement-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.measurement-overlay {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(196, 164, 132, 0.2);
    box-shadow: 0 20px 60px rgba(196, 164, 132, 0.15);
}

.measurement-title {
    font-size: 2.8rem;
    color: #2C2C2C;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.measurement-subtitle {
    font-size: 1.6rem;
    color: #C4A484;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    margin-bottom: 50px;
    line-height: 1.4;
}

.measurement-cta {
    margin-top: 40px;
}

.measurement-text {
    font-size: 1.8rem;
    color: #C4A484;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(196, 164, 132, 0.3);
    position: relative;
}

/* 聯絡我們區塊 */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(196, 164, 132, 0.1) 0%, rgba(249, 247, 244, 0.8) 100%);
    background-image: url('background picture/8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 247, 244, 0.85);
}

.contact-section .section-title {
    color: #6B6B6B;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

/* 主要聯絡卡片 */
.main-contact-card {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    background: rgba(196, 164, 132, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(196, 164, 132, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(196, 164, 132, 0.1);
}

.main-contact-card h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #C4A484;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

/* 主卡片三欄布局 */
.contact-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #2C2C2C !important;
}

.contact-column {
    text-align: center;
    position: relative;
}

/* 添加分隔線 */
.contact-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #2C2C2C !important;
    opacity: 0.8;
}

.contact-column h4 {
    font-size: 1.2rem;
    color: #6B6B6B;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-weight: 900;
}

.contact-column p {
    color: #8B8B8B;
    line-height: 1.6;
    font-size: 1rem;
}

/* 底部電話資訊 */
.contact-phone {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #2C2C2C;
    font-weight: 500;
}

.phone-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}



/* 社交媒體圖標 */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 164, 132, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(196, 164, 132, 0.3);
}

.social-link:hover {
    background: #C4A484;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 164, 132, 0.3);
}

.social-link:hover svg path,
.social-link:hover svg rect,
.social-link:hover svg circle,
.social-link:hover svg ellipse {
    stroke: white;
    fill: white;
}

/* 微信圖標特殊hover樣式 */
.social-link.wechat:hover svg rect {
    fill: #C4A484;
}

.social-link.wechat:hover svg ellipse,
.social-link.wechat:hover svg circle {
    fill: white;
}

/* 頁腳 */
.footer {
    background: #2C2C2C;
    color: #FEFEFE;
    text-align: center;
    padding: 60px 0;
}

.footer p {
    margin-bottom: 15px;
    color: #C4A484;
    letter-spacing: 1px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
    }
    
    .brand-logo {
        font-size: 3rem;
    }
    
    .brand-type {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    /* 修復手機端背景圖片顯示問題 */
    .hero-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        min-height: 100vh;
    }
    
    .welcome-btn {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .upgrade-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .upgrade-visual {
        height: 400px;
        margin-bottom: 40px;
        display: flex;
        justify-content: flex-end !important;
        align-items: center;
        padding-right: 5px;
    }
    
    .oval-image-container {
        width: 400px;
        height: 300px;
        border-radius: 150px 0 0 150px;
        margin-left: auto;
        margin-right: 0;
        transform: translateX(10px);
    }
    
    .curved-image {
        border-radius: 0 0 200px 200px;
        width: 100%;
        transform: translateX(0);
    }
    
    .upgrade-text {
        height: auto;
        padding: 30px 20px;
        margin: 0 2px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(196, 164, 132, 0.1);
        width: calc(100% - 4px);
        max-width: none;
    }
    
    .concept-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
    
    .problem-card {
        padding: 20px 10px;
        height: 200px;
    }
    
    .problem-image {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .problem-card h3 {
        font-size: 1.2rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
        .service-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* 服務展示區域手機端 */
    .services-showcase {
        margin: 60px 0;
        padding: 40px 20px;
    }

    /* 第一個服務展示區塊手機端 - 調整頂部邊距 */
    .services-showcase:first-child {
        margin-top: 30px;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-image-main {
        height: 350px;
    }

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

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

    .showcase-text p:first-of-type {
        font-size: 1.1rem;
    }

    .showcase-features {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .feature-tag {
        padding: 6px 15px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .showcase-highlight {
        font-size: 1.1rem !important;
    }

    .showcase-description-text {
        font-size: 1rem !important;
    }

    .quality-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quality-section {
        padding: 60px 0 120px 0;
    }
    
    .contact-three-columns {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 30px;
        padding-bottom: 35px;
    }
    
    /* 手機端改為水平分隔線 */
    .contact-column:not(:last-child)::after {
        right: auto;
        top: auto;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background-color: #2C2C2C !important;
    }
    
    .contact-phone {
        margin-top: 35px;
        font-size: 1rem;
    }
    
    .contact-column {
        padding: 25px 15px;
    }
    
    .main-contact-card {
        padding: 50px 30px;
    }

    /* 肌膚測量區塊手機端 */
    .skin-measurement-section {
        padding: 80px 0;
        min-height: 400px;
    }

    .measurement-content {
        padding: 40px 0;
    }

    .measurement-overlay {
        padding: 40px 20px;
        margin: 0 20px;
    }

    .measurement-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .measurement-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .measurement-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding: 15px 0;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.15s ease-out;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(196, 164, 132, 0.2);
        text-align: center;
        transition: font-size 0.15s ease, color 0.15s ease;
        background: none;
        border-radius: 0;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .nav-link:active {
        font-size: 1.08em;
        color: #C4A484;
        background: none;
        transform: none;
        box-shadow: none;
    }
    
    .nav-link:focus {
        outline: none;
        background: none;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .section-title, .services-title {
        font-size: 1.6rem;
        white-space: nowrap;
    }
    
    .services-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .problems-title-dark {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 2.5rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .problem-card {
        padding: 15px 8px;
    }
    
    .problem-image {
        width: 35px;
        height: 35px;
    }
    
    .problem-card h3 {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .services-title {
        font-size: 1.3rem !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px;
    }
    
    .services-subtitle {
        font-size: 0.6rem !important;
        letter-spacing: 0.8px !important;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-item {
        padding: 25px 15px;
    }
    
    .service-item h4 {
        font-size: 0.9rem;
    }
    
    .showcase-features {
        gap: 8px;
    }
    
    .feature-tag {
        padding: 5px 12px;
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    .welcome-btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }

    /* 第一個服務展示區塊超小屏幕 - 調整頂部邊距 */
    .services-showcase:first-child {
        margin-top: 10px;
    }
}

/* 滾動行為 */
html {
    scroll-behavior: auto;
}

/* 手機端快速滾動與觸控優化 */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
    
    /* 移除所有觸控點擊效果 */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    /* 特別針對導航鏈接 */
    .nav-link {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        outline: none;
    }
    
    .nav-link::-moz-focus-inner {
        border: 0;
        padding: 0;
    }
}

/* 自定義滾動條 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F9F7F4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #C4A484 0%, #E8D5C4 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #B8956F 0%, #C4A484 100%);
} 