:root {
    --primary-color: #0b2c78;
    --primary-color-opacity: rgba(11, 44, 120, .82);
    --primary-color-rgb: 11, 44, 120;
    --dark-primary-color: #081f57;
    --secondary-color: #f58a3b;
    --secondary-color-rgb: 245, 138, 59;
    --dark-secondary-color: #dd7424;
    --light-color: #ffffff;
    --dark-color: #111827;
    --text-color: #475467;
    --title-color: #0f172a;
    --light-gray-color: #f7f9fc;
    --semi-gray-color: #98a2b3;
    --dark-gray-color: #667085;
    --border-color: rgba(15, 23, 42, .08);
    --surface-color: #f8fafc;
    --surface-soft: #eef2f7;
    --surface-card: #ffffff;
    --surface-dark: #0f172a;
    --border-radius: 16px;
    --shadow-sm: 0 10px 30px rgba(15, 23, 42, .06);
    --shadow-md: 0 20px 45px rgba(15, 23, 42, .08);
    --shadow-lg: 0 30px 70px rgba(15, 23, 42, .12);
}

/* All Page Global */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--surface-color);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--title-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}
p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}
a {
    color: var(--dark-color);
    text-decoration: none;
    display: inline-block;
    transition: all ease-in .3s;
}
a:hover {
    text-decoration: none;
}
img {
    width: 100%;
    display: block;
}
.section-py {
    padding: 90px 0;
}
.section-py.py-bg {
    padding: 110px 0;
}
.section-px {
    padding-left: 36px;
    padding-right: 36px;
}
.section-px.px-bg {
    padding-left: 50px;
    padding-right: 50px;
}
@media screen and (max-width: 991px) {
    .section-py {
        padding: 70px 0;
    }
    .section-py.py-bg {
        padding: 80px 0;
    }
    .section-px,
    .section-px.px-bg {
        padding-left: 18px;
        padding-right: 18px;
    }
}

::selection {
    color: var(--light-color);
    background-color: var(--dark-secondary-color);
}
::-moz-selection {
    color: var(--light-color);
    background-color: var(--dark-secondary-color);
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.hover-effect {
    position: relative;
    transition: all ease-in .3s;
    -webkit-transition: all ease-in .3s;
}
.hover-effect:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    background-color: var(--secondary-color);
    border-radius: 999px;
    transition: all ease-in .3s;
    -webkit-transition: all ease-in .3s;
}
.hover-effect:hover:after {
    opacity: 1;
    height: 3px;
}
strong {
    font-weight: 600;
}
.pt-30px { padding-top: 30px; }
.pb-30px { padding-bottom: 30px; }
.pt-50px { padding-top: 50px; }
.pb-50px { padding-bottom: 50px; }
.pt-80px { padding-top: 80px; }
.pb-80px { padding-bottom: 80px; }
.mt-30px { margin-top: 30px; }
.mb-30px { margin-bottom: 30px; }
.mt-50px { margin-top: 50px; }
.mb-50px { margin-bottom: 50px; }
.mt-80px { margin-top: 80px; }
.mb-80px { margin-bottom: 80px; }

