/* ==========================================================================
   ORKUTEL PUBLIC CSS - Publieke pagina's
   Kleurschema: Blauw accent (#00a0d2)
   ========================================================================== */

/* ==========================================================================
   1. BUTTONS
   ========================================================================== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-right: 8px;
}
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-primary { background: #00a0d2; color: #fff; }
.btn-primary:hover { background: #0088b3; color: #fff; }
.btn-secondary { background: #6c757d; color: #fff; }
.btn-secondary:hover { background: #5a6268; color: #fff; }
.btn-success { background: #28a745; color: #fff; }
.btn-success:hover { background: #218838; color: #fff; }
.btn-danger { background: #dc3545; color: #fff; }
.btn-danger:hover { background: #c82333; color: #fff; }

/* ==========================================================================
   1B. LOGIN FORM
   ========================================================================== */
.login-box { max-width: 480px; margin: 40px auto; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 35px 40px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.login-box h2 { margin: 0 0 10px 0; font-size: 22px; font-weight: 600; color: #333; text-align: center; }
.login-subtitle { text-align: center; color: #666; font-size: 13px; margin: 0 0 25px 0; line-height: 1.5; }
.login-form { width: 100%; }
.login-form .form-group { margin-bottom: 18px; width: 100%; }
.login-form .form-group.row-between { display: flex; justify-content: space-between; align-items: center; }
.login-form label { display: block; font-weight: 500; color: #555; margin-bottom: 6px; font-size: 13px; }
.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] { width: 100%; padding: 11px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; box-sizing: border-box; }
.login-form input:focus { border-color: #00a0d2; outline: none; }
.login-form .password-input { position: relative; }
.login-form .password-input input { padding-right: 40px; }
.login-form .toggle-password { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #999; cursor: pointer; }
.login-form .toggle-password:hover { color: #666; }
.login-form .forgot-link { font-size: 12px; color: #888; }
.login-form .forgot-link:hover { color: #00a0d2; }
.login-form .checkbox-label { display: flex; align-items: center; gap: 6px; font-weight: normal; font-size: 13px; color: #666; cursor: pointer; }
.login-form .checkbox-label input { margin: 0; }
.login-form .btn { width: 100%; padding: 12px; font-size: 15px; margin: 0; }
.login-footer { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; text-align: center; font-size: 13px; color: #666; }
.login-footer a { color: #00a0d2; font-weight: 500; }
.login-footer a:hover { text-decoration: underline; }
.login-modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 99999; justify-content: center; align-items: center; }
.login-modal-overlay.active { display: flex; }
.login-modal-overlay .login-box { position: relative; margin: 0; }
.login-modal-close { position: absolute; top: 12px; right: 16px; font-size: 24px; color: #999; cursor: pointer; outline: none; }
.login-modal-close:hover { color: #333; }

/* ==========================================================================
   2. DIALOG/MODAL (HTML5 dialog element)
   ========================================================================== */
dialog,
dialog:focus,
dialog:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: none;
}
.dialog {
    border: none !important;
    outline: none !important;
    border-radius: 8px;
    padding: 30px;
    width: 600px;
    max-width: 90vw;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
}
.dialog:focus,
.dialog:focus-visible {
    outline: none !important;
    border: none !important;
}
.dialog-content { padding: 0; width: 100%; }
.dialog-sm { width: 450px; }
.dialog-lg { width: 700px; }
.dialog-xl { width: 900px; }
.dialog::backdrop {
    background: rgba(0,0,0,0.5);
}
.dialog[open] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.dialog h3 {
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 18px;
}
.dialog h3 i {
    color: #00a0d2;
    margin-right: 8px;
}
.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -30px -30px 20px -30px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
}
.dialog-header h3 {
    margin: 0;
    padding: 0;
    border: none;
}
.dialog-close {
    background: none;
    border: none;
    outline: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0 5px;
}
.dialog-close:hover { color: #333; }

/* ==========================================================================
   3. COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.active {
    display: block;
}
.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-banner-text a {
    color: #00a0d2;
    text-decoration: underline;
}
.cookie-banner-text a:hover {
    color: #fff;
}
.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn-accept {
    background: #00a0d2;
    color: #fff;
}
.cookie-btn-accept:hover {
    background: #0088b3;
}
.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff !important;
}
.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   4. QUESTIONS BOX
   ========================================================================== */
.questions-box {
    background: #f8f9fa;
    border-left: 4px solid #faa61a;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 20px;
}
.questions-box-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.questions-box i {
    color: #00a0d2;
    font-size: 18px;
}
.questions-box p {
    color: #444;
    font-size: 15px;
    margin: 0;
}
.questions-box a {
    color: #00a0d2;
    text-decoration: none;
}
.questions-box a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   5. SECTION CARDS (witte content boxes)
   ========================================================================== */
.section-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.section-card p { font-size: 15px; color: #444; line-height: 1.8; margin: 0; }
.section-card p + p { margin-top: 15px; }

/* Section card with icon header */
.section-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.section-card .card-header h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin: 0;
}

/* ==========================================================================
   6. ICON CONTAINERS
   ========================================================================== */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-box.sm { width: 40px; height: 40px; }
.icon-box.lg { width: 60px; height: 60px; }
.icon-box i { color: #fff; font-size: 20px; }
.icon-box.sm i { font-size: 16px; }
.icon-box.lg i { font-size: 24px; }
.icon-box.blue { background: linear-gradient(135deg, #00a0d2, #0077a3); }
.icon-box.orange { background: linear-gradient(135deg, #faa61a, #e8940f); }
.icon-box.red { background: linear-gradient(135deg, #dc3545, #c82333); }
.icon-box.green { background: linear-gradient(135deg, #28a745, #218838); }
.icon-box.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

/* ==========================================================================
   7. INFO BOXES (lichtgrijs met accent border)
   ========================================================================== */
.info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #00a0d2;
}
.info-box.border-orange { border-left-color: #faa61a; }
.info-box.border-red { border-left-color: #dc3545; }
.info-box.border-green { border-left-color: #28a745; }
.info-box h3, .info-box h4 { margin: 0 0 15px 0; font-size: 18px; color: #1a1a2e; }
.info-box p { margin: 0; font-size: 15px; color: #444; line-height: 1.8; }

/* Notice box (compact, horizontal) */
.notice-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #faa61a;
}
.notice-box.border-blue { border-left-color: #00a0d2; }
.notice-box.border-red { border-left-color: #dc3545; }
.notice-box i { color: #faa61a; font-size: 24px; flex-shrink: 0; }
.notice-box.border-blue i { color: #00a0d2; }
.notice-box.border-red i { color: #dc3545; }
.notice-box p { margin: 0; font-size: 14px; color: #444; }
.notice-box strong { color: #1a1a2e; }

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.hero-section.hero-lg { padding: 80px 0; }
.hero-section .container { position: relative; z-index: 1; }
.hero-section h1 { font-size: 32px; color: #fff; margin-bottom: 10px; text-align: center; }
.hero-section .subtitle { font-size: 16px; color: rgba(255,255,255,0.7); margin: 0; text-align: center; }
.hero-section #network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ==========================================================================
   9. FEATURE CARDS (grid items)
   ========================================================================== */
.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}
.feature-card .icon-box { margin-bottom: 15px; }
.feature-card h3 { font-size: 16px; color: #1a1a2e; margin: 0 0 8px 0; }
.feature-card p { font-size: 13px; color: #6c757d; line-height: 1.5; margin: 0; }

/* Feature list items (compact, horizontal) */
.feature-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid #00a0d2;
}
.feature-item.border-orange { border-left-color: #faa61a; }
.feature-item.border-red { border-left-color: #dc3545; }
.feature-item i { font-size: 16px; width: 20px; }
.feature-item i.blue { color: #00a0d2; }
.feature-item i.orange { color: #faa61a; }
.feature-item i.red { color: #dc3545; }
.feature-item span { color: #444; font-size: 14px; }

/* ==========================================================================
   10. CHAPTER CARDS (clickable, voor terms)
   ========================================================================== */
.chapter-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: box-shadow 0.2s;
}
.chapter-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.chapter-card .content { flex: 1; }
.chapter-card h3 { font-size: 18px; color: #1a1a2e; margin: 0 0 5px 0; }
.chapter-card p { font-size: 14px; color: #6c757d; margin: 0; }
.chapter-card .arrow { color: #ccc; }

/* ==========================================================================
   11. CTA BOX
   ========================================================================== */
.cta-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #00a0d2;
}
.cta-box.border-orange { border-left-color: #faa61a; }
.cta-box.border-red { border-left-color: #dc3545; }
.cta-box h3 { font-size: 20px; color: #1a1a2e; margin: 0 0 10px 0; }
.cta-box p { font-size: 15px; color: #6c757d; margin: 0 0 20px 0; }
.cta-box .buttons { display: flex; gap: 15px; justify-content: center; }

/* Button links (gradient) */
.btn-link,
a.btn-link,
a.btn-link:hover,
a.btn-link:visited {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}
.btn-link.blue { background: linear-gradient(135deg, #00a0d2, #0077a3); }
.btn-link.orange { background: linear-gradient(135deg, #faa61a, #e8940f); }
.btn-link.red { background: linear-gradient(135deg, #dc3545, #c82333); }

/* ==========================================================================
   12. HIGHLIGHT BOX (prepaid style)
   ========================================================================== */
.highlight-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid #faa61a;
    display: flex;
    align-items: center;
    gap: 20px;
}
.highlight-box .content { flex: 1; }
.highlight-box h3 { font-size: 18px; color: #1a1a2e; margin: 0 0 8px 0; }
.highlight-box p { font-size: 14px; color: #555; margin: 0; line-height: 1.6; }

/* ==========================================================================
   13. PAGE HEADINGS
   ========================================================================== */
.page-heading { font-size: 24px; color: #1a1a2e; margin: 0 0 20px 0; }

/* ==========================================================================
   9. UTILITIES
   ========================================================================== */
/* ==========================================================================
   14. GRID LAYOUTS
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 40px; }
.flex-row { display: flex; gap: 20px; margin-bottom: 40px; }
.flex-row > * { flex: 1; }

/* ==========================================================================
   15. TIMELINE CARDS
   ========================================================================== */
.timeline-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #00a0d2;
}
.timeline-card.border-orange { border-left-color: #faa61a; }
.timeline-card.border-red { border-left-color: #dc3545; }
.timeline-card .year { font-size: 28px; font-weight: 700; margin-bottom: 5px; }
.timeline-card .year.blue { color: #00a0d2; }
.timeline-card .year.orange { color: #faa61a; }
.timeline-card .year.red { color: #dc3545; }
.timeline-card p { font-size: 14px; color: #6c757d; margin: 0; }

/* ==========================================================================
   16. COMPANY INFO BOX
   ========================================================================== */
.company-info {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}
.company-info h3 { font-size: 18px; color: #1a1a2e; margin: 0 0 15px 0; }
.company-info h3 i { color: #00a0d2; margin-right: 10px; }
.company-info .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.company-info .info-item .label { font-size: 12px; color: #888; text-transform: uppercase; margin-bottom: 5px; }
.company-info .info-item .value { font-size: 16px; color: #1a1a2e; font-weight: 600; }

/* ==========================================================================
   17. CONTACT CARDS
   ========================================================================== */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.contact-card .card-inner { display: flex; align-items: center; gap: 15px; }
.contact-card .label { font-size: 13px; color: #6c757d; }
.contact-card .value { font-size: 20px; font-weight: 700; color: #1a1a2e; }
.contact-card .value.sm { font-size: 16px; font-weight: 600; }

/* ==========================================================================
   18. CONTACT FORM
   ========================================================================== */
.contact-form-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.contact-form-box h2 { margin: 0 0 10px 0; font-size: 24px; color: #1a1a2e; }
.contact-form-box .form-subtitle { color: #6c757d; margin-bottom: 30px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-row > * { flex: 1; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #1a1a2e; margin-bottom: 8px; }
.form-group label .required { color: #faa61a; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #faa61a; outline: none; }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-buttons { display: flex; gap: 15px; align-items: center; }
.btn-submit {
    background: linear-gradient(135deg, #00a0d2, #0077a3);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}
.btn-reset {
    background: #fff;
    color: #faa61a;
    border: 2px solid #faa61a;
    padding: 14px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}
.form-required-note { font-size: 13px; color: #6c757d; margin-top: 20px; }

/* ==========================================================================
   19. CHECK LIST (voor Why sections)
   ========================================================================== */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.check-list-item { display: flex; align-items: center; gap: 10px; }
.check-list-item i { color: #00a0d2; }
.check-list-item span { color: #1a1a2e; font-size: 14px; }

/* ==========================================================================
   20. CONTENT INTRO (witte box voor intro tekst)
   ========================================================================== */
.content-intro {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.content-intro p { font-size: 16px; line-height: 1.7; color: #444; margin: 0; }
.content-intro p + p { margin-top: 20px; }

/* ==========================================================================
   21. SEARCH BOXES (voor rates)
   ========================================================================== */
.search-box {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.search-box .box-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.search-box .box-header h4 { margin: 0; color: #1a1a2e; font-size: 16px; }
.search-box form { display: flex; gap: 10px; }
.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
}
.search-box button {
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.search-box button.blue { background: linear-gradient(135deg, #00a0d2, #0077a3); }
.search-box button.orange { background: linear-gradient(135deg, #faa61a, #e8940f); }

/* Results box */
.results-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}
.results-box h3 { margin: 0 0 20px 0; color: #1a1a2e; font-size: 18px; }
.results-box.empty { text-align: center; }
.results-box.empty i { font-size: 32px; color: #ccc; margin-bottom: 15px; }
.results-box.empty p { color: #888; margin: 0; }

/* ==========================================================================
   22. DATA TABLES
   ========================================================================== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead tr { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.data-table th {
    color: #fff;
    padding: 12px 15px;
    text-align: left;
}
.data-table th:first-child { border-radius: 8px 0 0 0; }
.data-table th:last-child { border-radius: 0 8px 0 0; }
.data-table tbody tr { border-bottom: 1px solid #f0f0f0; }
.data-table td { padding: 12px 15px; }
.data-table td.mono { font-family: monospace; }
.data-table td.rate { text-align: right; font-weight: 600; color: #00a0d2; }
.data-table .note { color: #888; margin-top: 15px; font-size: 14px; }

/* ==========================================================================
   23. TOASTS
   ========================================================================== */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: #333;
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toast-in 0.3s ease;
    max-width: 400px;
}
@keyframes toast-in { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toast-out { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100px); } }
.toast.toast-out { animation: toast-out 0.3s ease forwards !important; }
.toast-success { background: #28a745; }
.toast-error { background: #dc3545; }
.toast-warning { background: #f0ad4e; }
.toast-info { background: #00a0d2; }
.toast i { font-size: 16px; }

/* ==========================================================================
   99. UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.clear { clear: both; }
