/* DAY ONE HK - 專業清潔服務網站樣式 */


/* 英雄区域 - 现代Banner */
.hero-section {
    position: relative;
    height: 88vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 50%, #ffd700 100%);
    /* background-color: var(--primary-color); */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    color: white;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-badge::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.6s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.hero-badge:hover .badge-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.hero-badge i {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 15px;
}

.hero-main-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.hero-main-subtitle {
    font-size: 38px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
}

.hero-main-description {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

/* 服務特色圖標 */
.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-small {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover .feature-icon-small {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: scale(1.1);
}

.feature-icon-small i {
    font-size: 14px;
    color: #fff;
}

.hero-features .feature-item span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
}

/* 客戶評價展示 */
.hero-testimonial {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-testimonial:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: #FFD700;
    font-size: 18px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.stars i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {

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

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

.testimonial-content p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    font-style: italic;
    line-height: 1.4;
}

.client-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* 镜面按钮公共样式 */
.btn-mirror {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: none;

    /* 镜面效果基础样式 */
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

}

.btn-mirror .layui-icon {
    font-size: 12px;
    margin-top: 1px;
}

.btn-mirror::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-mirror::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.btn-mirror:hover::after {
    opacity: 1;
}

.btn-mirror:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-mirror span,
.btn-mirror i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-mirror i {
    transition: all 0.3s ease;
}

.btn-mirror:hover i {
    transform: translateX(5px);
}

/* 主要按钮样式 */
.hero-cta {
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta:hover {
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* 次要按钮样式 */
.btn-mirror.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-mirror.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: #ffffff;
}

/* 成功按钮样式 */
.btn-mirror.btn-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(76, 175, 80, 0.7) 100%);
    color: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-mirror.btn-success:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(76, 175, 80, 0.9) 100%);
    color: #ffffff;
}

/* 危险按钮样式 */
.btn-mirror.btn-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9) 0%, rgba(244, 67, 54, 0.7) 100%);
    color: #ffffff;
    color: #ffffff;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-mirror.btn-danger:hover {
    background: linear-gradient(135deg, rgba(244, 67, 54, 1) 0%, rgba(244, 67, 54, 0.9) 100%);
    color: #ffffff;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 14px;
    color: white;
}

.scroll-indicator i {
    font-size: 18px;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

.hero-video-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;

    /* background-image: url('/assets/image/video-1.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

/* 悬浮动画元素 */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 20px;
    height: 20px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-2 {
    width: 15px;
    height: 15px;
    top: 20%;
    right: -25px;
    animation-delay: 1s;
    animation-duration: 6s;
}

.floating-3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-4 {
    width: 18px;
    height: 18px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation-delay: 3s;
    animation-duration: 5s;
}

.floating-5 {
    width: 22px;
    height: 22px;
    bottom: -25px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 9s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.9);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-30px) translateX(5px) scale(1.2);
        opacity: 0.9;
    }
}

/* 悬浮元素悬停效果 */
.floating-element:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
    transition: all 0.3s ease;
}

/* 额外的悬浮装饰元素 */
.hero-video-container::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes glow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 视频容器的脉冲边框效果 */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-border 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-border {

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

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    animation: slideInRight 1s ease-out;
    gap: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-logo {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.outer-ring {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: rotate 20s linear infinite;
}

.inner-ring {
    width: 150px;
    height: 150px;
    top: -75px;
    left: -75px;
    border-color: rgba(255, 255, 255, 0.7);
    animation: rotate 15s linear infinite reverse;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.logo-center {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.6);
    position: relative;
    backdrop-filter: blur(10px);
}

.logo-center::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.1), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
}

.hero-logo-image {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.logo-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f08234;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.day-text {
    font-size: 18px;
    line-height: 1;
}

.one-text {
    font-size: 24px;
    line-height: 1;
    position: relative;
}

.leaf-icon {
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 16px;
    transform: rotate(15deg);
}

.logo-location {
    font-size: 10px;
    color: #666;
    margin-top: 5px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: white;
    color: #f08234;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #f08234;
    transform: translateY(-2px);
}

/* 当按钮同时具有btn-mirror类时的样式 */
.btn.btn-mirror {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn.btn-mirror:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

/* 通用区域样式已移至 common.css */

/* 我們的理念 - 高級美觀樣式 */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* 背景裝飾元素 */
.philosophy-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.08), rgba(240, 130, 52, 0.03));
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(240, 130, 52, 0.1), transparent);
    height: 1px;
    animation: slideIn 6s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    top: 25%;
    left: -100px;
    animation-delay: 1s;
}

