/* Custom CSS for Bootstrap 5 Migration */
:root {
    --primary-color: #7c3aed;
    --primary-light: #a855f7;
    --primary-dark: #5b21b6;
    --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --primary-gradient-hover: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    --bg-primary-subtle: rgba(124, 58, 237, 0.1);
    --text-primary: #7c3aed;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-purple: 0 25px 50px -12px rgba(124, 58, 237, 0.25);

    /* Special Offer Page Colors */
    --offer-primary: #ef4444;
    --offer-secondary: #f97316;
    --offer-gradient: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --offer-bg-light: rgba(239, 68, 68, 0.1);

    /* Elite Club Page Colors */
    --elite-primary: #1e293b;
    --elite-secondary: #fbbf24;
    --elite-gradient: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --elite-gold: #fbbf24;
    --elite-bg-dark: #0f172a;
}

/* Typography improvements */
*{
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-3 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.display-4 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.display-5 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Bootstrap overrides */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.btn-primary::before {
    content: '';
    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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    border: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    background: transparent;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    width: 100%;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: transparent;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 14px;
    font-weight: 600;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-primary-light {
    color: var(--primary-light) !important;
}

.border-primary{
    border-color: var(--primary-color) !important;
}

.border-start{
    border-left: 0.2rem solid var(--primary-color) !important;
}

.bg-primary-gradient {
    background: var(--primary-gradient);
}

.bg-primary-subtle {
    background-color: var(--bg-primary-subtle);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Navigation improvements */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--bg-primary-subtle);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: var(--bg-primary-subtle);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

/* Hero sections improvements */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-section::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='%23DDD6FE' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23grid)'/></svg>");
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero-content .badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    margin-bottom: 2rem;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s both;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-content .d-flex {
    animation: fadeInUp 1s ease-out 0.4s both;
    margin-bottom: 2.5rem;
}

.hero-content .d-flex.align-items-center {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.hero-content .d-flex.align-items-center .d-flex {
    margin-bottom: 0;
}

.hero-visual {
    animation: fadeInRight 1s ease-out 0.6s both;
    padding: 2rem 0;
}

.hero-visual .card {
    /*background: rgba(255, 255, 255, 0.9);*/
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-visual .card:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateY(-10px);
    box-shadow: var(--shadow-purple);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

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

/* Section spacing improvements */
section {
    padding: 5rem 0;
}

section.py-5 {
    padding: 5rem 0;
}

section.bg-light {
    background-color: #f8fafc !important;
}

/* Cards improvements */
.card {
    border: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

/* Feature icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.feature-icon i {
    font-size: 2rem;
}

.card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

/* Trust section improvements */
.trust-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 4rem 0;
}

.trust-badge {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-badge img {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-badge:hover img {
    opacity: 1;
}

/* CTA section improvements */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::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='cta-pattern' width='20' height='20' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='1' fill='rgba(255,255,255,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23cta-pattern)'/></svg>");
    opacity: 0.5;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-section .btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Footer improvements */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0f172a 100%);
    color: #cbd5e1;
    position: relative;
}

.footer::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='footer-pattern' width='30' height='30' patternUnits='userSpaceOnUse'><circle cx='15' cy='15' r='0.5' fill='rgba(124,58,237,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23footer-pattern)'/></svg>");
    opacity: 0.3;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer .text-light {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .text-light:hover {
    color: var(--primary-light) !important;
    transform: translateX(5px);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: 60vh;
    }

    .hero-content {
        text-align: center;
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

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

    .hero-content .d-flex.align-items-center {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .d-flex.align-items-center {
        font-size: 0.875rem;
    }

    .hero-content .d-flex.align-items-center .d-flex {
        margin-bottom: 0.5rem;
    }
}

/* Blog hero section */
.blog-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::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=\'%23DDD6FE\' stroke-width=\'0.5\'/></pattern></defs><rect width=\'100\' height=\'100\' fill=\'url(%23grid)\'/></svg>");
    opacity: 0.3;
}

/* Article hero section */
.article-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.article-hero-section::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=\'%23DDD6FE\' stroke-width=\'0.5\'/></pattern></defs><rect width=\'100\' height=\'100\' fill=\'url(%23grid)\'/></svg>");
    opacity: 0.3;
}

/* Cards */
.card {
    border: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Category and article cards */
.category-card:hover,
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

/* Featured article card */
.featured-article {
    box-shadow: var(--shadow-xl);
}

/* Trust badges */
.trust-badge {
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Author avatar */
.author-avatar {
    width: 50px;
    height: 50px;
}

/* Table of contents */
.toc-list a:hover {
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color) !important;
    background-color: var(--bg-primary-subtle);
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-muted);
}

/* Special Offer Page Styles */
.offer-hero {
    background: var(--offer-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-hero::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=\'flash\' width=\'20\' height=\'20\' patternUnits=\'userSpaceOnUse\'><path d=\'M10 0L15 10L10 20L5 10Z\' fill=\'rgba(255,255,255,0.1)\'/></pattern></defs><rect width=\'100\' height=\'100\' fill=\'url(%23flash)\'/></svg>");
    animation: flash 2s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.offer-badge {
    background: var(--offer-gradient);
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.offer-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: var(--text-dark);
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.offer-btn::before {
    content: '⚡';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    animation: lightning 1.5s ease-in-out infinite;
}

@keyframes lightning {
    0% { left: -30px; }
    50% { left: 50%; }
    100% { left: calc(100% + 30px); }
}

.offer-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Elite Club Page Styles */
.elite-hero {
    background: var(--elite-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.elite-hero::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='sparkle' width='30' height='30' patternUnits='userSpaceOnUse'><circle cx='15' cy='15' r='1' fill='rgba(251,191,36,0.3)'/></pattern></defs><rect width='100' height='100' fill='url(%23sparkle)'/></svg>");
    animation: sparkle 3s ease-in-out infinite;
}

.elite-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--elite-gold) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.elite-badge {
    background: linear-gradient(135deg, var(--elite-gold) 0%, #f59e0b 100%);
    color: var(--elite-primary);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.elite-badge::before {
    content: '👑';
    margin-right: 0.5rem;
    font-size: 1.2em;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.elite-btn {
    background: linear-gradient(135deg, var(--elite-gold) 0%, #f59e0b 100%);
    border: none;
    color: var(--elite-primary);
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.elite-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.elite-btn:hover::before {
    left: 100%;
}

.elite-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.5);
    color: var(--elite-primary);
}

.elite-card {
    background: linear-gradient(135deg, var(--elite-bg-dark) 0%, var(--elite-primary) 100%);
    border: 2px solid var(--elite-gold);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.elite-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

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

.elite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(251, 191, 36, 0.2);
    border-color: #f59e0b;
}

.elite-card > * {
    position: relative;
    z-index: 2;
}

.elite-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--elite-gold) 0%, #f59e0b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--elite-primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.elite-card:hover .elite-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.gold-text {
    background: linear-gradient(135deg, var(--elite-gold) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.luxury-bg {
    background: linear-gradient(135deg, var(--elite-bg-dark) 0%, var(--elite-primary) 50%, var(--elite-bg-dark) 100%);
    position: relative;
}

.luxury-bg::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='luxury' width='20' height='20' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='0.5' fill='rgba(251,191,36,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23luxury)'/></svg>");
    opacity: 0.5;
}

.elite-stats {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.elite-stats:hover {
    background: rgba(251, 191, 36, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2);
}

.premium-text {
    background: linear-gradient(135deg, var(--elite-gold) 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Contact form styles */
.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Pricing table styles */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
}

.pricing-card.featured .card-header {
    background: var(--primary-gradient);
    color: white;
}

.pricing-card .badge {
    animation: pulse 2s infinite;
}

.pricing-badge {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg);
    animation: bounce 2s infinite;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pricing-badge.limited {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: glow 2s ease-in-out infinite alternate;
}

.pricing-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-save {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.pricing-feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.pricing-feature:hover {
    background: rgba(124, 58, 237, 0.05);
    padding-left: 0.5rem;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-cta {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    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.5s;
}

.pricing-cta:hover::before {
    left: 100%;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.pricing-toggle {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.pricing-toggle input[type="checkbox"] {
    width: 60px;
    height: 30px;
    appearance: none;
    background: #e2e8f0;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle input[type="checkbox"]:checked {
    background: var(--primary-gradient);
}

.pricing-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-toggle input[type="checkbox"]:checked::before {
    transform: translateX(30px);
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 30px rgba(245, 158, 11, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-5px);
    }
    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Features grid */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-primary-subtle);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.card:hover .feature-icon::before {
    opacity: 1;
}

.card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    animation: pulse 2s infinite;
}

.feature-badge.coming-soon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.feature-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.feature-list li:hover {
    background: var(--bg-primary-subtle);
    padding-left: 1rem;
    transform: translateX(5px);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-visual {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.feature-stats {
    background: var(--bg-primary-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-stats:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-stats .display-6 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.interactive-demo {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-demo:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.demo-screen {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.demo-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-bottom: 1px solid #d1d5db;
}

.demo-content {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.progress-demo {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-demo .progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

.feature-comparison {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.comparison-row {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.comparison-row:hover {
    background: var(--bg-primary-subtle);
}

.comparison-row:last-child {
    border-bottom: none;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .elite-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .elite-hero h1 {
        font-size: 2.5rem;
    }

    .elite-hero .lead {
        font-size: 1.1rem;
    }

    .elite-card {
        margin-bottom: 2rem;
    }

    .feature-showcase {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .pricing-value {
        font-size: 2rem;
    }

    .elite-hero h1 {
        font-size: 2rem;
    }

    .elite-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.card, .btn, .badge {
    will-change: transform;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .badge {
        display: none !important;
    }

    .hero-section {
        background: none !important;
        color: black !important;
    }

    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
}

/* Stats counter */
.stats-counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .blog-hero-section,
    .article-hero-section {
        padding: 6rem 0 3rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .countdown-timer {
        padding: 1rem;
    }

    .countdown-item {
        padding: 0.5rem;
    }
}

/* Animation utilities */
.animate-fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Loading states */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* New Homepage Sections Styles */

/* What We Offer Section */
.offer-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-purple);
}

/* Why Choose Us Section */
.why-us-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-us-content:hover .why-us-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-purple);
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    font-size: 1.2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-primary-subtle);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(124, 58, 237, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237c3aed'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Let's Connect Section */
.bg-primary-gradient {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.bg-primary-gradient::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='connect-pattern' width='20' height='20' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='1' fill='rgba(255,255,255,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23connect-pattern)'/></svg>");
    animation: float 8s ease-in-out infinite;
}

.connect-option {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
}

.connect-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.connect-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.connect-option:hover .connect-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::before {
    width: 100%;
}

.btn-outline-light:hover {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.5s;
}

.btn-light:hover::before {
    left: 100%;
}

.btn-light:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offer-icon,
    .connect-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-us-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Animation for section entrance */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card,
.why-us-content > div,
.testimonial-card,
.accordion-item,
.connect-option {
    animation: slideInUp 0.6s ease-out;
}

/* Stagger animation delays */
.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }
.offer-card:nth-child(5) { animation-delay: 0.5s; }
.offer-card:nth-child(6) { animation-delay: 0.6s; }



/* Contact form styles */
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
    background-color: #ffffff;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary-subtle);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.contact-info-card h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Form validation styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: #198754;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Contact page specific improvements */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.contact-hero::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='contact-grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='%23DDD6FE' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23contact-grid)'/></svg>");
    opacity: 0.3;
}

.contact-hero > * {
    position: relative;
    z-index: 2;
}

.contact-section {
    padding: 5rem 0;
}

.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Responsive contact form */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .contact-info-card {
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}


/* Feature cards improvements */
.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-primary-subtle) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: var(--primary-color);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.feature-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    color: white;
    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 15px rgba(124, 58, 237, 0.3);
    z-index: 3;
}

.feature-badge.coming-soon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Feature showcase sections */
.feature-showcase {
    padding: 6rem 0;
}

.feature-showcase.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.feature-showcase h2 {
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.feature-showcase .lead {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-showcase .list-unstyled li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.feature-showcase .list-unstyled li i {
    color: #22c55e;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.feature-demo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-demo-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-stats {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.feature-stats .fs-4 {
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.feature-stats .text-primary {
    color: var(--primary-color) !important;
}

.feature-stats .text-danger {
    color: #ef4444 !important;
}

.feature-stats .text-success {
    color: #22c55e !important;
}

.feature-activity {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-activity .text-muted {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.feature-activity ul {
    font-size: 0.875rem;
    line-height: 1.6;
}

.feature-activity ul li {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

/* Color palette demo */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.color-swatch {
    aspect-ratio: 1;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    transform: scale(1.1);
}

/* CTA buttons in feature sections */
.feature-cta {
    margin-top: 2rem;
}

.feature-cta .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
}

/* Responsive feature cards */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-showcase {
        padding: 4rem 0;
    }

    .feature-demo-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .color-palette {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1rem;
    }

    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .feature-demo-card {
        padding: 1rem;
    }

    .feature-stats {
        padding: 1rem;
    }

    .feature-activity {
        padding: 1rem;
    }
}


/* Pricing page styles */
.pricing-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.pricing-hero::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='pricing-grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='%23DDD6FE' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23pricing-grid)'/></svg>");
    opacity: 0.3;
}

.pricing-hero > * {
    position: relative;
    z-index: 2;
}

.pricing-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle label {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-toggle input:checked + label {
    transform: translateX(30px);
}

.pricing-toggle input:checked ~ .pricing-toggle {
    background: var(--primary-gradient);
}

.pricing-save {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-primary-subtle) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
    border-color: var(--primary-color);
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white 0%, var(--bg-primary-subtle) 100%);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0 0 20px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    z-index: 3;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(159, 11, 245, 0.3); }
    to { box-shadow: 0 8px 25px rgba(124, 11, 245, 0.5); }
}

.pricing-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-value span:not(.sale-price) {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-feature {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pricing-feature:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.pricing-feature i {
    color: #22c55e;
    font-size: 1.1rem;
}

.pricing-cta {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.pricing-cta::before {
    content: '';
    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.5s;
}

.pricing-cta:hover::before {
    left: 100%;
}

.pricing-cta:hover {
    background: var(--primary-gradient-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
    text-decoration: none;
}

/* Urgency elements */
.urgency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner::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='urgency-pattern' width='20' height='20' patternUnits='userSpaceOnUse'><path d='M10 0L15 10L10 20L5 10Z' fill='rgba(255,255,255,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23urgency-pattern)'/></svg>");
    animation: flash 2s ease-in-out infinite;
}

.urgency-banner > * {
    position: relative;
    z-index: 2;
}

.urgency-text {
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.limited-time {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

/* Pricing comparison table */
.pricing-comparison {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table td {
    color: var(--text-muted);
}

.comparison-table .feature-included {
    color: #22c55e;
    font-weight: 600;
}

.comparison-table .feature-not-included {
    color: #ef4444;
    font-weight: 600;
}

/* Money back guarantee */
.guarantee-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.guarantee-badge i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 0 3rem;
    }

    .pricing-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .pricing-value {
        font-size: 2.5rem;
    }

    .pricing-comparison {
        padding: 2rem;
        border-radius: 16px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-value {
        font-size: 2rem;
    }

    .pricing-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .urgency-text {
        font-size: 1rem;
    }

    .limited-time {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}


/* Special Offer Page Styles */
.offer-vibe {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
}

.offer-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.offer-hero::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='offer-pattern' width='20' height='20' patternUnits='userSpaceOnUse'><path d='M10 0L15 10L10 20L5 10Z' fill='rgba(255,255,255,0.1)'/></pattern></defs><rect width='100' height='100' fill='url(%23offer-pattern)'/></svg>");
    animation: flash 2s ease-in-out infinite;
}

.offer-hero > * {
    position: relative;
    z-index: 2;
}

.offer-hero h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes glow-text {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5); }
}

.deal-card {
    background: white;
    border: 3px solid #dc2626;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    animation: deal-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #f97316, #dc2626);
    animation: deal-glow 2s ease-in-out infinite;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.3);
}

@keyframes deal-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes deal-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #ef4444;
    transform: translateY(-50%);
    animation: strike-through 1s ease-out;
}

@keyframes strike-through {
    from { width: 0; }
    to { width: 100%; }
}

.sale-price {
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(220, 38, 38, 0.2);
}

@keyframes price-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-badge {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: bounce 2s infinite;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    position: relative;
    overflow: hidden;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.btn-offer {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    animation: pulse-offer 2s infinite;
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-offer::before {
    content: '';
    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.5s;
}

.btn-offer:hover::before {
    left: 100%;
}

.btn-offer:hover {
    background: linear-gradient(135deg, #ff3742 0%, #ff2d39 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.6);
}

@keyframes pulse-offer {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.urgency-text {
    color: #ff4757;
    font-weight: 700;
    animation: blink 1.5s infinite;
    font-size: 1.1rem;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.feature-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border-left: 4px solid #ff4757;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.1);
}

.countdown-timer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.countdown-item {
    display: inline-block;
    margin: 0 1rem;
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff4757;
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
    animation: countdown-glow 2s ease-in-out infinite alternate;
}

@keyframes countdown-glow {
    from { text-shadow: 0 0 20px rgba(255, 71, 87, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 71, 87, 0.8); }
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.savings-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    animation: savings-pulse 2s ease-in-out infinite;
}

.savings-highlight i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

@keyframes savings-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.testimonial-offer {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff4757;
    margin: 2rem 0;
    position: relative;
}

.testimonial-offer::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff4757;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-offer .stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-proof {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
}

.social-proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff4757;
    display: block;
    line-height: 1;
}

.social-proof-text {
    color: #6b7280;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive offer styles */
@media (max-width: 768px) {
    .offer-hero {
        padding: 4rem 0 3rem;
    }

    .deal-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .sale-price {
        font-size: 3rem;
    }

    .btn-offer {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item {
        margin: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .deal-card {
        padding: 1.5rem;
    }

    .sale-price {
        font-size: 2.5rem;
    }

    .btn-offer {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .savings-highlight {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}


/* Blog page styles */
.blog-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.blog-hero::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='blog-grid' width='10' height='10' patternUnits='userSpaceOnUse'><path d='M 10 0 L 0 0 0 10' fill='none' stroke='%23DDD6FE' stroke-width='0.5'/></pattern></defs><rect width='100' height='100' fill='url(%23blog-grid)'/></svg>");
    opacity: 0.3;
}

.blog-hero > * {
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--bg-light);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: white;
    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 15px rgba(124, 58, 237, 0.3);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-date {
    color: var(--text-muted);
    font-weight: 500;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.blog-read-more i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Featured blog post */
.blog-featured {
    background: linear-gradient(135deg, white 0%, var(--bg-primary-subtle) 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.blog-featured::before {
    content: 'Featured';
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.blog-featured .blog-card-image {
    height: 300px;
}

/* Blog sidebar */
.blog-sidebar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.sidebar-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post:hover {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1rem;
    margin: 0 -1rem;
}

.sidebar-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    background: var(--bg-light);
    flex-shrink: 0;
    overflow: hidden;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.sidebar-post:hover h4 {
    color: var(--primary-color);
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tag:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

/* Newsletter signup */
.newsletter-widget {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.newsletter-widget h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-widget h3::after {
    background: white;
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.newsletter-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Blog pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-pagination .page-link {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-pagination .page-link:hover,
.blog-pagination .page-link.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

/* Search functionality */
.blog-search {
    position: relative;
    margin-bottom: 2rem;
}

.blog-search .form-control {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.875rem 3rem 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-search .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

.blog-search .search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-search .search-btn:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-50%) scale(1.05);
}

.feature-v2-card {
    transition: all 0.2s ease;
    height: 100%;
    border-left: 3px solid #7c3aed;
}
.feature-v2-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}
.feature-v2-icon {
    font-size: 1.5rem;
    color: #7c3aed;
    margin-right: 1rem;
}
.feature-v2-title {
    font-size: 1rem;
    font-weight: 600;
}
.feature-v2-desc {
    font-size: 0.85rem;
    color: #6c757d;
}
.category-badge-v2.bg-primary {
    background-color: #7c3aed !important;
}
.category-badge-v2 {
    font-size: 0.65rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Responsive blog styles */
@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-featured .blog-card-image {
        height: 250px;
    }

    .blog-sidebar {
        margin-top: 3rem;
        position: static;
    }

    .sidebar-widget {
        margin-bottom: 2rem;
    }

    .newsletter-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-card-content {
        padding: 1rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .sidebar-post {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sidebar-post-image {
        width: 100%;
        height: 120px;
    }

    .tag-cloud {
        gap: 0.25rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

