:root {
    --primary: #123c63;
    --primary-dark: #0a2540;
    --accent: #2a72b5;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --text: #1e293b;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f4f7fb;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 220px;
    height: 78px;
    object-fit: cover;
    object-position: center 47%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.header-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
}

.header-contact-rule {
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.header-contact-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-alt);
    border: 1px solid #dbe4ee;
    border-radius: 999px;
    padding: 5px 14px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.header-contact-links a i {
    color: var(--gold-dark);
    font-size: 0.78rem;
    transition: color 0.2s;
}

.header-contact-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(18, 60, 99, 0.25);
}

.header-contact-links a:hover i {
    color: var(--gold);
}

@media (max-width: 575px) {
    .header-contact {
        align-items: flex-start;
    }

    .header-contact-links {
        justify-content: flex-start;
    }
}

.site-nav a {
    color: var(--primary);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}

/* Hero (generic pages) */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--accent) 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.35);
    color: #fff;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 3rem 1.25rem;
}

.feature {
    background: var(--bg-alt);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.75rem;
}

.feature h2 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Generic page */
.page {
    padding: 3rem 1.25rem;
}

.page h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Contact form */
.contact-form {
    max-width: 560px;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(42, 114, 181, 0.15);
}

.field-errors {
    color: #c0392b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Alerts */
.alert {
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    margin: 1.25rem 0;
}

.alert-success {
    background: #e6f7ee;
    color: #1e7d4f;
    border: 1px solid #b7e4cd;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: #9fb6cd;
    text-align: center;
    padding: 1.75rem 0;
    margin-top: 0;
}
