/* BOOKKEEPER DIRECTORY - MASTER STYLESHEET 
   Theme: 2026 Modern Minimalist / SoCal Ocean
*/

:root {
    --primary-blue: #0056b3; 
    --primary-hover: #004494;
    --bg-light: #f4f7f9;
    --text-main: #1a1c1e;
    --text-muted: #667085;
    --border: #e6eaf0;
    --white: #ffffff;
    --max-width: 1000px;
    
    /* Verified Badge Colors */
    --badge-bg: #e6fffa; 
    --badge-text: #047857; /* Bolder green */
    --badge-border: #b9f6ca;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

.wrap { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto; }

/* HEADER */
.header { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo { width: 34px; height: 34px; background: var(--primary-blue); color: #fff; border-radius: 6px; display: grid; place-items: center; font-weight: 800; font-size: 12px; }
.nav-links a { text-decoration: none; color: #3a4250; font-weight: 500; margin-left: 20px; font-size: 14px; }

/* HERO */
.hero { padding: 80px 0 60px; text-align: center; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; font-weight: 800; margin: 0 0 15px; color: #1a1c1e; }
h1 span { color: var(--primary-blue); }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }

/* SEARCH BOX */
.search-box { 
    background: #fff; padding: 20px; border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; 
    max-width: 850px; margin: 0 auto 40px; border: 1px solid var(--border);
}
.search-box input { padding: 14px; border-radius: 8px; border: 1px solid #cfd7e4; font-size: 15px; outline: none; }

/* BUTTONS */
.btn-main { 
    background: var(--primary-blue); color: #fff; padding: 14px 28px; 
    border-radius: 8px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
}

/* CONTENT CARD & LIST */
.card { background: #fff; border-radius: 20px; padding: 40px; border: 1px solid var(--border); margin-bottom: 30px; }
.feature-list { list-style: none; padding: 0; margin: 25px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 500; }
.check-circle { 
    width: 20px; height: 20px; border: 2px solid var(--primary-blue); 
    border-radius: 50%; color: var(--primary-blue); 
    display: grid; place-items: center; font-size: 12px; font-weight: 800;
}

/* DIRECTORY DATA ROWS */
.directory-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 20px;
}

.directory-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.directory-row:hover { background: #f9fbff; }

.row-name { font-weight: 800; font-size: 1.1rem; color: var(--text-dark); }
.row-title { color: var(--primary-blue); font-weight: 600; font-size: 0.95rem; }
.row-meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* REUSE YOUR BADGE HERE */
.row-badge-small {
    background: #d1fae5;
    color: #065f46;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid #34d399;
    margin-left: 10px;
}

/* MODAL STYLING */
.modal-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}



/* VERIFIED BADGE Styles */
.badge-container {
    display: flex;
    justify-content: flex-start; /* Ensures left alignment */
    margin-bottom: 20px;
}

.badge-verified {
    background: var(--badge-bg);
    color: var(--badge-text);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--badge-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.badge-verified::before {
    content: "●";
    font-size: 12px;
}

/* FAQ */
.faq-item { border-top: 1px solid var(--border); padding: 18px 0; cursor: pointer; }
summary { font-weight: 600; list-style: none; display: flex; justify-content: space-between; }
summary::before { content: '▶'; font-size: 10px; color: var(--text-muted); margin-right: 10px; }

/* FOOTER */
.footer-main { background: #fff; border-top: 1px solid var(--border); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; text-align: left; }
.footer-col h4 { margin-bottom: 20px; color: #1a1c1e; }
.footer-col a, .footer-col p { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; font-size: 14px; }

@media (max-width: 768px) {
    .search-box, .footer-grid { grid-template-columns: 1fr; }
    .nav { flex-direction: column; gap: 15px; }
}