html {
    scroll-behavior: smooth;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}
.btn-loading {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-section h1.display-1 {
    font-weight: bold !important;
}

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.cookie-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #000;
}

.cookie-content p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cookie-buttons button {
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept {
    background-color: #007ee5;
    color: white;
}

.btn-custom {
    background-color: #e0e0e0;
    color: #333;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal .modal-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.3s ease;
}

.cookie-setting {
    margin: 12px 0;
}

.modal-actions {
    margin-top: 20px;
    text-align: right;
}

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

.hidden { display: none !important; }

@media (max-width: 767px) {
    .footer-subscribe-form .from-group {
        margin-bottom: 52px !important;
    }

    .single-post {
        margin: 122px 15px 0 !important;
    }

    .faq-accordion-item .header h5 .btn {
        position: relative;
        padding-right: 40px !important;
        white-space: normal;
        word-break: break-word;
    }
}        

.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fff 0%, #fff9fa 100%);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 91, 125, 0.15);
    border-color: #ff5b7d;
}

.pricing-card.popular {
    border-color: #ff5b7d;
    box-shadow: 0 8px 30px rgba(255, 91, 125, 0.2);
}

.pricing-card.popular::before {
    content: "BEST VALUE";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff5b7d 0%, #ff6b35 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: #ff5b7d;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: #ff5b7d;
    line-height: 1;
    margin: 0 4px;
}

.period {
    font-size: 18px;
    color: #999;
    font-weight: 500;
}

.plan-description {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    color: #ff5b7d;
    font-weight: 700;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-cta:hover { 
    text-decoration: none;
}

.pricing-cta.primary {
    background: linear-gradient(135deg, #ff5b7d 0%, #ff6b35 100%);
    color: white;
}

.pricing-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 91, 125, 0.3);
}

.pricing-cta.secondary {
    background: white;
    color: #ff5b7d;
    border: 2px solid #ff5b7d;
}

.pricing-cta.secondary:hover {
    background: #fff5f7;
}

.savings-badge {
    display: inline-block;
    background: #fff0f3;
    color: #ff5b7d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        max-width: 400px;
        margin: 50px auto 0;
    }
    
    .pricing-card.popular::before {
        top: 20px;
        left: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }
    
    .pricing-header h2 {
        font-size: 32px;
    }
    
    .pricing-header p {
        font-size: 16px;
    }
    
    .amount {
        font-size: 48px;
    }
}

.blog-empty-state {
    padding: 120px 20px;
    background: white;
}

.empty-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.empty-icon {
    margin-bottom: 32px;
    opacity: 0.8;
}

.blog-empty-state h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-empty-state p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.empty-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff5b7d 0%, #ff6b35 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 91, 125, 0.3);
}

.btn-secondary {
    padding: 14px 32px;
    background: white;
    color: #ff5b7d;
    border: 2px solid #ff5b7d;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff5f7;
}

@media (max-width: 768px) {
    .blog-empty-state {
        padding: 80px 20px;
    }
    
    .blog-empty-state h2 {
        font-size: 26px;
    }
    
    .blog-empty-state p {
        font-size: 16px;
    }
    
    .empty-ctas {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

.upcoming-topics {
    margin: 40px 0;
    padding: 32px;
    background: #fafafa;
    border-radius: 16px;
    border: 2px solid #ffe5eb;
}

.upcoming-topics h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-align: center;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.topic-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border: 1px solid #f0f0f0;
}

.topic-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.empty-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.empty-ctas .btn-primary::after {
    width: 100%;
}

.empty-ctas a:hover {
    text-decoration: none;
    color: #ff4d6b;
}

@media (max-width: 768px) {
    .empty-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px; 
    }
}

@media (max-width: 768px) {
    .topic-grid {
        grid-template-columns: 1fr;
    }
}