/* ========================================
   草中英鐘呂演奏藝術團 - Version 1
   現代典雅風格 | master.css
   ======================================== */

/* === 基礎設定 === */
:root {
    --color-primary: #5a4398;
    --color-primary-dark: #3d2d6e;
    --color-primary-light: #7b65c4;
    --color-secondary: #C69;
    --color-secondary-dark: #a87088;
    --color-text-dark: #2c2c2c;
    --color-text-gray: #666666;
    --color-text-light: #999999;
    --color-bg-light: #f8f6ff;
    --color-bg-warm: #faf8ff;
    --color-border: #e8e4f0;
    --color-white: #ffffff;
    --color-gold: #c9a84c;
    --color-gold-dark: #a8872e;
    --font-main: "微軟正黑體", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 4px 20px rgba(90, 67, 152, 0.08);
    --shadow-medium: 0 8px 32px rgba(90, 67, 152, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* === 載入動畫 === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--color-white);
}

.loader-content .loader-icon {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

.loader-content p {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

/* === 導航列 === */
.v1-header {
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(90, 67, 152, 0.1);
    transition: var(--transition-smooth);
    padding: 0;
}


.v1-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.v1-logo {
    display: flex;
    align-items: center;
}

.v1-logo img {
    height: 48px;
    width: auto;
}

.v1-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v1-nav-link {
    position: relative;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.v1-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

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

.v1-fb-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(90, 67, 152, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: var(--transition-smooth);
}

.v1-fb-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.v1-fb-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.v1-fb-link:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* 手機漢堡選單 */
.v1-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}

.v1-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.v1-hamburger span:nth-child(1) {
    margin-bottom: 6px;
}

.v1-hamburger span:nth-child(3) {
    margin-top: 6px;
}

/* 漢堡選單開啟狀態 - 變成 X */
.v1-hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #fff;
}

.v1-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    background: #fff;
}

.v1-hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #fff;
}

/* 手機版導航 */
.v1-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-primary);
    z-index: 1050;
    padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
}

.v1-mobile-nav.open {
    right: 0;
}

.v1-mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.v1-mobile-nav-link:hover,
.v1-mobile-nav-link.active {
    color: var(--color-white);
    padding-left: 8px;
    font-weight: 700;
}

.v1-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.v1-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* === 輪播區 === */
.v1-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.v1-banner .swiper {
    width: 100%;
    height: auto;
}

.v1-banner .swiper-slide {
    width: 100%;
    height: auto;
}

.v1-banner .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.v1-banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.v1-banner .swiper-pagination-bullet-active {
    background: var(--color-white);
    width: 28px;
    border-radius: 5px;
}

.v1-banner .swiper-button-next,
.v1-banner .swiper-button-prev {
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v1-banner:hover .swiper-button-next,
.v1-banner:hover .swiper-button-prev {
    opacity: 1;
}

/* === 內容區塊 === */
.v1-main {
    background: var(--color-white);
}

/* === 通用 Section 樣式 === */
.v1-section {
    padding: 80px 24px;
}

.v1-section-alt {
    background: var(--color-bg-light);
}

.v1-container {
    max-width: 1140px;
    margin: 0 auto;
}

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

.v1-section-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    position: relative;
}

.v1-section-label::before,
.v1-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.4;
}

.v1-section-label::before {
    right: calc(100% + 12px);
}

.v1-section-label::after {
    left: calc(100% + 12px);
}

.v1-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.v1-section-desc {
    font-size: 16px;
    color: var(--color-text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === 首頁 - 關於簡介 === */
.v1-about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.v1-about-hero-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.v1-about-hero-text .v1-label {
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.v1-about-hero-text p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 2;
    margin-bottom: 24px;
}

.v1-about-hero-img {
    position: relative;
}

.v1-about-hero-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
}

.v1-about-hero-img::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.2;
}

/* 服務項目卡片 */
.v1-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.v1-service-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

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

.v1-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--color-white);
}

.v1-service-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.v1-service-card p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* === 作品集 === */
.v1-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v1-portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.v1-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v1-portfolio-item:hover img {
    transform: scale(1.08);
}

.v1-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.v1-portfolio-item:hover .v1-portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.v1-portfolio-overlay span {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* 影片卡片樣式 */
.v1-video-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.v1-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v1-video-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.v1-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(90, 67, 152, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(90, 67, 152, 0.4);
}

.v1-video-card:hover .v1-video-play {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.v1-video-play svg {
    color: #f8f6ff;
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

/* 影片標題 */
.v1-video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v1-video-card:hover .v1-video-title {
    opacity: 1;
}

/* === 最新消息 === */
.v1-news-list {
    max-width: 700px;
    margin: 0 auto;
}

.v1-news-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.v1-news-item:hover {
    transform: translateX(6px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-medium);
}

.v1-news-date {
    min-width: 70px;
    text-align: center;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--color-border);
}

.v1-news-date .day {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.v1-news-date .month {
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.v1-news-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    flex: 1;
}

.v1-news-item .news-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    transition: var(--transition-smooth);
}

.v1-news-item:hover .news-arrow {
    background: var(--color-primary);
}

.v1-news-item:hover .news-arrow svg {
    stroke: var(--color-white);
}

.v1-news-item .news-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-primary);
    transition: var(--transition-smooth);
}

