/* 公司簡介 Section */
.new-concept-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.new-concept-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.new-concept-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.new-concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.new-concept-text {
    display: flex;
    flex-direction: column;
}

.new-concept-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

.new-concept-image {
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.concept-img {
    width: 80%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.concept-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 背景裝飾圖形容器 */
.section-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.new-concept-container {
    position: relative;
    z-index: 1;
}

/* 發光的圓形 */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 128, 36, 0.15) 0%, rgba(244, 128, 36, 0.05) 50%, transparent 100%);
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 128, 36, 0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.glow-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: glowPulse 5s ease-in-out infinite, floatCircle 12s ease-in-out infinite;
}

.glow-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 8%;
    animation: glowPulse 6s ease-in-out infinite 1s, floatCircle 15s ease-in-out infinite reverse;
}

.glow-circle-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 15%;
    animation: glowPulse 4.5s ease-in-out infinite 0.5s, floatCircle 10s ease-in-out infinite;
}

.glow-circle-4 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 10%;
    animation: glowPulse 5.5s ease-in-out infinite 1.5s, floatCircle 18s ease-in-out infinite reverse;
}

/* 不發光的三角形 */
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.08;
    animation: rotateTriangle 20s linear infinite;
}

.geo-triangle-1 {
    border-width: 0 40px 70px 40px;
    border-color: transparent transparent rgba(244, 128, 36, 0.2) transparent;
    top: 20%;
    left: 12%;
    animation: rotateTriangle 25s linear infinite, floatTriangle 14s ease-in-out infinite;
}

.geo-triangle-2 {
    border-width: 0 35px 60px 35px;
    border-color: transparent transparent rgba(244, 128, 36, 0.15) transparent;
    bottom: 25%;
    right: 12%;
    animation: rotateTriangle 30s linear infinite reverse, floatTriangle 16s ease-in-out infinite reverse;
}

.geo-triangle-3 {
    border-width: 0 25px 43px 25px;
    border-color: transparent transparent rgba(244, 128, 36, 0.12) transparent;
    top: 50%;
    left: 3%;
    animation: rotateTriangle 22s linear infinite, floatTriangleVertical 12s ease-in-out infinite;
}

/* 菱形幾何圖形 */
.geo-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(244, 128, 36, 0.06);
    transform: rotate(45deg);
    border: 1px solid rgba(244, 128, 36, 0.1);
    animation: rotateDiamond 15s linear infinite;
}

.geo-diamond-1 {
    top: 15%;
    right: 25%;
    animation: rotateDiamond 18s linear infinite, floatDiamond 11s ease-in-out infinite;
}

.geo-diamond-2 {
    bottom: 20%;
    left: 20%;
    width: 45px;
    height: 45px;
    animation: rotateDiamond 20s linear infinite reverse, floatDiamond 13s ease-in-out infinite reverse;
}

/* 動畫效果 */
@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -15px);
    }

    50% {
        transform: translate(-10px, 20px);
    }

    75% {
        transform: translate(15px, 10px);
    }
}

@keyframes rotateTriangle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatTriangle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15px, -10px) rotate(120deg);
    }

    66% {
        transform: translate(-10px, 15px) rotate(240deg);
    }
}

@keyframes rotateDiamond {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

@keyframes floatDiamond {

    0%,
    100% {
        transform: translate(0, 0) rotate(45deg);
    }

    50% {
        transform: translate(10px, -15px) rotate(45deg);
    }
}

@keyframes floatTriangleVertical {

    0%,
    100% {
        transform: translateY(-50%) translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translateY(-50%) translate(10px, -8px) rotate(120deg);
    }

    66% {
        transform: translateY(-50%) translate(-8px, 10px) rotate(240deg);
    }
}

/* 統計數據 Section */
.partner-section {
    padding: 100px 0;
    background-image: url("/static/images/banner-bg-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.18);
}

.partner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: center;
}

.partner-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.partner-stat-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    z-index: 2;
}

