/* ==============================================================
   檔案名稱：contact_us-style.css
   功能說明：TC Gaming — 聯繫我們（Contact Us）頁面樣式表
   設計基準：1920px 固定寬度，透過 JS transform: scale() 等比縮放
   命名規則：
     - 共用元件：tcg- 前綴（與首頁一致）
     - 頁面專屬：tcg-cu- 前綴（cu = contact us）
   瀏覽器支援：Chrome / Edge / Safari / Firefox，IE11 盡量相容
   ============================================================== */


/* ★ Web 共用樣式已移至 tcg-common-web.css ★ */


/* ★ 漢堡選單已移至 tcg-common-web.css ★ */

/* [Page-Specific] Contact Us 頁面樣式（Web 版）
   所有 web 規則均帶 .tcg-wrapper 前綴，確保不影響手機版
   ============================================================== */

/* ================================================================
   Web 版圖片尺寸控制
   ================================================================ */
.tcg-wrapper .tcg-cu-hero-banner img,
.tcg-wrapper .tcg-cu-info-heading img,
.tcg-wrapper .tcg-cu-social-link img,
.tcg-wrapper .tcg-cu-joinus-chip img,
.tcg-wrapper .tcg-cu-joinus-illustration img {
    max-width: 100%;
    height: auto;
}


/* ================================================================
   Hero Section（web 版）
   ================================================================ */
.tcg-wrapper .tcg-cu-hero {
    background: #F5F5F5;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 111px;
    height: 600px;
}
.tcg-wrapper .tcg-cu-hero-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 640px;
    padding-top: 58px;
    padding-left: 221px;
}
.tcg-wrapper .tcg-cu-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}
.tcg-wrapper .tcg-cu-hero-title {
    font-size: 53px;
    font-weight: 800;
    color: #262626;
    color: var(--tcg-text);
    margin-bottom: 169px;
}
.tcg-wrapper .tcg-cu-hero-btn {
    /* 可獨立調整 hero 按鈕 */
}
/* 右側 Banner 裝飾圖 */
.tcg-wrapper .tcg-cu-hero-banner {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.tcg-wrapper .tcg-cu-hero-banner img {
    display: block;
}


/* ================================================================
   Contact Section（web 版）— 左表單 + 右聯絡資訊
   ================================================================ */
.tcg-wrapper .tcg-cu-contact {
    background: #FFFFFF;
    padding: 80px 0 100px;
}
/* 內容容器（獨立 hook） */
.tcg-wrapper .tcg-cu-contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 48px;
    max-width: 1550px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin: 0 auto;
}
/* 左欄：表單 */
.tcg-wrapper .tcg-cu-form-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 560px;
    flex: 0 0 785px;
    margin-left: 0px;
    padding-left: 0px;
    padding-top: 14px;
}
/* 右欄：聯絡資訊 */
.tcg-wrapper .tcg-cu-info-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 500px;
    flex: 0 0 718px;
}


/* ================================================================
   Form（web 版）— 表單欄位樣式
   ================================================================ */