/* === 聯絡我們 === */
.v1-contact-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.v1-contact-form-wrap {
    margin-bottom: 40px;
}

.v1-contact-form {
    background: var(--color-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
}

.v1-contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.v1-contact-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.v1-contact-info {
    padding: 36px;
    background: var(--color-primary);
    border-radius: 12px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.v1-contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.v1-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.v1-contact-detail:last-child {
    margin-bottom: 0;
}

.v1-contact-detail .icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v1-contact-detail .icon-circle svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
}

.v1-contact-detail .detail-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.v1-contact-detail .detail-text span {
    font-size: 16px;
    opacity: 0.9;
}

.v1-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.v1-form-group {
    margin-bottom: 16px;
}

.v1-form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-gray);
    margin-bottom: 6px;
}

.v1-form-group input,
.v1-form-group textarea,
.v1-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background: var(--color-bg-warm);
    transition: var(--transition-smooth);
    outline: none;
}

.v1-form-group input:focus,
.v1-form-group textarea:focus,
.v1-form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(90, 67, 152, 0.1);
}

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

.v1-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.v1-submit-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* 地圖 */
.v1-map {
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    height: 100%;
    min-height: 380px;
}

.v1-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    display: block;
}

/* === 內頁 - 作品分類 === */
.v1-showcase-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.v1-showcase-layout {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.v1-showcase-sidebar {
    width: 280px;
    min-width: 280px;
    position: sticky;
    top: 100px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 18px;
    box-shadow: var(--shadow-soft);
}

.v1-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-bg-light);
    letter-spacing: 1px;
}

/* 手機版下拉選單 */
.v1-showcase-select-wrap {
    display: none;
    position: relative;
    width: 100%;
}

.v1-showcase-select {
    width: 100%;
    padding: 14px 44px 14px 18px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--color-primary-dark);
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(90, 67, 152, 0.12);
}

.v1-showcase-select:focus {
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(90, 67, 152, 0.2);
}

.v1-showcase-select-wrap .v1-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v1-showcase-select-wrap .v1-select-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    stroke-width: 2.5;
}

.v1-showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v1-tab-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    background: var(--color-bg-light);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.v1-tab-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-text-light);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.v1-tab-btn:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
    transform: translateX(4px);
}

.v1-tab-btn:hover svg {
    stroke: var(--color-white);
}

.v1-tab-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(90, 67, 152, 0.25);
}

.v1-tab-btn.active svg {
    stroke: var(--color-white);
}

.v1-tab-panel {
    display: none;
    animation: tabFadeIn 0.35s ease forwards;
}

.v1-tab-panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v1-showcase-main {
    flex: 1;
    min-width: 0;
}

.v1-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v1-showcase-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/2;
    display: block;
    text-decoration: none;
}

.v1-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.v1-showcase-card:hover img {
    transform: scale(1.1);
}

.v1-showcase-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(90, 67, 152, 0.88) 0%, rgba(90, 67, 152, 0.25) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    transition: var(--transition-smooth);
}

.v1-showcase-card:hover .overlay {
    background: linear-gradient(to top, rgba(61, 45, 110, 0.95) 0%, rgba(90, 67, 152, 0.35) 60%, transparent 100%);
}

.v1-card-date {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.v1-showcase-card h3 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.4;
}

.v1-showcase-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* === 內頁 - 教學部卡片 (上方圖片 下方標題與發佈時間) === */
.v1-teaching-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(90, 67, 152, 0.08);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    text-decoration: none;
    height: 100%;
}

.v1-teaching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(90, 67, 152, 0.16);
    border-color: rgba(90, 67, 152, 0.3);
}

.v1-teaching-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.v1-teaching-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v1-teaching-card:hover .v1-teaching-card-img img {
    transform: scale(1.08);
}

.v1-teaching-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.v1-teaching-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.45;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v1-teaching-card:hover .v1-teaching-card-title {
    color: var(--color-primary);
}

