/* Product Ads Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 50%,
        rgba(51, 65, 85, 0.85) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=2340&auto=format&fit=crop') center/cover;
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(147, 197, 253, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(147, 197, 253, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(147, 197, 253, 0.5);
    }
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Standard Package Section */
.standard-package {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.standard-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23000000" opacity="0.03"/><circle cx="75" cy="75" r="0.5" fill="%23000000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.package-content {
    position: relative;
    z-index: 2;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.package-info {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.package-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
}

.package-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #f59e0b 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    color: #92400e;
    font-weight: 700;
    box-shadow:
        0 8px 25px rgba(251, 191, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
}

.feature-item:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 6px rgba(59, 130, 246, 0.2));
}

.feature-content {
    font-size: 1rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

.feature-content strong {
    color: #1e293b;
    font-weight: 700;
}

.package-visual {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow:
        0 25px 50px rgba(30, 58, 138, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-image:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 70px rgba(30, 58, 138, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.15);
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.main-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.secondary-images img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.1);
}

.secondary-images img:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.2);
}

/* Other Videos Section */
.other-videos {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.other-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.other-videos .section-header h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.other-videos .section-subtitle {
    color: #cbd5e1;
}

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

.video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    transform-style: preserve-3d;
}

.video-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.video-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706) 1;
    border-radius: 24px;
    position: relative;
}

.video-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    border-radius: 24px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    from { opacity: 0.7; transform: scale(1); }
    to { opacity: 1; transform: scale(1.02); }
}

.video-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover .video-image img {
    transform: scale(1.1) rotate(1deg);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 3;
    animation: pulse 2s infinite;
}

.card-badge.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.card-badge.trending {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

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

.video-content {
    padding: 2.5rem;
    position: relative;
}

.video-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.platform-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.platform-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.platform-icon:hover {
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.faq-item::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 3rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 4px solid #3b82f6;
}

.faq-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Updated Video Content Styles */
.video-content h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.video-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.learn-more {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.learn-more:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }

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

    .hero-stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        min-width: 200px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .package-content,
    .package-info {
        padding: 2rem;
        margin: 0 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .video-card {
        margin: 0 1rem;
    }

    .video-content {
        padding: 2rem;
    }

    .main-image {
        height: 250px;
    }

    .secondary-images {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .secondary-images img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 120px 20px 80px;
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
        min-width: 150px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .standard-package,
    .other-videos {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .package-content,
    .package-info {
        padding: 1.5rem;
    }

    .package-highlight {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .video-content {
        padding: 1.5rem;
    }

    .video-content h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1rem;
    }

    .price strong {
        font-size: 1.2rem;
    }

    .main-image {
        height: 200px;
    }

    .video-card:hover {
        transform: translateY(-5px);
    }

    .learn-more {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}