/* 並排行（姓名+电话、联系方式+联系ID） */
.tcg-wrapper .tcg-cu-field-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-bottom: 11px;
}
.tcg-wrapper .tcg-cu-field-row .tcg-cu-field {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin-bottom: 0;
}
/* 各行獨立 hook */
.tcg-wrapper .tcg-cu-field-row-1 { }
.tcg-wrapper .tcg-cu-field-row-2 { }
/* 各欄位獨立 hook */
.tcg-wrapper .tcg-cu-field-name { }
.tcg-wrapper .tcg-cu-field-phone { }
.tcg-wrapper .tcg-cu-field-email { }
.tcg-wrapper .tcg-cu-field-method { }
.tcg-wrapper .tcg-cu-field-id { }
.tcg-wrapper .tcg-cu-field-submit { }
.tcg-wrapper .tcg-cu-field {
    margin-bottom: 24px;
}
.tcg-wrapper .tcg-cu-label {
    display: block;
    font-size: 23px;
    font-weight: 600;
    color: #262626;
    color: var(--tcg-text);
    margin-bottom: 8px;
}
.tcg-wrapper .tcg-cu-required {
    color: #E5222B;
    color: var(--tcg-red);
    margin-left: 4px;
    font-size: 23px;
    line-height: 0;
    vertical-align: middle;
}
/* input / textarea / select */
.tcg-wrapper .tcg-cu-input,
.tcg-wrapper .tcg-cu-textarea,
.tcg-wrapper .tcg-cu-select {
    display: block;
    width: 100%;
    padding: 24px 16px;
    font-size: 14px;
    color: #262626;
    color: var(--tcg-text);
    background: #F7F7F8;
    border: 1px solid #E5E7EB;
    border-color: var(--tcg-gray-border);
    border-radius: 8px;
    -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tcg-wrapper .tcg-cu-input:focus,
.tcg-wrapper .tcg-cu-textarea:focus,
.tcg-wrapper .tcg-cu-select:focus {
    border-color: #E5222B;
    border-color: var(--tcg-red);
    -webkit-box-shadow: 0 0 0 3px rgba(229, 34, 43, 0.1);
    box-shadow: 0 0 0 3px rgba(229, 34, 43, 0.1);
    background: #FFFFFF;
}
.tcg-wrapper .tcg-cu-input::-webkit-input-placeholder,
.tcg-wrapper .tcg-cu-textarea::-webkit-input-placeholder { color: #B0B0B0; }
.tcg-wrapper .tcg-cu-input::-moz-placeholder,
.tcg-wrapper .tcg-cu-textarea::-moz-placeholder { color: #B0B0B0; }
.tcg-wrapper .tcg-cu-input:-ms-input-placeholder,
.tcg-wrapper .tcg-cu-textarea:-ms-input-placeholder { color: #B0B0B0; }
.tcg-wrapper .tcg-cu-input::placeholder,
.tcg-wrapper .tcg-cu-textarea::placeholder { color: #B0B0B0; }
.tcg-wrapper .tcg-cu-textarea {
    resize: vertical;
    height: 218px;
}
/* Select 下拉包裹層 */
.tcg-wrapper .tcg-cu-select-wrap {
    position: relative;
}
.tcg-wrapper .tcg-cu-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}
.tcg-wrapper .tcg-cu-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    color: #9A9A9A;
    color: var(--tcg-text-muted);
    pointer-events: none;
}
/* Submit 按鈕 */
.tcg-wrapper .tcg-cu-submit-btn {
    padding: 15px 40px;
    font-size: 25px;
    border-radius: 999px;
    margin-top: 8px;
    width: 100%;
}


/* ================================================================
   Info Column（web 版）— 右欄：大標題 + 聯絡資訊 + 社群
   ================================================================ */
.tcg-wrapper .tcg-cu-info-heading {
    margin-bottom: 32px;
    margin-top: 22px;
}
.tcg-wrapper .tcg-cu-info-heading img {
    display: block;
}
.tcg-wrapper .tcg-cu-info-subtitle {
    font-size: 18px;
    color: #6B6B6B;
    color: var(--tcg-text-light);
    margin-top: 20px;
}
/* 聯絡資訊 Grid（2×2，無 icon） */
.tcg-wrapper .tcg-cu-info-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.tcg-wrapper .tcg-cu-info-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(37% - 15px);
}
/* 各項獨立 hook */
.tcg-wrapper .tcg-cu-info-item-1 {/* width: 110px; */padding-bottom: 16px;}
.tcg-wrapper .tcg-cu-info-item-2 { }
.tcg-wrapper .tcg-cu-info-item-3 { }
.tcg-wrapper .tcg-cu-info-item-4 { }
.tcg-wrapper .tcg-cu-info-label {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #E5222B;
    color: var(--tcg-red);
    margin-bottom: 6px;
}
.tcg-wrapper .tcg-cu-info-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    color: var(--tcg-text);
    line-height: 1.5;
}
/* 社群媒體 */
.tcg-wrapper .tcg-cu-social {
    padding-top: 0px;
}
.tcg-wrapper .tcg-cu-social-label {
    font-size: 26px;
    font-weight: 700;
    color: #E5222B;
    color: var(--tcg-red);
    margin-bottom: 14px;
    display: block;
}
.tcg-wrapper .tcg-cu-social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}
.tcg-wrapper .tcg-cu-social-link {
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}
.tcg-wrapper .tcg-cu-social-link:hover {
    opacity: 0.7;
}


/* ================================================================
   Join Us（web 版）— 加入我們橫幅
   ================================================================ */
