:root {
    --primary: #084d9c;
    --primary-light: #001d62;
    --secondary: #feb402;
    --secondary-dark: #feb402;
    --white: #ffffff;
    --black: #1d1d1d;
    --text: #404040;
    --gray: #727272;
    --border: #ececec;
    --bg: #f7f8fb;
    --radius: 22px;
    --radius-sm: 12px;
    --shadow-sm: 0 8px 25px rgba(0, 0, 0, .05);
    --shadow: 0 18px 45px rgba(0, 0, 0, .08);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, .12);
    --transition: .35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

button {
    transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    position: relative;
}

.container {
    max-width: 1280px;
}

h1,
h2,
h3,
h4,
.title-heading {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--primary) !important;
    line-height: 1.15;
    font-weight: 800 !important;
}

h1 {
    font-size: 72px;
}

h2, h3, h4, .title-heading {
    font-size: 40px !important;
}

.title-heading span {
    color: var(--secondary);
}

p {
    color: var(--gray);
    margin-bottom: 0;
}

.text-gold {
    color: var(--secondary);
}

.text-primary-custom {
    color: var(--primary);
}

.btn {
    border-radius: 14px;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: none;
}

.btn i {
    transition: .3s;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-consult {
    background: linear-gradient(135deg,
            var(--secondary),
            var(--secondary-dark));
    color: #fff;
    padding: 15px 28px;
    border-radius: 14px;
    font-weight: 600;
}

.btn-consult:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 154, 61, .35);
}

.navbar-custom {
    padding: 18px 0;
    transition: .4s;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: 120px;
    transition: var(--transition);
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 18px !important;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 0;
    height: 2px;
    border-radius: 50px;
    background: var(--secondary);
    transition: .35s;
}

.nav-link:hover::after {
    width: calc(100% - 36px);
}

.nav-link.active::after {
    width: calc(100% - 36px);
}

.dropdown-menu {
    border: none;
    border-radius: 18px;
    padding: 15px 0;
    min-width: 230px;
    margin-top: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
    animation: dropdownFade .25s ease;
}

.dropdown-item {
    padding: 13px 24px;
    font-weight: 500;
    color: var(--text);
    transition: .25s;
}

.dropdown-item:hover {
    background: #f7f8fb;
    color: var(--secondary);
    padding-left: 30px;
}

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.navbar-toggler {
    border: none;
    padding: 0;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 2rem;
    height: 2rem;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.radius {
    border-radius: var(--radius);
}

.bg-white {
    background: #fff;
}

.bg-primary-custom {
    background: var(--primary);
}

.bg-gold {
    background: var(--secondary);
}

.text-white {
    color: #fff;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.hero-section {
    position: relative;
    padding: 180px 0 130px;
    overflow: hidden;
    background:
        radial-gradient(circle at left top,
            rgba(200, 154, 61, .08),
            transparent 35%),
        linear-gradient(180deg,
            #ffffff 0%,
            #fafbfd 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 520px;
    height: 520px;
    background: rgba(200, 154, 61, .06);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeUp .9s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(200, 154, 61, .25);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.hero-content h1 {
    font-size: 62px !important;
    margin-bottom: 28px;
    color: var(--primary);
    line-height: 1.05;
    max-width: 640px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    max-width: 560px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 42px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg,
            var(--primary),
            #18355e);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 34px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 18px 40px rgba(16, 37, 68, .18);
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(16, 37, 68, .28);
}

.btn-outline-custom {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: var(--primary);
    border-radius: 14px;
    padding: 16px 34px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

.hero-image {
    position: relative;
    animation: fadeRight 1s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 36px;
    border: 1px solid rgba(200, 154, 61, .18);
    z-index: -1;
}

.hero-image::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -28px;
    height: 50px;
    background: rgba(0, 0, 0, .08);
    filter: blur(30px);
    border-radius: 50%;
    z-index: -2;
}

.feature-wrapper {
    position: relative;
    margin-top: -70px;
    z-index: 20;
}

.feature-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .04);
}

.feature-item {
    position: relative;
    padding: 42px 28px;
    text-align: center;
    height: 100%;
    transition: .35s;
}

.feature-item::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: 70%;
    background: #ececec;
}

.feature-item:last-child::after {
    display: none;
}

.feature-item:hover {
    background: #fcfcfc;
    transform: translateY(-6px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 22px;
    background: rgba(200, 154, 61, .10);
    color: var(--secondary);
    font-size: 30px;
    transition: .35s;
}

.feature-item:hover .feature-icon {
    background: var(--secondary);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.feature-item .feature-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #707070;
}

.hero-section .shape-1 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(16, 37, 68, .04);
    top: 120px;
    right: 10%;
    filter: blur(40px);
}

.hero-section .shape-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(200, 154, 61, .08);
    bottom: 80px;
    left: -60px;
    filter: blur(35px);
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.hero-content,
.hero-image,
.feature-item,
.feature-icon,
.btn-primary-custom,
.btn-outline-custom {
    transition: all .35s ease;
}



