:root {
    --llv-primary: #022a56;
    --llv-primary-2: #0b3f7f;
    --llv-dark: #0d1522;
    --llv-text: #1d2735;
    --llv-muted: #667085;
    --llv-bg: #f7f9fc;
    --llv-card: #ffffff;
    --llv-border: rgba(2, 42, 86, 0.08);
    --llv-shadow: 0 20px 50px rgba(2, 42, 86, 0.10);
    --llv-shadow-strong: 0 24px 70px rgba(2, 42, 86, 0.16);
    --llv-radius: 1.35rem;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--llv-text);
    background: #fff;
    padding-top: 86px;
}

h1,h2,h3,h4,h5,.brand-text,.display-font,.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -.02em;
}

a { text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; }

.llv-navbar {
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(2,42,86,.06);
    transition: background .2s ease, box-shadow .2s ease;
    z-index: 1030;
}
.llv-navbar.is-scrolled {
    background: rgba(255,255,255,.95);
    box-shadow: 0 12px 30px rgba(2,42,86,.10);
}
.llv-offcanvas {
    z-index: 1045;
    background: #ffffff;
    color: var(--llv-text);
    width: min(88vw, 360px);
    border-left: 1px solid rgba(2,42,86,.08);
    box-shadow: -12px 0 40px rgba(2,42,86,.14);
}

.llv-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(2,42,86,.08);
    padding: 1rem 1rem .9rem;
}

.llv-offcanvas .offcanvas-title {
    color: var(--llv-primary);
    font-weight: 800;
}

.llv-offcanvas .text-secondary {
    color: var(--llv-muted) !important;
}

.llv-offcanvas .offcanvas-body {
    padding: 1rem;
}

.llv-offcanvas .nav-link {
    color: var(--llv-text);
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 1rem;
    padding: .9rem 1rem !important;
    background: transparent;
    display: flex;
    align-items: center;
}

.llv-offcanvas .nav-link:hover,
.llv-offcanvas .nav-link.active {
    color: var(--llv-primary);
    background: rgba(2,42,86,.06);
    border-color: rgba(2,42,86,.12);
}

.llv-offcanvas .btn-close:focus {
    box-shadow: none;
}
.navbar-brand .brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(2,42,86,.12);
}
.brand-text {
    font-weight: 800;
    color: var(--llv-primary);
    font-size: 1rem;
    line-height: 1.05;
}
.brand-subtext {
    font-size: .72rem;
    font-weight: 700;
    color: var(--llv-muted);
    letter-spacing: .02em;
}
.navbar-toggler { color: var(--llv-primary); }
.navbar-toggler:focus { box-shadow: none; }
.nav-link {
    color: var(--llv-text);
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .6rem .95rem !important;
    transition: all .2s ease;
}
.nav-link i { opacity: .8; }
.nav-link:hover,
.nav-link.active {
    color: var(--llv-primary);
    background: rgba(2,42,86,.06);
    border-color: rgba(2,42,86,.12);
}
.btn-cta-nav { box-shadow: 0 12px 24px rgba(2,42,86,.16); }
.offcanvas { border-left: 0; }

