/* Enhanced Shop Styles */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Enhanced Shop Hero Section */
.enhanced-shop-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.shop-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Enhanced Hero Stats Visibility */
.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 3rem 0 !important;
    padding: 2rem !important;
    background: transparent !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.stat-item {
    text-align: center !important;
    padding: 1rem !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.stat-icon {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.5rem !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
}

.stat-content h3 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: #ffd700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    min-height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.stat-content p {
    font-size: 1rem !important;
    opacity: 0.95 !important;
    color: white !important;
    font-weight: 500 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.stat-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.primary-cta-btn,
.secondary-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.primary-cta-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a202c;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: none;
}

.primary-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    border-color: rgba(255, 215, 0, 0.5);
}

.secondary-cta-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.secondary-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.primary-cta-btn i,
.secondary-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.primary-cta-btn:hover i {
    transform: translateX(3px);
}

.secondary-cta-btn:hover i {
    transform: scale(1.2);
}

/* Button ripple effect */
.primary-cta-btn::before,
.secondary-cta-btn::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 ease, height 0.6s ease;
    z-index: 0;
}

.primary-cta-btn:active::before,
.secondary-cta-btn:active::before {
    width: 300px;
    height: 300px;
}

.primary-cta-btn > *,
.secondary-cta-btn > * {
    position: relative;
    z-index: 1;
}

/* Shine effect for primary button */
.primary-cta-btn::after {
    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 ease;
    z-index: 1;
}

.primary-cta-btn:hover::after {
    left: 100%;
}

/* Enhanced Test Shop Section */
.enhanced-test-shop {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.shop-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.shop-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.shop-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Filter Section */
.enhanced-filter-section {
    margin-bottom: 4rem;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #64748b;
}

.filter-tab:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.filter-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

.filter-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    z-index: 1;
}

.search-box input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.sort-dropdown select {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: #667eea;
}

/* Enhanced Shop Grid */
.enhanced-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.enhanced-shop-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.enhanced-shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.enhanced-shop-card:hover .card-glow {
    opacity: 1;
}

.card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.card-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.popular {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
}

.card-badge.premium {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a202c;
}