@media (min-width:1600px) {
    .container {
        max-width: 1450px;
    }

    .hero-section {
        padding: 210px 0 150px;
    }

    .hero-content h1 {
        font-size: 62px !important;
        max-width: 720px;
    }

    .hero-content p {
        max-width: 620px;
    }

    .hero-image img {
        border-radius: 34px;
    }
}

@media (max-width:1400px) {
    .container {
        max-width: 1180px;
    }

    .hero-content h1 {
        font-size: 56px !important;
    }
}

@media (max-width:1199px) {
    .hero-section {
        padding: 170px 0 120px;
    }

    .hero-content h1 {
        font-size: 46px !important;
    }

    .navbar-brand img {
        width: 60px;
    }

    .navbar-custom.scrolled .navbar-brand img {
        width: 70px;
    }

    .feature-item {
        padding: 35px 20px;
    }
}

@media (max-width:991px) {
    .navbar-custom {
        padding: 15px 0;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 20px;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 14px 0 !important;
        border-bottom: 1px solid #f2f2f2;
    }

    .nav-link::after {
        display: none;
    }

    .btn-consult {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .hero-section {
        padding: 150px 0 80px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 42px !important;
        max-width: 100%;
    }

    .hero-content p {
        margin: auto;
        margin-bottom: 40px;
        max-width: 680px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 650px;
        margin: auto;
    }

    .feature-wrapper {
        margin-top: -40px;
    }

    .feature-card {
        padding: 10px;
    }

    .feature-item::after {
        display: none;
    }
}

@media (max-width:768px) {
    h1 {
        font-size: 48px;
    }

    .hero-section {
        padding: 140px 0 70px;
    }

    .hero-content h1 {
        font-size: 44px !important;
    }

    .hero-content p {
        text-align: justify;
        font-size: 14px !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image img {
        border-radius: 24px;
    }

    .feature-card {
        border-radius: 24px;
    }

    .feature-item {
        padding: 28px 20px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
}

@media (max-width:576px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-brand img {
        width: 40px;
    }

    .navbar-custom.scrolled .navbar-brand img {
        width: 50px;
    }

    .hero-section {
        padding: 125px 0 60px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 15px;
    }

    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        padding: 15px 20px;
    }

    .hero-image img {
        border-radius: 20px;
    }

    .feature-wrapper {
        margin-top: 25px;
    }

    .feature-card {
        border-radius: 20px;
    }

    .feature-item {
        padding: 25px 15px;
    }

    .feature-item .feature-subtitle {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 14px;
    }
}

@media (max-width:390px) {
    .hero-content h1 {
        font-size: 32px !important;
    }

    .hero-badge {
        font-size: 10px;
    }

    .btn {
        font-size: 14px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
}

@media (hover:hover) {
    .navbar-brand:hover {
        transform: scale(.3);
    }

    .feature-card:hover {
        box-shadow: 0 35px 80px rgba(0, 0, 0, .10);
    }

    .hero-image:hover img {
        transform: scale(1.02);
    }

    .btn-primary-custom:hover,
    .btn-consult:hover {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

}

@media print {

    .navbar-custom,
    .hero-buttons,
    .feature-wrapper {
        display: none !important;
    }

    .hero-section {
        padding: 0;
    }

}


.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.progress-scroll {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: #feb402;
    z-index: 99999;
    transition: width .15s linear;
}

.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-label {
    color: #feb402;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 52px;
    color: #084d9c;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.btn-about {
    margin-top: 25px;
    border: none;
    border: 2px solid #feb402;
    color: #666;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.btn-about:hover {
    background: #e09e03;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

@media (max-width:1199px) {
    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 44px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width:991px) {
    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 40px;
    }

    .about-image {
        margin-top: 40px;
    }

    .about-image img {
        border-radius: 18px;
        max-height: 420px;
        object-fit: cover;
    }
}

@media (max-width:767px) {
    .about-section {
        padding: 60px 0;
    }

    .about-label {
        font-size: 13px;
    }

    .about-title {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .btn-about {
        padding: 13px 24px;
        font-size: 15px;
    }

    .about-image {
        margin-top: 35px;
    }

    .about-image img {
        border-radius: 16px;
    }
}

@media (max-width:575px) {
    .about-section {
        padding: 50px 0;
    }

    .about-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-title {
        font-size: 30px;
        margin: 12px 0 18px;
        line-height: 1.3;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .btn-about {
        width: 100%;
        justify-content: center;
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
    }

    .about-image {
        margin-top: 30px;
    }

    .about-image img {
        border-radius: 14px;
    }
}

@media (max-width:390px) {
    .about-title {
        font-size: 26px;
    }

    .about-content p {
        font-size: 13.5px;
    }

    .btn-about {
        font-size: 14px;
        padding: 14px;
    }
}

.why-section {
    background: #fff;
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    color: #feb402;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-heading h3 {
    font-size: 52px;
    color: #132645;
    line-height: 1.15;
    font-weight: 700;
}

.why-item {
    display: flex;
    gap: 28px;
    padding: 15px 35px;
    height: 100%;
    position: relative;
}

.why-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 1px;
    height: 120px;
    background: #ececec;
}

.col-lg-4:last-child .why-item::after {
    display: none;
}

.why-content .why-title {
    font-family: Georgia, serif;
    font-size: 22px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #132645;
    margin-bottom: 15px;
}

.why-content p {
    color: #6b7280;
    line-height: 1.9;
    font-size: 16px;
}

.why-item {
    transition: .35s;
}

.why-item:hover {
    transform: translateY(-8px);
}

@media(max-width:991px) {
    .section-heading h3 {
        font-size: 42px;
    }

    .why-item {
        padding: 0;
    }

    .why-item::after {
        display: none;
    }
}

@media(max-width:576px) {
    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h3 {
        font-size: 34px;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-content .why-title {
        font-size: 18px !important;
    }

    .why-content p {
        font-size: 15px;
    }
}

.choose-section {
    position: relative;
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.choose-section::before {
    content: "";
    position: absolute;
    left: -180px;
    top: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(200, 155, 60, .05);
    filter: blur(70px);
}

.choose-section ul {
    list-style: none;
    padding-left: 0;
}

.choose-section li {
    position: relative;
    padding-left: 20px;
}

.choose-section li::before {
    content: "»";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 15px;
}

.choose-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(16, 37, 68, .04);
    filter: blur(90px);
}

.choose-image {
    position: sticky;
    top: 120px;
}

.choose-image img {
    width: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .12);
}

.choose-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #feb402;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.choose-label::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #feb402;
}

.choose-heading {
    font-size: 56px;
    line-height: 1.15;
    color: #084d9c;
    margin-bottom: 25px;
}

.choose-heading span {
    color: #feb402;
}

.choose-description {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 45px;
}

.choose-list {
    display: flex;
    flex-direction: column;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #ECECEC;
    transition: .35s;
}

.choose-item:last-child {
    border-bottom: none;
}

.choose-item:hover {
    transform: translateX(8px);
}

.choose-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8EA;
    color: #feb402;
    font-size: 30px;
    transition: .35s;
    border: 1px solid rgba(200, 155, 60, .18);
}

.choose-item:hover .choose-icon {
    background: #feb402;
    color: #fff;
    transform: rotate(-8deg);
    box-shadow: 0 15px 35px rgba(200, 155, 60, .28);
}

.choose-content {
    flex: 1;
}

.choose-content p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

@media (max-width:1400px) {
    .choose-heading {
        font-size: 50px;
    }

    .choose-content h4 {
        font-size: 26px;
    }
}

@media (max-width:1199px) {
    .choose-section {
        padding: 90px 0;
    }

    .choose-heading {
        font-size: 44px;
    }
}

@media (max-width:991px) {
    .choose-section {
        padding: 40px 0;
    }

    .choose-image {
        position: relative;
        top: auto;
        margin-bottom: 45px;
    }

    .choose-image img {
        max-width: 620px;
        margin: auto;
    }

    .choose-heading {
        font-size: 40px;
    }

    .choose-description {
        margin-bottom: 35px;
    }

    .choose-item {
        padding: 18px 0;
    }
}

@media (max-width:768px) {
    .choose-section {
        padding: 70px 0;
    }

    .choose-heading {
        font-size: 36px;
    }

    .choose-description {
        font-size: 16px;
    }

    .choose-item {
        gap: 16px;
    }

    .choose-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
    }
}

@media (max-width:576px) {
    .choose-section {
        padding: 60px 0;
    }

    .choose-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .choose-heading {
        font-size: 30px;
        line-height: 1.25;
    }

    .choose-description {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .choose-item {
        gap: 14px;
        padding: 16px 0;
    }

    .choose-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

@media (max-width:390px) {
    .choose-heading {
        font-size: 27px;
    }
}

@media (hover:hover) {
    .choose-image img {
        transition: .4s;
    }

    .choose-image:hover img {
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion:reduce) {

    .choose-item,
    .choose-image img,
    .btn-choose,
    .choose-footer {
        transition: none !important;
    }
}

.legal-services-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top,
            rgba(200, 138, 27, .10),
            transparent 45%),
        #fff;
    padding: 90px 0;
}

.legal-services-section .container {
    position: relative;
    z-index: 2;
}

.section-heading {
    max-width: 760px;
    margin: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .85rem;
}

.section-badge::before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.section-badge::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    margin-top: 20px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary);
    font-family: Georgia, serif;
}

.section-title span {
    color: var(--gold);
}

.section-description {
    max-width: 650px;
    margin: 25px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.text-gold {
    color: var(--gold);
}

.text-primary-dark {
    color: var(--primary);
}

.bg-primary-dark {
    background: var(--primary);
}

.bg-gold {
    background: var(--gold);
}

.rounded-xl {
    border-radius: 18px;
}

.shadow-soft {
    box-shadow: var(--shadow);
}

#servicesWrapper {
    position: relative;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.services-title {
    font-family: "Inter", sans-serif !important;
    text-align: center !important;
    font-weight: 800 !important;
    color: #111 !important;
    font-size: 18px !important;
}

.service-btn {
    display: block;
    margin: auto;
    margin-top: 20px;
    text-align: center;
    padding: 10px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg,
            #f8cd09,
            #feb402);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.service-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 14px 30px rgba(16, 43, 92, .25);
}

.service-card:nth-child(even) .service-btn {
    background: linear-gradient(135deg,
            var(--gold),
            var(--gold-dark));
}

.service-card:nth-child(even) .service-btn:hover {
    box-shadow:
        0 14px 30px rgba(200, 138, 27, .30);

}

.bottom-consultation {
    background: #fff;
    border: 1px solid rgba(200, 138, 27, .25);
    border-radius: 24px;
    padding: 35px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, .05);
}

.consult-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.consult-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    flex-shrink: 0;
}

