:root {
    --primary: #155570;
    --primary-dark: #155570;
    --primary-soft: #e7f2f6;
    --accent: #155570;
    --ink: #10212b;
    --muted: #61717c;
    --line: #dce6eb;
    --surface: #ffffff;
    --surface-alt: #f5f9fb;
    --radius: 18px;
    --shadow: 0 20px 55px rgba(15, 61, 79, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}

.section-muted {
    background: var(--surface-alt);
}

.section-dark {
    background: var(--primary-dark);
    color: #fff;
}

.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar-contact,
.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar a:hover {
    color: #fff;
}

.social-links {
    gap: 10px;
}

.social-links a {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    transition: .25s;
}

.social-links a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
    transform: translateY(-2px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: .3s;
}

.navbar {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(21, 85, 112, .08);
    backdrop-filter: blur(12px);
}

.navbar-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-header.scrolled .navbar-inner {
    min-height: 66px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary-dark);
}

.brand img {
    width: 72px;
    max-height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.nav-menu>a:not(.btn) {
    position: relative;
    padding: 28px 0;
    transition: .25s;
}

.nav-menu>a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 18px;
    height: 2px;
    background: var(--accent);
    transition: .25s;
}

.nav-menu>a:hover,
.nav-menu>a.active {
    color: var(--primary);
}

.nav-menu>a:hover::after,
.nav-menu>a.active::after {
    right: 0;
}

.nav-login {
    color: var(--primary) !important;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--primary-soft);
    padding: 11px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: .25s;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 61, 79, .18);
}

.btn-small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
}

.btn-primary{
    background:#155570;
    border:1px solid #155570;
    color:#ffffff;
}

.btn-primary:hover{
    background:#ffffff;
    color:#155570;
    border-color:#155570;
}

.btn-accent{
    background:#155570;
    border:1px solid #155570;
    color:#ffffff;
}