.card-badge.trending {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.card-badge.discount {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

/* State-Level Test Series Styling */

/* State Badge Styling */
.card-badge.state {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    animation: statePulse 3s ease-in-out infinite;
}

.card-badge.best-value {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    animation: bestValueGlow 2s ease-in-out infinite alternate;
}

/* State-specific Exam Icon Colors */
.exam-icon.state-wb {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.3);
}

.exam-icon.state-gj {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 8px 32px rgba(237, 137, 54, 0.3);
}

.exam-icon.state-mh {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 32px rgba(128, 90, 213, 0.3);
}

.exam-icon.state-tn {
    background: linear-gradient(135deg, #38b2ac, #319795);
    box-shadow: 0 8px 32px rgba(56, 178, 172, 0.3);
}

.exam-icon.state-ka {
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    box-shadow: 0 8px 32px rgba(214, 158, 46, 0.3);
}

/* Enhanced State Card Hover Effects */
.enhanced-shop-card.state:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.enhanced-shop-card.state:hover .exam-icon {
    transform: rotate(5deg) scale(1.1);
}

.enhanced-shop-card.state:hover .card-badge.state {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

/* State Card Specific Animations */
@keyframes statePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(72, 187, 120, 0);
    }
}

@keyframes bestValueGlow {
    from {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
}

/* Multiple badges support for state cards */
.enhanced-shop-card.state .card-badges {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.enhanced-shop-card.state .card-badges .card-badge:nth-child(3) {
    position: absolute;
    top: 3.5rem;
    right: 1rem;
    z-index: 3;
}

/* Enhanced pricing section for state cards */
.enhanced-shop-card.state .price-section {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.1));
    border: 1px solid rgba(72, 187, 120, 0.2);
}

.enhanced-shop-card.state .current-price {
    color: #38a169;
}

/* State exam stats styling */
.enhanced-shop-card.state .exam-stats span {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border: 1px solid rgba(72, 187, 120, 0.2);
}

/* Enhanced features for state cards */
.enhanced-shop-card.state .enhanced-features li i {
    color: #38a169;
}

/* State card buy button styling */
.enhanced-shop-card.state .enhanced-buy-btn.primary {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.enhanced-shop-card.state .enhanced-buy-btn.primary:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    transform: translateY(-2px);
}

.enhanced-shop-card.state .enhanced-buy-btn.secondary {
    border: 2px solid #48bb78;
    color: #38a169;
}

.enhanced-shop-card.state .enhanced-buy-btn.secondary:hover {
    background: #48bb78;
    color: white;
}

/* Filter tab update for state count */
.filter-tab[data-filter="state"] .tab-count {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

/* State card responsive adjustments */
@media (max-width: 768px) {
    .enhanced-shop-card.state .card-badges .card-badge:nth-child(3) {
        position: relative;
        top: auto;
        right: auto;
    }
    
    .enhanced-shop-card.state .card-badges {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
}

/* Special styling for COMEDK best value badge */
.enhanced-shop-card[data-exam="comedk"] .card-badge.best-value {
    animation: bestValueGlow 2s ease-in-out infinite, 
               bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Enhanced glow effects for state cards */
.enhanced-shop-card.state .card-glow {
    background: radial-gradient(circle at center, rgba(72, 187, 120, 0.2), transparent 70%);
}

.enhanced-shop-card.state:hover .card-glow {
    background: radial-gradient(circle at center, rgba(72, 187, 120, 0.4), transparent 70%);
}

/* Icon background enhancements for state cards */
.enhanced-shop-card.state .icon-background {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.1));
}

/* Enhanced savings styling for state cards */
.enhanced-shop-card.state .savings {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .enhanced-shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .filter-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .filter-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .shop-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .enhanced-shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .shop-hero-content {
        padding: 1rem;
    }
    
    .shop-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .stat-content h3 {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
    
    .filter-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-box input {
        width: 200px;
    }
}

/* Enhanced Premium National Card Base Styles */
.premium-national-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.premium-national-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(67, 56, 202, 0.3);
}

/* Premium Card Glow Effect */
.premium-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-national-card:hover .premium-card-glow {
    opacity: 1;
}

/* Premium Card Shine Effect */
.premium-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.premium-national-card:hover .premium-card-shine {
    left: 100%;
}

/* Floating Particles Animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    animation: float-particle 8s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 7s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Premium Badges Container */
.premium-badges-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Premium Card Header */
.premium-card-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    z-index: 2;
}

.premium-exam-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.premium-exam-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.premium-exam-icon:hover {
    transform: rotate(5deg) scale(1.05);
}

/* Icon Pulse Rings */
.icon-pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    animation: pulse-ring 2s linear infinite;
}

.pulse-ring.ring-1 {
    animation-delay: 0s;
}

.pulse-ring.ring-2 {
    animation-delay: 0.6s;
}

.pulse-ring.ring-3 {
    animation-delay: 1.2s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Premium Exam Details */
.premium-exam-details {
    flex: 1;
    min-width: 0;
}

.premium-exam-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.premium-exam-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Premium Exam Meta */
.premium-exam-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px;
}

.meta-item i {
    font-size: 1rem;
    color: #667eea;
    margin-bottom: 0.3rem;
}

.meta-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.meta-label {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Premium Card Content */
.premium-card-content {
    position: relative;
    z-index: 2;
}

/* Premium Price Section */
.premium-price-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.price-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.premium-price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.premium-original-price {
    font-size: 1.2rem;
    color: #a0aec0;
    text-decoration: line-through;
    font-weight: 500;
}

.premium-current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.price-badge {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #48bb78;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Premium Features Grid */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-category h4 i {
    color: #667eea;
}

.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.premium-features-list li i {
    color: #48bb78;
    font-size: 0.8rem;
}

/* Premium Card Actions */
.premium-card-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.premium-buy-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    flex: 1;
    min-width: 140px;
}