.consult-left h2 {
    color: var(--primary);
    margin-bottom: 10px;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.consult-left p {
    color: var(--muted);
    margin: 0;
    line-height: 1.8;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 240px;
    height: 62px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg,
            #f8cd09,
            #feb402);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .35s;
}

.consult-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 35px rgba(200, 138, 27, .30);
}

.consult-btn i {
    transition: .35s;
}

.consult-btn:hover i {
    transform: translateX(5px);
}

.service-item {
    animation: fadeUp .8s ease both;
}

.service-item:nth-child(2) {
    animation-delay: .08s;
}

.service-item:nth-child(3) {
    animation-delay: .16s;
}

.service-item:nth-child(4) {
    animation-delay: .24s;
}

.service-item:nth-child(5) {
    animation-delay: .32s;
}

.service-item:nth-child(6) {
    animation-delay: .40s;
}

.service-item {
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.service-item.hide {
    display: none !important;
}

@media (max-width:992px) {
    .service-top {
        flex-direction: column;
    }

    .consult-left {
        flex-direction: column;
        text-align: center;
    }

    .consult-btn {
        width: 100%;
    }
}

@media (max-width:768px) {
    .service-card {
        padding: 24px;
    }

    .services-title {
        font-size: 16px !important;
    }

    .consult-left h2 {
        font-size: 1.6rem;
    }

    .consult-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }
}

