/* Main Styles for mybuildersmerchant.uk */

:root {
    --primary: #2E5EAA;
    --secondary: #FF6B35;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    font-weight: 700;
}

.brand-my {
    color: var(--primary);
}

.brand-builders {
    color: var(--primary);
}

.brand-merchant {
    color: var(--secondary);
}

.brand-uk {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.download-btn {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white !important;
    font-weight: 500;
    padding: 8px 15px;
    margin-left: 10px;
}

.download-btn:hover {
    background-color: #e55a25;
    border-color: #e55a25;
}

/* Page Header */
.page-header {
    padding: 100px 0 80px;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3c7a 100%);
    margin-bottom: 60px;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.header-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header .lead {
    font-size: 1.25rem;
    color: var(--gray);
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 30px;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 94, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

/* Market Segments */
.market-segment {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-segment:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.segment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.segment-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 94, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.segment-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Revenue Cards */
.revenue-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.revenue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.revenue-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 94, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.revenue-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.progress {
    height: 10px;
    border-radius: 5px;
}

.progress-bar {
    background-color: var(--primary);
}

/* Tech Cards */
.tech-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 94, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Team Cards */
.team-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.team-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(46, 94, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.team-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Market Stats */
.market-stat {
    text-align: center;
    padding: 20px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(46, 94, 170, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-circle .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-circle .label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Industry Stats */
.industry-stats {
    margin-bottom: 30px;
}

.stat-item {
    margin-bottom: 15px;
}

.stat-label {
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-bar {
    height: 25px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    position: relative;
}

.stat-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 5px;
}

.stat-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Funding Allocation */
.funding-allocation {
    margin-top: 20px;
}

.allocation-item {
    margin-bottom: 15px;
}

.allocation-label {
    margin-bottom: 5px;
    font-weight: 500;
}

.allocation-bar {
    height: 25px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    position: relative;
}

.allocation-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 5px;
}

.allocation-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background-color: rgba(46, 94, 170, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 35px;
    top: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Roadmap */
.roadmap {
    position: relative;
    padding: 30px 0;
}

.roadmap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background-color: rgba(46, 94, 170, 0.2);
}

.roadmap-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: 20px;
    top: 0;
    padding: 5px 10px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 5px;
    z-index: 1;
}

.roadmap-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3c7a 100%);
    padding: 80px 0;
    color: white;
    margin-top: 80px;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.cta-section .btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 12px 30px;
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background-color: #e55a25;
    border-color: #e55a25;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        margin-top: 15px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .download-btn {
        margin-top: 10px;
        margin-left: 0;
        display: inline-block;
    }
    
    .timeline:before,
    .roadmap:before {
        left: 30px;
    }
    
    .timeline-item,
    .roadmap-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        left: 15px;
    }
    
    .roadmap-marker {
        left: 0;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Utility Classes */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

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

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

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #254d8a;
    border-color: #254d8a;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #e55a25;
    border-color: #e55a25;
}

.table-primary {
    background-color: rgba(46, 94, 170, 0.1);
}

.quote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    font-style: italic;
    margin: 20px 0;
}

.quote i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.insight-card {
    background-color: rgba(46, 94, 170, 0.05);
}

.advantage-item {
    margin-bottom: 25px;
}

.advantage-item h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.chart-container {
    height: 300px;
    position: relative;
}

/* Add these styles to the end of your existing CSS file */

/* Positioning Statement Styling */
.positioning-statement {
    background-color: #FF6B35;
    color: white;
    border-left: 5px solid #2E5EAA;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.positioning-statement strong {
    font-weight: 700;
}

/* AI Feature Card Styling */
.ai-feature-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.ai-feature-card .card-body {
    padding: 2rem;
}

.ai-feature {
    height: 100%;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}

.ai-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FF6B35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ai-feature h5 {
    color: #2E5EAA;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-feature ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.ai-feature ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .positioning-statement {
        font-size: 1rem;
        padding: 1.25rem !important;
    }
    
    .ai-feature {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .ai-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Hide Manus badge */
make-with-manus,
.made-with-btn,
[class*="made-with-"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Additional selectors to ensure complete removal */
manus-content-root {
    display: none !important;
}

/* Hide any potential tooltips or dialogs */
lit-dialog[title="Made with Manus"],
.tooltip-trigger-css[data-tooltip*="Manus"] {
    display: none !important;
}
