@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --primary-light: #e7f1ff;
    --success: #198754;
    --success-light: #d1e7dd;
    --secondary: #6c757d;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #343a40;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    --gradient-success: linear-gradient(135deg, #198754 0%, #146c43 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e85a24 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #fafbfc;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}


/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.3px;
}

.navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

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

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin-left: auto;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: all 0.15s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.3rem;
    vertical-align: 0.2em;
}

.navbar-toggler {
    border: 1px solid var(--gray-300);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #146c43;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.1rem;
}


/* Main Content */
main {
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
}


/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section .row {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: var(--dark);
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--secondary);
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-section img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.hero-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}


/* Search Box */
.search-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.search-box .form-select,
.search-box .form-control {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-100);
}

.search-box .form-select:focus,
.search-box .form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.search-box .btn-success {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}


/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
}

.stats-section .stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stats-section .stat-card:hover::before {
    transform: scaleX(1);
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.stats-section .stat-label {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}


/* Experts/Industries Section */
.experts-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.expert-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    height: 100%;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.3);
}

.expert-card i {
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: var(--primary-light);
}

.expert-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 1rem;
}

.expert-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.expert-card .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.expert-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}


/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 135, 84, 0.15) 0%, transparent 50%);
}

.how-it-works .section-title {
    color: var(--white);
    position: relative;
}

.how-it-works .section-subtitle {
    color: rgba(255,255,255,0.7);
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.4);
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 280px;
    margin: 0 auto;
}


/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--white);
}

.trust-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.5rem;
    min-width: 32px;
}

.trust-item span {
    font-weight: 600;
    color: var(--gray-800);
}


/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.cta-section .btn-outline-primary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary);
}


/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    padding: 0.35rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.6;
}


/* Modal Improvements */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: none;
    background: var(--primary-light);
}

.modal-title {
    font-weight: 700;
    font-size: 1.35rem;
}

.modal-body {
    padding: 2rem;
}

.input-group-text {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-right: none;
    color: var(--secondary);
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    border-color: var(--primary);
}

.input-group .form-control {
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

.input-group:focus-within .form-control {
    border-color: var(--primary);
}


/* Form Elements */
.form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}


/* Modal */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: none;
    background: var(--primary-light);
}

.modal-title {
    font-weight: 700;
    font-size: 1.35rem;
}

.modal-body {
    padding: 2rem;
}

.input-group-text {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-right: none;
    color: var(--secondary);
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    border-color: var(--primary);
}

.input-group .form-control {
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

.input-group:focus-within .form-control {
    border-color: var(--primary);
}

.form-check-label {
    color: var(--secondary);
    font-size: 0.9rem;
}

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 110, 253, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    color: var(--dark);
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    border: 3px solid #fff;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
    background: var(--primary);
}

.avatar:nth-child(2) {
    background: #10b981;
}

.avatar:nth-child(3) {
    background: #8b5cf6;
}

.avatar:nth-child(4) {
    background: #f59e0b;
}


/* Search Box */
.search-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.search-box .form-select,
.search-box .form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-100);
    height: 50px;
}

.search-box .form-select:focus,
.search-box .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.search-box .btn-success {
    padding: 0 1.25rem;
    font-size: 1rem;
    height: 50px;
    border-radius: var(--radius-sm);
}


/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.stats-section .stat-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stats-section .stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.stat-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.stats-section .stat-label {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--primary-light);
    border-radius: 50px;
}

.stat-badge.success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
}

.stat-rating {
    margin-top: 1rem;
    color: #f59e0b;
    font-size: 1rem;
}

.stat-rating i {
    margin: 0 0.125rem;
}


/* Experts Section */
.experts-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.industry-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: #fff !important;
    background: #3b82f6;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.color-circle-1 { background: #3b82f6; box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4); }
.color-circle-2 { background: #10b981; box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4); }
.color-circle-3 { background: #8b5cf6; box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4); }
.color-circle-4 { background: #f59e0b; box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4); }
.color-circle-5 { background: #06b6d4; box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4); }
.color-circle-6 { background: #ec4899; box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4); }
.color-circle-7 { background: #6366f1; box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4); }

.industry-card:hover .industry-circle {
    transform: scale(1.1);
}

.industry-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .industry-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.section-header.light .section-title {
    color: #fff;
}

.section-subtitle {
    color: var(--secondary);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.expert-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.3);
}

.expert-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.expert-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.expert-card p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.expert-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.expert-card:hover .expert-link {
    gap: 0.75rem;
}


/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 135, 84, 0.15) 0%, transparent 50%);
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.4);
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.trust-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    min-height: 120px;
}

.trust-content {
    flex: 1;
    text-align: left;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.trust-icon.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.trust-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.trust-icon.amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.trust-icon.pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.trust-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }

.trust-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-card {
        flex-direction: column;
        text-align: center;
    }
    .trust-content {
        text-align: center;
    }
}

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

