/* Amazon Product Video Page Specific Styles */

/* Amazon Hero Section */
.amazon-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0d1421 0%, #232f3e 25%, #146eb4 50%, #ff9900 75%, #ff7043 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.amazon-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 153, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 110, 180, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(35, 47, 62, 0.2) 0%, transparent 50%);
    animation: amazonFloat 14s ease-in-out infinite;
}

.amazon-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="amazon-grid" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="12" y="12" width="1" height="1" fill="rgba(255,153,0,0.15)"/><path d="M5 12.5h15M12.5 5v15" stroke="rgba(255,153,0,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23amazon-grid)"/></svg>');
    opacity: 0.6;
}

@keyframes amazonFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-28px) rotate(2deg) scale(1.02); }
    50% { transform: translateY(-12px) rotate(-1deg) scale(0.98); }
    75% { transform: translateY(-35px) rotate(1deg) 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, #ff9900, #ff7043, #ffffff, #146eb4);
    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: amazonGradientShift 4s ease-in-out infinite;
    position: relative;
}

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

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

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

.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, 153, 0, 0.1));
    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, #ff9900, #146eb4, #ff7043);
    -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: amazonBorderShift 3s linear infinite;
}

@keyframes amazonBorderShift {
    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, #ff9900, #ff7043, #ff9900);
    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, 153, 0, 0.4),
        0 0 0 0 rgba(255, 153, 0, 0.5);
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
    animation: amazonButtonPulse 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 amazonButtonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4), 0 0 0 0 rgba(255, 153, 0, 0.5); }
    50% { box-shadow: 0 15px 40px rgba(255, 153, 0, 0.6), 0 0 0 10px rgba(255, 153, 0, 0); }
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 50px rgba(255, 153, 0, 0.6),
        0 0 30px rgba(255, 112, 67, 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%, #fff4e6 50%, #f0f8ff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="amazon-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,153,0,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23amazon-dots)"/></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(255, 153, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(20, 110, 180, 0.08) 0%, transparent 50%);
    animation: amazonPatternMove 16s linear infinite;
    z-index: 1;
}

@keyframes amazonPatternMove {
    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, #232f3e, #146eb4, #ff9900);
    -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, #ff9900, #146eb4);
    border-radius: 2px;
    animation: amazonUnderlineGlow 2s ease-in-out infinite alternate;
}

@keyframes amazonUnderlineGlow {
    0% { box-shadow: 0 0 5px rgba(255, 153, 0, 0.5); width: 100px; }
    100% { box-shadow: 0 0 20px rgba(20, 110, 180, 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(255, 153, 0, 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(255, 153, 0, 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(255, 153, 0, 0.2),
        0 0 50px rgba(20, 110, 180, 0.3);
}

.video-showcase-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.4), rgba(20, 110, 180, 0.4), rgba(255, 112, 67, 0.4));
}

.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 Amazon 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(2deg);
    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(-2deg);
}

.video-showcase-item .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 153, 0, 0.3),
        rgba(20, 110, 180, 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, 153, 0, 0.4),
        rgba(20, 110, 180, 0.3),
        rgba(255, 112, 67, 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, 153, 0, 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, #ff9900, #ff7043);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(255, 153, 0, 0.5),
        0 0 30px rgba(20, 110, 180, 0.6);
    animation: amazonPlayIconPulse 1.5s infinite;
}

@keyframes amazonPlayIconPulse {
    0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(255, 153, 0, 0.5), 0 0 30px rgba(20, 110, 180, 0.6); }
    50% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(255, 153, 0, 0.7), 0 0 40px rgba(20, 110, 180, 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, #ff9900, #ff7043);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4);
}

.video-showcase-item h3 {
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #232f3e, #146eb4);
    -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, #ff9900, #ff7043);
    -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%, #fff4e6 50%, #ffffff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="amazon-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(255,153,0,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23amazon-hexagon)"/></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(255, 153, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 110, 180, 0.05) 0%, transparent 50%);
    animation: amazonPackageFloat 20s ease-in-out infinite;
}