.tcg-wrapper .tcg-cu-joinus {
    background: #FFFFFF;
    padding: 39px 0 24px;
}
/* 灰色圓角卡片 */
.tcg-wrapper .tcg-cu-joinus-card {
    position: relative;
    background: #F2F2F4;
    background: var(--tcg-gray-bg);
    border-radius: 33px;
    padding: 30px 0 14px 80px;
    overflow: visible;
}
/* TC 籌碼 Logo — 卡片內部左下角 */
.tcg-wrapper .tcg-cu-joinus-chip {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 2;
}
.tcg-wrapper .tcg-cu-joinus-chip img {
    display: block;
}
/* 卡片內容：左文字 + 右插圖 */
.tcg-wrapper .tcg-cu-joinus-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}
.tcg-wrapper .tcg-cu-joinus-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 261px;
    margin-top: -44px;
}
.tcg-wrapper .tcg-cu-joinus-title {
    font-size: 53px;
    font-weight: 800;
    color: var(--tcg-text);
    margin-bottom: 30px;
}
.tcg-wrapper .tcg-cu-joinus-desc {
    font-size: 18px;
    color: var(--tcg-text-light);
    line-height: 1.5!important;
    padding-bottom: 0px!important;
}
.tcg-wrapper .tcg-cu-joinus-closing {
    margin-top: 0px;
}
.tcg-wrapper .tcg-cu-joinus-email {
    font-size: 18px;
    font-weight: 700;
    color: #E5222B;
    color: var(--tcg-red);
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
.tcg-wrapper .tcg-cu-joinus-email:hover {
    color: #B51520;
    color: var(--tcg-red-dark);
    text-decoration: underline;
}
/* 插圖 — 高度超出卡片上下邊界 */
.tcg-wrapper .tcg-cu-joinus-illustration {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-top: -79px;
    margin-bottom: -80px;
    margin-right: 57px;
    position: relative;
}
.tcg-wrapper .tcg-cu-joinus-illustration img {
    display: block;
}

/* ==============================================================
   [Contact Us 聯繫我們] tcg-m-cu- 前綴
   ============================================================== */
/* ── Hero（Banner 圖片模式） ── */
.tcg-wrapper-mobile .tcg-m-cu-hero {
    position: relative;
}
.tcg-wrapper-mobile .tcg-m-cu-hero-bg img {
    display: block;
    width: 100%;
}
.tcg-wrapper-mobile .tcg-m-cu-hero-title {
    position: absolute;
    top: 97px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 52px;
    font-weight: 900;
    color: #262626;
}
.tcg-wrapper-mobile .tcg-m-cu-hero-btn-wrap {
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 100%;
    text-align: center;
}

/* ── Contact Section ── */
.tcg-wrapper-mobile .tcg-m-cu-contact {
    background: #FFFFFF;
    padding: 122px 0 100px;
}
/* 標題圖片（全寬） */
.tcg-wrapper-mobile .tcg-m-cu-heading-img img {
    display: block;
    width: 100%;
}

/* 大標題 CONNECT WITH US... */
.tcg-wrapper-mobile .tcg-m-cu-heading-text {
    font-size: 24px;
    color: #6B6B6B;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 10px;
}
.tcg-wrapper-mobile .tcg-m-cu-heading-text em {
    font-size: 40px;
    font-weight: 900;
    color: #D9D9D9;
    font-style: italic;
    display: block;
    line-height: 1.1;
    letter-spacing: 4px;
}
.tcg-wrapper-mobile .tcg-m-cu-heading-text strong {
    font-size: 40px;
    font-weight: 900;
    color: #262626;
    font-style: italic;
    display: inline;
    line-height: 1.1;
}
.tcg-wrapper-mobile .tcg-m-cu-subtitle {
    font-size: 26px;
    color: #6B6B6B;
    margin-bottom: 40px;
    padding-top: 36px;
    padding-left: 27px;
}

/* ── 聯絡資訊 2×2 grid ── */
.tcg-wrapper-mobile .tcg-m-cu-info-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 54px 0;
    margin-bottom: 21px;
    margin-top: 56px;
    padding-left: 27px;
    padding-right: 27px;
}
.tcg-wrapper-mobile .tcg-m-cu-info-item {
    width: 46%;
}
.tcg-wrapper-mobile .tcg-m-cu-info-label {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #E5222B;
    margin-bottom: 6px;
}
.tcg-wrapper-mobile .tcg-m-cu-info-value {
    display: block;
    font-size: 26px;
    color: #6B6B6B;
    line-height: 1.5;
}

/* ── Social Media ── */
.tcg-wrapper-mobile .tcg-m-cu-social {
    text-align: left;
    margin-bottom: 102px;
    padding-left: 27px;
    padding-right: 27px;
}
.tcg-wrapper-mobile .tcg-m-cu-social-label {
    display: block;
    font-size: 31px;
    font-weight: 700;
    color: #E5222B;
    margin-bottom: 16px;
}
.tcg-wrapper-mobile .tcg-m-cu-social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 39px;
}
.tcg-wrapper-mobile .tcg-m-cu-social-icon {
    display: block;
}
.tcg-wrapper-mobile .tcg-m-cu-social-icon img {
    display: block;
}
.tcg-m-cu-social-icon .tcg-img-placeholder {
    width: 48px;
    height: 48px;
    min-height: 48px;
    border-radius: 50%;
}