.trust-card p {
    font-size: 0.875rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
}


/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-light {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}


/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
    z-index: 100;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
}

.footer .col-lg-2,
.footer .col-lg-4 {
    position: relative;
    z-index: 10;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    display: block;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto !important;
    visibility: visible !important;
}

.footer a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer a i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

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

.hover-lift {
    transition: all 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}


/* Responsive */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-section .stat-card {
        margin-bottom: 1rem;
    }

    .expert-card {
        margin-bottom: 1rem;
    }

    .step-card {
        margin-bottom: 2rem;
    }

    .trust-item {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-section p {
        margin: 0 auto 2rem;
    }

    .hero-section img {
        margin-top: 2rem;
    }

    .search-box .col-md-5,
    .search-box .col-md-2 {
        margin-bottom: 0.75rem;
    }

    .stats-section .stat-number {
        font-size: 2.25rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .navbar-brand {
        font-size: 1.35rem;
    }
}


/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Enhanced Card Styles */
.stat-card-featured {
    background: linear-gradient(135deg, #008060 0%, #00a67d 100%) !important;
    border-color: transparent !important;
}

.stat-card-featured::before {
    display: none;
}

.stat-card-featured .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stat-card-featured .stat-number {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-featured .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-card-featured .stat-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stat-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 128, 96, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-card-featured .stat-card-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

/* Industry Card Enhancement */
.industry-card-inner {
    position: relative;
    padding-bottom: 1rem;
}

.industry-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #008060;
}

.industry-card:hover .industry-arrow {
    opacity: 1;
    bottom: -5px;
}

/* Trust Card Enhancement */
.trust-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 128, 96, 0.12);
    border-color: rgba(0, 128, 96, 0.15);
}

.trust-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon {
    transition: transform 0.3s ease;
}

