/* Custom Styles for Josh Landing */

/* Layout Fix for Sticky Header */
.hero-minimal,
.hero-features {
    padding-top: 130px !important;
}

@media (max-width: 991px) {

    .hero-minimal,
    .hero-features {
        padding-top: 100px !important;
    }
}

/* Global Section Padding Reduction */
.section {
    padding: 60px 0 !important;
}

#why-josh {
    padding-top: 40px !important;
}

/* Hero Styles */
.hero-minimal {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecf7 100%);
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
}

/* Badges */
.beta-badge {
    background: linear-gradient(135deg, #2f55d4 0%, #6366f1 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Why Josh Sections */
.pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.pain-point-item:last-child {
    border-bottom: none;
}

.pain-point-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* CRUD Highlight Section */
.crud-highlight {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
}

.crud-highlight h2 {
    color: white;
}

.input-type-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    margin: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.input-type-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* For/Not For Section */
.for-notfor-section {
    background: #f8fafc;
}

.for-card,
.notfor-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.for-card {
    border-top: 4px solid #10b981;
}

.notfor-card {
    border-top: 4px solid #ef4444;
}

/* Trust Bar */
.trust-bar {
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-stat {
    text-align: center;
    padding: 24px;
}

.trust-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f55d4;
    margin-bottom: 4px;
}

.trust-stat p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Demos & CTAs */
.demo-dropdown .dropdown-menu {
    min-width: 200px;
}

.demo-dropdown .dropdown-item {
    padding: 10px 20px;
}

.demo-dropdown .dropdown-item i {
    margin-right: 8px;
    color: #2f55d4;
}

.cta-large {
    font-size: 1.1rem;
    padding: 14px 32px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2f55d4;
    position: relative;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #2f55d4;
}

.pricing-card .price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 10px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid #2f55d4;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
    margin-top: 16px;
}

.testimonial-role {
    color: #64748b;
    font-size: 0.9rem;
}

.stars {
    color: #fbbf24;
}

/* Objections Section */
.objection-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #10b981;
}

.objection-item h5 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 8px;
}

.objection-item p {
    color: #64748b;
    margin: 0;
}

/* Features Cards */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #2f55d4;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-card.featured {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-top: 4px solid #2f55d4;
    box-shadow: 0 4px 15px rgba(47, 85, 212, 0.15);
}

.feature-card.featured:hover {
    box-shadow: 0 10px 25px rgba(47, 85, 212, 0.2);
}

.feature-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2f55d4 0%, #6366f1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Fix for outline button on primary background */
.bg-primary .btn-outline-light {
    color: white;
    border-color: white;
}

.bg-primary .btn-outline-light:hover {
    color: #2f55d4 !important;
    background-color: white;
    border-color: white;
}

/* FAQ Accordion Styles */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    background: white;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px;
    border-left: 4px solid #10b981;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    color: #059669;
    border-left-color: #10b981;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: #10b981;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: #10b981;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    color: #059669;
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 20px 24px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* What's New Section */
.whats-new-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 1px solid #bae6fd;
    border-bottom: 1px solid #bae6fd;
}

.whats-new-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.update-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0f2fe;
}

.update-item:last-child {
    border-bottom: none;
}

.update-item strong {
    color: #0369a1;
    font-weight: 600;
}

.update-item ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.update-item li {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* Screenshot Helper */
.screenshot-placeholder,
.feature-screenshot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Features Page Category Styles */
.feature-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.category-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Hero Features */
.hero-features {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecf7 100%);
}

/* CRUD Specific Styles */
.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 4px solid #2f55d4;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #2f55d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(47, 85, 212, 0.3);
}

.input-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    border: 1px solid #e2e8f0;
}

.input-card:hover {
    transform: translateY(-3px);
    border-color: #2f55d4;
}

.input-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f55d4;
    font-size: 1.2rem;
}

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

.file-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-family: 'Courier New', monospace;
}

.file-item i {
    margin-right: 12px;
    color: #10b981;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    .hero-minimal,
    .hero-features {
        min-height: auto;
    }

    .hero-headline {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem !important;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .beta-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        white-space: normal;
        text-align: center;
        display: inline-block;
        max-width: 100%;
        line-height: 1.4;
    }

    .cta-large {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .trust-stat h3 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .feature-category {
        margin-bottom: 40px;
    }
}

/* Navbar Spacing Refinement */
#topnav .container {
    max-width: 1320px !important;
}

#topnav .logo img {
    /* height: 28px !important; */
    width: auto !important;
}

#navigation .navigation-menu>li>a {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

@media (min-width: 992px) and (max-width: 1250px) {
    #navigation .navigation-menu>li>a {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 13px !important;
    }
}

/* Color Helpers */
.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.lsp-1 {
    letter-spacing: 1px !important;
}