.line-2 {
    width: 150px;
    bottom: 30%;
    right: -75px;
    animation-delay: 3s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 標題樣式 */
.philosophy-section .section-header>p {
    font-size: 18px;
    color: var(--text-color-light);
    margin-top: 15px;
    font-style: italic;
}

/* 主要內容區域 */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* 左側主要理念內容 */
.philosophy-main {
    position: relative;
}

.philosophy-text-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.philosophy-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.quote-decoration {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(240, 130, 52, 0.2);
    font-family: serif;
}

.philosophy-text-content h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-text-content>p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 400;
}

/* 重點內容樣式 */
.philosophy-highlights {
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(240, 130, 52, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(240, 130, 52, 0.1);
    transform: translateX(10px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* 統計數據樣式 - 使用唯一類名避免衝突 */
.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.1), rgba(240, 130, 52, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 130, 52, 0.2);
}

.philosophy-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.philosophy-stat-text {
    font-size: 14px;
    color: var(--text-color-light);
    font-weight: 500;
}

/* 右側特色展示 - 簡化樣式讓它們更協調 */
.philosophy-features {
    display: grid;
    gap: 20px;
}

.philosophy-feature-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.philosophy-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 130, 52, 0.05), transparent);
    transition: left 0.6s ease;
}

.philosophy-feature-item:hover::before {
    left: 100%;
}

.philosophy-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 130, 52, 0.2);
}

.philosophy-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.philosophy-feature-item:hover .philosophy-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-feature-icon i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

.philosophy-feature-item:hover .philosophy-feature-icon i {
    transform: scale(1.1);
}

.philosophy-feature-content {
    flex: 1;
}

.philosophy-feature-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.philosophy-feature-content p {
    font-size: 14px;
    color: var(--text-color-light);
    line-height: 1.5;
    margin: 0;
}



/* 響應式設計 */
@media (max-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-text-card {
        padding: 30px 25px;
    }

    .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .philosophy-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .decoration-circle {
        display: none;
    }

    .decoration-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .philosophy-section {
        padding: 80px 0;
    }

    .philosophy-text-card {
        padding: 25px 20px;
    }

    .philosophy-feature-item {
        padding: 20px 15px;
    }
}