.trust-icon.blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); color: #fff; }
.trust-icon.green { background: linear-gradient(135deg, #008060, #00a67d); color: #fff; }
.trust-icon.purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: #fff; }
.trust-icon.amber { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #fff; }
.trust-icon.pink { background: linear-gradient(135deg, #ec4899, #f472b6); color: #fff; }
.trust-icon.cyan { background: linear-gradient(135deg, #06b6d4, #22d3ee); color: #fff; }

/* Step Card Enhancement */
.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.5);
}

.step-icon {
    transition: all 0.4s ease;
}


/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 110, 253, 0.2);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 0.125rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--secondary);
}

/* ============================================
   UNIFIED DESIGN SYSTEM
   BizEng Professional Theme
   ============================================ */

:root {
    /* Brand Colors - Unified Palette */
    --brand-primary: #10b981;
    --brand-primary-dark: #059669;
    --brand-primary-light: #34d399;
    --brand-primary-bg: rgba(16, 185, 129, 0.15);
    --brand-secondary: #0ea5e9;
    --brand-secondary-dark: #0284c7;
    --brand-dark: #0f172a;
    --brand-darker: #1e293b;
    /* CSS Variables for cross-page compatibility */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #38bdf8;
    --accent: #10b981;
    --accent-dark: #059669;
    --success: #198754;
    --dark: #0f172a;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --secondary: #6c757d;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* Page Hero Section - Unified */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f3460 100%);
    padding: 4rem 0;
    position: relative;
}



.page-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.page-hero .hero-title span {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.page-hero .badge-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.page-hero .hero-image-wrapper {
    position: relative;
    overflow: visible;
}

.page-hero .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.page-hero img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.page-hero img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Section Headers - Unified */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-tag {
    display: inline-block;
    background: #d1fae5;
    color: #059669;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-header .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.section-header .section-subtitle {
    font-size: 1rem;
    color: #64748b;
}

/* Cards - Unified */
.unified-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.unified-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.unified-card .card-body {
    padding: 1.5rem;
}

/* Industry/Feature Cards */
.industry-card,
.feature-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

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

.industry-card .industry-card-inner h5,
.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.industry-card .industry-card-inner p,
.feature-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
}

.industry-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.industry-circle.color-circle-1 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.industry-circle.color-circle-2 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.industry-circle.color-circle-3 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.industry-circle.color-circle-4 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.industry-circle.color-circle-5 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.industry-circle.color-circle-6 { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.industry-circle.color-circle-7 { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }

/* Trust Cards */
.trust-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trust-card .trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-card .trust-icon.blue { background: #dbeafe; color: #2563eb; }
.trust-card .trust-icon.green { background: #d1fae5; color: #059669; }
.trust-card .trust-icon.purple { background: #ede9fe; color: #7c3aed; }
.trust-card .trust-icon.amber { background: #fef3c7; color: #d97706; }
.trust-card .trust-icon.pink { background: #fce7f3; color: #db2777; }
.trust-card .trust-icon.cyan { background: #cffafe; color: #0891b2; }

.trust-card .trust-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.trust-card .trust-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card .testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-rating i {
    color: #f59e0b;
    font-size: 0.875rem;
}

/* Stats Section - Unified */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f3460 100%);
    padding: 3.5rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-row,
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon-box.blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); color: #fff; }
.stat-icon-box.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff; }
.stat-icon-box.yellow { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: #fff; }

.stat-box .stat-data {
    display: flex;
    flex-direction: column;
}

.stat-box .stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.stat-box .stat-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}

.step-card .step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.step-card .step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #34d399;
}

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Filter Sidebar */
.filter-sidebar {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

.filter-sidebar .filter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #10b981;
    font-weight: 600;
    color: #0f172a;
}

.filter-sidebar .filter-title i {
    color: #10b981;
}

/* Results Info Banner */
.results-info {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-info h3 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.results-info p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 2px dashed #e5e7eb;
}

.empty-state .empty-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card a {
    pointer-events: auto;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.blog-card .blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .blog-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a2e;
    margin: 0.75rem 0;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title {
    color: #059669;
}

.blog-card .blog-excerpt {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.65;
}

.blog-card .blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-body {
    padding: 1.25rem;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.blog-entry {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    pointer-events: auto !important;
}

.blog-entry * {
    pointer-events: auto !important;
}

.blog-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.blog-entry:hover .blog-read-more {
    color: #059669;
}

.blog-entry:hover .blog-read-more i {
    transform: translateX(4px);
}

.blog-entry:hover .blog-image {
    transform: scale(1.08);
}

.blog-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(5, 150, 105, 0.8));
}

.blog-image-placeholder i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
}

.blog-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-entry-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.blog-entry:hover .blog-entry-title {
    color: #059669;
}

.blog-entry-title:hover {
    color: #059669 !important;
}

.blog-entry .blog-excerpt {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.blog-date {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-date i {
    margin-right: 0;
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a5f;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-read-more i {
    margin-left: 0;
    transition: transform 0.3s ease;
}
}

@media (max-width: 768px) {
    .blog-entry {
        margin-bottom: 1rem;
    }
    
    .blog-image-wrapper {
        height: 160px;
    }
}

/* Register Header */
.register-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.register-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.register-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Form Styles - Unified */
.unified-form .form-label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.375rem;
}

.unified-form .form-control,
.unified-form .form-select {
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.unified-form .form-control:focus,
.unified-form .form-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.unified-form .section-title {
    color: #0f172a;
    font-weight: 600;
    border-bottom: 2px solid #10b981;
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

/* CTA Banner - Unified */
.cta-banner {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: #ffffff;
}

.cta-banner h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Why/How Section Cards */
.why-card,
.how-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.why-card:hover,
.how-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-card .why-icon,
.how-step .step-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2563eb;
    font-size: 1.5rem;
}

.why-card h5,
.how-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.why-card p,
.how-step p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Privacy Option Checkbox */
.privacy-option {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0.5rem;
}

.privacy-option:hover,
.privacy-option.selected {
    border-color: #10b981;
    background: #f0fdf4;
}

.privacy-option input {
    display: none;
}

/* FAQ Accordion - Unified */
.accordion-item {
    border: none;
    border-radius: 0.5rem !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
}

.accordion-button {
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: #f0fdf4;
    color: #059669;
    box-shadow: none;
}

.accordion-button::after {
    color: #10b981;
}

.accordion-body {
    color: #64748b;
    padding: 1rem 1.25rem;
}

/* Category Button */
.category-btn {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.category-btn:hover {
    background: #f3f4f6;
    color: #10b981;
}

.category-btn.active {
    background: #10b981;
    color: #ffffff;
}

/* Search Box - Unified */
.search-box {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-box input {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.search-box input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ============================================
   PROFESSIONAL PROJECT CARD SYSTEM
   ============================================ */

/* Project Card Base */
.project-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-success);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

/* Project Card Header */
.project-card .project-card-header {
    padding: 1rem 1.25rem 0;
    background: transparent;
}

.project-card-header .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

/* Project Card Body */
.project-card .project-card-body {
    padding: 0 1.25rem 1rem;
}

.project-card .project-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.project-card:hover .project-title {
    color: var(--success);
}

.project-card .project-description {
    color: #6b7280;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Metadata Grid */
.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--gray-800);
    padding: 0.5rem 0.625rem;
    background: var(--gray-100);
    border-radius: 8px;
}

.project-meta-item .meta-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    color: var(--success);
    font-size: 0.8125rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.project-meta-item .meta-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.project-meta-item .meta-label {
    font-size: 0.625rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.project-meta-item .meta-value {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8125rem;
    line-height: 1.2;
}

.project-meta-item .meta-value.budget-value {
    color: #059669;
    font-size: 0.875rem;
}

/* Status Badges */
.project-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-status.status-open {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.project-status.status-open .status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.project-status.status-in-progress {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.project-status.status-in-progress .status-dot {
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
}

.project-status.status-completed,
.project-status.status-closed {
    background: rgba(107, 114, 128, 0.1);
    color: #4b5563;
}

.project-status.status-completed .status-dot,
.project-status.status-closed .status-dot {
    width: 8px;
    height: 8px;
    background: #6b7280;
    border-radius: 50%;
}

.project-status.status-approved {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.project-status.status-approved .status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Category Badge */
.project-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-800);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.project-category-badge:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

/* Project Card Body */
.project-card .project-card-body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card .project-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.project-card:hover .project-title {
    color: var(--success);
}

.project-card .project-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Metadata Grid */
.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-800);
}

.project-meta-item .meta-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    color: var(--success);
    font-size: 0.875rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.project-meta-item .meta-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.project-meta-item .meta-label {
    font-size: 0.6875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.project-meta-item .meta-value {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-meta-item .meta-value.budget-value {
    color: #059669;
    font-size: 0.9375rem;
}

/* Days Remaining Badge */
.days-remaining {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    margin-left: auto;
}

.days-remaining.days-urgent {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.days-remaining.days-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.days-remaining.days-normal {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Project Footer */
.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--gray-200);
    background: #fafbfc;
}

.project-footer .btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-success);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.project-footer .btn-view-details:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

.project-footer .btn-view-details i {
    transition: transform 0.2s ease;
}

.project-footer .btn-view-details:hover i {
    transform: translateX(2px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 2px dashed var(--gray-300);
}

.empty-state .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-300);
    font-size: 2.5rem;
}

.empty-state h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ============================================
   ENHANCED FILTER SIDEBAR
   ============================================ */

.filter-sidebar {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    position: sticky;
    top: 1.5rem;
    border: 1px solid var(--gray-200);
}

.filter-sidebar .filter-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.filter-sidebar .filter-title i {
    color: var(--success);
}

.filter-sidebar .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-sidebar .form-control,
.filter-sidebar .form-select {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.filter-sidebar .form-control:focus,
.filter-sidebar .form-select:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.filter-sidebar .btn-success {
    padding: 0.625rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.filter-sidebar .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.filter-sidebar hr {
    border-color: var(--gray-200);
    margin: 1.25rem 0;
}

/* ============================================
   RESULTS INFO HEADER
   ============================================ */

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.results-info h3 {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--dark);
    line-height: 1.2;
}

.results-info .badge {
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2rem;
    border: 1px solid var(--gray-300);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 992px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }
    
    .project-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .results-info .text-end {
        text-align: left !important;
    }
    
    .project-card .project-card-header,
    .project-card .project-card-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .project-footer {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .project-footer .btn-view-details {
        width: 100%;
        justify-content: center;
    }
    
    .project-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   EXPERT BROWSE PAGE COMPATIBILITY
   ============================================ */

.browse-header {
    background: var(--gradient-success);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.browse-header h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.filter-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    position: sticky;
    top: 1.5rem;
    border: 1px solid var(--gray-200);
}

.filter-section {
    margin-bottom: 1.5rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Expert Card - Unified */
.expert-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .stats-row,
    .stats-grid {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .stat-divider {
        display: none;
    }
}

/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */

/* Hero Section */
.project-detail-hero {
    background: var(--gradient-success);
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.project-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.project-detail-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.project-detail-hero .hero-content {
    position: relative;
    z-index: 1;
}

.project-detail-hero .hero-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-detail-hero .hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-detail-hero .hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.project-detail-hero .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Status Badge in Hero */
.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-status-badge .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats Bar */
.detail-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-stat-card {
    background: #ffffff;
    border-radius: var(--radius-sm);
    padding: 0.875rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    overflow: hidden;
}

.detail-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.detail-stat-card .stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.detail-stat-card .stat-content {
    flex: 1;
    min-width: 0;
}

.detail-stat-card .stat-label {
    font-size: 0.625rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.detail-stat-card .stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-stat-card .stat-value.text-success {
    color: #059669 !important;
}

/* Action Toolbar */
.detail-action-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    flex-wrap: wrap;
    align-items: center;
}

.detail-action-bar .action-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: auto;
}

.detail-action-bar .btn {
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.detail-action-bar .btn:hover {
    transform: translateY(-2px);
}

/* Detail Section */
.detail-section {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.detail-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.detail-section-header .section-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-success);
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
}

.detail-section-header h5 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
    margin: 0;
}

.detail-section-body {
    padding: 1.5rem;
}

.detail-section-body p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Detail Meta Grid */
.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.detail-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.detail-meta-item:hover {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.detail-meta-item .meta-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--success);
    border-radius: 10px;
    font-size: 1.125rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.detail-meta-item .meta-content {
    flex: 1;
    min-width: 0;
}

.detail-meta-item .meta-label {
    font-size: 0.6875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.detail-meta-item .meta-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9375rem;
}

.detail-meta-item .meta-value a {
    color: var(--success);
    text-decoration: none;
}

.detail-meta-item .meta-value a:hover {
    text-decoration: underline;
}

/* Confidentiality Banner */
.confidentiality-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.confidentiality-banner .banner-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.2);
    color: #d97706;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.confidentiality-banner .banner-content h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.confidentiality-banner .banner-content p {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

.confidentiality-banner .banner-content .badge {
    margin-top: 0.5rem;
}

/* Deadline Progress */
.deadline-progress {
    margin-bottom: 1rem;
}

.deadline-progress .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.deadline-progress .progress-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark);
}

.deadline-progress .progress-value {
    font-size: 0.8125rem;
    font-weight: 700;
}

.deadline-progress .progress-value.text-success {
    color: #059669 !important;
}

.deadline-progress .progress-value.text-warning {
    color: #d97706 !important;
}

.deadline-progress .progress-value.text-danger {
    color: #dc2626 !important;
}

.deadline-progress .progress {
    height: 10px;
    border-radius: 5px;
    background: var(--gray-200);
    overflow: hidden;
}

.deadline-progress .progress-bar {
    background: var(--gradient-success);
    transition: width 0.5s ease;
}

.deadline-progress .progress-bar.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.deadline-progress .progress-bar.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.deadline-dates {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Client Profile Card */
.client-profile-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.client-profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.client-profile-card .profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-200);
}

.client-profile-card .profile-info h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.client-profile-card .profile-info .profile-role {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.client-profile-card .profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-profile-card .profile-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-800);
}

.client-profile-card .profile-detail-item i {
    width: 20px;
    color: var(--success);
    text-align: center;
}

.client-profile-card .profile-detail-item a {
    color: var(--success);
    text-decoration: none;
}

.client-profile-card .profile-detail-item a:hover {
    text-decoration: underline;
}

/* Bids Section */
.bids-section {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.bids-section .bids-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.bids-section .bids-header h5 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bids-section .bids-header .bids-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    background: var(--gradient-success);
    color: #ffffff;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.bids-section .bids-header .bids-summary {
    font-size: 0.8125rem;
    color: #6b7280;
}

.bids-list {
    padding: 1rem 1.5rem;
}

.bid-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.bid-card:last-child {
    margin-bottom: 0;
}

.bid-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.bid-card .bid-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bid-card .bid-expert-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.bid-card .bid-expert-info {
    flex: 1;
    min-width: 0;
}

.bid-card .bid-expert-info h6 {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bid-card .bid-expert-info .bid-expert-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.bid-card .bid-expert-info .bid-expert-meta .bid-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
}

.bid-card .bid-status {
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bid-card .bid-status.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.bid-card .bid-status.status-accepted {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.bid-card .bid-status.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.bid-card .bid-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.bid-card .bid-detail-item {
    display: flex;
    flex-direction: column;
}

.bid-card .bid-detail-item .bid-detail-label {
    font-size: 0.625rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.bid-card .bid-detail-item .bid-detail-value {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
}

.bid-card .bid-detail-item .bid-detail-value.text-success {
    color: #059669 !important;
}

.bid-card .bid-proposal {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--success);
}

.bid-card .bid-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.bid-card .bid-actions .btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* Bid Form */
.bid-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.bid-form .form-label .required {
    color: #dc2626;
}

.bid-form .form-control,
.bid-form .form-select {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.bid-form .form-control:focus,
.bid-form .form-select:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.bid-form .form-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.375rem;
}

.bid-form .btn-submit-bid {
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    background: var(--gradient-success);
    border: none;
    color: #ffffff;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bid-form .btn-submit-bid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Quick Actions Sidebar */
.quick-actions {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.quick-actions h6 {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--gray-800);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.quick-actions .action-btn:last-child {
    margin-bottom: 0;
}

.quick-actions .action-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--dark);
}

.quick-actions .action-btn i {
    width: 20px;
    text-align: center;
    color: var(--success);
}

/* Empty Bids State */
.empty-bids {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-bids .empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-300);
    font-size: 2rem;
}

.empty-bids h6 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.empty-bids p {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .detail-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .detail-stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .detail-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-detail-hero {
        padding: 1.5rem 1.25rem;
    }
    
    .project-detail-hero .hero-title {
        font-size: 1.375rem;
    }
    
    .detail-stats-bar {
        grid-template-columns: 1fr;
    }
    
    .detail-action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .detail-action-bar .action-label {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .bid-card .bid-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ATTACHMENT CARD
   ============================================ */

.attachment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.attachment-card:hover {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: var(--gray-300);
}

.attachment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.attachment-icon.icon-pdf {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.attachment-icon.icon-doc {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.attachment-icon.icon-image {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.attachment-icon.icon-default {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.attachment-info {
    flex: 1;
    min-width: 0;
}

.attachment-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attachment-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-success);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-download:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

@media (max-width: 768px) {
    .attachment-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HOMEPAGE REDESIGN 2026
   ============================================ */

/* Hero Dark Variant */
.hero-section.dark .hero-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.hero-section.dark .badge-dot {
    background: #34d399;
}

.hero-section.dark h1 {
    color: #fff;
}

.hero-section.dark p {
    color: rgba(255, 255, 255, 0.65);
}

/* Hero Search Box Overlay */
.hero-section.dark .search-box .form-select,
.hero-section.dark .search-box .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero-section.dark .search-box .form-select:focus,
.hero-section.dark .search-box .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.hero-section.dark .search-box .form-select option {
    color: #333;
    background: #fff;
}

/* Hero Stats Inline */
.hero-section.dark .stat-inline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Featured Expert Card */
.featured-expert-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.featured-expert-card .card-header-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 2rem 1.5rem 3rem;
    text-align: center;
    position: relative;
}

/* Featured Project Card */
.featured-project-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Step Connector Line */
.step-connector {
    position: absolute;
    top: 3.5rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.1));
    z-index: 0;
    pointer-events: none;
}

/* Counter Animation Base */
.counter {
    display: inline-block;
}

/* Trust Card Centered Variant */
.trust-card.centered {
    text-align: center;
    padding: 2rem 1.5rem;
}

.trust-card.centered .trust-icon {
    margin: 0 auto 1.25rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section .btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    transition: all 0.3s;
}

.cta-section .btn-outline-light-custom:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* AOS Overrides */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-section.dark {
        padding: 4rem 0 !important;
    }
    .hero-section.dark h1 {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 767px) {
    .hero-section.dark {
        padding: 3rem 0 !important;
    }
    .hero-section.dark h1 {
        font-size: 1.75rem !important;
    }
    .hero-section.dark p {
        font-size: 1rem !important;
    }
    .step-connector {
        display: none;
    }
}