/* =======================
   COMPARISON.HTML SPECIFIC STYLES
   ======================= */

/* Comparison Hero Section */
.comparison-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #43e97b 100%);
    position: relative;
		padding: 100px 0;
    overflow: hidden;
}

.comparison-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(67, 233, 123, 0.2) 0%, transparent 50%);
}

.comparison-hero .floating-icons {
    position: relative;
    z-index: 1;
}

.comparison-hero .floating-icons i {
    color: rgba(255, 255, 255, 0.15);
    font-size: 3.5rem;
}

.comparison-hero .floating-icons i:nth-child(odd) {
    animation: compareFloat 4s ease-in-out infinite;
}

@keyframes compareFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-25px) scale(1.1); }
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.highlight span {
	color: #fff;
	font-size: 1.5rem;
}

.highlight i {
    font-size: 1.5rem;
    color: #ff6b35;
    animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
    from { text-shadow: 0 0 10px rgba(255, 107, 53, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

/* Enhanced Comparison Table */
.comparison-table-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 8rem 0;
    position: relative;
}

.comparison-table-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chart-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" font-size="20" fill="rgba(255,255,255,0.05)">📊</text></pattern></defs><rect width="100%" height="100%" fill="url(%23chart-pattern)"/></svg>');
}

.comparison-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-enhanced {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.comparison-enhanced .table-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.comparison-enhanced .table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    background-size: 20px 20px;
}

.table-header .feature-cell h3 {
    font-size: 1.5rem;
    position: relative;
}

.table-header .feature-cell h3::after {
    content: '⚖️';
    margin-left: 1rem;
    font-size: 1.2rem;
}

.table-header .winner-cell {
    position: relative;
    overflow: hidden;
}

.table-header .winner-cell::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transform: rotate(45deg);
    animation: winnerShine 3s linear infinite;
}

@keyframes winnerShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.brand-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.brand-logo span {
    font-size: 1.3rem;
    font-weight: bold;
}

.winner-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.table-header .competitor-cell {
    opacity: 0.8;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-enhanced .table-row {
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.comparison-enhanced .table-row::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.comparison-enhanced .table-row:hover::before {
    left: 100%;
}

.comparison-enhanced .table-row:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-info i {
    font-size: 1.2rem;
    color: #667eea;
    width: 30px;
    text-align: center;
}

.feature-info span {
    font-weight: 500;
}

.value {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value.best {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3);
    transform: scale(1.05);
    animation: bestValue 2s ease-in-out infinite alternate;
}

@keyframes bestValue {
    from { box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3); }
    to { box-shadow: 0 8px 25px rgba(67, 233, 123, 0.5); }
}

.table-row:hover .value.best {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.5);
}

.value i.fa-check {
    color: #43e97b;
    font-size: 1.5rem;
}

.value i.fa-times {
    color: #ff6b6b;
    font-size: 1.5rem;
}

/* Why We Win Section */
.why-we-win {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 8rem 0;
    position: relative;
}

.why-we-win::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%);
    background-size: 60px 60px;
}

.win-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.reason-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.reason-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.reason-card:nth-child(odd):hover {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
}

.reason-card:nth-child(even):hover {
    transform: translateY(-15px) scale(1.03) rotate(-1deg);
}

.reason-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.reason-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    font-weight: bold;
}

.reason-card:nth-child(1) .reason-icon::after { content: '1'; }
.reason-card:nth-child(2) .reason-icon::after { content: '2'; }
.reason-card:nth-child(3) .reason-icon::after { content: '3'; }
.reason-card:nth-child(4) .reason-icon::after { content: '4'; }

.reason-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.reason-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reason-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.reason-stats .stat {
    font-weight: bold;
    color: #4facfe;
    font-size: 1.1rem;
}

.reason-stats .vs {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Detailed Analysis Section */
.detailed-analysis {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 8rem 0;
    position: relative;
}

.detailed-analysis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.analysis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.analysis-header {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    padding: 2rem 3rem;
    position: relative;
}

.analysis-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    background-size: 30px 30px;
}