@media (max-width:576px) {
    .service-btn {
        width: 100%;
    }

    .bottom-consultation {
        padding: 24px;
    }
}

.cmm-advantage-section {
    position: relative;
    padding: 70px 0;
    background: #f7f8fb;
    overflow: hidden;
}

.cmm-advantage-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(197, 155, 67, .08);
    filter: blur(120px);
}

.cmm-advantage-section::after {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(20, 33, 61, .06);
    filter: blur(120px);
}

.cmm-advantage-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 18px 60px rgba(0, 0, 0, .06);
}

.cmm-advantage-image {
    position: relative;
    height: 100%;
}

.cmm-advantage-image img {
    width: 100%;
    height: 100%;
    min-height: 820px;
    object-fit: cover;
    display: block;
}

.cmm-advantage-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(20, 33, 61, .05),
            rgba(255, 255, 255, .04));
}

.cmm-advantage-body {
    position: relative;
    padding: 70px 60px;
}

.cmm-advantage-header {
    text-align: center;
    margin-bottom: 70px;
}

.cmm-advantage-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #feb402;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cmm-advantage-subtitle::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #feb402;
}

.cmm-advantage-title {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    color: #084d9c;
}

.cmm-advantage-title span {
    color: #feb402;
}

.cmm-advantage-timeline {
    position: relative;
}

.cmm-advantage-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e6c98a;
    transform: translateX(-50%);
}

.cmm-advantage-column {
    padding-left: 50px;
    padding-right: 50px;
}

.cmm-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 50px;
    position: relative;
}

.cmm-advantage-item:last-child {
    margin-bottom: 0;
}

.cmm-advantage-icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #084d9c;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow:
        0 12px 28px rgba(20, 33, 61, .18);
}

.cmm-advantage-content {
    flex: 1;
}

.cmm-advantage-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #feb402;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow:
        0 8px 20px rgba(197, 155, 67, .30);
}

.cmm-advantage-heading {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #084d9c;
    line-height: 1.35;
    margin-bottom: 12px;
}

.cmm-advantage-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

.cmm-advantage-item::after {
    content: "";
    position: absolute;
    top: 30px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #feb402;
    border: 3px solid #ffffff;
    box-shadow:
        0 0 0 4px rgba(197, 155, 67, .15);
}

.cmm-advantage-column:first-child .cmm-advantage-item::after {
    right: -58px;
}

.cmm-advantage-column:last-child .cmm-advantage-item::after {
    left: -58px;
}

.cmm-advantage-wrapper {
    transition: all .35s ease;
}

.cmm-advantage-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
}

.cmm-advantage-image img {
    transition: transform .8s ease;
}

.cmm-advantage-wrapper:hover .cmm-advantage-image img {
    transform: scale(1.05);
}

.cmm-advantage-item {
    padding: 18px;
    border-radius: 18px;
    transition: all .35s ease;
}

.cmm-advantage-item:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .08);
}

.cmm-advantage-item:hover .cmm-advantage-icon {
    background: #feb402;
    transform: rotate(-6deg) scale(1.05);
}