@keyframes amazonPackageFloat {
    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: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.package-header h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #232f3e, #146eb4, #ff9900, #ff7043);
    -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: amazonPackageBounce 2s ease-in-out infinite;
}

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

.package-details h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #232f3e, #146eb4);
    -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, #ff9900, #ff7043);
    border-radius: 2px;
}

/* Enhanced Package Features Grid for Amazon */
.package-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 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(255, 244, 230, 0.9), rgba(240, 248, 255, 0.7));
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(255, 153, 0, 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(255, 153, 0, 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(255, 153, 0, 0.15),
        0 0 40px rgba(20, 110, 180, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.4), rgba(20, 110, 180, 0.4), rgba(255, 112, 67, 0.4));
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9900, #146eb4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow:
        0 10px 25px rgba(255, 153, 0, 0.3),
        0 5px 15px rgba(20, 110, 180, 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, #ff7043, #ff9900);
    box-shadow:
        0 15px 35px rgba(255, 112, 67, 0.4),
        0 8px 20px rgba(255, 153, 0, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #232f3e, #146eb4);
    -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, #ff9900, #ff7043);
    -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(255, 153, 0, 0.1), rgba(20, 110, 180, 0.1));
    color: #146eb4;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

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

/* Package Benefits for Amazon */
.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(255, 153, 0, 0.3), rgba(20, 110, 180, 0.3)) border-box;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 244, 230, 0.9), rgba(240, 248, 255, 0.8));
    padding: 1rem 2rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #232f3e;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 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, 153, 0, 0.1), rgba(20, 110, 180, 0.1));
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
    border-color: rgba(20, 110, 180, 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, 153, 0, 0.3));
}

/* Other Video Types Section for Amazon */
.other-video-types {
    padding: 120px 0;
    background:
        linear-gradient(135deg, #f8f9ff 0%, #fff4e6 50%, #f0f8ff 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="amazon-triangle" width="24" height="24" patternUnits="userSpaceOnUse"><polygon points="12,2 22,18 2,18" fill="none" stroke="rgba(255,153,0,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23amazon-triangle)"/></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(255, 153, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(20, 110, 180, 0.1) 0%, transparent 50%);
    animation: amazonTypesSpin 25s linear infinite;
    z-index: 1;
}

@keyframes amazonTypesSpin {
    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, #232f3e, #146eb4, #ff9900, #ff7043);
    -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: amazonTitlePulse 3s ease-in-out infinite;
}

@keyframes amazonTitlePulse {
    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(255, 244, 230, 0.8), rgba(240, 248, 255, 0.6));
    border-radius: 25px;
    padding: 3rem;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(255, 153, 0, 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, #ff9900, #ff7043, #146eb4, #ff9900);
    background-size: 300% 300%;
    animation: amazonCardBorderShift 4s ease-in-out infinite;
}

@keyframes amazonCardBorderShift {
    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(255, 153, 0, 0.2),
        0 0 60px rgba(20, 110, 180, 0.3);
}

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

.price-tag {
    background: linear-gradient(135deg, #ff9900, #ff7043, #ff9900);
    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, 153, 0, 0.4),
        0 3px 10px rgba(255, 112, 67, 0.3);
    position: relative;
    overflow: hidden;
    animation: amazonPriceShimmer 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 amazonPriceShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-type-card h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #232f3e, #146eb4, #ff9900);
    -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, #ff9900, #ff7043, #146eb4);
    -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, #232f3e, #146eb4, #232f3e);
    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(35, 47, 62, 0.4),
        0 3px 10px rgba(20, 110, 180, 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(35, 47, 62, 0.5),
        0 8px 20px rgba(20, 110, 180, 0.4),
        0 0 40px rgba(255, 153, 0, 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;
    }
}

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

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

    @keyframes amazonMobileTextPulse {
        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-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;
    }

    .faq-question {
        padding: 1.5rem 2rem;
    }

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

    .faq-toggle {
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    /* 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) {
    .amazon-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-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

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

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

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

    /* 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);
    }

    .faq-question:active {
        transform: scale(0.99);
    }
}