/* TikTok Page Specific Styles */

/* TikTok Hero Section */
.tiktok-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #1e3a8a 50%, #1d4ed8 75%, #3b82f6 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tiktok-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 0, 150, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: tiktokFloat 12s ease-in-out infinite;
}

.tiktok-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

@keyframes tiktokFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(1deg) scale(1.02); }
    50% { transform: translateY(-10px) rotate(-1deg) scale(0.98); }
    75% { transform: translateY(-20px) rotate(0.5deg) scale(1.01); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0050, #00f5ff, #ffffff, #ff6b6b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: none;
    line-height: 1.1;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.hero-text h1::before {
    content: attr(data-text);
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 0, 80, 0.5);
    z-index: -1;
    animation: glitch 2s infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    margin-bottom: 3rem;
}

.hero-subtitle p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: 'Exo 2', sans-serif;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-range {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-range::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, #ff0050, #00f5ff, #ff6b6b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    animation: borderShift 3s linear infinite;
}

@keyframes borderShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.price-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #ff0050, #ff6b6b, #ff0050);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 30px rgba(255, 0, 80, 0.4),
        0 0 0 0 rgba(255, 0, 80, 0.5);
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s infinite;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4), 0 0 0 0 rgba(255, 0, 80, 0.5); }
    50% { box-shadow: 0 15px 40px rgba(255, 0, 80, 0.6), 0 0 0 10px rgba(255, 0, 80, 0); }
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(255, 0, 80, 0.6),
        0 0 30px rgba(255, 107, 107, 0.8);
    background-position: 100% 0;
    animation: none;
}

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

.btn-large:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

/* Best Product Videos Section */
.best-product-videos {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #f8f9ff 0%, #e8ecff 50%, #f0f4ff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30,58,138,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    position: relative;
    overflow: hidden;
}

.best-product-videos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: patternMove 15s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.best-product-videos .section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: none;
    letter-spacing: -1px;
}

.best-product-videos .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ff0050, #00f5ff);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(255, 0, 80, 0.5); width: 100px; }
    100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.8); width: 150px; }
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.video-showcase-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
}

.video-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-showcase-item:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(30, 58, 138, 0.2),
        0 0 50px rgba(99, 102, 241, 0.3);
}

.video-showcase-item:hover::before {
    opacity: 1;
}

.video-showcase-item .video-thumbnail {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 25px 25px 0 0;
}

/* Enhanced image effects for video thumbnails */
.video-showcase-item .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1) saturate(1.15) hue-rotate(5deg);
    border-radius: 25px 25px 0 0;
}

.video-showcase-item:hover .video-thumbnail img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.15) contrast(1.25) saturate(1.35) hue-rotate(-3deg);
}

/* Add subtle glow effect to video cards */
.video-showcase-item:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(30, 58, 138, 0.2),
        0 0 50px rgba(99, 102, 241, 0.3),
        0 0 100px rgba(255, 0, 80, 0.1);
}

.video-showcase-item .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(30, 58, 138, 0.3),
        rgba(29, 78, 216, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(5px);
}

.video-showcase-item:hover .video-overlay {
    opacity: 1;
    background: linear-gradient(135deg,
        rgba(255, 0, 80, 0.4),
        rgba(30, 58, 138, 0.3),
        rgba(99, 102, 241, 0.4));
}