/* 最新動向 */
.news-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;

    display: flex;
    flex-direction: column;

}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.news-date,
.news-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.news-content>p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.news-detail {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* 專業服務 */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-item {
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-item:hover::before {
    opacity: 0.05;
}

.service-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
}

.service-item>* {
    position: relative;
    z-index: 1;
}

.service-item.hovered {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    padding: 15px;
    border: 1px solid #f08234;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon:hover {
    transform: translateY(-5px) scale(1.05);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
}

/* 高端清潔儀器 */
.equipment-section {
    padding: 100px 0;
    background: rgba(240, 130, 52, 0.9);
    color: white;
}

.equipment-section .section-title {
    color: #fff;
    -webkit-text-fill-color: unset;
}

.equipment-section .section-divider{
    background: #fff;
}

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

.equipment-image {
    height: 400px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.equipment-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.equipment-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.equipment-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

/* 認證展示 */
.certification-section {
    padding: 100px 0;
    background: #3498db;
    color: white;
}

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

.certification-text h2 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.zpm-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zpm-icon {
    font-size: 48px;
}

.zpm-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.zpm-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.certification-image {
    height: 300px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* 產品認證標誌 */
.logos-section {
    padding: 100px 0;
    background: white;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.logo-item {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.logo-item .logo-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.logo-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.logo-item p {
    color: #666;
    line-height: 1.6;
}

.logos-grid .logo-icon {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
}

.logos-grid .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 页面加载动画 */


body.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* 滚动动画类 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f08234;
    box-shadow: 0 0 0 3px rgba(240, 130, 52, 0.1);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}



/* 响应式设计 */
@media (max-width: 768px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .philosophy-content,
    .equipment-showcase,
    .certification-content,
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .page-title p {
        font-size: 16px;
    }

    .intro-text h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

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

    .logos-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .hero-logo {
        transform: scale(0.8);
    }

    .outer-ring {
        width: 160px;
        height: 160px;
        top: -80px;
        left: -80px;
    }

    .inner-ring {
        width: 120px;
        height: 120px;
        top: -60px;
        left: -60px;
    }

    .logo-center {
        width: 100px;
        height: 100px;
    }

    .logo-circle {
        padding: 6px 12px;
    }

    .logo-left,
    .logo-right {
        font-size: 16px;
    }

    .logo-leaf {
        font-size: 14px;
        top: -3px;
        right: -3px;
    }

    .advantages-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card,
    .application-item {
        padding: 30px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-main-subtitle {
        font-size: 20px;
    }

    .hero-main-description {
        font-size: 14px;
    }

    /* 移動端特色圖標調整 */
    .hero-features {
        gap: 15px;
        justify-content: center;
    }

    .hero-features .feature-item {
        padding: 10px 14px;
    }

    .hero-features .feature-item span {
        font-size: 13px;
    }

    /* 移動端客戶評價調整 */
    .hero-testimonial {
        margin-top: 25px;
        padding: 15px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .client-name {
        font-size: 11px;
    }

    .hero-video-container {
        width: 300px;
        height: 300px;
    }

    /* 移动端悬浮元素调整 */
    .floating-element {
        display: none;
    }

    .hero-video-container::before,
    .hero-video-container::after {
        display: none;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
    }

    .stat-card {
        min-width: 100px;
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .logo-center {
        width: 150px;
        height: 150px;
    }

    .hero-logo-image {
        width: 90px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .feature-icon i,
    .service-icon i {
        font-size: 28px;
    }

    /* 品牌標識樣式 */
    .hero-brand {
        margin-bottom: 40px;
        text-align: center;
    }

    .brand-logo {
        margin-bottom: 20px;
    }

    .brand-image {
        width: 120px;
        height: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    .brand-tagline {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* 數據統計樣式 */
    .hero-stats {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        justify-content: center;
    }

    .stat-item {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 20px 15px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 100px;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .stat-number {
        font-size: 32px;
        font-weight: 800;
        color: white;
        margin-bottom: 8px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        line-height: 1.2;
    }

    /* 行動按鈕樣式 */
    .hero-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-actions .btn-mirror {
        min-width: 160px;
        justify-content: center;
    }

    .hero-actions .btn-secondary {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hero-actions .btn-secondary:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.5);
    }
}

/* 高端清潔儀器 - Swiper輪播樣式 */
.equipment-swiper-container {
    position: relative;
    margin-top: 40px;
}

.equipment-swiper {
    position: relative;
    overflow: hidden;
}

.equipment-swiper .swiper-slide {
    height: auto;
}

.equipment-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.equipment-image {
    height: 400px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* 預留位置的樣式 */
.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.placeholder-content i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.placeholder-content p {
    font-size: 18px;
    margin: 0;
}

.equipment-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.equipment-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.equipment-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.feature i {
    color: #fff;
    font-size: 18px;
}

/* Swiper導航按鈕樣式 */
.equipment-swiper .swiper-button-next,
.equipment-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(240, 130, 52, 0.9);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    top: 45%;
}

.equipment-swiper .swiper-button-next:hover,
.equipment-swiper .swiper-button-prev:hover {
    background: rgba(240, 130, 52, 1);
    transform: scale(1.1);
}

.equipment-swiper .swiper-button-next::after,
.equipment-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper分頁器樣式 */
.equipment-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

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

.equipment-swiper .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* 響應式設計 - 高端清潔儀器輪播 */
@media (max-width: 768px) {
    .equipment-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .equipment-image {
        height: 300px;
    }

    .equipment-info h3 {
        font-size: 24px;
        text-align: center;
    }

    .equipment-info p {
        text-align: center;
    }

    .equipment-features {
        align-items: center;
    }

    .equipment-swiper .swiper-button-next,
    .equipment-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .equipment-swiper .swiper-button-next::after,
    .equipment-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .equipment-showcase {
        gap: 20px;
    }

    .equipment-image {
        height: 250px;
    }

    .equipment-info h3 {
        font-size: 20px;
    }

    .equipment-info p {
        font-size: 14px;
    }

    .feature {
        font-size: 14px;
    }

    .equipment-swiper .swiper-button-next,
    .equipment-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .equipment-swiper .swiper-button-next::after,
    .equipment-swiper .swiper-button-prev::after {
        font-size: 14px;
    }
}