/* 獎項和殊榮 Section */
.award-section {
    padding: 100px 0;
    overflow: hidden;
    background-image: url("/static/images/banner-bg-3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.award-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.award-container {
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.award-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.award-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.award-marquee {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.award-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 200px;
}

.award-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(244, 128, 36, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-name {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    line-height: 1.5;
}

/* ============================================
   Introduction Section Styles
   ============================================ */
.intro-section {
    position: relative;
    width: 100%;
    padding: 50px 0 50px 0;
    overflow: hidden;
    background-color: rgba(244, 128, 36, 0.04);
    /* background-color: rgb(254,249,244); */
}

.intro-card {
    position: relative;
    border-radius: 24px;
    padding: 60px 0px;
    margin: 0 auto;
    z-index: 1;
}

.intro-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 40px 0;
    text-align: center;
}

.intro-title .highlight {
    color: var(--primary-color);
}

.intro-content {
    margin-bottom: 60px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.intro-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.intro-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 25px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid rgba(244, 128, 36, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-feature-item:before {
    position: absolute;
    content: "";
    height: 160px;
    width: 100%;
    background-color: rgba(244, 128, 36, 0.1);
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
    z-index: 0;
    border-radius: 50%;
    transition: 0.5s;
    opacity: 0.8;
}

.intro-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 128, 36, 0.3);
}

.intro-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-feature-icon svg {
    width: 100%;
    height: 100%;
}

.intro-feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.intro-feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(244, 128, 36, 0.3);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.intro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 128, 36, 0.4);
    background: linear-gradient(135deg, #ff6b35 0%, var(--primary-color) 100%);
}

.intro-btn:active {
    transform: translateY(0);
}

/* ============================================
   AI Features Carousel Section Styles
   ============================================ */
.ai-features-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.ai-features-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Left Side - Decorative Area */
.ai-features-left {
    flex: 0 0 40%;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    border-radius: 0 26px 26px 0;
}

.ai-features-decoration {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoration-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    position: relative;
}

.decoration-placeholder::before {
    content: '裝飾圖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* Right Side - Carousel */
.ai-features-right {
    flex: 0 0 60%;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    max-width: 60%;
}

.ai-features-swiper {
    width: 100%;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}

.ai-features-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
}

.ai-feature-card {
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}

.ai-feature-image {
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, rgba(244, 128, 36, 0.05) 0%, rgba(255, 107, 53, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.ai-feature-image .tab-text {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
}

.feature-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 128, 36, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image-placeholder::before {
    content: 'Feature Image';
    color: rgba(244, 128, 36, 0.3);
    font-size: 16px;
}

.ai-feature-content {
    /* flex: 1; */
    padding: 30px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
}

.ai-feature-title {
    font-size: 27px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.ai-feature-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ai-feature-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.ai-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 36px;
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.ai-feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff5f0;
}

.ai-features-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    width: auto !important;
}

.ai-features-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.ai-features-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .ai-features-swiper .swiper-slide {
        padding: 50px 60px;
    }

    .ai-feature-content {
        padding: 40px 50px;
    }

    .ai-feature-title {
        font-size: 36px;
    }

    .new-concept-section {
        padding: 40px 0;
    }

    .new-concept-title,
    .award-title {
        margin-bottom: 16px;
    }

    .new-concept-container,
    .partner-container,
    .award-container {
        padding: 0 16px;
    }

    .new-concept-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .new-concept-text {
        gap: 16px;
    }

    .new-concept-content {
        gap: 16px;
    }

    .concept-img {
        width: 60%;
    }

    .partner-container {
        width: 100%;
    }

    .partner-section {
        padding: 40px 0;
        background-size: auto 100% !important;
        background-attachment: initial !important;
    }

    .partner-stat-item {
        gap: 6px;
    }

    .partner-stat-number {
        font-size: 32px;
    }

    .partner-stat-label {
        font-size: 14px;
    }

    .partner-stats-grid {
        gap: 52px;
    }

    .intro-feature-item:before {
        top: -109px;
    }

    .case-section {
        padding: 100px 0 40px 0 !important;
    }
}

@media (max-width: 1200px) {
    .ai-features-wrapper {
        flex-direction: column;
    }

    .ai-features-left {
        flex: 0 0 300px;
        padding: 40px;
    }

    .ai-features-right {
        flex: 1;
    }

    .decoration-placeholder {
        max-width: 100%;
        height: 200px;
    }

    .intro-card {
        padding: 0;
    }

    .intro-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .intro-content p {
        font-size: 17px;
    }

    .intro-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .ai-features-left {
        flex: 0 0 250px;
        padding: 30px;
    }

    .ai-features-swiper {
        min-height: 600px;
    }

    .ai-features-swiper .swiper-slide {
        padding: 40px 50px;
    }

    .ai-feature-content {
        padding: 35px 40px;
    }

    .ai-feature-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .ai-feature-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .intro-section {
        padding: 60px 0;
    }

    .intro-content {
        margin-bottom: 12px;
    }

    .intro-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .intro-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .intro-feature-item {
        padding: 25px 18px;
    }

    .intro-feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .intro-feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .new-concept-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 装饰图形响应式调整 */
    .glow-circle-1 {
        width: 150px;
        height: 150px;
        top: 8%;
        left: 3%;
    }

    .glow-circle-2 {
        width: 120px;
        height: 120px;
        top: 55%;
        right: 5%;
    }

    .glow-circle-3 {
        width: 100px;
        height: 100px;
        top: 25%;
        right: 10%;
    }

    .glow-circle-4 {
        width: 140px;
        height: 140px;
        bottom: 12%;
        left: 5%;
    }

    .geo-triangle-1 {
        border-width: 0 30px 52px 30px;
        top: 15%;
        left: 8%;
    }

    .geo-triangle-2 {
        border-width: 0 25px 43px 25px;
        bottom: 20%;
        right: 8%;
    }

    .geo-triangle-3 {
        border-width: 0 20px 35px 20px;
        left: 2%;
    }

    .geo-diamond-1 {
        width: 45px;
        height: 45px;
        top: 12%;
        right: 20%;
    }

    .geo-diamond-2 {
        width: 35px;
        height: 35px;
        bottom: 15%;
        left: 15%;
    }

    .partner-stats-grid {
        grid-template-columns: 1fr;
    }

    .award-item {
        width: 180px;
    }

    .award-image {
        width: 120px;
        height: 120px;
    }

    .concept-img{
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ai-features-left {
        display: none;
    }

    .ai-features-right {
        flex: 1 1 100%;
    }

    .ai-features-swiper {
        min-height: 550px;
    }

    .ai-features-swiper .swiper-slide {
        padding: 30px 24px;
    }

    .ai-feature-image {
        height: 40%;
    }

    .ai-feature-content {
        padding: 30px 24px;
    }

    .ai-feature-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .ai-feature-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .ai-feature-btn {
        padding: 12px 32px;
        font-size: 15px;
    }

    .ai-features-pagination {
        bottom: 30px !important;
    }

    .intro-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .intro-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .intro-feature-item {
        padding: 25px 20px;
    }

    .intro-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .intro-feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .intro-btn {
        padding: 12px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .new-concept-title,
    .award-title {
        font-size: 28px;
    }

    .award-item {
        width: 120px;
    }

    .award-image {
        width: 80px;
        height: 80px;
    }
}