/*
Theme Name: Ramko Consultancy
Theme URI: https://ramkoconsultancy.nl/
Author: Ramko Consultancy BV
Description: Professional, SEO-optimized business consultancy theme for Dutch market entry and expansion. Active since 2012.
Version: 1.0.0
Text Domain: ramko-consultancy
*/

:root {
    --primary: #0b1f3a;
    --primary-light: #1652f0;
    --accent: #38bdf8;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.site-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.site-logo span { color: var(--primary-light); }
.nav-menu { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}
.nav-menu a:hover { color: var(--primary-light); }

/* Buttons */
.btn-primary {
    background: var(--primary-light);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-primary:hover { background: #0e3eb3; transform: translateY(-1px); }

.btn-secondary {
    background: var(--white);
    color: var(--primary) !important;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0b1f3a 0%, #162b4d 100%);
    color: var(--white);
    padding: 100px 0 120px;
    text-align: center;
}
.trust-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 760px;
    margin: 0 auto 40px;
}

/* Services Grid */
.section { padding: 90px 0; }
.section-light { background: var(--bg-light); }
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
.card p { color: var(--text-muted); font-size: 15px; }

/* Subsidiary Banner */
.subsidiary-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 60px 0 30px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 16px; }
.footer-col a { color: #94a3b8; text-decoration: none; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid #1e3a5f;
    padding-top: 24px;
    text-align: center;
}
