/* AboutTheTools Page - Custom Styles */

/* Bootstrap Color Overrides for AboutTheTools Page */
.btn-primary {
    background-color: #259591;
    border-color: #259591;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #1a6d6a;
    border-color: #1a6d6a;
}

.text-primary {
    color: #259591 !important;
}

.bg-primary {
    background-color: #259591 !important;
}

/* Sticky Navigation Sidebar */
.tools-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.tools-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tools-nav-item {
    margin-bottom: 0.5rem;
}

.tools-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #6c757d;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tools-nav-link:hover {
    color: #259591;
    background-color: rgba(37, 149, 145, 0.05);
    border-left-color: rgba(37, 149, 145, 0.3);
}

.tools-nav-link.active {
    color: #259591;
    background-color: rgba(37, 149, 145, 0.1);
    border-left-color: #259591;
}

/* Tool Section Styling */
.tool-section {
    scroll-margin-top: 100px;
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.tool-section:last-child {
    border-bottom: none;
}

.tool-header {
    margin-bottom: 2rem;
}

.tool-outcome-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #259591;
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-description {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Screenshot/Mockup Styling */
.tool-screenshot {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    overflow: hidden;
}

.tool-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #6c757d;
    margin: 2rem 0;
}

/* Use Case Box */
.use-case-box {
    background: #f8f9fa;
    border-left: 4px solid #259591;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.use-case-box h4 {
    color: #259591;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.use-case-box p {
    margin-bottom: 0;
    color: #495057;
    line-height: 1.6;
}

/* Activation Tip */
.activation-tip {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-left: 4px solid #ff9900;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.activation-tip h4 {
    color: #cc7a00;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.activation-tip h4::before {
    content: "💡";
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.activation-tip p {
    margin-bottom: 0;
    color: #664d00;
    line-height: 1.6;
}

/* Section CTA */
.section-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.section-cta .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    border: none;
    background: white;
    font-weight: 600;
    font-size: 1.125rem;
    color: #212529;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #259591;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #495057;
    line-height: 1.8;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Roadmap Section */
.roadmap-section {
    background: #211747;
    color: white;
    padding: 4rem 0;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.roadmap-item h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.roadmap-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.roadmap-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tools-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 2rem;
    }

    .tools-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tools-nav-item {
        margin-bottom: 0;
    }

    .tools-nav-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.5rem 1rem;
        border-radius: 8px;
    }

    .tools-nav-link.active {
        border-bottom-color: #259591;
    }

    .tool-section {
        padding: 2rem 0;
        scroll-margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .tool-outcome-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .tool-description {
        font-size: 1rem;
    }

    .use-case-box,
    .activation-tip {
        padding: 1rem;
    }

    .section-cta .btn {
        width: 100%;
        margin-right: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Feature Icons */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 149, 145, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper svg {
    color: #259591;
}

/* Tool Card Styling */
.tool-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.tool-card h4 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0 2rem;
}

.intro-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.intro-section .lead {
    font-size: 1.5rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .intro-section h1 {
        font-size: 2rem;
    }

    .intro-section .lead {
        font-size: 1.25rem;
    }
}