.btn-primary {
    --bs-btn-bg: var(--llv-primary);
    --bs-btn-border-color: var(--llv-primary);
    --bs-btn-hover-bg: #03366f;
    --bs-btn-hover-border-color: #03366f;
    --bs-btn-active-bg: #022446;
    --bs-btn-active-border-color: #022446;
}
.btn {
    font-weight: 700;
    box-shadow: none;
}
.btn-lg { --bs-btn-padding-y: .95rem; --bs-btn-padding-x: 1.35rem; }
.btn-outline-dark {
    border-color: rgba(13,21,34,.18);
    color: var(--llv-text);
}
.btn-outline-dark:hover {
    background: var(--llv-dark);
    color: #fff;
    border-color: var(--llv-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(78, 155, 255, .15), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.7) 40%, rgba(255,255,255,0) 75%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-card,
.page-card,
.admin-card,
.contact-side-card,
.company-box {
    background: var(--llv-card);
    border: 1px solid var(--llv-border);
    border-radius: var(--llv-radius);
    box-shadow: var(--llv-shadow);
}
.hero-card { position: relative; }
.hero-eyebrow,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(2,42,86,.08);
    color: var(--llv-primary);
    border-radius: 999px;
    padding: .6rem .95rem;
    font-size: .9rem;
    font-weight: 800;
}
.hero h1 { font-size: clamp(2rem, 5vw, 4.25rem); line-height: .96; }
.hero .lead { color: var(--llv-muted); max-width: 58ch; }
.hero-logo-wrap { margin-inline: auto; }
.hero-logo { max-width: 280px; filter: drop-shadow(0 16px 28px rgba(2,42,86,.16)); }
.stat-card {
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    border: 1px solid var(--llv-border);
    border-radius: 1rem;
}
.hero-carousel {
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--llv-shadow-strong);
    background: #dfe8f3;
}
.hero-carousel .carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.carousel-caption-custom {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(13,21,34,.2), rgba(13,21,34,.72));
    border: 1px solid rgba(255,255,255,.08);
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}
.carousel-indicators [data-bs-target] { width: 10px; height: 10px; border-radius: 50%; }

.section,
.page-hero { padding: 5rem 0; }
.page-hero {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    border-bottom: 1px solid rgba(2,42,86,.06);
}
.section-title { font-size: clamp(1.85rem, 4vw, 3rem); }
.section-intro {
    color: var(--llv-muted);
    max-width: 62ch;
    font-size: 1.05rem;
}
.bg-soft { background: var(--llv-bg); }
.narrow-content { max-width: 900px; }

.feature-card {
    background: #fff;
    border: 1px solid var(--llv-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 12px 34px rgba(2,42,86,.08);
    height: 100%;
}
.feature-icon,
.contact-side-icon {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(2,42,86,.08);
    color: var(--llv-primary);
    font-size: 1.25rem;
}
.ribbon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}
.ribbon-list li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}
.ribbon-list i {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(2,42,86,.08);
    color: var(--llv-primary);
}

.contact-form .form-control {
    border-radius: 1rem;
    border-color: rgba(2,42,86,.12);
    min-height: 58px;
}
.contact-form .form-control:focus {
    border-color: rgba(2,42,86,.35);
    box-shadow: 0 0 0 .25rem rgba(2,42,86,.10);
}
.contact-form .form-message { min-height: 140px; }
.contact-note { line-height: 1.5; }
.contact-person + .contact-person { padding-top: 1rem; border-top: 1px solid rgba(2,42,86,.08); }

.footer {
    background: #f7f9fc;
    border-top: 1px solid rgba(2,42,86,.06);
}
.footer-logo { max-width: 170px; }
.footer-title {
    color: var(--llv-primary);
    font-weight: 800;
}
.footer-links li + li { margin-top: .55rem; }
.footer-links a {
    color: var(--llv-text);
}
.footer-links a:hover { color: var(--llv-primary); }

.admin-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}
.admin-sidebar {
    background: var(--llv-primary);
    color: #fff;
    min-height: 100vh;
}
.admin-sidebar nav a {
    color: rgba(255,255,255,.92);
    padding: .8rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(255,255,255,.13);
    color: #fff;
}
.ck-editor__editable_inline { min-height: 360px; }

@media (max-width: 991.98px) {
    body { padding-top: 78px; }
    .hero::before { background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.65) 55%, rgba(255,255,255,.15) 100%); }
    .hero-carousel .carousel-item img { height: 360px; }
    .brand-logo { width: 48px; height: 48px; }
}

@media (max-width: 575.98px) {
    .section, .page-hero { padding: 3.5rem 0; }
    .hero-card, .page-card, .admin-card { padding: 1.25rem !important; }
    .hero-logo { max-width: 220px; }
    .hero-carousel .carousel-item img { height: 300px; }
    .nav-link { padding-inline: .85rem !important; }
}
