/* Kwai Page Specific Styles */

/* Hero Section */
.hero-section.kwai {
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.85) 0%, rgba(255, 85, 0, 0.7) 50%, rgba(20, 20, 20, 0.9) 100%),
                url('https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=2070') center/cover no-repeat;
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-section.kwai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 85, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 136, 0, 0.25) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-section.kwai .hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF5500 0%, #FF8800 100%);
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.hero-section.kwai .hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-section.kwai .hero-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-section.kwai .hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-section.kwai .hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.hero-section.kwai .hero-feature:hover {
    transform: scale(1.05);
}

.hero-section.kwai .hero-feature span {
    line-height: 1.3;
    font-weight: 500;
}

.hero-section.kwai .hero-feature i {
    font-size: 1.5rem;
    color: #FF8800;
    filter: drop-shadow(0 2px 8px rgba(255, 136, 0, 0.4));
}

.hero-section.kwai .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

/* Button Styles */
.btn-kwai-orange {
    padding: 16px 45px;
    background: linear-gradient(135deg, #FF5500, #FF8800);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
}

.btn-kwai-orange:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.4);
    background: linear-gradient(135deg, #E04D00, #FF7700);
}

.btn-kwai-orange:active {
    transform: translateY(-2px);
}

.btn-outline-white {
    padding: 16px 45px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-white:active {
    transform: translateY(-2px);
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF5500, #FF8800, transparent);
}

.value-section .value-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.value-section .value-image {
    flex: 1;
    transition: transform 0.4s ease;
}

.value-section .value-image img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(255, 85, 0, 0.2);
    transition: transform 0.4s ease;
}

.value-section .value-image:hover img {
    transform: scale(1.02);
}

.value-section .value-text {
    flex: 1;
}

.value-section .value-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF5500, #FF8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.value-section .value-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.value-section .value-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.value-section .value-point {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.value-section .value-point:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.2);
    border-color: #FF5500;
}

.value-section .value-point i {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF5500, #FF8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.value-section .value-point:hover i {
    transform: scale(1.1);
}

.value-section .value-point h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-section .value-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.why-us-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-section .service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 2px solid transparent;
}

.why-us-section .service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 85, 0, 0.25);
    border-color: #FF5500;
}

.why-us-section .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-us-section .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF5500 0%, #FF8800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
    transition: all 0.4s ease;
}

.why-us-section .service-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.why-us-section .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.why-us-section .service-card p {
    color: #666;
    line-height: 1.6;
}

/* Value Detail Section */
.value-detail-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.value-detail-section .value-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-detail-section .value-detail-item {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-detail-section .value-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
}

.value-detail-section .value-detail-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FF5500;
}

.value-detail-section .value-detail-item p {
    color: #666;
    line-height: 1.6;
}

/* Service Content Section */
.service-content-section {
    padding: 100px 0;
    background: #fff;
}

.service-content-section .service-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-content-section .service-content-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid #FF5500;
    transition: all 0.3s ease;
}

.service-content-section .service-content-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
}

.service-content-section .service-content-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content-section .service-content-card ul {
    list-style: none;
    padding: 0;
}

.service-content-section .service-content-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.service-content-section .service-content-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF5500;
    font-weight: bold;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-choose-section .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-section .why-choose-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.why-choose-section .why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.2);
}

.why-choose-section .why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF5500 0%, #FF8800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-section .why-choose-icon i {
    font-size: 2rem;
    color: #fff;
}

.why-choose-section .why-choose-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-choose-section .why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* Cases Section */
.cases-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.cases-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.cases-section .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.cases-section .case-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cases-section .case-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 85, 0, 0.2);
}

.cases-section .case-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.cases-section .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cases-section .case-card:hover .case-image img {
    transform: scale(1.1);
}

.cases-section .case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF5500 0%, #FF8800 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

.cases-section .case-content {
    padding: 35px;
}

.cases-section .case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.cases-section .case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cases-section .case-stats {
    display: flex;
    gap: 30px;
}

.cases-section .case-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cases-section .case-stat:hover {
    border-color: #FF5500;
    transform: translateY(-3px);
}

.cases-section .case-stat .num {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF5500, #FF8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.cases-section .case-stat .label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.cases-section .cases-cta {
    text-align: center;
    margin-top: 50px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-section .process-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-section .process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.3);
}

.process-section .process-card:hover .process-step {
    background: #E04D00;
    transform: scale(1.1);
}

.process-section .process-step {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF5500 0%, #FF8800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
}

.process-section .process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-section .process-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.process-section .process-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.process-section .process-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF5500;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-section .cta-buttons a {
    margin: 0;
}

/* Button Additional Styles */
.btn-telegram {
    padding: 14px 32px;
    background: #0088cc;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-telegram:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.btn-telegram.bg-kwai {
    background: #FF5500;
}

.btn-telegram.bg-kwai:hover {
    background: #E04D00;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-section > .container > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section .team-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-section .team-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
}

.team-section .team-feature i {
    font-size: 1.3rem;
    color: #FF5500;
}

.team-section .contact-cta-container {
    text-align: center;
}

/* Float Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0088cc, #006699);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.5);
}

.float-btn .float-tooltip {
    position: absolute;
    right: 75px;
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section.kwai .hero-title {
        font-size: 2rem;
    }
    
    .hero-section.kwai .hero-desc {
        font-size: 1rem;
    }
    
    .hero-section.kwai .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .value-section .value-content {
        flex-direction: column;
    }
    
    .value-section .value-points {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cases-section .cases-grid {
        grid-template-columns: 1fr;
    }
}