.video-showcase-item .play-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7) rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(255, 0, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.video-showcase-item .play-icon svg {
    margin-left: 3px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.video-showcase-item:hover .play-icon {
    transform: scale(1) rotate(0deg);
    background: linear-gradient(135deg, #ff0050, #ff6b6b);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(255, 0, 80, 0.5),
        0 0 30px rgba(255, 107, 107, 0.6);
    animation: playIconPulse 1.5s infinite;
}

@keyframes playIconPulse {
    0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(255, 0, 80, 0.5), 0 0 30px rgba(255, 107, 107, 0.6); }
    50% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(255, 0, 80, 0.7), 0 0 40px rgba(255, 107, 107, 0.8); }
}

.video-showcase-item .video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-showcase-item:hover .video-duration {
    background: linear-gradient(135deg, #ff0050, #ff6b6b);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.4);
}

.video-showcase-item h3 {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.video-showcase-item:hover h3 {
    background: linear-gradient(135deg, #ff0050, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Standard Package Section */
.standard-package {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="28" height="28" patternUnits="userSpaceOnUse"><polygon points="14,2 26,8 26,20 14,26 2,20 2,8" fill="none" stroke="rgba(30,58,138,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    position: relative;
    overflow: hidden;
}

.standard-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: packageFloat 20s ease-in-out infinite;
}

@keyframes packageFloat {
    0%, 100% { transform: translateX(0%) translateY(0%); }
    25% { transform: translateX(2%) translateY(-1%); }
    50% { transform: translateX(-1%) translateY(2%); }
    75% { transform: translateX(-2%) translateY(-1%); }
}

.package-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.package-header h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    position: relative;
    letter-spacing: -1px;
}

.package-header h2::before {
    content: '📦';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: packageBounce 2s ease-in-out infinite;
}

@keyframes packageBounce {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.package-details h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    position: relative;
}

.package-details h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff0050, #ff6b6b);
    border-radius: 2px;
}

.package-features {
    list-style: none;
    padding: 0;
    background:
        linear-gradient(145deg, rgba(248, 249, 255, 0.8), rgba(232, 236, 255, 0.6)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 30px;
    padding: 3.5rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
}

.package-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.package-features li {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    font-family: 'Exo 2', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: all 0.3s ease;
}

.package-features li::before {
    content: '✨';
    position: absolute;
    left: -40px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.package-features li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 0 -2rem 2rem -2rem;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.package-features li strong {
    color: #1e3a8a;
    font-weight: 800;
    min-width: 140px;
    text-align: left;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Other Video Types Section */
.other-video-types {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #f8f9ff 0%, #e8ecff 50%, #f0f4ff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="triangle" width="24" height="24" patternUnits="userSpaceOnUse"><polygon points="12,2 22,18 2,18" fill="none" stroke="rgba(30,58,138,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23triangle)"/></svg>');
    position: relative;
    overflow: hidden;
}

.other-video-types::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background:
        radial-gradient(ellipse at 25% 75%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: typesSpin 25s linear infinite;
    z-index: 1;
}

@keyframes typesSpin {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.other-video-types .section-header h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.video-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.video-type-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)),
        linear-gradient(135deg, rgba(248, 249, 255, 0.8), rgba(232, 236, 255, 0.6));
    border-radius: 25px;
    padding: 3rem;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.video-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ff0050, #ff6b6b, #8b5cf6, #3b82f6);
    background-size: 300% 300%;
    animation: cardBorderShift 4s ease-in-out infinite;
}

@keyframes cardBorderShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-type-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(3deg);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(30, 58, 138, 0.2),
        0 0 60px rgba(139, 92, 246, 0.3);
}

.video-type-card:hover::before {
    height: 8px;
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.4);
}

.price-tag {
    background: linear-gradient(135deg, #ff0050, #ff6b6b, #ff0050);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', sans-serif;
    box-shadow:
        0 8px 20px rgba(255, 0, 80, 0.4),
        0 3px 10px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    animation: priceShimmer 3s ease-in-out infinite;
    letter-spacing: 1px;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.video-type-card:hover .price-tag::before {
    left: 100%;
}

@keyframes priceShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-type-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.video-type-card:hover h3 {
    background: linear-gradient(135deg, #ff0050, #ff6b6b, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
}

.video-type-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.video-type-card:hover p {
    color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1e3a8a);
    background-size: 200% 200%;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    box-shadow:
        0 8px 20px rgba(30, 58, 138, 0.4),
        0 3px 10px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 15px 30px rgba(30, 58, 138, 0.5),
        0 8px 20px rgba(59, 130, 246, 0.4),
        0 0 40px rgba(99, 102, 241, 0.3);
    background-position: 100% 0;
}

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

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.faq-section .section-header h2 {
    color: white;
}

.faq-section .section-subtitle {
    color: #cbd5e1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

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

    .faq-item {
        padding: 2rem;
        margin: 0 0.5rem;
    }
}

/* Additional animations and mobile optimization */

/* Scroll-triggered animations */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading animation for elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Enhanced hover effects for buttons */
.btn-enhanced-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-enhanced-hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.5s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-enhanced-hover:hover::after {
    width: 300px;
    height: 300px;
}

/* Floating particles effect */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(2n) {
    background: rgba(59, 130, 246, 0.3);
    animation-duration: 12s;
    animation-delay: -5s;
}

.particle:nth-child(3n) {
    background: rgba(255, 0, 80, 0.3);
    animation-duration: 18s;
    animation-delay: -10s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced text effects */
.text-glow {
    text-shadow:
        0 0 10px rgba(139, 92, 246, 0.5),
        0 0 20px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow:
            0 0 10px rgba(139, 92, 246, 0.5),
            0 0 20px rgba(139, 92, 246, 0.3),
            0 0 30px rgba(139, 92, 246, 0.2);
    }
    100% {
        text-shadow:
            0 0 15px rgba(255, 0, 80, 0.6),
            0 0 25px rgba(255, 0, 80, 0.4),
            0 0 35px rgba(255, 0, 80, 0.3);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #f8f9ff, #e8ecff);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(139, 92, 246, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff0050, #ff6b6b);
}

/* Enhanced loading states */
.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Pulsing effect for important elements */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(139, 92, 246, 0.3),
            0 0 40px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 0, 80, 0.4),
            0 0 60px rgba(255, 0, 80, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        animation: mobileTextPulse 2s ease-in-out infinite;
    }

    @keyframes mobileTextPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); }
    }

    .hero-subtitle p {
        font-size: 1.2rem;
    }

    .price-text {
        font-size: 2.2rem;
    }

    .video-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }

    .video-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-features li {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 0;
    }

    .package-features li strong {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    /* Mobile-specific animations */
    .video-showcase-item:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .video-type-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .tiktok-hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .price-text {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        border-radius: 40px;
    }

    .video-showcase-item .video-thumbnail {
        height: 280px;
    }

    .package-features {
        padding: 2.5rem;
    }

    .video-type-card {
        padding: 2.5rem;
    }

    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Enhanced mobile touch interactions */
    .btn-large:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .video-showcase-item:active {
        transform: scale(0.98);
    }

    .video-type-card:active {
        transform: scale(0.98);
    }

}

