* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'Inter', sans-serif;
    background: #f5e4bc;
    color: #292823;
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
}

/* Navigation - Warm Vintage style */
.nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(245, 228, 188, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 99999 !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2dba6;
    /* 確保導航列始終可見 */
    transform: translateY(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: none !important;
    pointer-events: auto !important;
    will-change: transform;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #292823;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1000;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'Noto Sans TC', sans-serif;
    /* 強制顯示，避免被其他元素覆蓋 */
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-menu a {
    color: #45433b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a.active {
    color: #ecc979;
    font-weight: 700;
}

.nav-menu a::after {
    content: '↗';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    margin-left: 5px;
}

.nav-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    padding-top: 6rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: #292823;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #45433b;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.1rem;
    color: #45433b;
    max-width: 600px;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.hero-description strong {
    color: #292823;
    font-weight: 600;
    font-size: 1.2rem;
}

/* 爵士鼓 CSS 繪製 */
.drum-container {
    position: relative;
    width: 560px;
    height: 560px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drum-container:hover {
    transform: scale(1.05);
}

/* 旋轉文字 */
.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.rotating-text svg {
    width: 100%;
    height: 100%;
}

.rotating-text text {
    fill: #292823;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 爵士鼓主體 - 俯視圖 */
.drum-set {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
}

/* 小鼓 - 簡單線條設計 */
.snare-drum {
    position: absolute;
    width: 160px;
    height: 160px;
    background: transparent;
    border: 6px solid #292823;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.snare-drum::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid #45433b;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 鼓棒動畫 - 簡單線條 */
.drumstick-left,
.drumstick-right {
    position: absolute;
    width: 4px;
    height: 80px;
    background: #292823;
    transform-origin: top;
}

.drumstick-left {
    top: 20px;
    left: 50px;
    transform: rotate(-20deg);
    animation: drumLeft 0.8s ease-in-out infinite;
}

.drumstick-right {
    top: 20px;
    right: 50px;
    transform: rotate(20deg);
    animation: drumRight 0.8s ease-in-out infinite 0.4s;
}

@keyframes drumLeft {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes drumRight {
    0%, 100% { transform: rotate(20deg); }
    50% { transform: rotate(10deg); }
}

/* Sections */
.section {
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #292823;
    margin-bottom: 2rem;
    text-align: center;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.course-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(242, 219, 166, 0.3);
    border: 2px solid #f2dba6;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.course-item:hover {
    border-color: #ecc979;
    background: rgba(236, 201, 121, 0.2);
    transform: translateY(-5px);
}

.course-item::after {
    content: '↗';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.course-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 219, 166, 0.2);
    border: 3px solid #ecc979;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    font-size: 2.5rem;
    color: #292823;
}

/* 簡潔的音符圖標設計 */
.course-icon.piano::before {
    content: '♪';
    font-size: 2.5rem;
    font-weight: bold;
}

.course-icon.drums::before {
    content: '♫';
    font-size: 2.5rem;
    font-weight: bold;
}

.course-icon.guitar::before {
    content: '♬';
    font-size: 2.5rem;
    font-weight: bold;
}

.course-icon.electric-guitar::before {
    content: '♩';
    font-size: 2.5rem;
    font-weight: bold;
}

.course-icon.ukulele::before {
    content: '♪';
    font-size: 2rem;
    font-weight: bold;
    transform: scale(0.8);
}

.course-icon.vocal::before {
    content: '♯';
    font-size: 2.5rem;
    font-weight: bold;
}

.course-icon.bass::before {
    content: '♭';
    font-size: 2.5rem;
    font-weight: bold;
}

.course-item:hover .course-icon {
    transform: scale(1.1);
    background: rgba(236, 201, 121, 0.4);
    border-color: #292823;
    box-shadow: 0 8px 25px rgba(41, 40, 35, 0.15);
}

.course-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #292823;
    margin-bottom: 1rem;
}

.course-description {
    color: #45433b;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-info {
    color: #292823;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background: #f2dba6;
    padding: 4rem 2rem;
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #292823;
    margin-bottom: 2rem;
}

.about-text p {
    color: #45433b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 1rem 0;
    border-bottom: 2px solid #ecc979;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-list .stat-label {
    font-weight: 500;
    color: #45433b;
}

.stats-list .stat-value {
    font-weight: 700;
    color: #292823;
    font-size: 1.1rem;
}

.about-visual {
    height: 400px;
    background: #292823;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5e4bc;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 3rem 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(242, 219, 166, 0.3);
    border: 2px solid #f2dba6;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.contact-item:hover {
    border-color: #ecc979;
    background: rgba(236, 201, 121, 0.2);
}

.contact-item::after {
    content: '↗';
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: sepia(100%) saturate(60%) hue-rotate(10deg) brightness(0.9);
    /* Emoji 對齊優化 */
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /* 解決不同瀏覽器 emoji 渲染差異 */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-variant-emoji: emoji;
    /* 防止字體回退影響對齊 */
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
    /* 確保 emoji 不會被拉伸 */
    flex-shrink: 0;
}

.contact-label {
    color: #45433b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: #292823;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-value a {
    color: #292823;
    text-decoration: none;
    font-weight: 700;
}

.contact-value a:hover {
    color: #ecc979;
}

.contact-value small {
    font-weight: 400;
    font-size: 0.9rem;
    color: #45433b;
}

.contact-phone {
    color: #292823;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #ecc979;
}

/* Footer */
.footer {
    background: #292823;
    color: #f2dba6;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: #f5e4bc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #f2dba6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-media {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(245, 228, 188, 0.1);
    border: 2px solid rgba(245, 228, 188, 0.3);
    border-radius: 50%;
    color: #f2dba6;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    background: rgba(245, 228, 188, 0.2);
    border-color: #f5e4bc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* YouTube紅色 */
.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

/* Facebook藍色 */
.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

/* Instagram漸層 */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

/* Threads黑色 */
.social-link.threads:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.social-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* 更好看的圖標樣式 */
.youtube .social-icon {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.facebook .social-icon {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 24px;
}

.instagram .social-icon {
    font-size: 18px;
}

.threads .social-icon {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 20px;
}

.social-text {
    display: none;
}

/* Tooltip效果 */
.social-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #292823;
    color: #f5e4bc;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.social-link:hover::after {
    opacity: 1;
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-contact strong {
    color: #f5e4bc;
}

.footer-contact small {
    color: #d4c392;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #45433b;
    padding: 2rem;
    text-align: center;
    background: #1f1e1a;
}

.footer-bottom p {
    color: #d4c392;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: #f5e4bc;
    padding: 3rem 2rem;
}

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

.faq-item {
    background: rgba(242, 219, 166, 0.3);
    padding: 2rem;
    border-left: 4px solid #ecc979;
}

.faq-item h3 {
    color: #292823;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: #45433b;
    line-height: 1.6;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #45433b;
}

/* Section Description */
.section-description {
    text-align: center;
    color: #45433b;
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

/* Visual Content */
.visual-content {
    text-align: center;
}

.visual-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Teachers Page Styles */
.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.2rem;
    color: #45433b;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.teaching-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(242, 219, 166, 0.3);
    border-radius: 8px;
}

.feature-item h3 {
    color: #292823;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #45433b;
    font-size: 1rem;
}

.teachers-section {
    background: #f2dba6;
    padding: 4rem 2rem;
}

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

.teacher-card {
    background: rgba(245, 228, 188, 0.8);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid #ecc979;
    transition: all 0.3s ease;
    text-align: center;
}

.teacher-card:hover {
    transform: translateY(-5px);
    border-color: #292823;
    box-shadow: 0 10px 30px rgba(41, 40, 35, 0.1);
}

.teacher-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS頭像基礎樣式 */
.avatar-base {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(135deg, #ecc979, #f2dba6);
    border: 3px solid #292823;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 頭髮樣式 */
.avatar-hair {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 25px;
    border-radius: 25px 25px 0 0;
    background: #292823;
}

.avatar-hair.long {
    width: 60px;
    height: 35px;
    top: -10px;
}

.avatar-hair.short {
    width: 40px;
    height: 20px;
    top: -3px;
}

.avatar-hair.curly {
    width: 55px;
    height: 28px;
    top: -8px;
    border-radius: 28px 28px 15px 15px;
}

/* 不同頭髮顏色 */
.avatar-hair.brown {
    background: #8B4513;
}

.avatar-hair.black {
    background: #1a1a1a;
}

/* 不同臉型顏色 */
.avatar-base.female {
    background: linear-gradient(135deg, #f2dba6, #ecc979);
}

.avatar-base.male {
    background: linear-gradient(135deg, #ecc979, #e6c157);
}

/* 眼睛 */
.avatar-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    display: flex;
    justify-content: space-between;
}

.avatar-eyes::before,
.avatar-eyes::after {
    content: '';
    width: 6px;
    height: 4px;
    background: #292823;
    border-radius: 50%;
}

/* 嘴巴 */
.avatar-mouth {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    border: 1px solid #292823;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* 樂器圖標 */
.instrument-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #292823;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid #f5e4bc;
}

.teacher-name {
    color: #292823;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.teacher-specialty {
    color: #45433b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.teacher-description {
    color: #45433b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.teacher-skills {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.teacher-skills li {
    color: #45433b;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.teaching-method-section {
    background: #f5e4bc;
    padding: 4rem 2rem;
}

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

.method-item {
    background: rgba(242, 219, 166, 0.4);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #ecc979;
}

.method-item h3 {
    color: #292823;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-item p {
    color: #45433b;
    line-height: 1.7;
}

.cta-section {
    background: #f2dba6;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-info {
    background: rgba(245, 228, 188, 0.6);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #ecc979;
}

.cta-info h3 {
    color: #292823;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-info p {
    color: #45433b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-quick {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.contact-quick p {
    margin-bottom: 0.5rem;
    color: #45433b;
}

.contact-quick strong {
    color: #292823;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: rgba(245, 228, 188, 0.9);
    padding: 1rem 2rem;
    margin-top: 6rem;
    border-bottom: 1px solid #f2dba6;
}

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

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #45433b;
    font-weight: bold;
}

.breadcrumb a {
    color: #45433b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #292823;
}

.breadcrumb li[aria-current="page"] {
    color: #292823;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #292823;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: #ecc979;
}

/* Location & Transportation Section */
.location-section {
    background: #f2dba6;
    padding: 3rem 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.map-container h3,
.transport-info h3 {
    color: #292823;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(41, 40, 35, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.map-note {
    color: #45433b;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.transport-item {
    background: rgba(245, 228, 188, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ecc979;
    transition: all 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 40, 35, 0.1);
    border-left-color: #292823;
}

.transport-item h4 {
    color: #292823;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.transport-item p {
    color: #45433b;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.transport-item p strong {
    color: #292823;
}

/* Service Area */
.service-area {
    background: rgba(245, 228, 188, 0.4);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.service-area h3 {
    color: #292823;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.area-description {
    color: #45433b;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.area-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f2dba6;
}

.area-item.primary {
    background: linear-gradient(135deg, #ecc979, #f2dba6);
    border-color: #292823;
    transform: scale(1.05);
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 40, 35, 0.15);
    border-color: #ecc979;
}

.area-item h4 {
    color: #292823;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.area-item.primary h4 {
    color: #292823;
    font-size: 1.4rem;
}

.area-item p {
    color: #45433b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.distance {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #292823;
    color: #f5e4bc;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.area-item.primary .distance {
    background: #45433b;
    color: #f5e4bc;
}

/* Location Contact */
.location-contact {
    background: rgba(242, 219, 166, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.location-contact h3 {
    color: #292823;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location-contact p {
    color: #45433b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 40, 35, 0.15);
}

.contact-btn.phone {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.contact-btn.messenger {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 40, 35, 0.25);
}

.contact-btn.phone:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.contact-btn.messenger:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-size: 1rem;
}

/* Equipment Rental Page Styles */
/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: rgba(245, 228, 188, 0.6);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f2dba6;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #ecc979;
    box-shadow: 0 10px 25px rgba(41, 40, 35, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecc979, #f2dba6);
    color: #292823;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    border: 3px solid #292823;
}

.step-content h3 {
    color: #292823;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    color: #45433b;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    background: #f2dba6;
    padding: 4rem 2rem;
}

.equipment-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.equipment-category {
    background: rgba(245, 228, 188, 0.8);
    padding: 3rem;
    border-radius: 12px;
}

.equipment-category h3 {
    color: #292823;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.equipment-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #f2dba6;
    transition: all 0.3s ease;
    position: relative;
}

.equipment-item.featured {
    border-color: #ecc979;
    background: linear-gradient(135deg, rgba(236, 201, 121, 0.1), rgba(245, 228, 188, 0.1));
}

.equipment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 40, 35, 0.1);
    border-color: #292823;
}

.equipment-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #292823;
    color: #f5e4bc;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.equipment-item h4 {
    color: #292823;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.equipment-specs {
    color: #45433b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.equipment-desc {
    color: #45433b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.equipment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background: rgba(242, 219, 166, 0.6);
    color: #45433b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Additional Equipment */
.additional-equipment {
    background: rgba(242, 219, 166, 0.4);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.additional-equipment h3 {
    color: #292823;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.additional-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ecc979;
    position: relative;
}

.additional-item h4 {
    color: #292823;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.additional-item p {
    color: #45433b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #292823;
    color: #f5e4bc;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.important-note {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.important-note h4 {
    color: #292823;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.important-note ul {
    list-style: none;
    padding: 0;
}

.important-note li {
    color: #45433b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.important-note li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

/* Booking Section */
.booking-section {
    background: #f5e4bc;
    padding: 4rem 2rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(41, 40, 35, 0.1);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f2dba6;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: #292823;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #f2dba6;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ecc979;
    box-shadow: 0 0 0 3px rgba(236, 201, 121, 0.1);
}

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

.checkbox-group {
    display: grid;
    gap: 0.8rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 2rem;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background: white;
    border: 2px solid #f2dba6;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.checkbox-item:hover .checkmark {
    border-color: #ecc979;
}

.checkbox-item input:checked ~ .checkmark {
    background: #ecc979;
    border-color: #ecc979;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #292823;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-item input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-item.agreement {
    margin-top: 1rem;
    font-weight: 600;
    color: #292823;
}

.equipment-checkboxes h4 {
    color: #292823;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
}

.equipment-checkboxes h4:first-child {
    margin-top: 0;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #ecc979, #f2dba6);
    color: #292823;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 201, 121, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 201, 121, 0.4);
    background: linear-gradient(135deg, #f2dba6, #ecc979);
}

.form-note {
    color: #45433b;
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Booking Contact */
.booking-contact {
    background: rgba(245, 228, 188, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    height: fit-content;
}

.booking-contact h3 {
    color: #292823;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-contact p {
    color: #45433b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f2dba6;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 40, 35, 0.1);
    border-color: #ecc979;
}

.contact-option.phone:hover {
    border-color: #4CAF50;
}

.contact-option.messenger:hover {
    border-color: #0084FF;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    /* Emoji 對齊優化 - Footer 版本 */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* 解決不同瀏覽器 emoji 渲染差異 */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-variant-emoji: emoji;
    /* 防止字體回退影響對齊 */
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    color: #292823;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-text span {
    color: #45433b;
    font-size: 0.9rem;
}

.business-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #f2dba6;
}

.business-hours h4 {
    color: #292823;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-list {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #45433b;
    font-size: 0.95rem;
}

.hours-item span:first-child {
    font-weight: 600;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: rgba(245, 228, 188, 0.6);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f2dba6;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    border-color: #ecc979;
    box-shadow: 0 8px 20px rgba(41, 40, 35, 0.1);
}

.contact-method .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    /* Emoji 對齊優化 - Contact Method 版本 */
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    line-height: 1;
    /* 解決不同瀏覽器 emoji 渲染差異 */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-variant-emoji: emoji;
    /* 防止字體回退影響對齊 */
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
}

.contact-method h3 {
    color: #292823;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-method .contact-value {
    margin-bottom: 1rem;
}

.contact-method .contact-phone,
.contact-method .messenger-link {
    color: #292823;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method .contact-phone:hover {
    color: #4CAF50;
}

.contact-method .messenger-link:hover {
    color: #0084FF;
}

.contact-method .contact-desc {
    color: #45433b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hours-display {
    text-align: left;
    max-width: 200px;
    margin: 0 auto;
}

.hours-display .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #45433b;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(242, 219, 166, 0.5);
}

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

.hours-display .hours-item span:first-child {
    font-weight: 600;
    color: #292823;
}

/* Floating Facebook Messenger Button */
.floating-messenger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    animation: slideInUp 1s ease-out 2s forwards;
}

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

.messenger-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0084FF, #00C6FF);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.3);
    transition: all 0.3s ease;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.messenger-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.messenger-btn:hover::before {
    left: 100%;
}

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

.messenger-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

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

.messenger-text {
    flex: 1;
    min-width: 0;
}

.messenger-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.messenger-subtitle {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.2;
}

.messenger-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ff4444;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.messenger-close:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.floating-messenger:hover .messenger-close {
    display: flex;
}

/* Floating button states */
.floating-messenger.collapsed .messenger-btn {
    padding: 15px;
    border-radius: 50%;
    max-width: none;
}

.floating-messenger.collapsed .messenger-text {
    display: none;
}

.floating-messenger.collapsed .messenger-icon {
    margin-right: 0;
}

.floating-messenger.hidden {
    display: none;
}

/* Chat bubble effect */
.messenger-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0084FF;
    opacity: 0;
    animation: bubbleFloat 3s ease-in-out infinite 1s;
}

@keyframes bubbleFloat {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    45% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    /* 手機版導航調整 */
    .nav {
        padding: 1rem 1.5rem !important;
        min-height: 60px;
        box-shadow: 0 2px 10px rgba(41, 40, 35, 0.1);
        /* 確保行動版導航列不會消失 */
        position: fixed !important;
        top: 0 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        height: auto !important;
        overflow: visible !important;
        clip: auto !important;
        clip-path: none !important;
    }
    
    /* 滾動到頂部時的特殊處理 */
    body:not(.scrolled) .nav {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* 確保手機版 logo 正常顯示 */
    .logo {
        font-size: 1.3rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001 !important;
        color: #292823 !important;
        font-weight: 900 !important;
        line-height: 1.2;
        flex-shrink: 0;
        max-width: calc(100vw - 80px);
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(245, 228, 188, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        z-index: 1002;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        /* 防止滾動時消失 */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
        border-top: 1px solid #f2dba6;
        box-shadow: 0 4px 20px rgba(41, 40, 35, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1001;
        border-radius: 0 0 12px 12px;
    }
    
    .nav-menu.active {
        display: flex !important;
        visibility: visible;
        opacity: 1;
        /* 確保在任何滾動情況下都能顯示 */
        position: fixed !important;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(242, 219, 166, 0.3);
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .nav-menu a:hover {
        background: rgba(236, 201, 121, 0.2);
        transform: translateX(5px);
    }
    
    .nav-menu a.active {
        background: rgba(236, 201, 121, 0.3);
        color: #292823;
        font-weight: 700;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .hero {
        padding: 1rem;
        padding-top: 80px !important;
        min-height: calc(100vh - 80px);
    }
    
    .hero-title {
        font-size: clamp(3rem, 15vw, 8rem) !important;
        line-height: 1.1 !important;
        margin-top: 20px !important;
    }
    
    .drum-container {
        width: 300px;
        height: 300px;
    }
    
    /* 手機版環繞文字 - 使用固定像素避免裝置差異 */
    .rotating-text {
        width: 300px !important;
        height: 300px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    .rotating-text svg {
        width: 300px !important;
        height: 300px !important;
        transform: none !important;
        display: block !important;
    }
    
    .rotating-text text {
        font-size: 8px !important;
        letter-spacing: 0.08em !important;
        font-weight: 500 !important;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    }
    
    /* 手機版隱藏環繞文字，避免裝置差異問題 */
    .drum-container .rotating-text {
        display: none !important;
    }
    
    /* 保持鼓組件居中，只調整文字 */
    .drum-set {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .teaching-features {
        grid-template-columns: 1fr;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .teacher-card {
        padding: 2rem 1.5rem;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-info {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .social-media {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        font-size: 18px;
    }
    
    /* Floating Messenger Mobile Adjustments */
    .floating-messenger {
        bottom: 15px;
        right: 15px;
        animation: slideInUp 1s ease-out 1s forwards;
    }
    
    .messenger-btn {
        padding: 10px 14px;
        max-width: 250px;
        box-shadow: 0 6px 20px rgba(0, 132, 255, 0.35);
    }
    
    .messenger-icon {
        width: 38px;
        height: 38px;
        margin-right: 10px;
    }
    
    .messenger-title {
        font-size: 14px;
    }
    
    .messenger-subtitle {
        font-size: 11px;
    }
    
    .messenger-close {
        width: 22px;
        height: 22px;
        font-size: 14px;
        top: -6px;
        right: -6px;
    }
    
    /* Location Section Mobile */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .area-item.primary {
        transform: none;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        padding: 0.8rem 1.5rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .service-area {
        padding: 2rem 1.5rem;
    }
    
    .location-contact {
        padding: 2rem 1.5rem;
    }
    
    /* Equipment Rental Page Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .equipment-category {
        padding: 2rem 1.5rem;
    }
    
    .equipment-items {
        grid-template-columns: 1fr;
    }
    
    .additional-equipment {
        padding: 2rem 1.5rem;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-contact {
        padding: 2rem 1.5rem;
    }
    
    .contact-options {
        gap: 0.8rem;
    }
    
    .contact-option {
        padding: 1rem;
    }
    
    /* Contact Info Grid Mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 2rem 1.5rem;
    }
    
    /* Contact Info Mobile - 主要聯絡資訊區塊 */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    /* Contact Method Mobile - 快速聯絡區塊 */
    .contact-method .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 2rem;
        margin: 0 auto 0.8rem auto;
    }
    
    /* Footer Contact Mobile */
    footer .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .hours-display {
        max-width: 100%;
    }
}

/* Emoji 對齊通用輔助類別 - 確保跨瀏覽器一致性 */
.emoji-aligned {
    /* 標準化 emoji 顯示 */
    font-variant-emoji: emoji;
    text-rendering: optimizeQuality;
    /* 防止字體回退造成的對齊問題 */
    font-feature-settings: "kern" off, "liga" off;
    -webkit-font-feature-settings: "kern" off, "liga" off;
    /* 確保 emoji 居中顯示 */
    vertical-align: middle;
    /* iOS Safari 特殊處理 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 針對不同作業系統的 emoji 字體優化 */
@supports (-webkit-appearance: none) {
    /* iOS/Safari 專用優化 */
    .contact-icon {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* 極小螢幕優化 (480px 以下) */
@media (max-width: 480px) {
    /* Contact Icon 極小螢幕優化 */
    .contact-icon {
        width: 1.8rem !important;
        height: 1.8rem !important;
        font-size: 1.6rem !important;
        /* 強制使用 Web 字體確保一致性 */
        font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif !important;
        /* 防止文字選取影響對齊 */
        -webkit-user-select: none;
        user-select: none;
        /* 防止觸碰高亮影響視覺 */
        -webkit-tap-highlight-color: transparent;
    }
    
    .contact-method .contact-icon {
        width: 2.2rem !important;
        height: 2.2rem !important;
        font-size: 1.8rem !important;
    }
    
    footer .contact-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.1rem !important;
    }
    
    /* 確保 Contact Item 在小螢幕上的間距 */
    .contact-item {
        padding: 1.2rem;
        text-align: center;
    }
    
    /* Contact Info 整體佈局優化 */
    .contact-info {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

/* ==========================================
   RENTAL PAGE STYLES
   ========================================== */

/* Rental Grid and Items */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rental-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.rental-item.featured {
    border-color: #ecc979;
    background: linear-gradient(145deg, #f0ebe1 0%, #e8dfd0 100%);
}

.rental-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.available-badge {
    background: #4ade80;
    color: white;
}

.coming-soon-badge {
    background: #f59e0b;
    color: white;
}

.rental-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #292823;
    margin: 1rem 0 0.5rem 0;
}

.rental-model {
    font-size: 0.9rem;
    color: #6b6b6b;
    font-style: italic;
    margin-bottom: 1rem;
}

.rental-description {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Rental Product Image */
.rental-product-image {
    margin: 1.5rem 0;
    text-align: center;
}

.product-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.product-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.rental-product-image .image-caption {
    margin-top: 0.8rem;
    color: #6b6b6b;
    font-size: 0.85rem;
    font-style: italic;
}

/* Rental Plan Styles */
.rental-plan {
    background: #f0ebe1;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #ecc979;
}

.rental-plan h4 {
    color: #292823;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-details {
    display: grid;
    gap: 0.8rem;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.plan-item.special {
    background: #eef7ff;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

.plan-label {
    font-weight: 500;
    color: #4a4a4a;
}

.plan-value {
    font-weight: 600;
    color: #292823;
}

.plan-value.highlight {
    color: #dc2626;
    font-size: 1.1rem;
}

/* Rental Features */
.rental-features {
    margin: 1.5rem 0;
}

.rental-features h4 {
    color: #292823;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.rental-features li {
    padding: 0.4rem 0;
    color: #4a4a4a;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Target Audience */
.target-audience {
    margin: 1.5rem 0;
}

.target-audience h4 {
    color: #292823;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.audience-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.audience-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid #bae6fd;
}

/* Detailed Review Link */
.detailed-review {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f5f0;
    border-radius: 10px;
    border: 1px solid #ecc979;
}

.detailed-review h4 {
    color: #292823;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.detailed-review p {
    color: #6b6b6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 2px solid #ecc979;
    border-radius: 10px;
    text-decoration: none;
    color: #292823;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #d4a574;
    background: #fffbf5;
}

.review-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.review-text {
    flex: 1;
    line-height: 1.4;
}

.review-text strong {
    color: #292823;
    font-size: 1rem;
}

.review-text small {
    color: #6b6b6b;
    font-size: 0.85rem;
}

.review-arrow {
    font-size: 1.5rem;
    color: #ecc979;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.review-link:hover .review-arrow {
    transform: translateX(5px);
}

/* Service Highlight */
.service-highlight {
    background: #f0f9ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e0f2fe;
}

.service-highlight h3 {
    color: #292823;
    margin-bottom: 1rem;
}

.service-features {
    display: grid;
    gap: 0.8rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-icon {
    color: #10b981;
    font-size: 1.1rem;
}

.service-text {
    color: #4a4a4a;
    flex: 1;
}

/* Benefits Grid Updates - No special styling for featured items */

/* Rental CTA Note */
.rental-cta-note {
    background: #ecfdf5;
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.rental-cta-note p {
    margin: 0.5rem 0;
    color: #166534;
}

.rental-cta-note p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Rental Hero */
.rental-hero {
    background: linear-gradient(135deg, #ecc979 0%, #f2dba6 50%, #ecc979 100%);
    color: #292823;
}

/* Service Area Section - 彰化員林地區服務範圍 */
.service-area-section {
    background: #f2dba6;
    padding: 4rem 2rem;
}

.service-region {
    background: rgba(245, 228, 188, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.service-region h3 {
    color: #292823;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.region-description {
    color: #45433b;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.primary-areas,
.extended-areas {
    margin-bottom: 2rem;
}

/* Service Area Headers - 彰化員林服務區域標題 */
.area-item h3,
.service-area-grid h3 {
    color: #292823;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    /* Emoji 對齊優化 */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'Noto Sans TC', sans-serif;
}

/* 隱藏原本的emoji，用CSS偽元素替換 */
.area-item h3,
.service-area-grid h3 {
    font-size: 0; /* 隱藏原文字 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 3rem;
}

.area-item h3::after,
.service-area-grid h3::after {
    content: attr(data-text);
    font-size: 1.3rem;
    font-weight: 700;
    color: #292823;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'Noto Sans TC', sans-serif;
}

/* Service Area Emoji Icons */
.area-item h3::before,
.service-area-grid h3::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: normal;
    background: linear-gradient(135deg, #ecc979, #f2dba6);
    border: 2px solid #292823;
    box-shadow: 0 2px 8px rgba(41, 40, 35, 0.15);
    /* 解決不同瀏覽器 emoji 渲染差異 */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-variant-emoji: emoji;
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
    flex-shrink: 0;
    line-height: 1;
}

/* 主要服務區域 - 🎯 */
.area-item.primary h3::before {
    content: '🎯';
}

.area-item.primary h3::after {
    content: '主要服務區域';
}

/* 延伸服務區域 - 📍 */
.area-item.secondary h3::before {
    content: '📍';
}

.area-item.secondary h3::after {
    content: '延伸服務區域';
}

/* 配送服務說明 - 🚚 */
.service-area-grid h3::before {
    content: '🚚';
}

.service-area-grid h3::after {
    content: '配送服務說明';
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.area-item {
    background: rgba(245, 228, 188, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f2dba6;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 40, 35, 0.1);
    border-color: #ecc979;
}

.area-item.primary {
    border-color: #ecc979;
    background: linear-gradient(135deg, rgba(236, 201, 121, 0.15), rgba(245, 228, 188, 0.15));
}

.area-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.area-item li {
    padding: 0.5rem 0;
    color: #45433b;
    border-bottom: 1px solid rgba(242, 219, 166, 0.3);
}

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

.area-item li strong {
    color: #292823;
    font-weight: 600;
}

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

.area-tag {
    background: #fff;
    color: #292823;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f2dba6;
}

.area-tag.primary {
    background: linear-gradient(135deg, #ecc979, #f2dba6);
    border-color: #292823;
    transform: scale(1.05);
}

.area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #ecc979;
}

.area-tag.primary:hover {
    transform: scale(1.05) translateY(-2px);
}

.delivery-service {
    background: rgba(242, 219, 166, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ecc979;
}

.delivery-service h4 {
    color: #292823;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.delivery-service p {
    color: #45433b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.delivery-note {
    background: #ecfdf5;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.delivery-note p {
    color: #166534;
    margin: 0;
    font-weight: 500;
}

/* Responsive for Service Area */
@media (max-width: 768px) {
    .service-area-section {
        padding: 3rem 1.5rem;
    }
    
    .service-region {
        padding: 2rem 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .area-tag {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .area-tag.primary {
        transform: none;
    }
    
    .area-tag.primary:hover {
        transform: translateY(-2px);
    }
    
    .delivery-service {
        padding: 1.5rem;
    }
    
    /* Mobile emoji icons adjustment */
    .area-item h3,
    .service-area-grid h3 {
        gap: 0.6rem;
        min-height: 2.5rem;
    }
    
    .area-item h3::after,
    .service-area-grid h3::after {
        font-size: 1.2rem;
    }
    
    .area-item h3::before,
    .service-area-grid h3::before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .area-item {
        padding: 1.5rem;
    }
}

/* Responsive Design for Rental Page */
@media (max-width: 768px) {
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rental-item {
        padding: 1.5rem;
        position: relative;
    }
    
    /* 修復手機版標題被徽章覆蓋的問題 */
    .rental-badge {
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        z-index: 10;
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        max-width: calc(100% - 3rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .rental-name {
        margin-top: 0.5rem;
        padding-right: 6rem; /* 為徽章留出空間 */
        line-height: 1.3;
        font-size: 1.3rem;
    }
    
    .plan-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .audience-tags {
        gap: 0.3rem;
    }
    
    .audience-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .rental-plan {
        padding: 1rem;
    }
    
    .service-highlight {
        padding: 1rem;
    }
    
    .review-link {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .review-text {
        text-align: center;
    }
    
    .review-arrow {
        display: none;
    }
    
    .product-photo {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .rental-product-image .image-caption {
        font-size: 0.8rem;
    }
}