/* Buttons */
button {
    outline: none;
    box-shadow: none;
}
.primary-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9f5b 100%);
    color: var(--light-color);
    border: none;
    transition: all ease-in .3s;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(245, 138, 59, .22);
}
.primary-btn.secondary-color {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: none;
}
.primary-btn.light-btn {
    background: var(--light-color);
    color: var(--primary-color);
    border: 1px solid rgba(11, 44, 120, .08);
    box-shadow: var(--shadow-sm);
}
.primary-btn.outline-btn {
    background: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: none;
}
.primary-btn i {
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
    transition: all ease-in .3s;
    -webkit-transition: all ease-in .3s;
}
.primary-btn.active,
.primary-btn:hover {
    transform: translateY(-2px);
    color: var(--light-color);
    box-shadow: 0 18px 38px rgba(245, 138, 59, .28);
}
.primary-btn.secondary-color.active,
.primary-btn.secondary-color:hover {
    background: #f3f7ff;
    color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255,255,255,.12);
}
.primary-btn.light-btn.active,
.primary-btn.light-btn:hover {
    background: #f7f9fd;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}
.primary-btn.outline-btn.active,
.primary-btn.outline-btn:hover {
    background: rgba(255,255,255,.08);
    color: var(--light-color);
    border-color: rgba(255,255,255,.45);
    box-shadow: none;
}

.section-title {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title.start {
    align-items: flex-start;
}
.section-title.end {
    align-items: flex-end;
}
.section-title .title {
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
    margin: 0 0 15px;
    color: var(--primary-color);
    text-transform: none;
}
.section-title .desc {
    font-size: 17px;
    max-width: 650px;
    margin: 0;
    color: var(--text-color);
    line-height: 1.75;
}
.section-title.start .desc {
    max-width: 620px;
}
@media screen and (max-width: 768px) {
    .section-title {
        margin-bottom: 35px;
    }
    .section-title .title {
        line-height: 1.2;
    }
    .section-title .desc {
        font-size: 15px;
        max-width: 100%;
    }
}

/* Loader */
.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(255,255,255,.9);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.loader img {
    height: 130px;
    object-fit: contain;
    animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, .04);
    transition: all ease-in .3s;
}
header.sticky {
    box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
}
.header-area {position: relative;}
.site-logo a {
    display: block;
    padding: 10px 0;
}
.site-logo a img {
    height: 70px;
    object-fit: contain;
    transition: all .3s;
}
header.sticky .site-logo a img {
    height: 45px;
    transition: all .3s;
}
.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu > ul > li > a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-primary-color);
    padding: 10px 0;
}
.main-menu > ul > li.active > a,
.main-menu > ul > li > a:hover {
    color: var(--primary-color);
}
.main-menu > ul > li.active > a:after,
.main-menu > ul > li > a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 999px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.panel-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 15px 30px;
    border: 1px solid var(--light-gray-color);
    border-radius: 12px;
    line-height: 1;
    text-align: center;
    transition: all .3s;
}
.panel-link:hover {
    background-color: var(--light-gray-color);
    transition: all .3s;
}
.lang {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 15px;
    border: 1px solid var(--light-gray-color);
    background-color: var(--light-gray-color);
    border-radius: 12px;
    line-height: 1;
    text-align: center;
    transition: all .3s;
}
.lang:hover {
    background-color: var(--dark-gray-color);
    color: var(--light-color);
    transition: all .3s;
}
.mobile-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(11, 44, 120, .08);
    background-color: var(--light-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background: var(--light-color);
    z-index: 9999;
    padding: 90px 24px 30px;
    box-shadow: -10px 0 40px rgba(15, 23, 42, .12);
    transition: all ease-in .4s;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in .3s;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu ul li {
    margin-bottom: 18px;
}
.mobile-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
}
.mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--primary-color);
}
@media screen and (max-width: 1199px) {
    .main-menu {
        display: none;
    }
}
@media screen and (min-width: 1200px) {
    .mobile-menu-btn,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
@media screen and (max-width: 991px) {
    .site-logo a img {
        height: 50px;
    }
    .header-area {
        min-height: 76px;
    }
    .site-logo a {
        font-size: 24px;
    }
    .header-actions .contact,
    .panel-link {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .slider,
.hero-section .owl-stage-outer,
.hero-section .owl-stage,
.hero-section .owl-item,
.hero-section .item {
    height: 100%;
}
.hero-section .item {
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hero-section .item > img {
    width: 100%;
    height: auto;
    z-index: 1;
}
.hero-section .item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0, rgba(0,0,0,.9), transparent);
    z-index: 2;
}
.hero-content {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 70%;
    z-index: 3;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 12px;
    background: rgba(var(--primary-color-rgb),.5);
    color: var(
            --light-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-size: 60px;
    line-height: 1.04;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 30px;
}
.hero-title span {
    color: var(--secondary-color);
}
.hero-desc {
    font-size: 20px;
    line-height: 1.85;
    color: rgba(255,255,255,.88);
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.hero-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
    pointer-events: none;
}
.hero-section .owl-nav button {
    pointer-events: all;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,.7) !important;
    backdrop-filter: blur(5px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all .3s ease;
}
.hero-section .owl-nav button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}
.hero-section .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}
.hero-section .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    display: block;
    transition: all .3s ease;
}

.hero-section .owl-dots .owl-dot.active span,
.hero-section .owl-dots .owl-dot:hover span {
    width: 26px;
    border-radius: 20px;
    background: var(--secondary-color);
}
@media screen and (max-width: 1199px) {
    .hero-title {
        font-size: 58px;
    }
}
@media screen and (max-width: 991px) {
    .hero-section .item > img {
        height: 600px;
        object-fit: cover;
    }
    .hero-title {
        font-size: 25px;
    }
    .hero-desc {
        font-size: 16px;
        line-height: 1.4;
    }
    .hero-section .owl-nav {
        display: none;
    }
}
@media screen and (max-width: 575px) {
    .hero-content {

        left: 0;

        max-width: 100%;

        transform: unset;

        padding: 0 15px;
    }
    .hero-section .item {
        min-height: 500px;
    }
    .hero-title {
        font-size: 20px;
    }
    .hero-badge {
        font-size: 12px;
        letter-spacing: .10em;
    }
}