/* Enhanced Package Features Grid */
.package-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.feature-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)),
        linear-gradient(135deg, rgba(248, 249, 255, 0.9), rgba(232, 236, 255, 0.7));
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(30, 58, 138, 0.15),
        0 0 40px rgba(139, 92, 246, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.4), rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow:
        0 10px 25px rgba(139, 92, 246, 0.3),
        0 5px 15px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff0050, #ff6b6b);
    box-shadow:
        0 15px 35px rgba(255, 0, 80, 0.4),
        0 8px 20px rgba(255, 107, 107, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content h4 {
    background: linear-gradient(135deg, #ff0050, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    color: #6366f1;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.feature-card:hover .feature-highlight {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.15), rgba(255, 107, 107, 0.15));
    color: #ff0050;
    border-color: rgba(255, 0, 80, 0.3);
    transform: translateY(-2px) scale(1.05);
}

/* Package Benefits */
.package-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3)) border-box;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9), rgba(232, 236, 255, 0.8));
    padding: 1rem 2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #1e3a8a;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(255, 107, 107, 0.1));
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.2);
    border-color: rgba(255, 0, 80, 0.3);
}

.benefit-icon {
    font-size: 1.4rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(3px 3px 6px rgba(255, 0, 80, 0.3));
}

/* Hide old package features */
.package-features {
    display: none !important;
}

/* Mobile responsive for new features */
@media (max-width: 768px) {
    .package-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .package-benefits {
        gap: 1rem;
    }

    .benefit-item {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .package-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .package-benefits {
        flex-direction: column;
        align-items: center;
    }
}