/* ── 表單 ── */
.tcg-wrapper-mobile .tcg-m-cu-form {
    margin-bottom: 40px;
    padding-left: 27px;
    padding-right: 27px;
}
.tcg-wrapper-mobile .tcg-m-cu-field {
    margin-bottom: 16px;
}
.tcg-wrapper-mobile .tcg-m-cu-label {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 12px;
}
.tcg-wrapper-mobile .tcg-m-cu-required {
    color: #E5222B;
}
.tcg-wrapper-mobile .tcg-m-cu-input,
.tcg-wrapper-mobile .tcg-m-cu-textarea,
.tcg-wrapper-mobile .tcg-m-cu-select {
    width: 100%;
    font-size: 22px;
    font-family: inherit;
    color: #262626;
    background: #F5F5F5;
    border: 1px solid #E5E7EB;
    padding: 20px 24px;
    outline: none;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    border-radius: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.tcg-wrapper-mobile .tcg-m-cu-input:focus,
.tcg-wrapper-mobile .tcg-m-cu-textarea:focus,
.tcg-wrapper-mobile .tcg-m-cu-select:focus {
    border-color: #E5222B;
}
.tcg-wrapper-mobile .tcg-m-cu-textarea {
    resize: vertical;
    min-height: 240px;
}
/* 下拉選單包裹 */
.tcg-wrapper-mobile .tcg-m-cu-select-wrap {
    position: relative;
}
.tcg-wrapper-mobile .tcg-m-cu-select {
    padding-right: 60px;
    cursor: pointer;
}
.tcg-wrapper-mobile .tcg-m-cu-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    color: #9A9A9A;
    pointer-events: none;
}
/* Send Message 按鈕 */
.tcg-wrapper-mobile .tcg-m-cu-submit-wrap {
    text-align: center;
    margin-top: 30px;
}

/* ── Join Us 加入我們 ── */
.tcg-wrapper-mobile .tcg-m-cu-joinus {
    background: #FFFFFF;
    padding: 0 0 16px;
}
.tcg-wrapper-mobile .tcg-m-cu-joinus-card {
    background: #F5F5F5;
    border-radius: 24px 24px 0px 0px;
    /* padding: 50px 36px 50px; */
    text-align: left;
    position: relative;
    padding-bottom: 43px;
}
/* 籌碼 Logo — 靠左 */
.tcg-wrapper-mobile .tcg-m-cu-joinus-chip {
    width: 100%;
    height: 100%;
    margin: 0 0 30px 0;
}
.tcg-m-cu-joinus-chip .tcg-img-placeholder {
    width: 120px;
    height: 120px;
    min-height: 120px;
    border-radius: 50%;
}
.tcg-wrapper-mobile .tcg-m-cu-joinus-title {
    font-size: 56px;
    font-weight: 900;
    color: #262626;
    margin-bottom: 31px;
    text-align: left;
    padding-left: 72px;
    padding-top: 27px;
}
.tcg-wrapper-mobile .tcg-m-cu-joinus-desc {
    font-size: 22px;
    color: #6B6B6B;
    line-height: 1.8;
    text-align: left;
    padding-left: 75px;
    padding-right: 75px;
}
.tcg-wrapper-mobile .tcg-m-cu-joinus-email {
    color: #E5222B;
    font-weight: 700;
    word-break: break-all;
}
.tcg-wrapper-mobile .tcg-m-cu-joinus-illustration {
    margin-top: 40px;
    background: #F5F5F5;
    border-radius: 0px 0px 24px 24px;
    width: 650px;
    margin: 0 auto;
    padding-top: 46px;
    padding-bottom: 120px;
}
.tcg-wrapper-mobile .tcg-m-cu-joinus-illustration img {
    display: block;
    width: 100%;
}
.tcg-m-cu-joinus-illustration .tcg-img-placeholder {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border-radius: 16px;
}

/* 籌碼 Logo img */
.tcg-wrapper-mobile .tcg-m-cu-joinus-chip img {
    display: block;
}

/* ── 提交按鈕 ── */
.tcg-wrapper-mobile .tcg-m-cu-submit-btn {
    width: 100%;
    margin-top: 20px;
}

/* ★ Mobile 共用樣式已移至 tcg-common-mobile.css ★ */