/* Trust Section */
.trust-section {
    position: relative;
    z-index: 3;
}
.trust-card {
    background: var(--surface-card);
    border-radius: 12px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 140px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 44, 120, .05);
    transition: all ease-in .3s;
    position: relative;
    overflow: hidden;
}
.trust-card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    opacity: .9;
}
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.trust-icon {
    border-radius: 12px;
    background: var(--light-gray-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}
.trust-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.trust-content .value {
    margin: 0 0 6px;
    font-size: 34px;
    line-height: 1;
    color: var(--primary-color);
}
.trust-content .title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--dark-gray-color);
    font-weight: 600;
}
@media screen and (max-width: 991px) {
    .trust-section {
        margin-top: 0;
    }
}

/* Services */
.services-section {
    background: var(--surface-color);
    padding-bottom: 60px;
}
.services-top .section-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.services-top .section-link i {
    transition: all ease-in .3s;
}
.services-top .section-link:hover i {
    transform: translateX(4px);
}
.service-card {
    width: 100%;
    border-radius: 12px;
    padding: 30px;
    background: rgba(255,255,255,.82);
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, .04);
    transition: all ease-in .3s;
    position: relative;
    backdrop-filter: blur(5px);
    overflow: hidden;
    margin-bottom: 30px;
}
.service-card:hover {
    transform: translateY(-8px);
    background: var(--surface-card);
    box-shadow: var(--shadow-md);
}
.service-icon {
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(245 138 59 / 10%);
    margin-bottom: 25px;
    padding: 10px;
}
.service-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.service-card .title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.service-card .short {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    font-weight: 300;
}
.service-plus {
    position: absolute;
    left: 26px;
    bottom: 24px;
    font-size: 16px;
    color: #b3bdd1;
    transition: all ease-in .3s;
}
.service-card:hover .service-plus {
    color: var(--secondary-color);
}

/* Calculators */
.calculators-section {
    background: #f2f5f9;
}
.calculators-section.list {
    background: transparent;
}
.calculator-card {
    background: var(--surface-card);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .04);
    transition: all ease-in .3s;
    margin-bottom: 30px;
}
.calculator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.calculator-icon {
    border-radius: 14px;
    background: rgba(59, 130, 246, .10);
    padding: 10px;
}
.calculator-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.calculator-content {
    flex: 1;
}
.calculator-content .title {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.calculator-content .short {
    font-size: 14px;
    color: var(--dark-gray-color);
}
.calculator-arrow {
    color: #c3cad8;
    font-size: 18px;
    transition: all ease-in .3s;
}
.calculator-card:hover .calculator-arrow {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* Blog */
.blog-preview-section {
    background: var(--surface-color);
    padding-bottom: 60px;
}
.blog-card {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    background: #dce7f4;
}
.blog-image img {
    height: 220px;
    object-fit: cover;
    transition: all ease-in .5s;
}
.blog-card:hover .blog-image img {
    transform: scale(1.04);
}
.blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 999px;
    min-height: 28px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.blog-content {
    padding-right: 10px;
}
.blog-category {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: var(--secondary-color);
    font-weight: 700;
}
.blog-content .title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--title-color);
    transition: all ease-in .3s;
}
.blog-card:hover .blog-content .title {
    color: var(--primary-color);
}
.blog-content .short {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-color);
}

/* Blog Detail */
.blog-detail-section {
    background: var(--surface-color);
}
.blog-detail-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.blog-detail-cover img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.blog-detail-content {
    padding: 25px;
}
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.blog-detail-meta span {
    font-size: 12px;
    color: var(--dark-gray-color);
}
.blog-detail-title {
    font-size: 22px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.blog-detail-text p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 15px;
}
.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
}
.blog-detail-share .blog-detail-share-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}
.blog-detail-share a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all .3s ease;
}
.blog-detail-share a:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Sidebar */
.popular-blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.popular-blog-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .05);
    transition: all .3s ease;
}
.popular-blog-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    background: var(--light-color);
}
.popular-blog-thumb img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    object-fit: cover;
    border-radius: 10px;
}
.popular-blog-text span {
    display: block;
    font-size: 12px;
    color: var(--dark-gray-color);
    margin-bottom: 6px;
}
.popular-blog-text .item-title {
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary-color);
    margin: 0;
}
@media(max-width:991px){
    .blog-detail-cover img {
        height: 260px;
    }

    .blog-detail-title {
        font-size: 24px;
    }
}