.analysis-header h3 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.analysis-content {
    padding: 3rem;
}

.analysis-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.our-advantage,
.competitor-limits {
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.our-advantage {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1), rgba(56, 249, 215, 0.1));
    border: 2px solid rgba(67, 233, 123, 0.3);
}

.our-advantage::before {
    content: '✅ OUR STRENGTHS';
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.competitor-limits {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.competitor-limits::before {
    content: '❌ THEIR LIMITS';
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ff6b35);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.our-advantage h4,
.competitor-limits h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #333;
}

.our-advantage ul,
.competitor-limits ul {
    list-style: none;
    padding: 0;
}

.our-advantage li,
.competitor-limits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.our-advantage li {
    background: rgba(255, 255, 255, 0.7);
}

.our-advantage li:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.competitor-limits li {
    background: rgba(255, 255, 255, 0.7);
}

.competitor-limits li:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(-5px);
}

.our-advantage li i {
    color: #43e97b;
    font-size: 1.1rem;
}

.competitor-limits li i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

/* Customer Reviews Comparison */
.review-comparison {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 8rem 0;
    position: relative;
}

.review-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.review-section {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.review-section.winner {
    border-color: rgba(67, 233, 123, 0.5);
}

.review-section.winner::before {
    content: '🏆 WINNER REVIEWS';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
}

.review-section.competitor {
    border-color: rgba(255, 107, 107, 0.5);
}

.review-section.competitor::before {
    content: '😞 COMPETITOR ISSUES';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ff6b35);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.rating {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    margin-bottom: 0.5rem;
}

.stars i {
    font-size: 1.5rem;
    margin: 0 0.2rem;
}

.stars .fa-star {
    color: #FFD700;
}

.stars .fa-star.far {
    color: #ddd;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.review-highlights .highlight,
.complaint-highlights .complaint {
    background: rgba(250, 112, 154, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.review-section.winner .highlight {
    border-left-color: #43e97b;
    background: rgba(67, 233, 123, 0.1);
}

.review-section.competitor .complaint {
    border-left-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.highlight:hover,
.complaint:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight i,
.complaint i {
    font-size: 1.2rem;
    margin-right: 1rem;
}

.highlight i {
    color: #43e97b;
}

.complaint i {
    color: #ff6b6b;
}

.btn-outline-br {
	border-color: #333;
}

.black span {
	color: #000 !important;
}

.highlight span,
.complaint span {
    display: block;
    font-size: 1rem;
		font-weight: 700;
    color: #fff;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Final CTA Section */
.comparison-cta {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 8rem 0;
    position: relative;
}

.comparison-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="winner-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><text x="50" y="50" text-anchor="middle" font-size="30" fill="rgba(255,255,255,0.05)">👑</text></pattern></defs><rect width="100%" height="100%" fill="url(%23winner-pattern)"/></svg>');
}

.cta-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 5rem 4rem;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-content::before {
    content: '🎯';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    background: white;
    border-radius: 50%;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: ctaBounce 2s infinite;
}

@keyframes ctaBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0px); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.cta-content h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.final-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.final-benefits .benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(168, 237, 234, 0.2);
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.final-benefits .benefit:hover {
    transform: translateY(-5px);
    background: rgba(168, 237, 234, 0.3);
    box-shadow: 0 10px 30px rgba(168, 237, 234, 0.4);
}

.final-benefits .benefit i {
    font-size: 2rem;
    color: #43e97b;
}

.final-benefits .benefit span {
    font-weight: bold;
    color: #333;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design for Comparison */
@media (max-width: 768px) {
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-enhanced .table-header,
    .comparison-enhanced .table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-enhanced .table-row {
        padding: 1rem;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }
    
    .win-reasons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .analysis-comparison,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-benefits {
        grid-template-columns: 1fr;
    }

		.review-section {
			padding: 1rem;
		}
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-content {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}