.btn-accent:hover{
    background:#ffffff;
    color:#155570;
    border-color:#155570;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.hero {
    min-height: 700px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background: url("img/hero-bg.jpg") center/cover no-repeat, linear-gradient(135deg, #163f52, #0b2532);
    transform: scale(1.02);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(5, 31, 43, .94) 0%, rgba(10, 60, 79, .79) 46%, rgba(9, 45, 59, .35) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.eyebrow {
    display: inline-flex;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .13em;
    margin-bottom: 16px;
}

.eyebrow::after {
    content: "";
    width: 42px;
    height: 2px;
    background: currentColor;
    align-self: center;
    margin-left: 12px;
    opacity: .8;
}

.eyebrow.light {
    color: #ffffff;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 6.3vw, 82px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero h1 span {
    color: #ffffff;
}

.hero-content>p {
    max-width: 650px;
    margin: 28px 0 34px;
    font-size: 18px;
    color: rgba(255, 255, 255, .84);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 65px;
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.hero-trust div {
    padding: 22px 25px 0 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-trust strong {
    font-size: 18px;
}

.hero-trust span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 0 0 24px;
}

h3 {
    line-height: 1.35;
}

.about-copy>p,
.section-heading p {
    color: var(--muted);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 28px 0 34px;
}

.check-list span::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    margin-right: 9px;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.feature-icon svg{
    width:30px;
    height:30px;
    color:#155570;
    stroke:currentColor;
    stroke-width:1.8;
}

.floating-card {
    position: absolute;
    left: -35px;
    bottom: 30px;
    max-width: 245px;
    padding: 22px;
    border-radius: 16px;
    background: var(--primary-dark);
    color: #fff;
    box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    margin-top: 5px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-heading.centered {
    text-align: center;
    margin-inline: auto;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.row-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.row-heading h2 {
    margin-bottom: 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(21, 85, 112, 0.1);
    color: #155570;
    border-radius: 14px;
}

.feature-icon svg {
    display: block;
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 18px;
    margin: 24px 0 10px;
}

.feature-card p,
.card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.service-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card .card-body p,
.blog-card .card-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    line-height: 1.65;
    min-height: calc(1.65em * 3);
}

.service-card .card-body,
.blog-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card-body p,
.blog-card .card-body p {
    overflow-wrap: break-word;
    word-break: break-word;
}

.service-card,
.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;

    transition: .3s;
}

.service-card .card-body,
.blog-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
}

.service-card:hover,
.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.card-image {
    height: 215px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #dceaf0, #f4f8fa);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s;
}

.service-card:hover .card-image img,
.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.image-placeholder>span {
    display: none;
    position: absolute;
    inset: 0;
    place-items: center;
    color: var(--primary);
    font-weight: 700;
}

.image-placeholder.missing-image>span {
    display: grid;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin: 0 0 12px;
    font-size: 19px;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 22px;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

.text-link span {
    transition: .2s;
}

.text-link:hover span {
    transform: translateX(4px);
}

.section-action {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.stats-band {
    padding: 58px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.stats-grid div:first-child {
    padding-left: 0;
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: #ffffff;
    font-size: 28px;
}

.stats-grid span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
}

.post-meta span {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 700;
}

.blog-card .card-body h3 {
    font-size: 20px;
}

.home-testimonial-delete-form{
    margin-top:18px;
}

.home-testimonial-delete{
    padding:7px 12px;
    border:1px solid #c94a4a;
    border-radius:8px;
    background:transparent;
    color:#c94a4a;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.home-testimonial-delete:hover{
    background:#c94a4a;
    color:#fff;
}

.home-testimonial-alert{
    max-width:620px;
    margin:0 auto 28px;
    padding:14px 17px;
    border-radius:10px;
    text-align:center;
    font-size:13px;
    font-weight:600;
}

.home-testimonial-alert.success{
    background:rgba(21,85,112,.08);
    color:#155570;
    border:1px solid rgba(21,85,112,.18);
}

.home-testimonial-alert.error{
    background:rgba(201,74,74,.08);
    color:#b73c3c;
    border:1px solid rgba(201,74,74,.20);
}

.testimonial-card > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;

    min-height: calc(1.65em * 4);

    overflow-wrap: break-word;
    word-break: break-word;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    background: #fff;
    position: relative;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 68px;
    color: var(--accent);
    line-height: .7;
}

.testimonial-card>p {
    color: var(--muted);

    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;

    min-height: calc(1.65em * 4);

    overflow-wrap: break-word;
    word-break: break-word;
}

.testimonial-author {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.avatar {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.quote-section {
    padding: 100px 0;
    color: #fff;
    background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, .16), transparent 32%), var(--primary);
}

.quote-inner {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.quote-inner h2 {
    max-width: 510px;
}

.quote-inner>div>p {
    color: rgba(255, 255, 255, .76);
}

.quote-form {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(8px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-grid label {
    display: grid;
    gap: 7px;
}

.form-grid label.full {
    grid-column: 1 / -1;
}

.form-grid label span {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(21, 85, 112, .18);
}

textarea {
    resize: vertical;
}

.quote-form .btn {
    margin-top: 20px;
}

.footer{
    background:#155570;
    color:rgba(255,255,255,.75);
}

.footer .brand img{
    width:120px;
    padding:10px 14px;
    background:#ffffff;
    border-radius:14px;
}

.footer-grid {
    padding: 75px 0;
    display: grid;
    grid-template-columns: 1.35fr .7fr 1fr 1fr;
    gap: 55px;
}

.footer .brand {
    color: #fff;
}

.footer h3 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 22px;
}

.footer-grid>div>a {
    display: block;
    margin: 10px 0;
    font-size: 13px;
    transition: .2s;
}

.footer-grid>div>a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer p {
    font-size: 13px;
}

.footer-social {
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column > a {
    display: inline-block;
}

.footer-contact {
    gap: 0;
}

.footer-contact-item {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-contact-item:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-top: 1px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-contact-item > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 600px) {
    .footer-contact-item {
        max-width: 340px;
    }
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1020px) {
    .topbar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar-inner {
        min-height: 70px;
    }

    .nav-menu {
        position: fixed;
        inset: 70px 0 auto 0;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 24px;
        transform: translateX(100%);
        transition: .3s;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: none;
    }

    .nav-menu>a:not(.btn) {
        padding: 16px 4px;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu>a:not(.btn)::after {
        display: none;
    }

    .nav-menu .btn {
        margin-top: 18px;
    }

    .split-layout,
    .quote-inner {
        grid-template-columns: 1fr;
    }

    .advantage-grid,
    .service-grid,
    .blog-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-grid>div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .brand span {
        display: none;
    }

    .hero {
        min-height: 670px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content>p {
        font-size: 16px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .hero-trust div {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .split-layout {
        gap: 45px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .about-media img {
        min-height: 350px;
    }

    .floating-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .advantage-grid,
    .service-grid,
    .blog-grid,
    .testimonial-grid,
    .stats-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid div,
    .stats-grid div:first-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .stats-grid div:last-child {
        border-bottom: 0;
    }

    .row-heading {
        align-items: start;
    }

    .desktop-link {
        display: none;
    }

    .testimonial-card>p {
        min-height: auto;
    }

    .quote-inner {
        gap: 35px;
    }

    .quote-form {
        padding: 22px;
    }

    .footer-grid>div:last-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.contact-icon{
    width:36px;
    height:36px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(21,85,112,.12);
    color:#155570;
}

.contact-icon svg{
    width:18px;
    height:18px;
}

.service-contact-direct a,
.blog-sidebar-contact a{
    display:flex;
    align-items:center;
    gap:12px;
}

.navbar-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78px;
}

.brand {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-center-links {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 32px;
    transform: translate(-50%, -50%);
}

.nav-center-links > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 28px 0;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-center-links > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-center-links > a:hover,
.nav-center-links > a.active {
    color: var(--primary);
}

.nav-center-links > a:hover::after,
.nav-center-links > a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.nav-notification {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border: 1px solid rgba(21, 85, 112, 0.14);
    border-radius: 50%;

    background: rgba(21, 85, 112, 0.06);
    color: #155570;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nav-notification svg {
    width: 20px;
    height: 20px;
}

.nav-notification:hover,
.nav-notification.active {
    background: #155570;
    border-color: #155570;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(21, 85, 112, 0.18);
}

.notification-badge {
    position: absolute;

    top: -5px;
    right: -6px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #ffffff;
    border-radius: 999px;

    background: #d93838;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    box-shadow:
        0 3px 8px
        rgba(0, 0, 0, 0.18);
}

.notification-modal {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    justify-content: flex-end;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        visibility 0.25s ease,
        opacity 0.25s ease;
}

.notification-modal.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.notification-modal-backdrop {
    position: absolute;
    inset: 0;

    background:
        rgba(7, 24, 43, 0.48);

    backdrop-filter: blur(4px);
}

.notification-modal-panel {
    position: relative;
    z-index: 1;

    width: min(430px, 100%);
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    box-shadow:
        -20px 0 55px
        rgba(7, 24, 43, 0.2);

    transform: translateX(100%);

    transition:
        transform 0.28s ease;
}

.notification-modal.open
.notification-modal-panel {
    transform: translateX(0);
}

.notification-modal-header {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 24px;

    flex-shrink: 0;

    border-bottom:
        1px solid
        rgba(21, 85, 112, 0.1);

    background: #ffffff;
}

.notification-modal-header h2 {
    margin: 0;

    color: #155570;

    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.notification-modal-close {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    padding: 0;

    border:
        1px solid
        rgba(21, 85, 112, 0.14);

    border-radius: 50%;

    background: #ffffff;
    color: #155570;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.notification-modal-close:hover {
    background: #155570;
    border-color: #155570;
    color: #ffffff;
}

.notification-modal-body {
    min-height: 0;

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 18px 18px 24px;

    overflow-y: auto;
    overscroll-behavior: contain;

    background: #f7fafb;
}

.notification-modal-body::-webkit-scrollbar {
    width: 6px;
}

.notification-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.notification-modal-body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background:
        rgba(21, 85, 112, 0.2);
}

.notification-item {
    position: relative;

    display: block;

    width: 100%;

    padding: 16px 16px 15px 18px;

    border:
        1px solid
        rgba(21, 85, 112, 0.1);

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 2px 8px
        rgba(21, 85, 112, 0.035);

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.notification-item::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 3px;

    background: transparent;

    transition:
        background 0.2s ease;
}

.notification-item:hover {
    border-color:
        rgba(21, 85, 112, 0.22);

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(21, 85, 112, 0.08);
}

.notification-item.unread {
    border-color:
        rgba(21, 85, 112, 0.18);

    background: #eef6f8;
}

.notification-item.unread::before {
    background: #155570;
}

.notification-item-content {
    min-width: 0;
}

.notification-item strong {
    display: block;

    margin: 0 0 5px;

    color: #123f52;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    overflow-wrap: anywhere;
}

.notification-item p {
    margin: 0 0 8px;

    color: #61717c;

    font-size: 13px;
    line-height: 1.55;

    overflow-wrap: anywhere;
}

.notification-item small {
    display: block;

    margin: 0;

    color: #82919a;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
}

.notification-item.unread small {
    color: #155570;
}

.notification-empty {
    min-height: 280px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 25px;

    text-align: center;
}

.notification-empty h3 {
    margin: 0 0 7px;

    color: #155570;

    font-size: 17px;
}

.notification-empty p {
    max-width: 250px;

    margin: 0;

    color: #7a8992;

    font-size: 13px;
    line-height: 1.6;
}

body.notification-modal-open {
    overflow: hidden;
}

@media (max-width: 520px) {
    .notification-modal-panel {
        width: 100%;
    }

    .notification-modal-header {
        min-height: 72px;

        padding:
            16px 18px;
    }

    .notification-modal-header h2 {
        font-size: 20px;
    }

    .notification-modal-body {
        padding:
            14px 12px 20px;

        gap: 9px;
    }

    .notification-item {
        padding:
            14px 14px 13px 16px;
    }
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-contact-icon {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topbar-contact-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1180px) {
    .nav-center-links {
        gap: 20px;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-login {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-inner {
        min-height: 72px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 24px;
        background: #ffffff;
        box-shadow: 0 18px 35px rgba(13, 44, 78, 0.12);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-center-links {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: none;
    }

    .nav-center-links > a {
        width: 100%;
        padding: 13px 4px;
    }

    .nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 12px;
        margin-left: 0;
    }

    .nav-login {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        border: 1px solid rgba(13, 44, 78, 0.14);
        border-radius: 8px;
    }

    .nav-actions .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }
}

@media (max-width: 680px) {
    .topbar-contact {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    .topbar-contact a {
        font-size: 12px;
    }

    .topbar-contact a:first-child {
        display: none;
    }

    .topbar .social-links {
        display: none;
    }
}

.service-card .card-body h3,
.blog-card .card-body h3 {
    display: -webkit-box;
    min-width: 0;
    max-width: 100%;

    min-height: calc(1.35em * 2);
    max-height: calc(1.35em * 2);

    margin: 0 0 12px;
    overflow: hidden;

    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.service-card .card-body h3 a,
.blog-card .card-body h3 a {
    display: block;
    min-width: 0;
    max-width: 100%;
}

.footer-services {
    min-width: 0;
}

.footer-services > a {
    display: block;
    max-width: 100%;
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.notification-item.unread{
    border-color:rgba(21,85,112,.28);
    background:#e9f4f7;
    box-shadow:0 8px 22px rgba(21,85,112,.09);
}
.notification-item::before{
    display:none;
}
.notification-item.unread strong{
    color:#155570;
}

.notification-modal-panel{
    overflow:hidden;
}

.notification-modal-body{
    min-height:0;
    flex:1 1 auto;
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    scrollbar-gutter:stable;
}

.notification-item{
    flex:0 0 auto;
    min-height:max-content;
}

.notification-item-content{
    width:100%;
    min-width:0;
}

.notification-item strong,
.notification-item p,
.notification-item small{
    white-space:normal;
}

.notification-item p{
    overflow:visible;
    display:block;
    max-height:none;
    -webkit-line-clamp:unset;
    line-clamp:unset;
}