/* CTA */
.cta-section {
    position: relative;
}
.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 72px 30px;
    background: linear-gradient(135deg, #173b9b 0%, #0b2c78 100%);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.cta-box:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245,138,59,.3);
    filter: blur(10px);
}
.cta-box:after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    filter: blur(10px);
}
.cta-content,
.cta-actions {
    position: relative;
    z-index: 2;
}
.cta-content .title {
    font-size: 40px;
    line-height: 1.3;
    color: var(--light-color);
    margin-bottom: 20px;
}
.cta-content .desc {
    max-width: 760px;
    margin: 0 auto 60px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.5;
}
@media screen and (max-width: 991px) {
    .cta-box {
        padding: 50px 20px;
        border-radius: 24px;
    }
    .cta-content .title {
        font-size: 30px;
    }
    .cta-content .desc {
        font-size: 15px;
    }
}

/* Footer */
footer {
    background: var(--surface-soft);
    border-top: 1px solid rgba(15, 23, 42, .05);
    padding-bottom: 50px !important;
}
.footer-top {
}
.footer-widget .footer-logo {
    margin-bottom: 30px;
}
.footer-widget .footer-logo img {
    width: auto;
    height: 80px;
    object-fit: contain;
}
.footer-widget p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--dark-gray-color);
    font-weight: 100;
}
.footer-title {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-menu li {
    margin-top: 7px;
}
.footer-menu li a {
    font-size: 17px;
    color: var(--dark-gray-color);
    display: block;
    line-height: 1;
    padding: 5px 0;
}
.footer-menu li a:hover {
    color: var(--primary-color);
}
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 15px;
}
.footer-contact li a,
.footer-contact li p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    line-height: 1.5;
    font-size: 17px;
    color: var(--dark-gray-color);
    font-weight: 400;
}
.footer-contact li i {
    background-color: var(--semi-gray-color);
    color: var(--light-color);
    width: 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 12px;
    font-size: 20px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.footer-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    padding: 30px 0 0 0;
    border-top: 1px solid rgba(15, 23, 42, .05);
    margin-top: 30px;
}
.footer-bottom p,
.footer-bottom a {
    font-size: 15px;
    color: var(--dark-gray-color);
    line-height: 1.2;
}

/* Form Elements */
input,
textarea,
select {
    width: 100%;
    min-height: 54px;
    border: none;
    outline: none;
    background: #eef2f7;
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--title-color);
    font-size: 15px;
    transition: all ease-in .3s;
}
textarea {
    min-height: 140px;
    resize: none;
    padding-top: 16px;
}
input:focus,
textarea:focus,
select:focus {
    background: #eef2f7;
    box-shadow: 0 0 0 2px rgba(11, 44, 120, .18);
}
input::placeholder,
textarea::placeholder {
    color: #98a2b3;
}

/* Utilities */
.bg-surface {
    background-color: var(--surface-color);
}
.text-primary {
    color: var(--primary-color);
}
.text-secondary {
    color: var(--secondary-color);
}
.radius-20 {
    border-radius: 20px;
}
.shadow-card {
    box-shadow: var(--shadow-sm);
}