.premium-buy-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.premium-buy-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.premium-buy-btn.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.premium-buy-btn.secondary:hover {
    background: #667eea;
    color: white;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.btn-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.4s ease;
    z-index: 1;
}

.premium-buy-btn:hover .btn-shine-effect {
    left: 100%;
}

/* Premium Trust Indicators */
.premium-trust-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 500;
}

.trust-item i {
    color: #667eea;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .premium-features-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-exam-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-national-card {
        padding: 2rem;
    }
    
    .premium-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .premium-exam-meta {
        grid-template-columns: 1fr;
    }
    
    .premium-card-actions {
        flex-direction: column;
    }
    
    .premium-trust-indicators {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .premium-badges-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .premium-exam-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .pulse-ring {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .premium-national-card {
        padding: 1.5rem;
    }
    
    .premium-exam-title {
        font-size: 1.5rem;
    }
    
    .premium-current-price {
        font-size: 1.8rem;
    }
    
    .premium-buy-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Missing Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth transitions for all interactive elements */
.enhanced-shop-card,
.premium-national-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enhanced-shop-card:hover,
.premium-national-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Enhanced button ripple effect */
.enhanced-buy-btn,
.premium-buy-btn {
    position: relative;
    overflow: hidden;
}

.enhanced-buy-btn::before,
.premium-buy-btn::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;
    z-index: 0;
}

.enhanced-buy-btn:active::before,
.premium-buy-btn:active::before {
    width: 300px;
    height: 300px;
}

.enhanced-buy-btn > *,
.premium-buy-btn > * {
    position: relative;
    z-index: 1;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* State Level Premium Card Enhancements */
.premium-national-card.state-card {
    background: linear-gradient(145deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid rgba(113, 128, 150, 0.1);
}

.premium-national-card.state-card:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    border-color: rgba(67, 56, 202, 0.3);
}

/* State-specific badge styles */
.premium-badge.state-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.premium-badge.regional {
    background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(56, 178, 172, 0.4);
}

.premium-badge.industrial {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(237, 137, 54, 0.4);
}

.premium-badge.metro {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(128, 90, 213, 0.4);
}

.premium-badge.university {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

.premium-badge.best-value {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(229, 62, 62, 0.6);
    }
}

/* State-specific exam icon colors */
.premium-exam-icon.wbjee {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
}

.premium-exam-icon.gujcet {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.premium-exam-icon.mhtcet {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
    color: white;
}

.premium-exam-icon.viteee {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
}

.premium-exam-icon.comedk {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
}

/* Price highlight variations for state cards */
.price-highlight.state-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-highlight.industrial-highlight {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.price-highlight.metro-highlight {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
    color: white;
}

.price-highlight.university-highlight {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
}

.price-highlight.best-value-highlight {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Price badge variations */
.price-badge.state-badge-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-badge.industrial-badge {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.price-badge.metro-badge {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
    color: white;
}

.price-badge.university-badge {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
}

.price-badge.best-value-price {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* State-specific button colors */
.premium-buy-btn.wbjee-btn {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.premium-buy-btn.gujcet-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.premium-buy-btn.mhtcet-btn {
    background: linear-gradient(135deg, #805ad5 0%, #6b46c1 100%);
}

.premium-buy-btn.viteee-btn {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

.premium-buy-btn.comedk-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
}

/* Hover effects for state buttons */
.premium-buy-btn.wbjee-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.4);
}

.premium-buy-btn.gujcet-btn:hover {
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(221, 107, 32, 0.4);
}

.premium-buy-btn.mhtcet-btn:hover {
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.4);
}

.premium-buy-btn.viteee-btn:hover {
    background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 133, 90, 0.4);
}

.premium-buy-btn.comedk-btn:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 48, 48, 0.4);
}

/* Enhanced responsive design for state cards */
@media (max-width: 768px) {
    .premium-national-card.state-card {
        padding: 2rem 1.5rem;
    }
    
    .premium-badges-container {
        gap: 0.3rem;
    }
    
    .premium-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .premium-exam-meta {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .premium-national-card.state-card {
        padding: 1.5rem 1rem;
    }
    
    .premium-exam-title {
        font-size: 1.4rem;
    }
    
    .premium-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Enhanced Shop Features Section */
.enhanced-shop-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-shop-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.features-header .section-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.enhanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.enhanced-feature-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(203, 213, 225, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.enhanced-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-feature-item:hover::before {
    opacity: 1;
}

.enhanced-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.feature-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon.expert {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon.analytics {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 8px 30px rgba(72, 187, 120, 0.3);
}

.feature-icon.mobile {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    box-shadow: 0 8px 30px rgba(237, 137, 54, 0.3);
}

.feature-icon.ranking {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.3);
}

.feature-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.enhanced-feature-item:hover .feature-glow {
    opacity: 1;
}

.feature-icon.expert + .feature-glow {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

.feature-icon.analytics + .feature-glow {
    background: radial-gradient(circle, rgba(72, 187, 120, 0.15) 0%, transparent 70%);
}

.feature-icon.mobile + .feature-glow {
    background: radial-gradient(circle, rgba(237, 137, 54, 0.15) 0%, transparent 70%);
}

.feature-icon.ranking + .feature-glow {
    background: radial-gradient(circle, rgba(229, 62, 62, 0.15) 0%, transparent 70%);
}

.enhanced-feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.05);
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
}

.feature-points li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.enhanced-feature-item:hover .feature-points li {
    transform: translateX(5px);
}

.enhanced-feature-item:hover .feature-points li:nth-child(1) {
    transition-delay: 0.1s;
}

.enhanced-feature-item:hover .feature-points li:nth-child(2) {
    transition-delay: 0.2s;
}

.enhanced-feature-item:hover .feature-points li:nth-child(3) {
    transition-delay: 0.3s;
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .enhanced-shop-features {
        padding: 4rem 0;
    }
    
    .features-header h2 {
        font-size: 2.5rem;
    }
    
    .enhanced-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enhanced-feature-item {
        padding: 2rem;
    }
    
    .feature-icon-container,
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .enhanced-shop-features {
        padding: 3rem 0;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    .enhanced-feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon-container,
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    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="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.success-stories .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a202c;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(203, 213, 225, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #4ecdc4, #667eea);
    background-size: 300% 100%;
    animation: rainbow-flow 3s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@keyframes rainbow-flow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 300% center; }
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    font-style: italic;
    margin-left: 2rem;
    margin-top: 1rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a202c;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.achievement-badge i {
    font-size: 0.9rem;
}

/* Enhanced CTA Section */
.enhanced-shop-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-cta 8s ease-in-out infinite;
}

.cta-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.cta-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.cta-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 70%;
    animation-delay: 6s;
}

@keyframes float-cta {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

.enhanced-shop-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.cta-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-stat p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.enhanced-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.enhanced-cta-btn.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a202c;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.enhanced-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.enhanced-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.enhanced-cta-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.enhanced-cta-btn::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;
    z-index: 0;
}

.enhanced-cta-btn:active::before {
    width: 300px;
    height: 300px;
}

.enhanced-cta-btn > * {
    position: relative;
    z-index: 1;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.video-modal.show {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-modal .modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 450px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-stories {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .enhanced-shop-cta {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stat {
        min-width: 200px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .enhanced-cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .video-modal .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .video-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .success-stories {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        margin-left: 1rem;
    }
    
    .enhanced-shop-cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-stat {
        padding: 1.5rem;
        min-width: auto;
        width: 100%;
    }
    
    .cta-stat h3 {
        font-size: 2rem;
    }
    
    .enhanced-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .video-container {
        height: 200px;
    }
}
