/* ================================================
   TenderFlow - Main Stylesheet
   Author: TenderFlow Team
   Version: 1.0
   ================================================ */

/* --- Root Variables (Brand Colors) --- */
:root {
    --tf-dark-blue: #1B2B6B;
    --tf-teal: #00C2CB;
    --tf-blue: #2E5FA3;
    --tf-light-bg: #f8faff;
    --tf-text-dark: #333333;
    --tf-text-muted: #666666;
}

/* --- Base --- */
body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--tf-text-dark);
}

/* --- Navbar --- */
.navbar {
    background-color: var(--tf-dark-blue) !important;
    padding: 12px 0;
}

/* --- Buttons --- */
.btn-teal {
    background-color: var(--tf-teal);
    border-color: var(--tf-teal);
    color: white;
    border-radius: 8px;
}
.btn-teal:hover {
    background-color: var(--tf-blue);
    border-color: var(--tf-blue);
    color: white;
}
.btn-outline-teal {
    border: 2px solid var(--tf-teal);
    color: var(--tf-teal);
    border-radius: 8px;
    background: transparent;
}
.btn-outline-teal:hover {
    background-color: var(--tf-teal);
    color: white;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--tf-light-bg);
    padding: 80px 0;
}
.hero h1 {
    color: var(--tf-dark-blue);
    font-weight: 800;
    font-size: 2.8rem;
}
.highlight {
    color: var(--tf-teal);
}
.badge-platform {
    background-color: rgba(0,194,203,0.1);
    color: var(--tf-teal);
    border: 1px solid var(--tf-teal);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}
.benefit-item {
    color: var(--tf-dark-blue);
    margin-bottom: 10px;
    font-size: 1rem;
}
.benefit-item i {
    color: var(--tf-teal);
    margin-right: 8px;
}

/* --- Dashboard Preview --- */
.dashboard-preview {
    background: var(--tf-dark-blue);
    border-radius: 16px;
    padding: 20px;
    color: white;
    box-shadow: 0 20px 60px rgba(27,43,107,0.3);
}
.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tf-teal);
}

/* --- Why Section --- */
.why-section {
    padding: 60px 0;
    background: white;
}
.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--tf-light-bg);
    height: 100%;
}
.why-card i {
    font-size: 2.5rem;
    color: var(--tf-teal);
    margin-bottom: 15px;
}
.why-card h5 {
    color: var(--tf-dark-blue);
    font-weight: 700;
}
.why-card p {
    color: var(--tf-text-muted);
    font-size: 0.95rem;
}

/* --- Consulting Section --- */
.consulting-section {
    background: var(--tf-light-bg);
    padding: 60px 0;
}
.consulting-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(27,43,107,0.08);
}
.consulting-box h3 {
    color: var(--tf-teal);
    font-weight: 700;
}

/* --- Footer Bar --- */
.footer-bar {
    background-color: var(--tf-dark-blue);
    padding: 20px 0;
    color: white;
}
.footer-bar i {
    color: var(--tf-teal);
    margin-right: 8px;
}
.footer-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.9rem;
}