/* Corporate */
.about-hero-section {
    position: relative;
}
.about-hero-title {
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}
.about-hero-title span {
    color: #5a2a12;
}
.about-hero-desc {
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}
.about-hero-desc p {
    margin-bottom: 15px;
}
.about-hero-desc p:last-child {
    margin-bottom: 0;
}
.about-hero-image {
    position: relative;
}
.about-hero-image-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #dbe7f4 0%, #edf3f9 100%);
}
.about-hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mission-vision-section {
    background: #f2f5f8;
}
.mission-card {
    position: relative;
    border-radius: 12px;
    transition: all ease-in .3s;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15, 23, 42, .05);
    box-shadow: var(--shadow-sm);
    padding: 35px;
    margin-bottom: 30px;
    display: block;
}
.mission-card:hover {
    transform: translateY(-10px);
}
.mission-card h2 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0;
}
.mission-card .title {
    color: var(--primary-color);
}
.values-section {
    background: var(--surface-color);
}
.value-card {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(15, 23, 42, .04);
    border-radius: 12px;
    padding: 25px;
    transition: all ease-in .3s;
    margin-bottom: 30px;
}
.value-card:hover {
    transform: translateY(-6px);
    background: var(--surface-card);
    box-shadow: var(--shadow-md);
}
.value-icon {
    border-radius: 12px;
    background: rgba(59, 130, 246, .10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 10px;
}
.value-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.value-card .title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.value-card .text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

.why-us-section {
    position: relative;
}
.why-us-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #dbe7f4 0%, #edf3f9 100%);
}
.why-us-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.why-us-content {
    max-width: 620px;
    padding-left: 10px;
}
.why-us-content .top {
    font-size: 27px;
    line-height: 1.5;
    color: var(--dark-color);
    margin-bottom: 30px;
}
.why-us-content .title {
    font-size: 25px;
    line-height: 1.05;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.why-us-content .text {
    font-size: 16px;
}
.why-us-content .text p:last-child {
    margin: 0;
}

.about-cta-section {
    background: var(--surface-color);
}
.about-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 60px 30px;
    background: linear-gradient(135deg, #12399a 0%, #3653b6 100%);
    box-shadow: var(--shadow-lg);
}
.about-cta-box:before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(11, 44, 120, .35);
}
.about-cta-box:after {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.about-cta-content,
.about-cta-actions {
    position: relative;
    z-index: 2;
}
.about-cta-content h2 {
    font-size: 46px;
    line-height: 1.14;
    color: var(--light-color);
    margin-bottom: 16px;
}
.about-cta-content p {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,.82);
}
.about-cta-box .primary-btn.outline-btn {
    border-color: rgba(255,255,255,.30);
}
@media screen and (max-width: 991px) {
    .about-hero-image {
        margin-top: 30px;
    }
}
@media screen and (max-width: 575px) {
    .about-hero-title {
        font-size: 33px;
    }
    .about-hero-stats {
        gap: 18px !important;
        align-items: flex-start !important;
        flex-direction: column;
    }
    .stat-item h3 {
        font-size: 32px;
    }
    .mission-card,
    .vision-card,
    .value-card,
    .about-cta-box {
        border-radius: 20px;
    }
    .why-us-item {
        gap: 14px;
    }
    .why-us-text h3 {
        font-size: 18px;
    }
}

/* Service */
.service-hero-section {
    position: relative;
    overflow: hidden;
}
.service-hero-section:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 138, 59, .10) 0%, rgba(245, 138, 59, 0) 72%);
    pointer-events: none;
}
.service-hero-content {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
.service-hero-content img {
    width: 40px;
    height: 40px;
}
.service-hero-title {
    font-size: 25px;
    line-height: 1.5;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}
.service-hero-title span {
    color: var(--secondary-color);
}
.service-hero-text {
    position: relative;
    padding: 0 20px;
    margin-top: 30px;
    border-left: 1px solid rgba(245, 138, 59, .45);
    border-right: 1px solid rgba(245, 138, 59, .45);
}
.service-hero-text p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 15px;
}
.service-hero-text p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .service-hero-title {
        font-size: 64px;
    }
}

@media screen and (max-width: 1199px) {
    .service-hero-title {
        font-size: 52px;
    }
    .service-feature-card h2,
    .service-audit-content h2 {
        font-size: 36px;
    }
    .service-side-card-dark h3,
    .service-side-card-light h3,
    .service-company-content h3,
    .service-cta-content h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {
    .service-hero-section {
        padding-top: 120px;
    }
    .service-hero-title {
        font-size: 42px;
    }
    .service-hero-text {
        margin-left: 0;
        max-width: 100%;
    }
    .service-feature-card,
    .service-side-card.service-side-card-dark,
    .service-side-card.service-side-card-light,
    .service-company-card,
    .service-audit-card,
    .service-cta-box {
        padding: 28px 22px;
    }
    .service-feature-card,
    .service-side-card.service-side-card-dark,
    .service-company-card {
        min-height: auto;
    }
    .service-audit-image img {
        height: 280px;
    }
    .service-cta-content h2 {
        font-size: 34px;
    }
}

@media screen and (max-width: 767px) {
    .service-feature-card h2,
    .service-audit-content h2 {
        font-size: 30px;
    }
    .service-side-card-dark h3,
    .service-side-card-light h3,
    .service-company-content h3 {
        font-size: 28px;
    }
    .service-feature-bg-icon {
        font-size: 72px;
    }
}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 575px) {
    .service-hero-title {
        font-size: 34px;
    }
    .service-hero-text {
        padding-left: 16px;
    }
    .service-side-bg-icon {
        font-size: 90px;
    }
    .service-feature-card,
    .service-side-card,
    .service-company-card,
    .service-audit-card,
    .service-cta-box {
        border-radius: 18px;
    }
    .service-company-mini-card {
        min-height: 100px;
    }
    .service-cta-content h2 {
        font-size: 30px;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, .05);
}
.breadcrumb-section:before {
    content: "";
    position: absolute;
    top: -120px;
    left: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .10) 0%, rgba(59, 130, 246, 0) 72%);
    pointer-events: none;
}
.breadcrumb-content {
    position: relative;
}
.breadcrumb-title {
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}
.breadcrumb-title span {
    color: #5a2a12;
}
.breadcrumb-desc {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 20px 0 0 0;
}