.cmm-advantage-item:hover .cmm-advantage-heading {
    color: #feb402;
}

.cmm-advantage-item:hover .cmm-advantage-number {
    transform: scale(1.08);
}

.cmm-advantage-icon,
.cmm-advantage-heading,
.cmm-advantage-number {
    transition: all .35s ease;
}

@media (max-width:991.98px) {
    .cmm-advantage-section {
        padding: 40px 0;
    }

    .cmm-advantage-body {
        padding: 45px 35px;
    }

    .cmm-advantage-image img {
        min-height: 420px;
    }

    .cmm-advantage-header {
        margin-bottom: 45px;
    }

    .cmm-advantage-title {
        font-size: 36px;
    }

    .cmm-advantage-column {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cmm-advantage-line {
        left: 36px;
        transform: none;
    }

    .cmm-advantage-item {
        margin-bottom: 35px;
    }

    .cmm-advantage-item::after {
        left: 29px !important;
        right: auto !important;
    }
}

@media (max-width:767.98px) {
    .cmm-advantage-wrapper {
        border-radius: 22px;
    }

    .cmm-advantage-body {
        padding: 35px 22px;
    }

    .cmm-advantage-image img {
        min-height: 300px;
    }

    .cmm-advantage-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .cmm-advantage-title {
        font-size: 30px;
    }

    .cmm-advantage-subtitle {
        justify-content: center;
    }

    .cmm-advantage-column {
        padding: 0;
    }

    .cmm-advantage-line {
        left: 26px;
    }

    .cmm-advantage-item {
        gap: 15px;
        margin-bottom: 28px;
    }

    .cmm-advantage-item::after {
        left: 19px !important;
    }

    .cmm-advantage-icon {
        width: 56px;
        min-width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .cmm-advantage-number {
        width: 34px;
        height: 34px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .cmm-advantage-heading {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .cmm-advantage-text {
        font-size: 15px;
        line-height: 1.75;
    }
}

@media (max-width:575.98px) {
    .cmm-advantage-section {
        padding: 60px 0;
    }

    .cmm-advantage-wrapper {
        border-radius: 18px;
    }

    .cmm-advantage-body {
        padding: 28px 18px;
    }

    .cmm-advantage-title {
        font-size: 26px;
    }

    .cmm-advantage-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .cmm-advantage-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .cmm-advantage-heading {
        font-size: 18px;
    }

    .cmm-advantage-text {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion:reduce) {

    .cmm-advantage-wrapper,
    .cmm-advantage-item,
    .cmm-advantage-icon,
    .cmm-advantage-number,
    .cmm-advantage-image img {
        transition: none !important;
    }
}

.faq {
    --faq-navy: #0D3B82;
    --faq-navy-dark: #062B67;
    --faq-blue: #1455A0;
    --faq-gold: #F9B900;
    --faq-gold-light: #FFF5D6;
    --faq-text: #52627A;
    --faq-heading: #0D3B82;
    --faq-bg: #F8F9FB;

    position: relative;
    width: 100%;
    padding: 90px 20px 85px;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #fafbfc 50%,
            #f5f7fa 100%);

    box-sizing: border-box;
    overflow: hidden;
}

.faq *,
.faq *::before,
.faq *::after {
    box-sizing: border-box;
}

.faq-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.faq-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border: 1px solid rgba(249, 185, 0, 0.35);
    border-radius: 30px;
    color: var(--faq-gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.8);
}

.faq-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--faq-gold);
}

.faq-heading h2 {
    color: var(--faq-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.12;
}

.faq-heading h2 span {
    color: var(--faq-gold);
}

.faq-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--faq-text);
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.faq-layout {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 28px;
    align-items: stretch;
}

.faq-image-card {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
    box-shadow:
        0 15px 40px rgba(13, 59, 130, 0.08);
}

.faq-image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-image-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.80) 28%,
            rgba(255, 255, 255, 0.15) 65%,
            rgba(7, 39, 88, 0.30) 100%);
}

.faq-image-content {
    position: relative;
    z-index: 2;
    padding: 55px 38px;
}

