/* ========================================
   FlashUP360 COMPREHENSIVE ENHANCEMENTS CSS
   All new features styling
   ======================================== */

/* ========================================
   1. LIVE EVENT COUNTER
   ======================================== */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

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

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

/* ========================================
   2. QUOTE CALCULATOR WIDGET
   ======================================== */
.quote-calculator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.quote-calculator h3 {
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.calculator-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calculator-form select {
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.quote-breakdown {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0 0;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* ========================================
   3. GUEST ESTIMATOR
   ======================================== */
.guest-estimator {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.estimator-results {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.result-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.result-recommendation {
    background: linear-gradient(135deg, #d4af37 0%, #f4e1a1 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.result-recommendation i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   4. EXIT INTENT MODAL
   ======================================== */
.exit-intent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-intent-modal.active {
    display: flex;
}

.exit-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideInDown 0.5s ease;
}

.exit-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.exit-modal-content .discount-badge {
    background: #ef4444;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    margin: 1rem 0;
}

.exit-modal-content .exit-claim-btn {
    margin-top: 1rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   5. COUNTDOWN TIMER
   ======================================== */
.offer-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    min-width: 60px;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
}

/* ========================================
   6. SOCIAL PROOF POPUP
   ======================================== */
.social-proof-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 350px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.social-proof-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.popup-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.popup-content {
    flex: 1;
}

.popup-content strong {
    color: var(--secondary-color);
    display: block;
}

.popup-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.25rem 0;
}

.popup-time {
    font-size: 0.8rem;
    color: #999;
}

.popup-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.popup-close:hover {
    color: #333;
}

/* ========================================
   7. COMPARISON MODAL
   ======================================== */
.comparison-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.comparison-modal.active {
    display: block;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.comparison-table td {
    text-align: center;
}

.comparison-table .feature-name {
    text-align: left;
    font-weight: 500;
}

.comparison-table .has-feature {
    color: #10b981;
    font-size: 1.5rem;
}

.comparison-table .no-feature {
    color: #ddd;
    font-size: 1.5rem;
}

/* ========================================
   8. WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 220px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ========================================
   THEME TOGGLE - Near Top/Navbar
   ======================================== */
.theme-toggle-fixed {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.theme-toggle-fixed:hover {
    transform: scale(1.1) rotate(20deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

body.dark-mode .theme-toggle-fixed {
    background: #fbbf24;
    color: #1a202c;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #1a202c;
    color: #e2e8f0;
}

body.dark-mode .navbar {
    background: rgba(26, 32, 44, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
}

body.dark-mode .stat-card,
body.dark-mode .feature-card,
body.dark-mode .package-card,
body.dark-mode .event-card {
    background: #2d3748;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

body.dark-mode .section-title,
body.dark-mode .hero-title,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4 {
    color: #f7fafc;
}

body.dark-mode .intro-section,
body.dark-mode .features-section,
body.dark-mode .carousel-section {
    background: #1a202c;
}

body.dark-mode .quote-calculator,
body.dark-mode .guest-estimator {
    background: #2d3748;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background: #1a202c;
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .footer {
    background: #0f1419;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .chat-widget {
    background: #2d3748;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .chat-header {
    background: var(--primary-color);
}

body.dark-mode .comparison-table {
    background: #2d3748;
}

body.dark-mode .comparison-table th,
body.dark-mode .comparison-table td {
    border-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

body.dark-mode .comparison-modal {
    background: rgba(0, 0, 0, 0.9);
}

body.dark-mode .comparison-table-wrapper {
    background: #1a202c;
}

/* ========================================
   9. RECOVERY PROMPT
   ======================================== */
.recovery-prompt {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 350px;
    animation: slideInRight 0.5s ease;
}

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

.recovery-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.recovery-content .btn {
    margin: 0.5rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   10. VOICE SEARCH
   ======================================== */
.voice-search-btn {
    background: var(--gradient-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.voice-search-btn:hover {
    transform: scale(1.1);
}

.voice-search-btn.listening {
    animation: voicePulse 1.5s infinite;
    background: #ef4444;
}

@keyframes voicePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
}

/* ========================================
   11. SMART RECOMMENDATION
   ======================================== */
.smart-recommendation {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.smart-recommendation::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.recommendation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.smart-recommendation h4 {
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.smart-recommendation p,
.smart-recommendation small {
    position: relative;
    z-index: 1;
}

.smart-recommendation small {
    opacity: 0.8;
    display: block;
    margin-top: 0.5rem;
}

/* ========================================
   12. RECENTLY VIEWED
   ======================================== */
.recently-viewed {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.recently-viewed h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.recent-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.recent-item {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.recent-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

/* ========================================
   13. REFERRAL MODAL
   ======================================== */
.referral-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.referral-modal.active {
    display: flex;
}

.referral-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.referral-code-display {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
}

.referral-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ========================================
   14. UPSELL PROMPT
   ======================================== */
.upsell-prompt {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    position: relative;
    animation: slideInUp 0.5s ease;
}

.upsell-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #fbbf24;
    color: #78350f;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.upsell-prompt p {
    margin-bottom: 1rem;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   15. SEASONAL PROMO BANNER
   ======================================== */
.seasonal-promo-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.seasonal-promo-banner::before {
    content: '✨';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    top: -2rem;
    right: -2rem;
}

.seasonal-promo-banner h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.promo-code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 1rem;
    border: 2px dashed white;
}

/* ========================================
   16. SCROLL PROMOTION
   ======================================== */
.scroll-promo {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: all 0.5s ease;
    max-width: 500px;
    text-align: center;
}

.scroll-promo.show {
    bottom: 0;
}

.scroll-promo .close-promo {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #999;
}

/* ========================================
   17. PRICE MATCH BADGE
   ======================================== */
.price-match-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.price-match-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* ========================================
   18. INSTALL APP BUTTON
   ======================================== */
.install-app-btn {
    position: fixed;
    top: 100px;
    right: -300px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
}

.install-app-btn.show {
    right: 0;
}

.install-app-btn:hover {
    padding-right: 2rem;
}

/* ========================================
   19. BEST VALUE BADGE
   ======================================== */
.best-value-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ef4444;
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* ========================================
   20. MOBILE RESPONSIVENESS
   ======================================== */
@media (max-width: 768px) {
    .social-proof-popup {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
        min-width: 50px;
        padding: 0.25rem 0.5rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .quote-calculator {
        padding: 1.5rem;
    }
    
    .exit-modal-content,
    .referral-content,
    .comparison-table-wrapper {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
    
    .whatsapp-float {
        bottom: 160px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .theme-toggle-fixed {
        top: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    #comparePackagesBtn {
        display: none !important;
    }
    
    .recovery-prompt {
        right: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* ========================================
   21. ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .social-proof-popup,
    .recovery-prompt,
    .upsell-prompt,
    .exit-modal-content {
        animation: none !important;
    }
    
    .pulse-dot,
    .voice-search-btn.listening {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .live-indicator,
    .quote-breakdown,
    .smart-recommendation {
        border: 2px solid currentColor;
    }
}

/* ========================================
   22. BLOG STYLES
   ======================================== */
.blog-featured {
    padding: 3rem 0;
    background: var(--bg-light);
}

.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.featured-content {
    padding: 2rem;
}

.featured-content h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--secondary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.5rem;
}

.newsletter-section {
    margin-top: 4rem;
}

.newsletter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.newsletter-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-card small {
    opacity: 0.8;
    display: block;
    margin-top: 1rem;
}

/* ========================================
   23. DARK MODE FIXES FOR ENHANCEMENTS
   ======================================== */
body.dark-mode .live-indicator {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

body.dark-mode .quote-calculator {
    background: linear-gradient(135deg, #4c1d95 0%, #581c87 100%);
}

body.dark-mode .calculator-form select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

body.dark-mode .quote-breakdown {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .quote-line,
body.dark-mode .quote-total {
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

body.dark-mode .guest-estimator {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .guest-estimator h3,
body.dark-mode .guest-estimator p {
    color: #ffffff;
}

body.dark-mode .estimator-results .result-item {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

body.dark-mode .result-item strong,
body.dark-mode .result-item p {
    color: #e0e0e0;
}

body.dark-mode .result-recommendation {
    color: white;
}

body.dark-mode #estimatorGuests {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .exit-modal-content,
body.dark-mode .referral-content,
body.dark-mode .comparison-table-wrapper {
    background: #1a1a2e;
    color: white;
}

body.dark-mode .exit-modal-content h2,
body.dark-mode .exit-modal-content p,
body.dark-mode .referral-content h2,
body.dark-mode .referral-content p {
    color: white;
}

body.dark-mode .close-modal {
    color: #999;
}

body.dark-mode .close-modal:hover {
    color: white;
}

body.dark-mode .offer-banner {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
}

body.dark-mode .countdown-timer {
    color: white;
}

body.dark-mode .countdown-value {
    background: rgba(255, 255, 255, 0.2);
}

body.dark-mode .social-proof-popup {
    background: rgba(26, 26, 46, 0.98);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .popup-content strong {
    color: white;
}

body.dark-mode .popup-content p,
body.dark-mode .popup-time {
    color: #b8b8b8;
}

body.dark-mode .comparison-table {
    color: white;
}

body.dark-mode .comparison-table th {
    background: var(--gradient-dark);
}

body.dark-mode .comparison-table td {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .comparison-table .feature-name {
    color: white;
}

body.dark-mode .recovery-prompt {
    background: rgba(26, 26, 46, 0.98);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .recovery-content p {
    color: white;
}

body.dark-mode .smart-recommendation {
    background: linear-gradient(135deg, #065f46 0%, #064e3b 100%);
}

body.dark-mode .recently-viewed {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .recently-viewed h4 {
    color: white;
}

body.dark-mode .recent-item {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .recent-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

body.dark-mode .referral-code-display {
    background: var(--gradient-dark);
}

body.dark-mode .upsell-prompt {
    background: linear-gradient(135deg, #6b21a8 0%, #581c87 100%);
}

body.dark-mode .seasonal-promo-banner {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
}

body.dark-mode .scroll-promo {
    background: rgba(26, 26, 46, 0.98);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .scroll-promo h4,
body.dark-mode .scroll-promo p {
    color: white;
}

/* Blog dark mode */
body.dark-mode .blog-featured {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .featured-post {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .featured-content h2 {
    color: white;
}

body.dark-mode .featured-content p,
body.dark-mode .post-meta {
    color: #b8b8b8;
}

body.dark-mode .blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .blog-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .blog-content h3 {
    color: white;
}

body.dark-mode .blog-content p {
    color: #b8b8b8;
}

body.dark-mode .read-more {
    color: var(--primary-color);
}

body.dark-mode .newsletter-card {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
}

body.dark-mode .newsletter-form input {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

body.dark-mode .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Chat widget dark mode */
body.dark-mode .chat-widget {
    background: rgba(26, 26, 46, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .chat-header {
    background: var(--gradient-dark);
}

body.dark-mode .chat-body {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .chat-message {
    color: white;
}

body.dark-mode .chat-message.bot {
    background: rgba(212, 175, 55, 0.2);
}

body.dark-mode .chat-message.user {
    background: rgba(100, 100, 255, 0.2);
}

body.dark-mode .chat-input input {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .chat-input button {
    background: var(--gradient-dark);
}

/* Additional text fixes */
body.dark-mode .blog-category,
body.dark-mode .featured-badge,
body.dark-mode .package-badge,
body.dark-mode .recommendation-badge {
    color: white !important;
}

body.dark-mode .estimator-results strong {
    color: white;
}

body.dark-mode .form-step-title {
    color: white;
}

body.dark-mode .step-label {
    color: #b8b8b8;
}

body.dark-mode .step.active .step-label {
    color: white;
}

body.dark-mode .summary-item span {
    color: #e0e0e0;
}

body.dark-mode #quickPackage,
body.dark-mode #quickHours,
body.dark-mode #quickAddons {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode #quickPackage option,
body.dark-mode #quickHours option,
body.dark-mode #quickAddons option {
    background: #1a1a2e;
    color: white;
}

/* Trust badges in dark mode */
body.dark-mode .price-match-badge {
    color: white;
}

/* Booking trust badges sidebar */
body.dark-mode [style*="background: white"] {
    background: rgba(26, 26, 46, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   24. PRINT STYLES
   ======================================== */
@media print {
    .social-proof-popup,
    .whatsapp-float,
    .recovery-prompt,
    .exit-intent-modal,
    .scroll-promo,
    .install-app-btn {
        display: none !important;
    }
}