/* Blog Filter */
.blog-filter-section {
    background: var(--surface-color);
}
.blog-filter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.blog-search-box {
    position: relative;
    flex: 1;
}
.blog-search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #98a2b3;
}
.blog-search-box input {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(15, 23, 42, .05);
    box-shadow: var(--shadow-sm);
    padding-left: 48px;
    min-height: 54px;
}
.blog-filter-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.blog-filter-tabs a {
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15, 23, 42, .05);
    color: var(--title-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.blog-filter-tabs a.active,
.blog-filter-tabs a:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
.blog-main-section {
    background: var(--surface-color);
}
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.blog-sidebar-card,
.blog-newsletter-card,
.blog-list-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all ease-in .3s;
}
.blog-sidebar-card,
.blog-list-card {
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(15, 23, 42, .05);
    box-shadow: var(--shadow-sm);
}
.blog-sidebar-card {
    padding: 25px;
}
.blog-sidebar-card .title,
.blog-newsletter-card .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 25px;
}
.blog-sidebar-card h3 i {
    font-size: 18px;
}
.blog-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-category-list li {
    margin-bottom: 15px;
}
.blog-category-list li:last-child {
    margin-bottom: 0;
}
.blog-category-list li a {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    background: #f7f9fc;
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(15, 23, 42, .04);
}
.blog-category-list li a:hover {
    background: var(--light-color);
    box-shadow: var(--shadow-sm);
}
.blog-category-list li a b {
    min-width: 34px;
    height: 28px;
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(59, 130, 246, .10);
    color: var(--primary-color);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-newsletter-card {
    padding: 25px;
    background: linear-gradient(135deg, #173b9b 0%, #244db8 100%);
    box-shadow: var(--shadow-lg);
}
.blog-newsletter-card .title,
.blog-newsletter-card p {
    color: var(--light-color);
}
.blog-newsletter-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,.82);
    margin-bottom: 20px;
}
.blog-newsletter-card form input {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--light-color);
    margin-bottom: 14px;
}
.blog-newsletter-card form input::placeholder {
    color: rgba(255,255,255,.60);
}
.blog-newsletter-card form input:focus {
    box-shadow: 0 0 0 2px rgba(255,255,255,.18);
}
.blog-newsletter-card .primary-btn:hover {
    box-shadow: 0 15px 35px rgba(110, 40, 0, .25);
}