.faq-image-content h3 {
    margin: 0 0 20px;
    color: var(--faq-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.08;
}

.faq-image-content h3 span {
    color: var(--faq-gold);
}

.faq-image-content p {
    max-width: 270px;
    margin: 0 0 30px;
    color: #52627A;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.faq-primary-btn,
.faq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.faq-primary-btn {
    padding: 14px 20px;
    border-radius: 9px;
    color: #fff;
    background: var(--faq-navy);
    box-shadow: 0 8px 20px rgba(13, 59, 130, 0.20);
}

.faq-primary-btn:hover {
    color: #fff;
    background: var(--faq-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(13, 59, 130, 0.28);
}

.faq-btn-icon {
    font-size: 12px;
}

.faq-arrow {
    font-size: 17px;
    line-height: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #E8EDF4;
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 5px 20px rgba(15, 48, 87, 0.045);
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.faq-item:hover {
    border-color: rgba(249, 185, 0, 0.35);
    box-shadow:
        0 8px 25px rgba(15, 48, 87, 0.07);
}

.faq-item.active {
    border-color: rgba(13, 59, 130, 0.12);
    background: #F8FAFE;
    box-shadow:
        0 8px 25px rgba(13, 59, 130, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px;
    border: 0;
    outline: 0;
    cursor: pointer;
    color: var(--faq-navy);
    background: transparent;
    text-align: left;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-question>span:first-child {
    flex: 1;
}

.faq-icon {
    position: relative;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--faq-gold);
    border-radius: 50%;
}

.faq-icon span {
    position: absolute;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    background: var(--faq-gold);
    transition: transform .3s ease;
}

.faq-icon span:nth-child(2) {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon span:nth-child(2) {
    transform: rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition:
        grid-template-rows .35s ease;
}

.faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 25px;
    color: var(--faq-text);
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    opacity: 0;
    transition:
        opacity .25s ease,
        padding .35s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding:
        0 25px 24px;
    opacity: 1;
}

@media (max-width: 991px) {

    .faq {
        padding:
            70px 25px;
    }

    .faq-layout {
        grid-template-columns: 300px 1fr;
        gap: 20px;
    }

    .faq-image-card {
        min-height: 650px;
    }

    .faq-image-content {
        padding: 40px 28px;
    }

    .faq-image-content h3 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer p {
        padding:
            0 20px 20px;
    }

}

@media (max-width: 767px) {

    .faq {
        padding:
            60px 16px;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-heading p {
        font-size: 14px;
    }

    .faq-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .faq-image-card {
        min-height: 430px;
        border-radius: 16px;
    }

    .faq-image-content {
        padding: 35px 28px;
    }

    .faq-image-content h3 {
        font-size: 32px;
    }

    .faq-image-content p {
        max-width: 260px;
        font-size: 14px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        padding: 18px 16px;
        gap: 12px;
        font-size: 15px;
    }

    .faq-icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
    }

    .faq-icon span {
        width: 10px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.65;
    }

    .faq-item.active .faq-answer p {
        padding:
            0 16px 18px;
    }
}

@media (max-width: 480px) {

    .faq-heading h2 {
        font-size: 29px;
    }

    .faq-image-card {
        min-height: 400px;
    }

    .faq-image-content h3 {
        font-size: 29px;
    }

    .faq-primary-btn {
        padding: 13px 17px;
        font-size: 12px;
    }

}

.cta-section-2 {
    position: relative;
    overflow: hidden;
    background: #f8f9fc;
}

.cta-section-2-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg,
            #084d9c,
            #001d62);
    box-shadow:
        0 25px 60px rgba(9, 24, 47, .25);
}

.cta-section-2-wrapper::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    bottom: -320px;
    border: 2px solid rgba(201, 156, 59, .18);
    border-radius: 50%;
}

.cta-section-2-wrapper::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -120px;
    bottom: -220px;
    border: 2px solid rgba(201, 156, 59, .10);
    border-radius: 50%;
}

.cta-section-2-left,
.cta-section-2-center,
.cta-section-2-right {
    position: relative;
    z-index: 5;
    padding: 70px 0;
}

.cta-section-2-left {
    padding-left: 60px;
}

.cta-section-2-title {
    color: #ffffff !important;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-section-2-title span {
    display: block;
    color: #d7a441;
}

.cta-section-2-subtitle {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-section-2-subtitle strong {
    color: #feb402;
}

.cta-section-2-divider {
    width: 100%;
    max-width: 380px;
    height: 1px;
    background: rgba(215, 164, 65, .35);
    margin-bottom: 28px;
}

.cta-section-2-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.cta-section-2-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.cta-section-2-list-item i {
    color: #feb402;
    font-size: 22px;
}

.cta-section-2-center {
    padding-left: 25px;
    padding-right: 25px;
}

.cta-section-2-description {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 35px;
}

.cta-section-2-description p {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 35px;
}

.cta-section-2-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg,
            #feb402,
            #f8cd09);
    color: #001d62;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    padding: 18px 30px;
    transition: .35s;
}

.cta-section-2-button:hover {
    color: #000;
    transform: translateY(-4px);
}

.cta-section-2-button i {
    font-size: 18px;
}

.cta-section-2-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 25px;
}

.cta-section-2-wrapper {
    transition: .4s ease;
}

.cta-section-2-wrapper:hover {
    box-shadow:
        0 40px 90px rgba(9, 24, 47, .30);
}

.cta-section-2-button {
    position: relative;
    overflow: hidden;
}

.cta-section-2-button::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .28),
            transparent);
    transition: .8s;
}

.cta-section-2-button:hover::before {
    left: 120%;
}

.cta-section-2-button:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(215, 164, 65, .30);
}

.cta-section-2-button i:last-child {
    transition: .3s;
}

.cta-section-2-button:hover i:last-child {
    transform: translateX(6px);
}

.cta-section-2-list-item {
    transition: .3s;
}

.cta-section-2-list-item:hover {
    transform: translateY(-3px);
}

