/* TikTok Page Specific Styles */

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

.hero-section.tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(254, 44, 85, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 242, 96, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section.tiktok .hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FE2C55 0%, #00F2EA 100%);
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.hero-section.tiktok .hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section.tiktok .hero-title span {
    background: linear-gradient(135deg, #FE2C55 0%, #00F2EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section.tiktok .hero-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-section.tiktok .hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-section.tiktok .hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.9;
}

.hero-section.tiktok .hero-feature i {
    font-size: 1.5rem;
    color: #FE2C55;
}

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

/* Button Styles */
.btn-tiktok-pink {
    padding: 16px 45px;
    background: linear-gradient(135deg, #FE2C55, #00F2EA);
    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(254, 44, 85, 0.3);
}

.btn-tiktok-pink:hover {
    background: linear-gradient(135deg, #e0264a, #00d4cb);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.4);
}

.btn-tiktok-pink:active {
    transform: translateY(-2px);
}

.btn-outline-white {
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    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;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    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, #FE2C55, #00F2EA, 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(254, 44, 85, 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, #FE2C55, #00F2EA);
    -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(254, 44, 85, 0.2);
    border-color: #FE2C55;
}

.value-section .value-point i {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FE2C55, #00F2EA);
    -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 Section */
.why-us-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.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: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.why-us-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.2);
}

.why-us-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FE2C55 0%, #00F2EA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

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

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

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

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

.cases-section .case-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cases-section .case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.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.3s ease;
}

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

.cases-section .case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FE2C55 0%, #00F2EA 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

.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: #f8f9fa;
    border-radius: 10px;
}

.cases-section .case-stat .num {
    font-size: 2rem;
    font-weight: bold;
    color: #FE2C55;
    margin-bottom: 8px;
}

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

/* Ad Types Section */
.ad-types-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.ad-types-section .ad-type-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.ad-types-section .ad-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.2);
}

.ad-types-section .ad-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FE2C55 0%, #00F2EA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ad-types-section .ad-type-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.ad-types-section .ad-type-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ad-types-section .ad-type-card p {
    color: #666;
    line-height: 1.6;
}

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

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

.process-section .process-card {
    background: #fff;
    padding: 40px 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(254, 44, 85, 0.3);
}

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

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

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

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

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

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

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(254, 44, 85, 0.95) 0%, rgba(0, 242, 234, 0.95) 100%);
    color: #fff;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats-section .stat-item {
    padding: 30px;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
}

.stats-section .stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 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(280px, 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(254, 44, 85, 0.2);
}

.why-choose-section .why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FE2C55 0%, #00F2EA 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.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Team Section */
.team-section.tiktok {
    padding: 100px 0;
    background: #f8f9fa;
    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);
}

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

.team-section.tiktok > .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.tiktok .team-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

/* 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.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-telegram.bg-whatsapp {
    background: #25D366;
}

.btn-telegram.bg-whatsapp:hover {
    background: #20BD5A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section.tiktok .hero-title {
        font-size: 2rem;
    }
    
    .hero-section.tiktok .hero-desc {
        font-size: 1rem;
    }
    
    .hero-section.tiktok .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;
    }
    
    .stats-section .stat-number {
        font-size: 2.2rem;
    }
}