.v1-teaching-card-date {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === 內頁 - 最新消息列表 === */
.v1-news-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.v1-news-page-list {
    max-width: 800px;
    margin: 0 auto;
}

.v1-news-page-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.v1-news-page-item:hover {
    transform: translateX(4px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-medium);
}

.v1-news-page-item .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.v1-news-page-item .date {
    font-size: 16px;
    color: var(--color-text-light);
    white-space: nowrap;
    padding-left: 20px;
    border-left: 1px solid var(--color-border);
}

/* 分頁 */
.v1-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.v1-pagination a,
.v1-pagination span {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    color: var(--color-text-gray);
    transition: var(--transition-smooth);
}

.v1-pagination a:hover,
.v1-pagination .active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* === 消息內頁 (News Detail) === */
.v1-news-detail {
    max-width: 850px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.v1-breadcrumb {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.v1-breadcrumb a {
    color: var(--color-text-gray);
}

.v1-breadcrumb a:hover {
    color: var(--color-primary);
}

.v1-news-detail-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.v1-news-detail-date {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-bg-light);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.v1-news-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.4;
    letter-spacing: 1px;
}

.v1-news-detail-body {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 2;
}

.v1-news-detail-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.v1-news-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.v1-news-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.v1-news-detail-nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.v1-news-detail-nav a:hover {
    color: var(--color-primary-dark);
}

.v1-news-detail-nav .btn-back {
    padding: 10px 24px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    color: var(--color-text-dark);
}

.v1-news-detail-nav .btn-back:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* === 內頁 - 相簿詳情 (Album Detail) === */
.v1-album-detail {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.v1-album-header {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.v1-album-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.v1-album-category {
    background: var(--color-primary-light);
    color: var(--color-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.v1-album-date {
    color: var(--color-text-light);
    font-size: 16px;
}

.v1-album-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.v1-album-desc {
    color: var(--color-text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* 相簿圖片網格 */
.v1-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.v1-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    background: var(--color-bg-light);
}

.v1-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.v1-gallery-item:hover img {
    transform: scale(1.08);
}

.v1-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 67, 152, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--color-white);
}

.v1-gallery-item:hover .v1-gallery-overlay {
    opacity: 1;
}

.v1-gallery-overlay svg {
    width: 32px;
    height: 32px;
}

.v1-gallery-overlay span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.v1-album-nav {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.v1-album-nav .btn-back {
    padding: 12px 32px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.v1-album-nav .btn-back:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* === 圖片燈箱 (Lightbox Modal) === */
.v1-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.v1-lightbox.active {
    display: flex;
    animation: lightboxFadeIn 0.3s ease forwards;
}

.v1-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.v1-lightbox-container {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v1-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.v1-lightbox-img {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    user-select: none;
    transition: opacity 0.2s ease;
}

.v1-lightbox-info {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.v1-lightbox-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 16px;
    white-space: nowrap;
}

.v1-lightbox-close {
    position: absolute;
    top: -46px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.v1-lightbox-close:hover {
    background: var(--color-primary);
}

.v1-lightbox-prev,
.v1-lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 3;
}

.v1-lightbox-prev {
    left: 24px;
}

.v1-lightbox-next {
    right: 24px;
}

.v1-lightbox-prev:hover,
.v1-lightbox-next:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.v1-lightbox-prev svg,
.v1-lightbox-next svg {
    width: 28px;
    height: 28px;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === 頁尾 === */
.v1-footer {
    background: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 24px 30px;
}

.v1-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

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

.v1-footer-logo {
    display: flex;
    align-items: center;
}

.v1-footer-logo a {
    text-decoration: none;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.v1-footer-logo a:hover {
    opacity: 0.85;
}

.v1-footer-logo h3 {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.v1-footer-logo span {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.v1-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.v1-footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.v1-footer-links a:hover {
    color: var(--color-white);
}

.v1-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
}

.v1-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: var(--transition-smooth);
}

.v1-footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.v1-footer-social a img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* === 回到頂部 === */
.v1-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 900;
    border: none;
    box-shadow: var(--shadow-medium);
}

.v1-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v1-scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

.v1-scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

@media (max-width: 1199.98px) {
    .v1-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === RWD 手機版 === */
@media (max-width: 991.98px) {
    .v1-nav {
        display: none;
    }

    .v1-hamburger {
        display: flex;
    }

    .v1-mobile-nav {
        display: block;
    }

    .v1-about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

    .v1-about-hero-img::before {
        display: none;
    }

    .v1-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .v1-showcase-layout {
        flex-direction: column;
        gap: 24px;
    }

    .v1-showcase-sidebar {
        width: 100%;
        min-width: 100%;
        position: static;
        top: auto;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .v1-sidebar-title {
        display: none;
    }

    .v1-showcase-select-wrap {
        display: block;
    }

    .v1-showcase-tabs {
        display: none;
    }

    .v1-portfolio-grid,
    .v1-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .v1-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .v1-album-title {
        font-size: 26px;
    }

    .v1-contact-grid,
    .v1-contact-bottom-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .v1-section-title {
        font-size: 28px;
    }

    .v1-section {
        padding: 60px 20px;
    }

    .v1-form-row {
        grid-template-columns: 1fr;
    }

    .v1-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .v1-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {

    .v1-services-grid {
        grid-template-columns: 1fr;
    }

    .v1-portfolio-grid,
    .v1-showcase-grid {
        grid-template-columns: 1fr;
    }

    .v1-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .v1-album-title {
        font-size: 22px;
    }

    .v1-lightbox-prev {
        left: 10px;
        width: 42px;
        height: 42px;
    }

    .v1-lightbox-next {
        right: 10px;
        width: 42px;
        height: 42px;
    }

    .v1-lightbox-img {
        max-width: 92vw;
        max-height: 70vh;
    }

    .v1-section {
        padding: 48px 16px;
    }

    .v1-section-title {
        font-size: 24px;
    }

    .v1-contact-form,
    .v1-contact-info {
        padding: 28px 20px;
    }

    .v1-news-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .v1-news-date {
        min-width: auto;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 8px;
        width: 100%;
    }
}

/* === 動畫 === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v1-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.v1-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === 影片彈窗 === */
.v1-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v1-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.v1-modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.v1-modal-content h3 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 1px;
}

.v1-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.v1-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.v1-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.v1-modal-close:hover {
    background: var(--color-primary-dark);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .v1-modal-content {
        padding: 16px;
    }

    .v1-modal-content h3 {
        font-size: 16px;
    }
}

/* === 首頁英雄區 & 作品集縮圖 === */
.v1-hero-section {
    padding: 80px 24px 60px;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.v1-hero-section .hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: 6px;
    margin-bottom: 16px;
}

.v1-hero-section .hero-subtitle {
    font-size: 16px;
    color: var(--color-text-gray);
    letter-spacing: 2px;
    margin-bottom: 36px;
}

.v1-hero-section .hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.v1-hero-section .hero-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(90, 67, 152, 0.3);
}

.v1-portfolio-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.v1-portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v1-portfolio-thumb:hover img {
    transform: scale(1.06);
}

.v1-portfolio-thumb .thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* === 內頁橫幅 (Page Banner) & 關於我們 === */
.v1-page-banner {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.v1-page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v1-page-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(90, 67, 152, 0.4), rgba(90, 67, 152, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.v1-page-banner h1,
.v1-page-banner h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-top: 50px;
}

.v1-about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 24px 80px;
}

.v1-about-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.v1-about-content p {
    font-size: 16px;
    color: var(--color-text-gray);
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

.v1-about-content .highlight-box {
    background: var(--color-bg-light);
    border-radius: 8px;
    padding: 28px 32px;
    margin: 24px 0;
    border-left: 4px solid var(--color-primary);
    display: flex;
    /* align-items: center; */
    gap: 36px;
}

.v1-about-content .highlight-box-content {
    flex: 1;
}

.v1-about-content .highlight-box h3 {
    font-size: 18px;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.v1-about-content .highlight-box p {
    margin-bottom: 8px;
}

.v1-about-content .highlight-box p:last-child {
    margin-bottom: 0;
}

.v1-about-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.v1-about-img-row img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.v1-leader-card {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    margin: 0;
}

.v1-leader-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    display: block;
}

.v1-leader-card img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(90, 67, 152, 0.2);
}

.v1-about-content .v1-leader-caption {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.v1-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.v1-services-list span {
    padding: 8px 20px;
    background: var(--color-bg-light);
    border-radius: 20px;
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 500;
}

/* 關於頁面 - 企劃專線強調區塊 */
.v1-about-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px auto 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(90, 67, 152, 0.05) 0%, rgba(90, 67, 152, 0.12) 100%);
    border: 1px solid rgba(90, 67, 152, 0.18);
    border-left: 5px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.v1-about-cta:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
    border-color: rgba(90, 67, 152, 0.3);
}

.v1-about-cta-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(90, 67, 152, 0.25);
}

.v1-about-cta-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-white);
}

.v1-about-cta-text .cta-desc {
    font-size: 24px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.v1-about-cta-text .cta-phone {
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.v1-about-cta-text .phone-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.v1-about-cta-text .phone-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.v1-about-cta-text .contact-person {
    font-weight: 600;
    color: var(--color-text-dark);
}

@media (max-width: 767.98px) {
    .v1-about-content .highlight-box {
        flex-direction: column;
        gap: 24px;
    }

    .v1-about-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
        border-left: 1px solid rgba(90, 67, 152, 0.18);
        border-top: 4px solid var(--color-primary);
    }

    .v1-about-cta-text .cta-phone {
        justify-content: center;
    }

    .v1-about-cta-text .cta-desc {
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .v1-about-img-row {
        grid-template-columns: 1fr;
    }

    .v1-page-banner {
        height: 180px;
    }

    .v1-page-banner h1,
    .v1-page-banner h2 {
        font-size: 24px;
    }
}

.v1-teaching-yt {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.v1-teaching-yt iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}