.cta-section-2-list-item:hover i {
    transform: scale(1.15);
    color: #f5c15b;
}

.cta-section-2-list-item i {
    transition: .3s;
}

.cta-section-2-wrapper::before {
    box-shadow:
        inset 0 0 100px rgba(215, 164, 65, .03);
}

@media(max-width:991.98px) {
    .cta-section-2 {
        padding: 40px 0;
    }

    .cta-section-2-left,
    .cta-section-2-center,
    .cta-section-2-right {
        padding: 40px;
        text-align: center;
    }

    .cta-section-2-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section-2-list {
        justify-content: center;
    }

    .cta-section-2-title {
        font-size: 42px;
    }

    .cta-section-2-subtitle {
        font-size: 20px;
    }

    .cta-section-2-description {
        font-size: 17px;
    }

    .cta-section-2-description p {
        font-size: 17px;
    }

    .cta-section-2-right {
        justify-content: center;
        padding-top: 0;
    }
}

@media(max-width:767.98px) {
    .cta-section-2 {
        padding: 30px 0;
        margin-bottom: -50px;
    }

    .cta-section-2-left,
    .cta-section-2-center,
    .cta-section-2-right {
        padding: 30px 25px;
    }

    .cta-section-2-title {
        font-size: 34px;
    }

    .cta-section-2-subtitle {
        font-size: 18px;
    }

    .cta-section-2-description {
        font-size: 16px;
        line-height: 1.9;
    }

    .cta-section-2-description p {
        font-size: 16px;
        line-height: 1.9;
    }

    .cta-section-2-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-section-2-button {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width:575.98px) {
    .cta-section-2-wrapper {
        border-radius: 20px;
    }

    .cta-section-2-left,
    .cta-section-2-center,
    .cta-section-2-right {
        padding: 25px 18px;
    }

    .cta-section-2-title {
        font-size: 30px;
    }

    .cta-section-2-subtitle {
        font-size: 17px;
    }

    .cta-section-2-description {
        font-size: 15px;
    }

    .cta-section-2-description p {
        font-size: 15px;
    }
}

.list-kota .container {
    box-shadow: 1px 1px 3px #aaa;
    padding: 30px;
    border-radius: 20px;
}

.list-kota .container .d-grid {
    grid-template-columns:
        repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.list-kota .container .d-grid a {
    color: #001d62;
}

#media.media-section,
#mitra-brand.media-section {
    --media-navy: #0D3B82;
    --media-gold: #F9B900;
    --media-text: #53647B;

    width: 100%;
    padding: 80px 20px;

    background: #ffffff;

    overflow: hidden;
}

#media .media-container,
#mitra-brand .media-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

#media .media-heading,
#mitra-brand .media-heading {
    max-width: 650px;
    margin: 0 auto 40px;
    text-align: center;
}

#media .media-label,
#mitra-brand .media-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(249, 185, 0, .35);
    border-radius: 50px;
    color: var(--media-gold);
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

#media .media-heading h4,
#mitra-brand .media-heading h4 {
    margin: 0 0 12px;
    color: var(--media-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

#media .media-heading h4 span,
#mitra-brand .media-heading h4 span {
    color: var(--media-gold);
}

#media .media-heading p,
#mitra-brand .media-heading p {
    margin: 0 auto;
    color: var(--media-text);
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #707070;
}

#media .media-slider-wrapper,
#mitra-brand .media-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

#media .media-slider,
#mitra-brand .media-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 20px;
}

#media .media-track,
#mitra-brand .media-track {
    display: flex;
    gap: 20px;
    transform: translateX(0);
    transition:
        transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

#media .media-slide,
#mitra-brand .media-slide {
    flex: 0 0 calc(
        (100% - 40px) / 3
    );
    min-width: 0;
}

#media .media-card,
#mitra-brand .media-card {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 1px solid #E9EDF3;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 8px 25px rgba(13, 59, 130, .06);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

#media .media-card:hover,
#mitra-brand .media-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 185, 0, .45);
    box-shadow:
        0 15px 35px rgba(13, 59, 130, .10);
}

#media .media-card img,
#mitra-brand .media-card img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 110px;
    object-fit: contain;
    transition: transform .3s ease;
}

#media .media-card:hover img,
#mitra-brand .media-card:hover img {
    transform: scale(1.04);
}

#media .media-arrow,
#mitra-brand .media-arrow {
    position: absolute;
    z-index: 5;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #E4EAF2;
    border-radius: 50%;
    color: var(--media-navy);
    background: #ffffff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    box-shadow:
        0 6px 18px rgba(13, 59, 130, .10);
    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

#media .media-arrow:hover,
#mitra-brand .media-arrow:hover {
    color: var(--media-navy);
    background: var(--media-gold);
    border-color: var(--media-gold);
    transform: scale(1.06);
    box-shadow:
        0 8px 20px rgba(249, 185, 0, .22);
}

#media .media-prev,
#mitra-brand .media-prev {
    left: -20px;
}

#media .media-next,
#mitra-brand .media-next {
    right: -20px;
}

#media .media-dots,
#mitra-brand .media-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
}

