/* SpeakerFinder — Premium Corporate Design System */

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

:root {
    --navy: #1D252D;
    --navy-light: #2a343e;
    --yellow: #F3D457;
    --yellow-hover: #e6c740;
    --yellow-subtle: #fdf8e8;
    --green: #22c55e;
    --green-hover: #16a34a;
    --orange: #F97316;
    --orange-hover: #ea580c;
    --bg: #FCFCFC;
    --surface: #FFFFFF;
    --text: #0E0E0E;
    --text-light: #5E5E5E;
    --text-muted: #A3A3A3;
    --border: #e5e5e5;
    --success: #16a34a;
    --error: #dc2626;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: 200ms ease;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}
.nav-brand .brand-accent {
    color: var(--yellow);
    font-weight: 600;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}
.nav-links a:hover {
    color: var(--navy);
    background: var(--bg);
}
.nav-links .nav-cta {
    background: var(--yellow);
    color: var(--navy);
    font-weight: 700;
}
.nav-links .nav-cta:hover {
    background: var(--yellow-hover);
    color: var(--navy);
}
.nav-link-admin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted) !important;
    font-size: 13px !important;
}
.nav-link-admin i { width: 14px; height: 14px; }
.nav-link-admin:hover { color: var(--navy) !important; }
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--navy);
}
.nav-hamburger i { width: 24px; height: 24px; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    flex: 1;
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243,212,87,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero h1 .highlight {
    color: var(--yellow);
}
.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero-search {
    display: flex;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-search input[type="text"] {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border: none;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: transparent;
    color: var(--text);
    border-radius: 8px;
}
.hero-search input[type="text"]::placeholder {
    color: var(--text-muted);
}
.hero-search input[type="text"]:focus {
    outline: none;
}
.hero-search select {
    padding: 14px 16px;
    border: none;
    border-left: 1px solid var(--border);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    min-width: 140px;
}
.hero-search select:focus { outline: none; }
.hero-search .btn-search {
    padding: 14px 28px;
    background: var(--yellow);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-search .btn-search:hover {
    background: var(--yellow-hover);
}

/* Search bar selects */
.hero-search select + select {
    border-left: 1px solid var(--border);
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    padding: 24px;
}
.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}
.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2px;
}

/* ===== CLIENT LOGOS ===== */
.clients-section {
    padding: 40px 24px;
    text-align: center;
    background: var(--bg);
}
.clients-section .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.clients-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.client-logo {
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    transition: all var(--transition);
}
.client-logo:hover {
    color: var(--navy);
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    padding: 48px 24px;
    background: #FFFFFF;
}
.testimonial-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: left;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    color: var(--yellow);
    opacity: 0.5;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-author {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}
.testimonial-role {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}
.testimonial-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 20px;
    background: var(--yellow-subtle);
    border: 1px solid var(--yellow);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 4px;
}
.section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
}
.result-count {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== SPEAKER GRID ===== */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===== SPEAKER CARD ===== */
.speaker-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.speaker-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.speaker-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.speaker-card:hover::after {
    transform: scaleX(1);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.avatar-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.avatar-navy { background: linear-gradient(135deg, #1B2A4A, #334155); }
.avatar-orange { background: linear-gradient(135deg, #F97316, #ea580c); }
.avatar-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.avatar-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.card-name {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}
.card-expertise {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.card-view {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}
.speaker-card:hover .card-view {
    gap: 8px;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.badge-city {
    background: #eff6ff;
    color: #1e40af;
}
.badge-city i { width: 12px; height: 12px; }
.badge-cat {
    background: #f0fdf4;
    color: #166534;
}
.badge-status { font-size: 11px; }
.badge-new { background: #fef3c7; color: #92400e; }
.badge-contacted { background: #dbeafe; color: #1e40af; }
.badge-matched { background: #ede9fe; color: #5b21b6; }
.badge-done { background: #dcfce7; color: #166534; }

/* ===== SPEAKER PROFILE ===== */
.profile-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 0;
}
.profile-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
}
.profile-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
}
.profile-card h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.profile-nickname {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.profile-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    transition: all var(--transition);
    cursor: pointer;
}
.social-btn:hover {
    border-color: var(--yellow);
    color: var(--navy);
    background: var(--yellow-subtle);
}
.social-btn i { width: 16px; height: 16px; }

/* Profile Main Content */
.profile-main {
    min-width: 0;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color var(--transition);
    cursor: pointer;
}
.back-link:hover { color: var(--navy); }
.back-link i { width: 16px; height: 16px; }

.profile-section {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.profile-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.profile-section h2 i { width: 20px; height: 20px; color: var(--yellow); }
.profile-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

/* Similar Speakers */
.similar-section {
    margin-top: 40px;
}
.similar-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}
.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ===== FORM ===== */
.form-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0;
}
.form-page-header {
    text-align: center;
    margin-bottom: 32px;
}
.form-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-page-header p {
    font-size: 16px;
    color: var(--text-light);
}
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.form-card h1 { display: none; }
.form-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg);
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-section-title i { width: 18px; height: 18px; color: var(--yellow); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--surface);
    color: var(--text);
    transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(243, 212, 87, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group select {
    cursor: pointer;
}

/* ===== SUCCESS STATE ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert i { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.success-state {
    text-align: center;
    padding: 48px 24px;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.success-icon i { width: 32px; height: 32px; color: var(--success); }
.success-state h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.success-state p {
    color: var(--text-light);
    margin-bottom: 24px;
}
.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition);
    min-height: 44px;
}
.btn:hover { background: var(--navy-light); }
.btn i { width: 18px; height: 18px; }
.btn-orange {
    background: var(--orange);
}
.btn-orange:hover {
    background: var(--orange-hover);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    background: var(--yellow-subtle);
    border-color: var(--yellow);
    color: var(--navy);
}
.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
}

/* ===== WHATSAPP FLOATING ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    cursor: pointer;
}
.wa-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.wa-float svg { width: 22px; height: 22px; fill: #fff; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: #fff;
    padding: 48px 24px 24px;
    margin-top: auto;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-brand .brand-accent { color: var(--yellow); }
.footer-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(243,212,87,0.12);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--yellow);
}
.footer h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 14px;
}
.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
    cursor: pointer;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    color: var(--text-light);
    padding: 64px 24px;
    font-size: 16px;
}
.empty-state i { width: 48px; height: 48px; color: var(--text-muted); margin-bottom: 16px; }

/* ===== TABLE (admin) ===== */
.table-wrapper { overflow-x: auto; }
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.table th, .table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.table th {
    background: var(--bg);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}
.table tbody tr:hover { background: #f1f5f9; }
.table a { color: var(--navy); text-decoration: none; font-weight: 600; }
.table a:hover { text-decoration: underline; }
.cell-expertise {
    max-width: 240px;
    font-size: 13px;
    color: var(--text-light);
}

/* Status tabs (admin) */
.status-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}
.tab {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
}
.tab:hover { color: var(--text); }
.tab.active {
    color: var(--navy);
    border-bottom-color: var(--yellow);
    font-weight: 700;
}
.status-form select {
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    background: var(--surface);
}

/* Detail Grid (admin) */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-top: 24px;
}
.detail-table {
    width: 100%;
    font-size: 14px;
}
.detail-table td {
    padding: 6px 0;
    vertical-align: top;
}
.detail-table td:first-child {
    color: var(--text-light);
    width: 100px;
    font-weight: 500;
}
.detail-table a { color: var(--navy); text-decoration: underline; }

/* ===== ADMIN COMPONENTS ===== */
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.admin-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}
.admin-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}
.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.admin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.admin-card-header h1 {
    font-size: 22px;
    margin-bottom: 0;
}
.admin-nickname {
    font-size: 15px;
    color: var(--text-light);
}
.admin-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-section-title i { width: 18px; height: 18px; color: var(--yellow); }
.admin-search-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.admin-search-form { margin: 0; }
.admin-search-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.admin-search-input {
    flex: 1;
    position: relative;
    min-width: 0;
}
.admin-search-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}
.admin-search-input input {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: all var(--transition);
}
.admin-search-input input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(243, 212, 87, 0.2);
    background: var(--surface);
}
.admin-search-row select {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    min-width: 140px;
}
.admin-search-row select:focus {
    outline: none;
    border-color: var(--yellow);
}
.admin-table-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.admin-table-card .table { border: none; }
.speaker-name-link {
    font-weight: 600;
    color: var(--navy) !important;
}
.speaker-name-link:hover {
    color: var(--navy) !important;
    text-decoration: underline !important;
}
.cell-kontak {
    max-width: 180px;
    font-size: 13px;
    word-break: break-word;
}
.text-muted { color: var(--text-muted); }
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}
.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-md);
}
.login-header {
    text-align: center;
    margin-bottom: 28px;
}
.login-header h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.login-header p {
    font-size: 14px;
    color: var(--text-light);
}
.login-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.login-icon i { width: 28px; height: 28px; color: var(--navy); }

