/* Hero Section - Clean and Simple */
.hero-section {
    min-height: 100vh;
    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-1485846234645-a62644f84728?q=80&w=2340&auto=format&fit=crop') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.badge-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: fit-content;
    backdrop-filter: blur(10px);
}

/* Hero Title */
.hero-title h1 {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.title-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: #cbd5e1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 500px;
}

.highlight-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
}

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

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.video-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.video-preview img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-preview:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.video-info {
    text-align: center;
    color: white;
}

.video-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-duration {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Trust Section - Base Styles */
.trust-section {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: block;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Best Videos Section - Ultra Modern Creative Design */
.best-videos {
    padding: 160px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #f1f5f9 70%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.best-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(251, 191, 36, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

/* Creative Section Header */
.section-header-creative {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.header-content {
    position: relative;
}

.section-badge-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-title-creative {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-word {
    display: inline-block;
    margin-right: 1rem;
    color: #1e293b;
    position: relative;
    transition: all 0.3s ease;
}

.title-word.highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.5s both;
}

@keyframes underlineExpand {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.section-subtitle-creative {
    font-size: 1.4rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.header-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.creative-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    animation: creativeFloat 8s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60px;
    right: 10px;
    animation-delay: 2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    bottom: 30px;
    left: 50px;
    animation-delay: 4s;
}

@keyframes creativeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-10px) rotate(240deg) scale(0.9); }
}

/* Asymmetric Video Layout */
.videos-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Video */
.video-item-featured {
    position: relative;
}

.featured-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow:
        0 30px 60px rgba(30, 58, 138, 0.15),
        0 8px 25px rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 40px 80px rgba(30, 58, 138, 0.2),
        0 15px 35px rgba(59, 130, 246, 0.15);
}

.featured-video-frame {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.featured-video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-container:hover .featured-video-frame img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: all 0.4s ease;
    color: white;
    text-align: center;
    padding: 2rem;
}

.featured-container:hover .featured-overlay {
    opacity: 1;
}

.play-system {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.play-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 6s linear infinite;
}

.orbit-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.orbit-2 {
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.orbit-3 {
    width: 120px;
    height: 120px;
    animation-delay: 4s;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.play-center:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.featured-meta {
    text-align: center;
    max-width: 400px;
}

.video-category-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.featured-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.featured-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Best Videos Section */
.best-videos {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.best-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.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    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;
}

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

.video-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(30, 58, 138, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(30, 58, 138, 0.15),
        0 10px 25px rgba(59, 130, 246, 0.1);
}

.video-player {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover .video-player img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: white;
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Advanced Package Section - Completely Redesigned */
.advanced-package {
    padding: 150px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.advanced-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.advanced-package .section-header {
    margin-bottom: 6rem;
}

.advanced-package .section-header h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 3.8rem;
}

.advanced-package .section-subtitle {
    color: #cbd5e1;
    font-size: 1.4rem;
    max-width: 800px;
}

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

.package-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.package-hero-content {
    position: relative;
}

.hero-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
}

.package-hero-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.highlight-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.highlight-text span {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.package-hero-visual {
    position: relative;
}

.hero-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.hero-video-frame:hover {
    transform: scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-video-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.video-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.quality-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.play-indicator {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-indicator:hover {
    transform: scale(1.1);
    background: white;
}

.package-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.title-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

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

.detail-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.card-feature {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.premium-services {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-service {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.premium-service:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.service-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.service-guarantee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: white;
}

.guarantee-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.guarantee-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.guarantee-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Other Videos Section */
.other-videos {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.video-type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(30, 58, 138, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.video-type-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(30, 58, 138, 0.15),
        0 10px 25px rgba(59, 130, 246, 0.1);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 3;
}

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

.currency {
    font-size: 0.75rem;
    opacity: 0.9;
}

.amount {
    font-size: 0.9rem;
    font-weight: 700;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.3px;
}

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

/* 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 */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .package-hero,
    .package-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .video-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

    .videos-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .package-hero {
        padding: 2rem;
        margin: 0 1rem;
    }

    .details-cards {
        grid-template-columns: 1fr;
    }

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

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

    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .title-main {
        font-size: 2rem;
    }

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

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

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

    .advanced-package,
    .best-videos,
    .other-videos,
    .faq-section {
        padding: 60px 0;
    }

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

    .package-hero {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .detail-card {
        padding: 1.5rem;
    }

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

    .video-preview img {
        height: 250px;
    }
}

/* Additional animations and effects for polish */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Enhanced Achievement Section */
.achievement-showcase {
    margin-top: 3rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    clear: both;
    position: relative;
    z-index: 1;
}

.achievement-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.achievement-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-header p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.12);
}

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

.achievement-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.achievement-content .achievement-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.3rem;
    display: block;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.achievement-content .achievement-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.achievement-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover .achievement-glow {
    opacity: 1;
}

/* Mobile Layout Fixes */
@media (max-width: 768px) {
    /* Hide trust section and special card on mobile */
    .trust-section {
        display: none !important;
    }

    .card-special {
        display: none !important;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

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

    .hero-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .badge-primary,
    .badge-secondary {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        max-width: fit-content;
    }

    .hero-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .title-main {
        font-size: 2.5rem;
        text-align: center;
    }

    .title-sub {
        text-align: center;
        display: block;
        margin-top: 0.5rem;
    }

    .hero-description {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

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

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .trust-section {
        display: block !important;
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .videos-masonry {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .video-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .video-preview img {
        height: 200px;
    }

    /* Section header fixes */
    .section-header-creative {
        display: block;
        text-align: center;
        margin-bottom: 3rem;
    }

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

    .section-badge-modern {
        display: inline-flex;
        margin: 0 auto 1.5rem;
    }

    .section-title-creative {
        text-align: center;
        margin-bottom: 1rem;
    }

    .title-word {
        display: inline;
        margin-right: 0.5rem;
    }

    .section-subtitle-creative {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

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

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

    .videos-masonry {
        gap: 1rem;
    }

    .video-grid-modern {
        gap: 1rem;
    }

    .achievement-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .achievement-card {
        padding: 1.5rem 1rem;
    }

    .card-special {
        display: flex !important;
        min-height: 160px;
        margin-top: 0.5rem;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: white;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        grid-column: 1 / -1;
    }

    .special-content {
        display: block !important;
        text-align: center;
        z-index: 2;
        position: relative;
    }

    .special-decoration {
        display: none;
    }

    .special-content p {
        max-width: 240px;
        font-size: 0.85rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .trust-text {
        font-size: 0.9rem;
    }

    .trust-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Enhanced Interactive Elements */
/* Advanced Button System */
.btn-primary-enhanced,
.btn-secondary-enhanced,
.view-all-btn,
.learn-more-btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    user-select: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-enhanced:active,
.btn-secondary-enhanced:active,
.view-all-btn:active {
    transform: scale(0.95) translateZ(-10px);
}

/* Ripple Effect System */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.ripple-effect:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Card Interactions */
.video-card-modern,
.achievement-card,
.stat-card,
.feature-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.video-card-modern::after,
.achievement-card::after,
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(59, 130, 246, 0.05),
        rgba(168, 85, 247, 0.05),
        rgba(251, 191, 36, 0.05),
        rgba(59, 130, 246, 0.05));
    background-size: 300% 300%;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: interactiveGradient 3s ease infinite;
    pointer-events: none;
}

.video-card-modern:hover::after,
.achievement-card:hover::after,
.stat-card:hover::after {
    opacity: 1;
}

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

/* Advanced Hover States */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-3px);
    filter: brightness(1.05) contrast(1.1);
}

/* Magnetic Hover Effect */
.magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic:hover {
    transform: scale(1.05);
}

.magnetic::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.magnetic:hover::before {
    opacity: 1;
}

/* Interactive Icons */
.play-center,
.play-triangle,
.play-mini,
.btn-play-icon {
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.play-center:hover,
.play-triangle:hover,
.play-mini:hover {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Interactive Text Effects */
.interactive-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all 0.3s ease;
}

.interactive-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.interactive-text:hover::before {
    transform: translateY(0);
}

.interactive-text:hover {
    color: transparent;
}

/* Advanced Form Elements */
.interactive-input {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e2e8f0, #cbd5e1) border-box;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    outline: none;
}

.interactive-input:focus {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #3b82f6, #8b5cf6) border-box;
    box-shadow:
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

/* Interactive Badge System */
.interactive-badge {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.interactive-badge::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.5s ease;
}

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

.interactive-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Interactive Navigation */
.nav-menu a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    transform: translateY(-1px);
    color: #fbbf24;
}

/* Interactive Thumbnail Gallery */
.thumbnail-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.thumbnail-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706, #fbbf24);
    background-size: 300% 300%;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: thumbnailBorder 2s ease infinite;
}

.thumbnail-item:hover::before {
    opacity: 1;
}

.thumbnail-item:hover {
    transform: scale(1.15) rotate(2deg);
}

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

/* Interactive Loading States */
.loading-skeleton {
    background: linear-gradient(90deg,
        #f1f5f9 25%,
        #e2e8f0 50%,
        #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
    border-radius: 8px;
}

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

/* Interactive Scroll Indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Interactive Floating Action Elements */
.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    z-index: 100;
}

.floating-action:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.floating-action::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: floatingBorder 3s ease infinite;
}

.floating-action:hover::before {
    opacity: 1;
}

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

/* Optimized Spacing and Visual Hierarchy */
/* Spacing System */
:root {
    --space-1: clamp(0.25rem, 0.23rem + 0.11vw, 0.3rem);
    --space-2: clamp(0.5rem, 0.46rem + 0.22vw, 0.6rem);
    --space-3: clamp(0.75rem, 0.69rem + 0.33vw, 0.9rem);
    --space-4: clamp(1rem, 0.91rem + 0.43vw, 1.2rem);
    --space-5: clamp(1.25rem, 1.14rem + 0.54vw, 1.5rem);
    --space-6: clamp(1.5rem, 1.37rem + 0.65vw, 1.8rem);
    --space-8: clamp(2rem, 1.83rem + 0.87vw, 2.4rem);
    --space-10: clamp(2.5rem, 2.28rem + 1.09vw, 3rem);
    --space-12: clamp(3rem, 2.74rem + 1.30vw, 3.6rem);
    --space-16: clamp(4rem, 3.65rem + 1.74vw, 4.8rem);
    --space-20: clamp(5rem, 4.57rem + 2.17vw, 6rem);
    --space-24: clamp(6rem, 5.48rem + 2.61vw, 7.2rem);
    --space-32: clamp(8rem, 7.30rem + 3.48vw, 9.6rem);

    /* Visual Hierarchy Z-Index */
    --z-behind: -1;
    --z-base: 0;
    --z-raised: 10;
    --z-floating: 20;
    --z-overlay: 30;
    --z-modal: 40;
    --z-toast: 50;
    --z-tooltip: 60;
    --z-topmost: 100;
}

/* Enhanced Container System */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
}

/* Section Spacing System */
.hero-section {
    padding: var(--space-32) 0 var(--space-24);
    margin-bottom: var(--space-16);
}

.best-videos {
    padding: var(--space-24) 0;
    margin-bottom: var(--space-16);
}

.advanced-package {
    padding: var(--space-32) 0;
    margin-bottom: var(--space-16);
}

.other-videos {
    padding: var(--space-24) 0;
    margin-bottom: var(--space-16);
}

.faq-section {
    padding: var(--space-20) 0;
}

/* Enhanced Visual Hierarchy */
/* Z-Index Management */
.hero-bg-elements {
    z-index: var(--z-behind);
}

.hero-container {
    z-index: var(--z-base);
}

.floating-elements {
    z-index: var(--z-raised);
}

.main-video-container {
    z-index: var(--z-floating);
}

.video-overlay-advanced {
    z-index: var(--z-overlay);
}

.trust-indicators {
    z-index: var(--z-raised);
}

/* Content Spacing */
.hero-content-area > * + * {
    margin-top: var(--space-6);
}

.hero-badge-stack {
    margin-bottom: var(--space-6);
}

.hero-title-container {
    margin-bottom: var(--space-6);
}

.hero-description {
    margin-bottom: var(--space-8);
}

.hero-stats-grid {
    margin-bottom: var(--space-8);
}

.hero-actions-enhanced {
    margin-bottom: var(--space-10);
}

/* Section Header Spacing */
.section-header-creative {
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-8);
    position: relative;
}

.section-header-creative::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Video Grid Spacing */
.videos-masonry {
    margin-bottom: var(--space-16);
    gap: var(--space-8);
}

/* Video Grid Modern Styles */
.video-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.video-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.video-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.category-icon {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-media {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card-modern:hover .card-media img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card-modern:hover .media-overlay {
    opacity: 1;
}

.play-mini {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-mini:hover {
    transform: scale(1.1);
    background: white;
}

.duration-tag {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-footer {
    padding: 1.2rem;
}

.card-footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.card-footer p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.engagement-metrics {
    display: flex;
    gap: 0.8rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: #64748b;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

/* Special Call-to-Action Card */
.card-special {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    min-height: 180px;
    margin-top: 1rem;
}

.special-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.special-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.special-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.view-all-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Package Content Spacing */
.package-hero {
    margin-bottom: var(--space-16);
    padding: var(--space-12);
    gap: var(--space-10);
}

.package-highlights > * + * {
    margin-top: var(--space-5);
}

.highlight-item {
    padding: var(--space-4);
    gap: var(--space-4);
}

.package-details-grid {
    gap: var(--space-12);
}

/* Card Content Spacing */
.video-card-modern .card-footer {
    padding: var(--space-5);
}

.card-footer > * + * {
    margin-top: var(--space-3);
}

.achievement-card {
    padding: var(--space-8) var(--space-6);
}

.achievement-card > * + * {
    margin-top: var(--space-4);
}

/* Interactive Element Spacing */
.hero-stats-grid {
    gap: var(--space-6);
}

.stat-card {
    padding: var(--space-5);
}

.engagement-metrics {
    gap: var(--space-3);
}

.metric {
    padding: var(--space-2) var(--space-3);
}

/* Enhanced Visual Hierarchy Classes */
.hierarchy-primary {
    position: relative;
    z-index: var(--z-floating);
    box-shadow:
        0 25px 50px rgba(30, 58, 138, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.hierarchy-secondary {
    position: relative;
    z-index: var(--z-raised);
    box-shadow:
        0 15px 35px rgba(30, 58, 138, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.hierarchy-tertiary {
    position: relative;
    z-index: var(--z-base);
    box-shadow:
        0 8px 25px rgba(30, 58, 138, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.03);
}

/* Content Flow Optimization */
.content-flow > * + * {
    margin-top: var(--space-6);
}

.content-flow-tight > * + * {
    margin-top: var(--space-3);
}

.content-flow-loose > * + * {
    margin-top: var(--space-10);
}

/* Grid System Enhancements */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.grid-auto-fill {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-5);
}

/* Advanced Layout Utilities */
.stack {
    display: flex;
    flex-direction: column;
}

.stack > * + * {
    margin-top: var(--space-4);
}

.stack-sm > * + * {
    margin-top: var(--space-2);
}

.stack-lg > * + * {
    margin-top: var(--space-8);
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
}

.sidebar {
    display: grid;
    grid-template-columns: fit-content(20ch) minmax(0, 1fr);
    gap: var(--space-6);
    align-items: start;
}

/* Enhanced Responsive Spacing */
@media (max-width: 1024px) {
    .hero-section {
        padding: var(--space-24) 0 var(--space-16);
    }

    .videos-masonry {
        gap: var(--space-6);
    }

    .package-hero {
        gap: var(--space-8);
        padding: var(--space-10);
    }

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

    .achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-20) 0 var(--space-12);
    }

    .best-videos,
    .advanced-package,
    .other-videos {
        padding: var(--space-16) 0;
        margin-bottom: var(--space-12);
    }

    .section-header-creative {
        margin-bottom: var(--space-12);
    }

    .videos-masonry {
        gap: var(--space-5);
    }

    .package-hero {
        gap: var(--space-6);
        padding: var(--space-8);
    }

    .sidebar {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

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

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

@media (max-width: 480px) {
    .hero-section {
        padding: var(--space-16) 0 var(--space-10);
    }

    .best-videos,
    .advanced-package,
    .other-videos {
        padding: var(--space-12) 0;
        margin-bottom: var(--space-8);
    }

    .section-header-creative {
        margin-bottom: var(--space-8);
    }

    .videos-masonry {
        gap: var(--space-4);
    }

    .package-hero {
        gap: var(--space-5);
        padding: var(--space-6);
    }

    .hero-content-area > * + * {
        margin-top: var(--space-4);
    }

    .stack > * + * {
        margin-top: var(--space-3);
    }

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

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

/* Perfect Visual Balance */
.visual-balance {
    display: grid;
    place-items: center;
    min-height: calc(100vh - var(--space-32));
}

/* Enhanced Focus Management */
.focus-ring {
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: outline-color 0.2s ease;
}

.focus-ring:focus-visible {
    outline-color: #3b82f6;
    box-shadow:
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 0 0 2px rgba(59, 130, 246, 0.3);
}