.blog-list-card {
    height: 100%;
}
.blog-list-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-list-image {
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-list-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all ease-in .5s;
}
.blog-list-card:hover .blog-list-image img {
    transform: scale(1.04);
}
.blog-list-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    min-height: 25px;
    padding: 5px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.blog-list-content {
    padding: 20px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.blog-meta span {
    font-size: 12px;
    color: var(--dark-gray-color);
}
.blog-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c0c8d6;
}
.blog-list-content .title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.blog-list-content .title a {
    color: var(--primary-color);
}
.blog-list-content .desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 15px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color);
}
.blog-read-more i {
    font-size: 13px;
    transition: all ease-in .3s;
}
.blog-read-more:hover {
    color: var(--primary-color);
}
.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
}
.blog-pagination a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(15, 23, 42, .05);
    box-shadow: var(--shadow-sm);
    color: var(--title-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blog-pagination a.active,
.blog-pagination a:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

@media screen and (max-width: 1199px) {
    .blog-filter-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-search-box {
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .blog-hero-desc {
        font-size: 16px;
    }
    .blog-sidebar-card h3,
    .blog-newsletter-card h3 {
        font-size: 20px;
    }
    .blog-sidebar {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .blog-filter-tabs {
        gap: 8px;
    }
}

@media screen and (max-width: 575px) {
    .blog-pagination {
        gap: 8px;
    }
}

/* Contact */
.contact-hero-section {
    position: relative;
    padding-top: 150px;
    background: var(--surface-color);
}
.contact-hero-content { max-width: 820px; }
.contact-hero-title {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}
.contact-hero-title span { color: var(--secondary-color); }
.contact-hero-desc {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
}
.contact-main-section { background: var(--surface-color); }
.contact-form-card {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(15,23,42,.05);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}
.contact-form-wrap label {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.05);
    padding: 10px 15px;
    font-size: 14px;
}
.contact-form-wrap textarea {
    resize: none;
}
.contact-info-wrap {
    position: relative;
}
.contact-info-card {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,.9);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(15,23,42,.05);
    margin-bottom: 30px;
}
.contact-info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.contact-info-content span {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--dark-gray-color);
}
.contact-info-content h3 {
    font-size: 18px;
    margin: 4px 0;
}
.contact-info-wrap .maps {
    background: rgba(255, 255, 255, .9);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(15, 23, 42, .05);
    margin-bottom: 30px;
}
.contact-support-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #22c55e;
    border-radius: 18px;
    padding: 22px;
    color: #fff;
}
.contact-whatsapp-btn {
    background: #fff;
    color: #22c55e;
    border-radius: 12px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-map-box {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}
.contact-map-bg img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.contact-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}
.contact-map-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    max-width: 300px;
}
.contact-map-link {
    display: inline-flex;
    gap: 6px;
    margin-top: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

@media(max-width:991px){
    .contact-info-card {
        margin-bottom: 15px;
    }
}

/* Calculation */
.calculation-main-section,
.extra-tools-section {
    background: var(--surface-color);
}
.salary-calculator-card,
.vat-calculator-card,
.mini-calculator-card,
.extra-tool-card {
    transition: all ease-in .3s;
}
.salary-calculator-card,
.vat-calculator-card,
.mini-calculator-card {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15, 23, 42, .05);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.salary-calculator-card,
.mini-calculator-card,
.vat-calculator-card {
    overflow: hidden;
}
.salary-calculator-card:hover,
.vat-calculator-card:hover,
.mini-calculator-card:hover,
.extra-tool-card:hover {
    transform: translateY(-5px);
}

.salary-calculator-card {
    padding: 30px;
}
.salary-calculator-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 12px;
    background: rgba(59, 130, 246, .12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.calculator-form-side .form-group {
    margin-bottom: 20px;
}
.calculator-form-side label,
.vat-calculator-card label,
.mini-calculator-card label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary-color);
}
.salary-calc-btn {
    min-height: 54px;
}
.calculator-result-box {
    height: 100%;
    background: #f4f7fb;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.calculator-result-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark-gray-color);
}
.calculator-result-list {
    margin-bottom: 18px;
}
.calculator-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.calculator-result-item.no-border {
    border-bottom: none;
}
.calculator-result-item span {
    font-size: 15px;
    color: var(--title-color);
}
.calculator-result-item strong {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}
.calculator-note-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fde6d8;
    border-radius: 14px;
}
.calculator-note-box i {
    color: #4d1f00;
    font-size: 18px;
}
.calculator-note-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #4d1f00;
}