/* ===== ADMIN SPEAKER GRID ===== */
.admin-speaker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.admin-speaker-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: box-shadow var(--transition);
}
.admin-speaker-card:hover {
    box-shadow: var(--shadow-md);
}
.admin-speaker-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}
.admin-speaker-name {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    line-height: 1.3;
}
.admin-speaker-name:hover { text-decoration: underline; }
.admin-speaker-fullname {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.admin-speaker-cats {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.admin-speaker-cats .badge { font-size: 11px; padding: 2px 8px; }
.admin-speaker-cats .badge i { width: 10px; height: 10px; }
.admin-speaker-expertise {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.admin-flags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.flag-empty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #92400e;
}
.flag-empty i { width: 12px; height: 12px; }
.admin-speaker-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-light);
    background: var(--surface);
}
.action-btn i { width: 14px; height: 14px; }
.action-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--bg);
}
.action-wa {
    color: #25D366;
    border-color: #25D366;
    background: #f0fdf4;
}
.action-wa:hover { background: #dcfce7; color: #16a34a; }
.action-linkedin { color: #0077b5; }
.action-linkedin:hover { border-color: #0077b5; background: #eff6ff; }
.action-ig { color: #E1306C; }
.action-ig:hover { border-color: #E1306C; background: #fdf2f8; }
.action-email { color: var(--text-light); }
.action-detail {
    margin-left: auto;
    color: var(--navy);
    font-weight: 700;
    border-color: var(--navy);
}
.action-detail:hover { background: var(--navy); color: #fff; }
.detail-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    padding: 16px 0;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    background: var(--surface);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 40px;
}
.page-btn i { width: 16px; height: 16px; }
.page-btn:hover {
    border-color: var(--yellow);
    color: var(--navy);
    background: var(--yellow-subtle);
}
.page-active {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
    cursor: default;
}
.page-dots {
    padding: 8px 6px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-layout {
        grid-template-columns: 1fr;
    }
    .profile-sidebar {
        position: static;
    }
    .profile-card {
        max-width: 400px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-carousel .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-hamburger { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 8px 16px 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 4px;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links a { width: 100%; padding: 12px 16px; border-radius: 8px; font-size: 15px; }
    .nav-links .nav-link-text { display: block; }
    .nav-links .nav-cta { text-align: center; margin-top: 4px; }
    .nav-container { padding: 0 16px; height: 56px; position: relative; }
    .container { padding: 16px; }

    .hero { padding: 40px 16px; }
    .hero h1 { font-size: 26px; }
    .hero-subtitle { font-size: 15px; }
    .hero-search {
        flex-direction: column;
        gap: 0;
    }
    .hero-search select {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .hero-search .btn-search {
        margin: 6px;
        justify-content: center;
    }
    .hero-search select { border-left: none; border-top: 1px solid var(--border); }

    .stats-inner { gap: 24px; }
    .stat-number { font-size: 22px; }

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .form-card { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .wa-float span { display: none; }
    .wa-float { padding: 14px; border-radius: 50%; }

    .detail-grid { grid-template-columns: 1fr; }
    .status-tabs { overflow-x: auto; }
    .admin-header { flex-direction: column; align-items: flex-start; }
    .admin-search-row { flex-direction: column; }
    .admin-search-row select { min-width: 0; width: 100%; }
    .login-card { padding: 24px; margin: 0 16px; }
    .admin-speaker-grid { grid-template-columns: 1fr; }
    .table { font-size: 13px; }
    .table th, .table td { padding: 8px 10px; }

    .similar-grid { grid-template-columns: 1fr; }
    .testimonial-carousel { grid-template-columns: 1fr; }

    .profile-layout { gap: 24px; padding: 16px 0; }
}