#media .media-dot,
#mitra-brand .media-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #D8DEE8;
    cursor: pointer;
    transition:
        width .25s ease,
        background .25s ease;
}

#media .media-dot.active,
#mitra-brand .media-dot.active {
    width: 22px;
    border-radius: 20px;
    background: var(--media-gold);
}

@media (max-width: 991px) {

    #media.media-section,
    #mitra-brand.media-section {
        padding: 70px 30px;
    }

    #media .media-slide,
    #mitra-brand .media-slide {
        flex: 0 0 calc(
            (100% - 20px) / 2
        );
    }

    #media .media-card,
    #mitra-brand .media-card {
        height: 170px;
    }

    #media .media-prev,
    #mitra-brand .media-prev {
        left: -15px;
    }

    #media .media-next,
    #mitra-brand  .media-next {
        right: -15px;
    }

}

@media (max-width: 767px) {

    #media.media-section,
    #mitra-brand.media-section {
        padding: 60px 16px;
    }

    #media .media-heading,
    #mitra-brand .media-heading {
        margin-bottom: 28px;
    }

    #media .media-heading h4,
    #mitra-brand .media-heading h4 {
        font-size: 30px;
    }

    #media .media-heading p,
    #mitra-brand .media-heading p {
        font-size: 13px;
    }

    #media .media-slider,
    #mitra-brand .media-slider {
        padding:
            5px 5px 15px;
    }

    #media .media-track,
    #mitra-brand .media-track {
        gap: 12px;
    }

    #media .media-slide,
    #mitra-brand .media-slide {
        flex: 0 0 100%;
    }

    #media .media-card,
    #mitra-brand .media-card {
        height: 175px;
        padding: 25px;
    }

    #media .media-card img,
    #mitra-brand .media-card img {
        max-width: 220px;
        max-height: 100px;
    }

    #media .media-arrow,
    #mitra-brand .media-arrow {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }

    #media .media-prev,
    #mitra-brand  .media-prev {
        left: 0;
    }

    #media .media-next,
    #mitra-brand  .media-next {
        right: 0;
    }

}

.cmm-footer {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    background: linear-gradient(135deg, #084d9c 0%, #001d62 50%);
    color: #fff;
}

.cmm-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(212, 166, 79, .08);
    border-radius: 50%;
}

.cmm-footer::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: -160px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(212, 166, 79, .05);
    border-radius: 50%;
}

.cmm-footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    padding: 90px 0 65px;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 32px;
    border-radius: 20px;
}

.footer-desc {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 35px;
}

.footer-widget {
    padding-left: 25px;
}

.footer-widget h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 38px;
    font-size: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #fff !important;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 34px;
    height: 3px;
    background: #d4a64f;
    border-radius: 20px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 18px;
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .82);
    padding-left: 18px;
    transition: .3s;
}

.footer-widget ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #d4a64f;
    font-size: 20px;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer-widget ul li a:hover::before {
    left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a64f;
}

.footer-contact span i {
    font-size: 18px;
}

.footer-contact div {
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
}

.footer-bottom {
    padding: 35px 0;
}

.footer-bottom .row {
    align-items: center;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, .60);
    font-size: 15px;
    line-height: 1.8;
}

.footer-widget a,
.feature-item,
.feature-icon {
    transition: all .35s ease;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 40px 0;
}

.footer-accent {
    width: 70px;
    height: 3px;
    background: #d4a64f;
    border-radius: 50px;
}

.footer-widget a:focus,
.footer-policy a:focus {
    outline: none;
    color: #d4a64f;
}

.feature-item:hover i,
.back-to-top:hover i {
    transform: scale(1.1);
}

.feature-icon i,
.back-to-top i {
    transition: .35s ease;
}

@media (max-width:991.98px) {
    .footer-top {
        padding: 70px 0 45px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 50px;
    }

    .footer-logo {
        width: 180px;
        margin: 0 auto 25px;
        display: block;
    }

    .footer-desc {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 0;

    }

    .footer-widget {
        margin-top: -50px;
        padding-left: 0;
        margin-bottom: 45px;
    }

    .footer-widget h4 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .footer-widget h4::after {
        bottom: -10px;
    }

    .footer-widget ul li {
        margin-bottom: 14px;
    }

    .footer-contact li {
        gap: 15px;
        margin-bottom: 22px;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .copyright {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-policy {
        justify-content: center !important;
    }
}

.floating-wa-mini {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow:
        0 10px 25px rgba(37, 211, 102, .28);
    transition: .3s;
}

.floating-wa-mini:hover {
    color: #fff;
    background: #20bf5a;
    transform: translateY(-3px);
    box-shadow:
        0 15px 30px rgba(37, 211, 102, .35);
}

.floating-wa-mini i {
    font-size: 24px;
    line-height: 1;
}

@media (max-width:768px) {
    h2, h3, h4, h5, .title-heading {
        font-size: 1.6em !important;
    }
    .floating-wa-mini {
        right: 15px;
        bottom: 15px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .floating-wa-mini i {
        font-size: 22px;
    }

    .list-kota .container .d-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
