/* Styling HypeBuilder AND REPAIR */
:root {
    --bg-dark: #0b0f19;
    --bg-card: #131b2e;
    --bg-alt: #0e1525;
    --accent-blue: #00a8ff;
    --accent-glow: #00d2ff;
    --text-light: #f0f4f8;
    --text-muted: #a0aec0;
    --border-color: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigatie */
header {
    background-color: rgba(11, 15, 25, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--accent-blue);
}

.logo .tagline {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-blue);
}

/* Knoppen */
.btn-primary {
    background: linear-gradient(45deg, #0072ff, var(--accent-blue));
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue) !important;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, #132238 0%, var(--bg-dark) 70%);
}

.hero h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero h2 span {
    color: var(--accent-blue);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.hero-buttons a {
    margin: 5px;
}

/* Banner Info */
.banner-info {
    background-color: var(--bg-card);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    text-align: center;
    padding: 15px;
}

.info-card i {
    font-size: 30px;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.info-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Tarieven Secties */
.tarieven-section, .mobiel-section {
    padding: 60px 0;
}

.mobiel-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 14px;
}

.tarieven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

@media (max-width: 600px) {
    .tarieven-grid {
        grid-template-columns: 1fr;
    }
}

.tarief-categorie {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.tarief-categorie h3 {
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

td small {
    color: var(--text-muted);
}

td.prijs {
    text-align: right;
    font-weight: bold;
    color: var(--accent-glow);
    vertical-align: top;
    white-space: nowrap;
    padding-left: 15px;
}

.uurtarief-box {
    margin-top: 30px;
    background-color: var(--bg-card);
    border: 1px dashed var(--accent-blue);
    padding: 15px;
    text-align: center;
    border-radius: 6px;
}

/* Contact Sectie */
.contact-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    width: 25px;
    color: var(--accent-blue);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: 1px solid var(--accent-blue);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 13px;
}