.vat-calculator-card {
    height: 100%;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.vat-rate-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.vat-rate-buttons button {
    min-width: 74px;
    min-height: 44px;
    border-radius: 12px;
    border: none;
    background: rgba(0,0,0,.12);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    transition: all ease-in .3s;
}
.vat-rate-buttons button.active,
.vat-rate-buttons button:hover {
    background: var(--secondary-color);
    color: var(--light-color);
}
.vat-total-box {
    margin-top: 30px;
    background: var(--light-gray-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.vat-total-box span {
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.vat-total-box strong {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.mini-calculator-card {
    padding: 30px;
}
.mini-calculator-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.mini-calculator-icon {
    border-radius: 12px;
    background: rgba(59, 130, 246, .12);
    color: var(--primary-color);
    padding: 10px;
}
.mini-calculator-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.mini-calculator-head .title {
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}
.mini-calculator-head .desc {
    font-size: 15px;
    color: var(--dark-gray-color);
}
.mini-outline-btn {
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 14px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    transition: all ease-in .3s;
}
.mini-outline-btn:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
.mini-outline-btn.secondary-outline {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}
.mini-outline-btn.secondary-outline:hover {
    background: var(--secondary-color);
    color: var(--light-color);
}
.calculator-input-icon {
    position: relative;
}
.calculator-input-icon i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--dark-gray-color);
    font-size: 14px;
}
.calculator-input-icon input {
    padding-left: 42px;
}

.extra-tool-card {
    width: 100%;
    min-height: 148px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15, 23, 42, .05);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 24px 18px;
}
.extra-tool-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f4f7fb;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.extra-tool-card h3 {
    font-size: 18px;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 0;
}

@media screen and (max-width: 1399px) {
    .calculation-hero-title {
        font-size: 62px;
    }
}

@media screen and (max-width: 1199px) {
    .calculation-hero-title {
        font-size: 52px;
    }
    .mini-calculator-head h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 991px) {
    .calculation-hero-section {
        padding-top: 120px;
    }
    .calculation-hero-title {
        font-size: 42px;
    }
    .calculation-hero-desc {
        font-size: 16px;
    }
    .salary-calculator-card,
    .mini-calculator-card,
    .vat-calculator-card {
        padding: 26px 22px;
    }
    .vat-total-box {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .calculator-result-item strong {
        font-size: 18px;
    }
    .mini-calculator-head h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 575px) {
    .calculation-hero-title {
        font-size: 34px;
    }
    .salary-calculator-card,
    .vat-calculator-card,
    .mini-calculator-card,
    .extra-tool-card,
    .calculator-result-box {
        border-radius: 18px;
    }
    .vat-rate-buttons {
        flex-wrap: wrap;
    }
    .vat-rate-buttons button {
        flex: 1 1 calc(33.333% - 7px);
        min-width: 0;
    }
    .vat-total-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .extra-tool-card {
        min-height: 130px;
    }
}

/* 404 */
.error-page-section {
    position: relative;
    background: var(--surface-color);
}

.error-page-box {
    max-width: 780px;
    margin: 0 auto;
}

.error-code-wrap {
    position: relative;
    display: inline-block;
    margin: 20px 0 30px;
}

.error-code {
    font-size: 140px;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.error-code-shadow {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(11,44,120,.08);
    z-index: 1;
}

.error-page-title {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.error-page-desc {
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.error-page-actions .primary-btn {
    min-width: 180px;
}

@media(max-width:991px){
    .error-code,
    .error-code-shadow {
        font-size: 90px;
    }
    .error-page-title {
        font-size: 24px;
    }
}

@media(max-width:575px){
    .error-code,
    .error-code-shadow {
        font-size: 70px;
    }
    .error-page-title {
        font-size: 20px;
    }
}

/* Gallery */
.gallery {
    position: relative;
}
.gallery .item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .05);
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    margin-top: 30px;
}
.gallery .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery .item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 44, 120, .28), rgba(11, 44, 120, .06));
    opacity: 0;
    transition: all .35s ease;
    z-index: 1;
}
.gallery .item:hover {
    transform: translateY(-10px);
    transition: all .35s ease;
}
.gallery .item:hover img {
    transform: scale(1.06);
}
.gallery .item:hover:before,
.gallery .item:hover:after {
    opacity: 1;
}
.gallery .item:hover:after {
    transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 991px) {
    .gallery .item img {
        height: 220px;
    }
}
@media screen and (max-width: 575px) {
    .gallery .item {
        border-radius: 12px;
    }

    .gallery .item img {
        height: 200px;
    }
}

/* Faq */
.faq-section {
    background: var(--surface-color);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}
.faq-item {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15, 23, 42, .05);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all .3s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
    cursor: pointer;
}
.faq-question span {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--primary-color);
}
.faq-question i {
    color: var(--primary-color);
    font-size: 15px;
}
.faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid var(--light-gray-color);
}
.faq-answer p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-color);
    margin: 0;
    max-width: 90%;
}

@media screen and (max-width: 991px) {
    .faq-question {
        padding: 18px 20px;
    }
    .faq-question span {
        font-size: 16px;
    }
    .faq-answer {
        padding: 0 20px 18px;
    }
    .faq-answer p {
        max-width: 100%;
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .faq-item {
        border-radius: 14px;
    }
    .faq-question {
        padding: 16px 16px;
        gap: 14px;
    }
    .faq-question span {
        font-size: 15px;
    }
    .faq-question i {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 10px;
    }
    .faq-answer {
        padding: 0 16px 16px;
    }
}

.wp-widget {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 15px;
}
.wp-widget a {
    font-size: 16px;
    background: #25d366;
    color: #fff;
    padding: 5px 9px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.wp-widget a i {
    font-size: 2rem;
    margin-left: 10px;
}

.form-error,
.form-error p {
    font-style: italic;
    color: darkred;
    line-height: 1;
    font-size: 12px;
    margin-top: 5px;
}