/* =========================================
   GLOBAL
========================================= */

:root {
    --primary: #1498F6;
    --primary-dark: #0B6FC2;

    --black: #0B0F14;
    --text: #4F5661;

    --white: #FFFDFA;
    --offwhite: #F6F3EC;

    --light-blue: #EAF4FF;
    --border: #E3E0D9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;

    background: var(--white);

    color: var(--text);

    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button,
a {
    transition: all 0.3s ease;
}



/* =========================================
   NAVBAR
========================================= */

.main-navbar {
    background: rgba(255, 255, 255, 0.97);

    padding: 16px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;

    z-index: 9999;
}


/* Navbar after scrolling */

.main-navbar.scrolled {
    padding: 10px 0;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}



/* =========================================
   LOGO
========================================= */

.navbar-brand {
    padding: 0;
    margin: 0;
}


/* Temporary logo */

.temporary-logo {
    display: flex;
    align-items: center;

    gap: 10px;
}


.logo-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 12px;

    font-size: 19px;

    transition: all 0.3s ease;
}


.temporary-logo:hover .logo-icon {
    background: var(--black);

    transform: rotate(-6deg);
}


.logo-text {
    font-size: 23px;
    font-weight: 700;

    white-space: nowrap;
}


.logo-blue {
    color: var(--primary);
}


.logo-black {
    color: var(--black);
}



/* =========================================
   REAL LOGO

   Use this when you add logo.png
========================================= */

.main-logo {
    width: auto;

    max-width: 180px;

    height: 70px;

    object-fit: contain;
}



/* =========================================
   NAVIGATION
========================================= */

.navbar-nav {
    display: flex;

    align-items: center;

    gap: 8px;
}


.nav-link {
    position: relative;

    color: #333333 !important;

    font-size: 14px;

    font-weight: 500;

    padding: 10px 13px !important;
}


/* Hover color */

.nav-link:hover {
    color: var(--black) !important;
}


/* Navbar underline */

.nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 55%;
}


.nav-link.active {
    color: var(--primary) !important;
}



/* =========================================
   NAVBAR CTA
========================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: var(--primary);

    color: var(--white);

    padding: 12px 22px;

    border: 2px solid var(--primary);

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    box-shadow: 0 8px 22px rgba(20, 152, 246, 0.18);
}


.nav-cta:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}


.nav-cta i {
    font-size: 12px;

    transition: transform 0.3s ease;
}


.nav-cta:hover i {
    transform: translateX(3px);
}



/* =========================================
   MOBILE TOGGLE
========================================= */

.custom-toggler {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    border: 1px solid var(--border) !important;

    border-radius: 10px;

    box-shadow: none !important;

    padding: 0;
}


.custom-toggler i {
    color: var(--black);

    font-size: 20px;
}



/* =========================================
   TEMPORARY SECTION

   This will be removed when Hero is created.
========================================= */

.temporary-section {
    min-height: 100vh;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(20, 152, 246, 0.1),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(20, 152, 246, 0.08),
            transparent 25%
        ),
        var(--white);

    padding: 150px 0 80px;
}


.temporary-content {
    max-width: 850px;

    margin: auto;
}


.section-tag {
    display: inline-block;

    padding: 8px 16px;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 18px;
}


.temporary-content h1 {
    color: var(--black);

    font-size: clamp(40px, 6vw, 72px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}


.temporary-content h1 span {
    color: var(--primary);
}


.temporary-content p {
    margin-top: 20px;

    font-size: 17px;

    color: #777777;
}



/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991px) {

    .main-navbar {
        padding: 11px 0;
    }


    .navbar-collapse {
        background: var(--white);

        margin-top: 14px;

        padding: 17px;

        border: 1px solid var(--border);

        border-radius: 16px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    }


    .navbar-nav {
        align-items: stretch;

        gap: 3px;

        margin-bottom: 15px;
    }


    .nav-link {
        padding: 12px 10px !important;

        border-radius: 9px;
    }


    .nav-link::after {
        display: none;
    }


    .nav-link:hover {
        background: var(--light-blue);

        padding-left: 15px !important;
    }


    .nav-link.active {
        background: var(--light-blue);
    }


    .nav-cta {
        width: 100%;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .logo-icon {
        width: 39px;

        height: 39px;

        font-size: 16px;

        border-radius: 9px;
    }


    .logo-text {
        font-size: 18px;
    }


    .custom-toggler {
        width: 40px;

        height: 40px;
    }


    .temporary-section {
        padding-top: 120px;
    }


    .temporary-content h1 {
        font-size: 39px;

        letter-spacing: -1px;
    }


    .temporary-content p {
        font-size: 15px;
    }

}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 0 90px;

    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(20, 152, 246, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(20, 152, 246, 0.07),
            transparent 28%
        ),
        var(--white);

    overflow: hidden;
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.hero-shape-one {
    width: 300px;
    height: 300px;

    background: rgba(20, 152, 246, 0.05);

    top: 80px;
    right: -120px;
}


.hero-shape-two {
    width: 180px;
    height: 180px;

    border: 35px solid rgba(20, 152, 246, 0.04);

    left: -90px;
    bottom: 40px;
}



/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;

    z-index: 5;
}


.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: var(--light-blue);

    color: var(--primary);

    padding: 9px 16px;

    border: 1px solid rgba(20, 152, 246, 0.12);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 22px;
}


.hero-badge i {
    font-size: 12px;
}



.hero-content h1 {
    max-width: 650px;

    color: var(--black);

    font-size: clamp(46px, 5.5vw, 72px);

    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -2.5px;

    margin-bottom: 24px;
}


.hero-content h1 span {
    position: relative;

    color: var(--primary);
}


.hero-description {
    max-width: 590px;

    color: #666666;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;

    margin-bottom: 30px;
}



/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 32px;
}



.hero-primary-btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    background: var(--primary);

    color: var(--white);

    border: 2px solid var(--primary);

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    box-shadow: 0 12px 30px rgba(20, 152, 246, 0.22);
}


.hero-primary-btn:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}


.hero-primary-btn i {
    font-size: 12px;

    transition: transform 0.3s ease;
}


.hero-primary-btn:hover i {
    transform: translateX(4px);
}



.hero-secondary-btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    background: var(--white);

    color: var(--black);

    border: 1px solid #dddddd;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;
}


.hero-secondary-btn i {
    width: 27px;
    height: 27px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 50%;

    font-size: 9px;

    transition: 0.3s ease;
}


.hero-secondary-btn:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-3px);
}


.hero-secondary-btn:hover i {
    background: var(--white);

    color: var(--black);
}



/* =========================================
   HERO SMALL FEATURES
========================================= */

.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}


.hero-feature {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #555555;

    font-size: 13px;

    font-weight: 500;
}


.hero-feature-icon {
    color: var(--primary);

    font-size: 14px;
}



/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}



/* =========================================
   DASHBOARD CARD
========================================= */

.hero-dashboard {
    position: relative;

    width: 88%;
    max-width: 520px;

    background: rgba(255, 255, 255, 0.95);

    padding: 28px;

    border: 1px solid rgba(20, 152, 246, 0.12);

    border-radius: 26px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.09),
        0 8px 30px rgba(20, 152, 246, 0.08);

    z-index: 3;
}



.dashboard-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}


.dashboard-small {
    display: block;

    color: #8b8b8b;

    font-size: 11px;

    font-weight: 500;

    margin-bottom: 4px;
}


.dashboard-header h4 {
    color: var(--black);

    font-size: 20px;

    font-weight: 700;

    margin: 0;
}


.dashboard-icon {
    width: 48px;
    height: 48px;

    display: flex;

    justify-content: center;
    align-items: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 14px;

    font-size: 18px;
}



/* =========================================
   CHART
========================================= */

.growth-chart {
    position: relative;

    height: 210px;

    background: #FAF8F3;

    border-radius: 18px;

    padding: 20px;

    overflow: hidden;
}


.chart-lines {
    position: absolute;

    inset: 20px;
}


.chart-lines span {
    display: block;

    height: 25%;

    border-bottom: 1px dashed #dde4ef;
}


.chart-bars {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    height: 150px;

    display: flex;

    align-items: flex-end;

    justify-content: space-around;

    gap: 12px;
}


.chart-bar {
    width: 34px;

    background: linear-gradient(
        180deg,
        #1498F6,
        #78C6FF
    );

    border-radius: 7px 7px 2px 2px;

    box-shadow: 0 8px 15px rgba(20, 152, 246, 0.12);
}


.bar-1 {
    height: 42%;
}


.bar-2 {
    height: 58%;
}


.bar-3 {
    height: 47%;
}


.bar-4 {
    height: 72%;
}


.bar-5 {
    height: 66%;
}


.bar-6 {
    height: 92%;
}



/* =========================================
   DASHBOARD STATS
========================================= */

.dashboard-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 18px;
}


.dashboard-stat {
    padding: 12px;

    background: var(--light-blue);

    border-radius: 12px;

    text-align: center;
}


.dashboard-stat span {
    display: block;

    color: #777777;

    font-size: 10px;

    margin-bottom: 3px;
}


.dashboard-stat strong {
    color: var(--primary);

    font-size: 18px;

    font-weight: 700;
}



/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: var(--white);

    border: 1px solid #edf0f5;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);

    z-index: 5;

    animation: floating 4s ease-in-out infinite;
}


.floating-card-one {
    left: -5px;

    top: 85px;
}


.floating-card-two {
    right: -5px;

    top: 170px;

    animation-delay: 0.8s;
}


.floating-card-three {
    left: 35px;

    bottom: 30px;

    animation-delay: 1.5s;
}


.floating-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 10px;
}


.floating-card span {
    display: block;

    color: #999999;

    font-size: 9px;

    margin-bottom: 1px;
}


.floating-card strong {
    display: block;

    color: var(--black);

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;
}



@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}



/* =========================================
   ROCKET CIRCLE
========================================= */

.hero-circle {
    position: absolute;

    width: 90px;
    height: 90px;

    display: flex;

    justify-content: center;
    align-items: center;

    right: 15px;
    bottom: 20px;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    font-size: 28px;

    box-shadow: 0 18px 40px rgba(20, 152, 246, 0.25);

    z-index: 2;
}



/* =========================================
   HERO RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .hero-content h1 {
        font-size: 55px;
    }


    .floating-card-two {
        right: -10px;
    }

}



@media (max-width: 991px) {

    .hero-section {
        min-height: auto;

        padding: 135px 0 80px;
    }


    .hero-content {
        text-align: center;
    }


    .hero-content h1 {
        max-width: 720px;

        margin-left: auto;
        margin-right: auto;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-features {
        justify-content: center;
    }


    .hero-visual {
        max-width: 650px;

        margin: 30px auto 0;
    }

}



@media (max-width: 575px) {

    .hero-section {
        padding: 115px 0 65px;
    }


    .hero-badge {
        font-size: 10px;

        padding: 8px 12px;
    }


    .hero-content h1 {
        font-size: 39px;

        letter-spacing: -1.5px;

        line-height: 1.12;
    }


    .hero-description {
        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }


    .hero-features {
        gap: 12px;

        flex-direction: column;

        align-items: center;
    }


    .hero-visual {
        min-height: 430px;

        margin-top: 15px;
    }


    .hero-dashboard {
        width: 100%;

        padding: 18px;

        border-radius: 20px;
    }


    .dashboard-header h4 {
        font-size: 17px;
    }


    .growth-chart {
        height: 180px;
    }


    .chart-bars {
        height: 125px;
    }


    .chart-bar {
        width: 25px;
    }


    .dashboard-stat strong {
        font-size: 15px;
    }


    .floating-card {
        padding: 9px 10px;
    }


    .floating-card-one {
        left: -5px;

        top: 45px;
    }


    .floating-card-two {
        right: -5px;

        top: 135px;
    }


    .floating-card-three {
        left: 8px;

        bottom: 5px;
    }


    .floating-card strong {
        font-size: 9px;
    }


    .floating-icon {
        width: 31px;
        height: 31px;

        font-size: 12px;
    }


    .hero-circle {
        width: 65px;
        height: 65px;

        right: 0;

        bottom: 10px;

        font-size: 20px;
    }

}

/* =========================================
   STATS SECTION
========================================= */

.stats-section {
    position: relative;

    padding: 0 0 90px;

    background: var(--white);

    z-index: 10;
}


.stats-wrapper {
    position: relative;

    background: var(--white);

    padding: 30px 22px;

    border: 1px solid rgba(20, 152, 246, 0.10);

    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.06),
        0 5px 20px rgba(20, 152, 246, 0.04);

    overflow: hidden;
}


/* Decorative background */

.stats-wrapper::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -80px;
    left: -80px;

    border-radius: 50%;

    background: rgba(20, 152, 246, 0.05);
}


.stats-wrapper::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(20, 152, 246, 0.05);
}



/* =========================================
   STAT ITEM
========================================= */

.stat-item {
    position: relative;

    padding: 18px 12px;

    z-index: 2;
}


/* Vertical separator */

.stats-wrapper .col-lg-3:not(:last-child) .stat-item::after {
    content: "";

    position: absolute;

    width: 1px;
    height: 75%;

    top: 12.5%;
    right: -12px;

    background: #edf0f4;
}



/* =========================================
   ICON
========================================= */

.stat-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 14px;

    font-size: 19px;

    transition: all 0.3s ease;
}


.stat-item:hover .stat-icon {
    background: var(--black);

    color: var(--white);

    transform: translateY(-4px);
}



/* =========================================
   NUMBER
========================================= */

.stat-item h3 {
    color: var(--black);

    font-size: 34px;

    line-height: 1;

    font-weight: 800;

    margin-bottom: 9px;

    letter-spacing: -1px;
}


.stat-item p {
    color: #777777;

    font-size: 13px;

    font-weight: 500;

    margin: 0;
}



/* =========================================
   STATS RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .stats-section {
        padding-bottom: 70px;
    }


    .stats-wrapper {
        padding: 20px 15px;
    }


    .stats-wrapper .col-lg-3:not(:last-child) .stat-item::after {
        display: none;
    }


    .stat-item {
        padding: 20px 8px;

        border: 1px solid #f0f0f0;

        border-radius: 16px;

        height: 100%;

        background: var(--white);
    }

}



@media (max-width: 575px) {

    .stats-section {
        padding-bottom: 60px;
    }


    .stats-wrapper {
        padding: 12px;

        border-radius: 18px;
    }


    .stat-item {
        padding: 17px 7px;
    }


    .stat-icon {
        width: 44px;
        height: 44px;

        font-size: 16px;

        border-radius: 12px;
    }


    .stat-item h3 {
        font-size: 27px;
    }


    .stat-item p {
        font-size: 11px;

        line-height: 1.5;
    }

}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    position: relative;

    padding: 100px 0;

    background: #F6F3EC;

    overflow: hidden;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    background: #ffffff;

    color: var(--primary);

    border: 1px solid rgba(20, 152, 246, 0.12);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}


.section-title {
    color: var(--black);

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;
}


.section-title span {
    color: var(--primary);
}


.section-description {
    max-width: 680px;

    margin: 0 auto;

    color: #707070;

    font-size: 15px;

    line-height: 1.8;
}



/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid #e8eef7;

    border-radius: 22px;

    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.035);
}


.service-card::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 4px;

    top: 0;
    left: 0;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(20, 152, 246, 0.18);

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
}


.service-card:hover::before {
    transform: scaleX(1);
}



/* =========================================
   NUMBER
========================================= */

.service-number {
    position: absolute;

    top: 20px;
    right: 24px;

    color: #edf3fc;

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

    transition: all 0.35s ease;
}


.service-card:hover .service-number {
    color: rgba(17, 17, 17, 0.07);
}



/* =========================================
   SERVICE ICON
========================================= */

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 16px;

    font-size: 21px;

    margin-bottom: 22px;

    transition: all 0.35s ease;
}


.service-card:hover .service-icon {
    background: var(--black);

    color: var(--white);

    transform: rotate(-5deg) scale(1.05);
}



/* =========================================
   SERVICE TEXT
========================================= */

.service-card h3 {
    position: relative;

    color: var(--black);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 13px;

    z-index: 2;
}


.service-card > p {
    color: #737373;

    font-size: 13px;

    line-height: 1.75;

    margin-bottom: 20px;
}



/* =========================================
   SERVICE LIST
========================================= */

.service-list {
    list-style: none;

    margin: 0 0 22px;

    padding: 0;
}


.service-list li {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #555555;

    font-size: 12px;

    margin-bottom: 9px;
}


.service-list li:last-child {
    margin-bottom: 0;
}


.service-list i {
    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(20, 152, 246, 0.08);

    color: var(--primary);

    border-radius: 50%;

    font-size: 8px;
}



/* =========================================
   SERVICE LINK
========================================= */

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 600;
}


.service-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}


.service-link:hover {
    color: var(--black);
}


.service-link:hover i {
    transform: translateX(5px);
}



/* =========================================
   SERVICES RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .services-section {
        padding: 80px 0;
    }


    .service-card {
        padding: 28px 24px;
    }

}


@media (max-width: 575px) {

    .services-section {
        padding: 65px 0;
    }


    .section-title {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .section-description {
        font-size: 13px;

        line-height: 1.7;
    }


    .service-card {
        padding: 25px 21px;

        border-radius: 18px;
    }


    .service-icon {
        width: 52px;
        height: 52px;

        font-size: 18px;

        border-radius: 14px;
    }


    .service-card h3 {
        font-size: 18px;
    }


    .service-number {
        font-size: 36px;
    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;

    padding: 105px 0;

    background: var(--white);

    overflow: hidden;
}


/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.about-main-card {
    position: relative;

    width: 88%;
    max-width: 520px;

    padding: 30px;

    background: var(--white);

    border: 1px solid rgba(20, 152, 246, 0.12);

    border-radius: 26px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(20, 152, 246, 0.05);

    z-index: 3;
}


/* =========================================
   ABOUT CARD HEADER
========================================= */

.about-card-top {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}


.about-card-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--primary);

    color: var(--white);

    border-radius: 15px;

    font-size: 20px;

    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.2);
}


.about-card-top span {
    display: block;

    color: #999999;

    font-size: 10px;

    font-weight: 500;

    margin-bottom: 3px;
}


.about-card-top h4 {
    color: var(--black);

    font-size: 20px;

    font-weight: 700;

    margin: 0;
}


/* =========================================
   ABOUT GRID
========================================= */

.about-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


.about-mini-card {
    padding: 20px 17px;

    background: #FAF8F3;

    border: 1px solid #edf2fa;

    border-radius: 17px;

    transition: all 0.3s ease;
}


.about-mini-card:hover {
    background: var(--black);

    transform: translateY(-4px);

    border-color: var(--black);
}


.about-mini-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--white);

    color: var(--primary);

    border-radius: 11px;

    font-size: 15px;

    margin-bottom: 13px;

    transition: all 0.3s ease;
}


.about-mini-card:hover .about-mini-icon {
    background: var(--primary);

    color: var(--white);
}


.about-mini-card h5 {
    color: var(--black);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 7px;

    transition: color 0.3s ease;
}


.about-mini-card p {
    color: #777777;

    font-size: 10px;

    line-height: 1.6;

    margin: 0;

    transition: color 0.3s ease;
}


.about-mini-card:hover h5 {
    color: var(--white);
}


.about-mini-card:hover p {
    color: #cfcfcf;
}


/* =========================================
   FLOATING CARD
========================================= */

.about-floating-card {
    position: absolute;

    right: -5px;
    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    background: var(--white);

    border: 1px solid #edf0f5;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);

    z-index: 5;

    animation: floating 4s ease-in-out infinite;
}


.about-floating-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 11px;
}


.about-floating-card span {
    display: block;

    color: #999999;

    font-size: 9px;

    margin-bottom: 2px;
}


.about-floating-card strong {
    display: block;

    color: var(--black);

    font-size: 11px;

    font-weight: 600;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.about-decoration {
    position: absolute;

    border-radius: 50%;

    z-index: 1;
}


.about-decoration-one {
    width: 230px;
    height: 230px;

    top: 15px;
    left: 5px;

    background: rgba(20, 152, 246, 0.055);
}


.about-decoration-two {
    width: 150px;
    height: 150px;

    right: 40px;
    bottom: 5px;

    border: 28px solid rgba(20, 152, 246, 0.05);
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    max-width: 600px;
}


.about-content .section-description {
    margin-left: 0;
}


.about-intro {
    color: #555555;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.8;

    margin-bottom: 15px;
}


.about-text {
    color: #777777;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* =========================================
   ABOUT BENEFITS
========================================= */

.about-benefits {
    display: flex;

    flex-direction: column;

    gap: 17px;

    margin-bottom: 30px;
}


.about-benefit {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.about-benefit-icon {
    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-top: 2px;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 9px;

    font-size: 11px;

    transition: all 0.3s ease;
}


.about-benefit:hover .about-benefit-icon {
    background: var(--black);

    color: var(--white);
}


.about-benefit h5 {
    color: var(--black);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 4px;
}


.about-benefit p {
    color: #777777;

    font-size: 12px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================
   ABOUT CTA
========================================= */

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 23px;

    background: var(--primary);

    color: var(--white);

    border: 2px solid var(--primary);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.18);
}


.about-btn:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-3px);
}


.about-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}


.about-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }


    .about-visual {
        min-height: 500px;

        max-width: 650px;

        margin: 0 auto;
    }


    .about-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .about-benefit {
        max-width: 560px;

        margin: 0 auto;

        text-align: left;
    }

}


@media (max-width: 575px) {

    .about-section {
        padding: 65px 0;
    }


    .about-visual {
        min-height: 430px;
    }


    .about-main-card {
        width: 100%;

        padding: 18px;

        border-radius: 20px;
    }


    .about-card-icon {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }


    .about-card-top h4 {
        font-size: 16px;
    }


    .about-grid {
        gap: 10px;
    }


    .about-mini-card {
        padding: 15px 12px;

        border-radius: 14px;
    }


    .about-mini-card h5 {
        font-size: 12px;
    }


    .about-mini-card p {
        font-size: 9px;
    }


    .about-floating-card {
        right: 0;
        bottom: 10px;

        padding: 10px 12px;
    }


    .about-floating-icon {
        width: 34px;
        height: 34px;

        font-size: 12px;
    }


    .about-intro {
        font-size: 14px;
    }


    .about-text {
        font-size: 12px;
    }


    .about-benefit h5 {
        font-size: 13px;
    }


    .about-benefit p {
        font-size: 11px;
    }

}

/* =========================================
   MARKETING + DEVELOPMENT
========================================= */

.md-section {
    position: relative;

    padding: 105px 0;

    background: #F6F3EC;

    overflow: hidden;
}



/* =========================================
   WRAPPER
========================================= */

.md-wrapper {
    position: relative;

    margin-top: 55px;
}



/* =========================================
   MAIN CARDS
========================================= */

.md-card {
    position: relative;

    padding: 35px 30px;

    background: var(--white);

    border: 1px solid #e7edf6;

    border-radius: 24px;

    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.045);
}


.md-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.09);

    border-color: rgba(20, 152, 246, 0.18);
}



/* Top blue line */

.md-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.md-card:hover::before {
    transform: scaleX(1);
}



/* =========================================
   BACKGROUND LABEL
========================================= */

.md-card-label {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #eef3fa;

    font-size: 52px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;

    pointer-events: none;

    transition: color 0.3s ease;
}


.md-card:hover .md-card-label {
    color: rgba(17, 17, 17, 0.06);
}



/* =========================================
   MAIN ICON
========================================= */

.md-main-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 17px;

    font-size: 23px;

    margin-bottom: 21px;

    transition: all 0.35s ease;
}


.md-card:hover .md-main-icon {
    background: var(--black);

    color: var(--white);

    transform: rotate(-5deg);
}



/* =========================================
   CARD CONTENT
========================================= */

.md-small-title {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 9px;
}


.md-card h3 {
    max-width: 420px;

    color: var(--black);

    font-size: 27px;

    line-height: 1.3;

    font-weight: 750;

    letter-spacing: -0.7px;

    margin-bottom: 15px;
}


.md-card > p {
    color: #747474;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 27px;
}



/* =========================================
   FEATURE LIST
========================================= */

.md-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.md-list-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px;

    background: #FBFAF7;

    border: 1px solid #eef2f8;

    border-radius: 14px;

    transition: all 0.3s ease;
}


.md-list-item:hover {
    background: var(--black);

    border-color: var(--black);

    transform: translateX(5px);
}


.md-list-icon {
    width: 41px;
    height: 41px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--white);

    color: var(--primary);

    border-radius: 11px;

    font-size: 14px;

    transition: all 0.3s ease;
}


.md-list-item:hover .md-list-icon {
    background: var(--primary);

    color: var(--white);
}


.md-list-item h5 {
    color: var(--black);

    font-size: 13px;

    font-weight: 650;

    margin: 0 0 3px;

    transition: color 0.3s ease;
}


.md-list-item span {
    display: block;

    color: #858585;

    font-size: 10px;

    transition: color 0.3s ease;
}


.md-list-item:hover h5 {
    color: var(--white);
}


.md-list-item:hover span {
    color: #bdbdbd;
}



/* =========================================
   CENTER GROWTH AREA
========================================= */

.md-center {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 520px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 13px;
}



.md-line {
    width: 2px;

    flex: 1;

    min-height: 90px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(20, 152, 246, 0.4),
        transparent
    );
}



/* Growth Circle */

.md-growth-circle {
    position: relative;

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    box-shadow:
        0 20px 45px rgba(20, 152, 246, 0.25),
        0 0 0 12px rgba(20, 152, 246, 0.06);

    transition: all 0.35s ease;

    z-index: 3;
}


.md-growth-circle:hover {
    background: var(--black);

    transform: scale(1.06);
}


.md-growth-icon {
    font-size: 22px;

    margin-bottom: 5px;
}


.md-growth-circle span {
    font-size: 9px;

    opacity: 0.85;
}


.md-growth-circle strong {
    font-size: 17px;

    font-weight: 700;
}



/* =========================================
   BOTTOM CONNECTED STRATEGY
========================================= */

.md-bottom-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 35px;

    padding: 22px 25px;

    background: var(--white);

    border: 1px solid #e8edf5;

    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}


.md-bottom-content {
    display: flex;

    align-items: center;

    gap: 14px;
}


.md-bottom-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 13px;

    font-size: 17px;
}


.md-bottom-content span {
    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 600;

    margin-bottom: 4px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.md-bottom-content h4 {
    color: var(--black);

    font-size: 18px;

    font-weight: 700;

    margin: 0;
}



/* =========================================
   BOTTOM BUTTON
========================================= */

.md-bottom-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 12px 21px;

    background: var(--primary);

    color: var(--white);

    border: 2px solid var(--primary);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;
}


.md-bottom-btn:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-2px);
}


.md-bottom-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.md-bottom-btn:hover i {
    transform: translateX(4px);
}



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .md-section {
        padding: 80px 0;
    }


    .md-wrapper {
        margin-top: 40px;
    }


    .md-center {
        min-height: auto;

        flex-direction: row;

        padding: 15px 0;
    }


    .md-line {
        width: auto;

        height: 2px;

        min-height: 0;

        flex: 1;

        background: linear-gradient(
            to right,
            transparent,
            rgba(20, 152, 246, 0.4),
            transparent
        );
    }


    .md-growth-circle {
        width: 110px;

        height: 110px;
    }

}



@media (max-width: 575px) {

    .md-section {
        padding: 65px 0;
    }


    .md-card {
        padding: 25px 20px;

        border-radius: 19px;
    }


    .md-card-label {
        font-size: 39px;

        top: 23px;
        right: 17px;
    }


    .md-main-icon {
        width: 53px;
        height: 53px;

        font-size: 19px;

        border-radius: 14px;
    }


    .md-card h3 {
        font-size: 22px;
    }


    .md-card > p {
        font-size: 12px;
    }


    .md-list-item {
        padding: 11px;
    }


    .md-list-icon {
        width: 36px;
        height: 36px;

        font-size: 12px;
    }


    .md-center {
        padding: 10px 0;
    }


    .md-growth-circle {
        width: 90px;
        height: 90px;
    }


    .md-growth-icon {
        font-size: 17px;
    }


    .md-growth-circle strong {
        font-size: 14px;
    }


    .md-bottom-box {
        flex-direction: column;

        align-items: stretch;

        padding: 18px;
    }


    .md-bottom-content {
        align-items: flex-start;
    }


    .md-bottom-content h4 {
        font-size: 15px;

        line-height: 1.5;
    }


    .md-bottom-btn {
        width: 100%;
    }

}

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
    position: relative;
    padding: 105px 0;
    background: var(--white);
    overflow: hidden;
}


.pricing-grid {
    margin-top: 55px;
}


/* =========================================
   PRICING CARD
========================================= */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid #e7edf5;

    border-radius: 24px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.045);

    transition: all 0.35s ease;

    overflow: hidden;
}


.pricing-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.pricing-card:hover {
    transform: translateY(-8px);

    border-color: rgba(20, 152, 246, 0.18);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.09);
}


.pricing-card:hover::before {
    transform: scaleX(1);
}



/* =========================================
   FEATURED CARD
========================================= */

.pricing-card-featured {
    border: 2px solid var(--primary);

    box-shadow:
        0 25px 60px rgba(20, 152, 246, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.04);

    transform: translateY(-12px);
}


.pricing-card-featured:hover {
    transform: translateY(-18px);
}


.pricing-card-featured::before {
    transform: scaleX(1);
}


.popular-badge {
    position: absolute;

    top: 19px;
    right: 19px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 7px 11px;

    background: var(--primary);

    color: var(--white);

    border-radius: 50px;

    font-size: 9px;

    font-weight: 600;
}


.popular-badge i {
    font-size: 8px;
}



/* =========================================
   PRICING TOP
========================================= */

.pricing-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 15px;

    font-size: 20px;

    margin-bottom: 19px;

    transition: all 0.3s ease;
}


.pricing-card:hover .pricing-icon {
    background: var(--black);

    color: var(--white);

    transform: rotate(-5deg);
}


.pricing-plan-label {
    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 5px;
}


.pricing-top h3 {
    color: var(--black);

    font-size: 28px;

    font-weight: 800;

    margin-bottom: 10px;
}


.pricing-top p {
    min-height: 70px;

    color: #747474;

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 23px;
}



/* =========================================
   PRICE
========================================= */

.pricing-price {
    margin-bottom: 23px;
}


.pricing-from {
    display: block;

    color: #8a8a8a;

    font-size: 10px;

    margin-bottom: 4px;
}


.pricing-price div {
    display: flex;

    align-items: flex-start;

    gap: 2px;

    color: var(--black);

    line-height: 1;
}


.pricing-price sup {
    color: var(--primary);

    font-size: 19px;

    font-weight: 700;

    top: 7px;
}


.pricing-price strong {
    color: var(--black);

    font-size: 46px;

    font-weight: 800;

    letter-spacing: -2px;
}


.pricing-price small {
    display: block;

    color: #8b8b8b;

    font-size: 9px;

    margin-top: 8px;
}


.pricing-custom-price strong {
    font-size: 37px;

    letter-spacing: -1px;
}



/* =========================================
   DIVIDER
========================================= */

.pricing-divider {
    width: 100%;
    height: 1px;

    background: #edf0f4;

    margin-bottom: 23px;
}



/* =========================================
   FEATURES
========================================= */

.pricing-features {
    list-style: none;

    padding: 0;

    margin: 0 0 28px;

    flex-grow: 1;
}


.pricing-features li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #555555;

    font-size: 11px;

    line-height: 1.5;

    margin-bottom: 12px;
}


.pricing-features li:last-child {
    margin-bottom: 0;
}


.pricing-features i {
    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 50%;

    font-size: 8px;

    margin-top: -1px;
}



/* =========================================
   PRICING BUTTON
========================================= */

.pricing-btn {
    width: 100%;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 20px;

    background: var(--white);

    color: var(--primary);

    border: 1px solid rgba(20, 152, 246, 0.3);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;
}


.pricing-btn:hover {
    background: var(--black);

    color: var(--white);

    border-color: var(--black);

    transform: translateY(-2px);
}


.featured-btn {
    background: var(--primary);

    color: var(--white);

    border-color: var(--primary);
}


.featured-btn:hover {
    background: var(--black);

    border-color: var(--black);
}


.pricing-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.pricing-btn:hover i {
    transform: translateX(4px);
}



/* =========================================
   PRICING NOTE
========================================= */

.pricing-note {
    display: flex;

    align-items: center;

    gap: 13px;

    max-width: 820px;

    margin: 42px auto 0;

    padding: 17px 20px;

    background: #F6F3EC;

    border: 1px solid #e8eef7;

    border-radius: 15px;
}


.pricing-note-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--white);

    color: var(--primary);

    border-radius: 10px;
}


.pricing-note strong {
    display: block;

    color: var(--black);

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 2px;
}


.pricing-note span {
    display: block;

    color: #777777;

    font-size: 10px;

    line-height: 1.6;
}



/* =========================================
   PRICING RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .pricing-section {
        padding: 80px 0;
    }


    .pricing-grid {
        margin-top: 40px;
    }


    .pricing-card-featured {
        transform: none;
    }


    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }


    .pricing-top p {
        min-height: auto;
    }

}


@media (max-width: 575px) {

    .pricing-section {
        padding: 65px 0;
    }


    .pricing-card {
        padding: 25px 21px;

        border-radius: 19px;
    }


    .pricing-price strong {
        font-size: 40px;
    }


    .pricing-custom-price strong {
        font-size: 31px;
    }


    .popular-badge {
        top: 16px;
        right: 15px;
    }


    .pricing-note {
        align-items: flex-start;

        padding: 15px;
    }

}

/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    position: relative;

    padding: 105px 0;

    background: #F6F3EC;

    overflow: hidden;
}


.testimonials-grid {
    margin-top: 55px;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;

    padding: 30px 27px;

    background: var(--white);

    border: 1px solid #e8edf5;

    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);

    transition: all 0.35s ease;

    overflow: hidden;
}


.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


.testimonial-card:hover {
    transform: translateY(-8px);

    border-color: rgba(20, 152, 246, 0.18);

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
}


.testimonial-card:hover::before {
    transform: scaleX(1);
}


/* Featured */

.testimonial-featured {
    border-color: rgba(20, 152, 246, 0.2);

    box-shadow: 0 18px 45px rgba(20, 152, 246, 0.08);
}


/* =========================================
   TOP
========================================= */

.testimonial-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 22px;
}


.testimonial-quote {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 13px;

    font-size: 18px;

    transition: all 0.3s ease;
}


.testimonial-card:hover .testimonial-quote {
    background: var(--black);

    color: var(--white);

    transform: rotate(-5deg);
}


.testimonial-stars {
    display: flex;

    align-items: center;

    gap: 3px;

    color: var(--primary);

    font-size: 11px;
}


/* =========================================
   TEXT
========================================= */

.testimonial-text {
    color: #666666;

    font-size: 13px;

    line-height: 1.85;

    margin-bottom: 28px;
}


/* =========================================
   CLIENT
========================================= */

.testimonial-client {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 18px;

    border-top: 1px solid #edf0f4;
}


.client-avatar {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    font-size: 12px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.testimonial-card:hover .client-avatar {
    background: var(--black);
}


.client-info h5 {
    color: var(--black);

    font-size: 13px;

    font-weight: 700;

    margin: 0 0 3px;
}


.client-info span {
    display: block;

    color: #8c8c8c;

    font-size: 10px;
}


/* =========================================
   TRUST ROW
========================================= */

.testimonial-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 42px;
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #5f5f5f;

    font-size: 11px;

    font-weight: 500;
}


.trust-item i {
    color: var(--primary);

    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .testimonials-section {
        padding: 80px 0;
    }


    .testimonials-grid {
        margin-top: 40px;
    }

}


@media (max-width: 575px) {

    .testimonials-section {
        padding: 65px 0;
    }


    .testimonial-card {
        padding: 24px 20px;

        border-radius: 18px;
    }


    .testimonial-text {
        font-size: 12px;
    }


    .testimonial-trust {
        gap: 13px;

        flex-direction: column;
    }

}

/* =========================================
   PROFESSIONAL CTA SECTION
========================================= */

.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.cta-wrapper {
    position: relative;

    padding: 65px 60px;

    background:
        linear-gradient(
            135deg,
            #1498F6 0%,
            #0B6FC2 48%,
            #111111 130%
        );

    border-radius: 32px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(20, 152, 246, 0.20),
        0 12px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================
   DECORATIVE GLOWS
========================================= */

.cta-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(1px);
}


.cta-glow-one {
    width: 300px;
    height: 300px;

    top: -150px;
    right: 20%;

    background: rgba(255, 255, 255, 0.10);
}


.cta-glow-two {
    width: 220px;
    height: 220px;

    left: -90px;
    bottom: -110px;

    background: rgba(255, 255, 255, 0.07);
}


/* Subtle grid */

.cta-grid-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.25) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.25) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black,
        black,
        transparent
    );

    pointer-events: none;
}


/* =========================================
   CTA CONTENT
========================================= */

.cta-content {
    position: relative;
    z-index: 3;
}


.cta-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 18px;

    background: rgba(255, 255, 255, 0.12);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 600;

    backdrop-filter: blur(8px);
}


.cta-content h2 {
    max-width: 760px;

    color: var(--white);

    font-size: clamp(38px, 4.8vw, 62px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.cta-content h2 span {
    display: block;

    color: rgba(255, 255, 255, 0.82);
}


.cta-content > p {
    max-width: 670px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 26px;
}


/* =========================================
   CTA POINTS
========================================= */

.cta-points {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;
}


.cta-point {
    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 11px;

    font-weight: 500;
}


.cta-point i {
    color: var(--white);

    font-size: 12px;
}


/* =========================================
   ACTION CARD
========================================= */

.cta-action-card {
    position: relative;

    padding: 28px 25px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 23px;

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(12px);

    z-index: 4;

    transition: all 0.35s ease;
}


.cta-action-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}


.cta-action-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--light-blue);

    color: var(--primary);

    border-radius: 15px;

    font-size: 19px;

    margin-bottom: 18px;

    transition: all 0.3s ease;
}


.cta-action-card:hover .cta-action-icon {
    background: var(--black);

    color: var(--white);

    transform: rotate(-5deg);
}


.cta-action-small {
    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.cta-action-card h3 {
    color: var(--black);

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 10px;
}


.cta-action-card p {
    color: #777777;

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* =========================================
   PRIMARY CTA BUTTON
========================================= */

.cta-primary-btn {
    width: 100%;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 19px;

    background: var(--primary);

    color: var(--white);

    border: 2px solid var(--primary);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 13px;

    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.18);
}


.cta-primary-btn:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-2px);
}


.cta-primary-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.cta-primary-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   SECONDARY LINK
========================================= */

.cta-secondary-link {
    width: 100%;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    color: var(--black);

    font-size: 10px;

    font-weight: 600;
}


.cta-secondary-link:hover {
    color: var(--primary);
}


.cta-secondary-link i {
    font-size: 9px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .cta-section {
        padding: 80px 0;
    }


    .cta-wrapper {
        padding: 50px 40px;
    }


    .cta-content {
        text-align: center;
    }


    .cta-content h2,
    .cta-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .cta-points {
        justify-content: center;
    }


    .cta-action-card {
        max-width: 520px;

        margin: 15px auto 0;

        text-align: center;
    }

}


@media (max-width: 575px) {

    .cta-section {
        padding: 65px 0;
    }


    .cta-wrapper {
        padding: 38px 20px;

        border-radius: 23px;
    }


    .cta-content h2 {
        font-size: 36px;

        letter-spacing: -1px;

        line-height: 1.12;
    }


    .cta-content > p {
        font-size: 12px;
    }


    .cta-points {
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }


    .cta-action-card {
        padding: 23px 19px;

        border-radius: 19px;
    }


    .cta-action-card h3 {
        font-size: 21px;
    }

}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;
    padding: 105px 0;
    background: #F6F3EC;
    overflow: hidden;
}


.contact-wrapper {
    margin-top: 55px;
}


/* =========================================
   CONTACT INFO CARD
========================================= */

.contact-info-card {
    position: relative;

    padding: 34px 30px;

    background:
        linear-gradient(
            145deg,
            #1498F6 0%,
            #0B6FC2 60%,
            #0648ad 100%
        );

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 22px 55px rgba(20, 152, 246, 0.16);
}


.contact-info-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: -120px;
    right: -100px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.contact-info-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -100px;

    border: 30px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


.contact-info-top,
.contact-info-list,
.contact-social {
    position: relative;
    z-index: 2;
}


.contact-main-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.14);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 15px;

    font-size: 20px;

    margin-bottom: 20px;
}


.contact-info-top > span {
    display: block;

    color: rgba(255, 255, 255, 0.78);

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 7px;
}


.contact-info-top h3 {
    color: var(--white);

    font-size: 28px;

    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 14px;
}


.contact-info-top p {
    color: rgba(255, 255, 255, 0.74);

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* =========================================
   INFO ITEMS
========================================= */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.contact-info-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    transition: all 0.3s ease;
}


.contact-info-item:hover {
    background: var(--black);

    border-color: var(--black);

    transform: translateX(5px);
}


.contact-info-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.13);

    color: var(--white);

    border-radius: 10px;

    font-size: 13px;
}


.contact-info-item span {
    display: block;

    color: rgba(255, 255, 255, 0.62);

    font-size: 9px;

    margin-bottom: 2px;
}


.contact-info-item a,
.contact-info-item strong {
    color: var(--white);

    font-size: 11px;

    font-weight: 600;
}


.contact-info-item a:hover {
    color: var(--white);
}


/* =========================================
   SOCIAL
========================================= */

.contact-social {
    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}


.contact-social > span {
    display: block;

    color: rgba(255, 255, 255, 0.7);

    font-size: 10px;

    margin-bottom: 12px;
}


.contact-social-links {
    display: flex;
    gap: 9px;
}


.contact-social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    font-size: 13px;
}


.contact-social-links a:hover {
    background: var(--black);

    border-color: var(--black);

    color: var(--white);

    transform: translateY(-3px);
}


/* =========================================
   CONTACT FORM CARD
========================================= */

.contact-form-card {
    padding: 35px 32px;

    background: var(--white);

    border: 1px solid #e8edf5;

    border-radius: 25px;

    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
}


.contact-form-heading {
    margin-bottom: 27px;
}


.contact-form-heading > span {
    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.contact-form-heading h3 {
    color: var(--black);

    font-size: 27px;

    font-weight: 800;

    margin-bottom: 7px;
}


.contact-form-heading p {
    color: #7c7c7c;

    font-size: 11px;

    margin: 0;
}


/* =========================================
   FORM FIELDS
========================================= */

.contact-form-group label {
    display: block;

    color: var(--black);

    font-size: 10px;

    font-weight: 600;

    margin-bottom: 7px;
}


.contact-input-wrap,
.contact-textarea-wrap {
    position: relative;
}


.contact-input-wrap > i,
.contact-textarea-wrap > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);

    font-size: 12px;

    z-index: 3;
}


.contact-textarea-wrap > i {
    top: 17px;

    transform: none;
}


.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 49px;

    padding: 11px 14px 11px 42px;

    background: #f9fbfe;

    color: var(--black);

    border: 1px solid #e4eaf2;

    border-radius: 12px;

    font-size: 11px;

    box-shadow: none;

    transition: all 0.25s ease;
}


.contact-form-card textarea.form-control {
    min-height: 140px;

    resize: vertical;

    padding-top: 14px;
}


.contact-form-card .form-control::placeholder {
    color: #aaaaaa;
}


.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: var(--white);

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(20, 152, 246, 0.07);
}


.contact-select-wrap .form-select {
    cursor: pointer;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 22px;

    background: var(--primary);

    color: var(--white);

    border: 2px solid var(--primary);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.17);
}


.contact-submit-btn:hover {
    background: var(--black);

    border-color: var(--black);

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}


.contact-submit-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.contact-submit-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   FORM NOTE
========================================= */

.contact-form-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    color: #8a8a8a;

    font-size: 9px;

    text-align: center;
}


.contact-form-note i {
    color: var(--primary);

    font-size: 9px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 80px 0;
    }


    .contact-wrapper {
        margin-top: 40px;
    }

}


@media (max-width: 575px) {

    .contact-section {
        padding: 65px 0;
    }


    .contact-info-card,
    .contact-form-card {
        padding: 25px 20px;

        border-radius: 20px;
    }


    .contact-info-top h3 {
        font-size: 24px;
    }


    .contact-form-heading h3 {
        font-size: 23px;
    }


    .contact-form-card .form-control,
    .contact-form-card .form-select {
        font-size: 10px;
    }

}

/* =========================================
   FOOTER
========================================= */

.footer-section {
    position: relative;

    background: antiquewhite;

    color: var(--white);

    padding: 80px 0 0;

    overflow: hidden;
}


/* subtle background glow */

.footer-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -230px;
    left: -180px;

    background: rgba(20, 152, 246, 0.15);

    border-radius: 50%;

    filter: blur(30px);

    pointer-events: none;
}


.footer-top {
    position: relative;

    padding-bottom: 55px;

    z-index: 2;
}



/* =========================================
   FOOTER BRAND
========================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}


.footer-logo-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 12px;

    font-size: 18px;

    transition: all 0.3s ease;
}


.footer-logo:hover .footer-logo-icon {
    background: var(--white);

    color: var(--black);

    transform: rotate(-5deg);
}


.footer-logo-text {
    color: var(--white);

    font-size: 21px;

    font-weight: 700;
}


.footer-logo-text span {
    color: var(--primary);
}


.footer-main-logo {
    max-width: 180px;

    height: 50px;

    object-fit: contain;
}


.footer-brand p {
    max-width: 360px;

    color: #a8a8a8;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 22px;
}



/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 9px;
}


.footer-social a {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.07);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    font-size: 13px;
}


.footer-social a:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}



/* =========================================
   FOOTER WIDGETS
========================================= */

.footer-widget h4 {
    position: relative;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 22px;

    padding-bottom: 10px;
}


.footer-widget h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;
}


.footer-widget ul {
    list-style: none;

    padding: 0;

    margin: 0;
}


.footer-widget ul li {
    margin-bottom: 10px;
}


.footer-widget ul li:last-child {
    margin-bottom: 0;
}


.footer-widget ul li a {
    position: relative;

    display: inline-flex;

    align-items: center;

    color: #a8a8a8;

    font-size: 11px;

    transition: all 0.3s ease;
}


.footer-widget ul li a::before {
    content: "";

    width: 0;
    height: 1px;

    background: var(--primary);

    margin-right: 0;

    transition: all 0.3s ease;
}


.footer-widget ul li a:hover {
    color: var(--white);

    transform: translateX(4px);
}


.footer-widget ul li a:hover::before {
    width: 12px;

    margin-right: 7px;
}



/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.footer-contact-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(20, 152, 246, 0.13);

    color: var(--primary);

    border-radius: 9px;

    font-size: 11px;
}


.footer-contact-item span {
    display: block;

    color: #717171;

    font-size: 8px;

    margin-bottom: 2px;
}


.footer-contact-item a,
.footer-contact-item strong {
    display: block;

    color: #c7c7c7;

    font-size: 10px;

    line-height: 1.5;

    font-weight: 500;
}


.footer-contact-item a:hover {
    color: var(--primary);
}



/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 2;
}


.footer-copyright {
    color: #777777;

    font-size: 9px;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-bottom-links a {
    color: #777777;

    font-size: 9px;
}


.footer-bottom-links a:hover {
    color: var(--primary);
}



/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.25);

    font-size: 13px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: all 0.3s ease;

    z-index: 999;
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--black);

    color: var(--white);

    transform: translateY(-4px);
}



/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .footer-section {
        padding-top: 65px;
    }

}


@media (max-width: 767px) {

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }


    .footer-bottom-links {
        justify-content: center;
    }

}


@media (max-width: 575px) {

    .footer-section {
        padding-top: 55px;
    }


    .footer-top {
        padding-bottom: 40px;
    }


    .footer-brand p {
        font-size: 11px;
    }


    .footer-widget h4 {
        font-size: 13px;
    }


    .footer-bottom-links {
        gap: 12px;

        flex-wrap: wrap;
    }


    .back-to-top {
        width: 40px;
        height: 40px;

        right: 15px;
        bottom: 15px;
    }

}

/* =========================================
   FOOTER
========================================= */

.footer-section {
    position: relative;

    background: antiquewhite;

    color: var(--white);

    padding: 80px 0 0;

    overflow: hidden;
}


/* subtle background glow */

.footer-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -230px;
    left: -180px;

    background: rgba(20, 152, 246, 0.15);

    border-radius: 50%;

    filter: blur(30px);

    pointer-events: none;
}


.footer-top {
    position: relative;

    padding-bottom: 55px;

    z-index: 2;
}



/* =========================================
   FOOTER BRAND
========================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}


.footer-logo-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 12px;

    font-size: 18px;

    transition: all 0.3s ease;
}


.footer-logo:hover .footer-logo-icon {
    background: var(--white);

    color: var(--black);

    transform: rotate(-5deg);
}


.footer-logo-text {
    color: var(--white);

    font-size: 21px;

    font-weight: 700;
}


.footer-logo-text span {
    color: var(--primary);
}


.footer-main-logo {
    max-width: 180px;

    height: 50px;

    object-fit: contain;
}


.footer-brand p {
    max-width: 360px;

    color: #a8a8a8;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 22px;
}



/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 9px;
}


.footer-social a {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.07);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    font-size: 13px;
}


.footer-social a:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}



/* =========================================
   FOOTER WIDGETS
========================================= */

.footer-widget h4 {
    position: relative;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 22px;

    padding-bottom: 10px;
}


.footer-widget h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;
}


.footer-widget ul {
    list-style: none;

    padding: 0;

    margin: 0;
}


.footer-widget ul li {
    margin-bottom: 10px;
}


.footer-widget ul li:last-child {
    margin-bottom: 0;
}


.footer-widget ul li a {
    position: relative;

    display: inline-flex;

    align-items: center;

    color: #a8a8a8;

    font-size: 11px;

    transition: all 0.3s ease;
}


.footer-widget ul li a::before {
    content: "";

    width: 0;
    height: 1px;

    background: var(--primary);

    margin-right: 0;

    transition: all 0.3s ease;
}


.footer-widget ul li a:hover {
    color: var(--white);

    transform: translateX(4px);
}


.footer-widget ul li a:hover::before {
    width: 12px;

    margin-right: 7px;
}



/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact-list {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.footer-contact-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(20, 152, 246, 0.13);

    color: var(--primary);

    border-radius: 9px;

    font-size: 11px;
}


.footer-contact-item span {
    display: block;

    color: #717171;

    font-size: 8px;

    margin-bottom: 2px;
}


.footer-contact-item a,
.footer-contact-item strong {
    display: block;

    color: #c7c7c7;

    font-size: 10px;

    line-height: 1.5;

    font-weight: 500;
}


.footer-contact-item a:hover {
    color: var(--primary);
}



/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 2;
}


.footer-copyright {
    color: #777777;

    font-size: 9px;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-bottom-links a {
    color: #777777;

    font-size: 9px;
}


.footer-bottom-links a:hover {
    color: var(--primary);
}



/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: var(--white);

    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.25);

    font-size: 13px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: all 0.3s ease;

    z-index: 999;
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--black);

    color: var(--white);

    transform: translateY(-4px);
}



/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .footer-section {
        padding-top: 65px;
    }

}


@media (max-width: 767px) {

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }


    .footer-bottom-links {
        justify-content: center;
    }

}


@media (max-width: 575px) {

    .footer-section {
        padding-top: 55px;
    }


    .footer-top {
        padding-bottom: 40px;
    }


    .footer-brand p {
        font-size: 11px;
    }


    .footer-widget h4 {
        font-size: 13px;
    }


    .footer-bottom-links {
        gap: 12px;

        flex-wrap: wrap;
    }


    .back-to-top {
        width: 40px;
        height: 40px;

        right: 15px;
        bottom: 15px;
    }

}

/* =========================================
   CONTACT FORM ALERT
========================================= */

.contact-alert {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px 45px 16px 16px;

    margin-bottom: 22px;

    border-radius: 14px;

    animation: contactAlertShow 0.4s ease;
}


/* SUCCESS */

.contact-alert-success {
    background: #ecfdf3;

    border: 1px solid #b7efcd;

    color: #116530;
}


.contact-alert-success .contact-alert-icon {
    background: #d7f7e3;

    color: #159447;
}


/* ERROR */

.contact-alert-error {
    background: #fff1f1;

    border: 1px solid #ffd0d0;

    color: #b42318;
}


.contact-alert-error .contact-alert-icon {
    background: #ffe0e0;

    color: #d92d20;
}


/* ICON */

.contact-alert-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    font-size: 15px;
}


.contact-alert strong {
    display: block;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 3px;
}


.contact-alert p {
    margin: 0;

    font-size: 10px;

    line-height: 1.6;
}


/* CLOSE BUTTON */

.contact-alert-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: inherit;

    border: 0;

    border-radius: 7px;

    font-size: 12px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.contact-alert-close:hover {
    background: #111111;

    color: #ffffff;
}


@keyframes contactAlertShow {

    from {
        opacity: 0;

        transform: translateY(-8px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   CORE BRIDGE OFF-WHITE + BLUE PREMIUM THEME
   Layout, spacing, responsiveness and animations unchanged.
========================================================= */

:root {
    --primary: #1498F6;
    --primary-dark: #0B6FC2;

    --black: #0B0F14;
    --text: #5E6570;

    --white: #FFFDFA;

    --light-blue: #EAF4FF;
    --border: #E1DED6;
}

/* GLOBAL */
html,
body {
    background: #F6F3EC;
}

body {
    color: #5E6570;
}

::selection {
    background: #1498F6;
    color: #0B0F14;
}

/* NAVBAR */
.main-navbar {
    background: rgba(246, 243, 236, 0.96);
    border-bottom-color: rgba(20, 152, 246, 0.14);
}

.main-navbar.scrolled {
    background: rgba(246, 243, 236, 0.985);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.nav-link {
    color: #252A31 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #1498F6 !important;
}

.nav-link::after {
    background: #1498F6;
}

.nav-cta {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
    box-shadow: 0 8px 22px rgba(20, 152, 246, 0.18);
}

.nav-cta:hover {
    background: #0B0F14;
    color: #1498F6;
    border-color: #1498F6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.42);
}

.custom-toggler {
    background: #FFFDFA;
    border-color: #E1DED6 !important;
}

.custom-toggler i {
    color: #1498F6;
}

.logo-icon {
    background: #1498F6;
    color: #0B0F14;
}

.temporary-logo:hover .logo-icon {
    background: #0B0F14;
    color: #1498F6;
    box-shadow: 0 0 0 1px #1498F6;
}

.logo-blue {
    color: #1498F6;
}

.logo-black,
.logo-text {
    color: #111827;
}

/* MOBILE NAV */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #FFFFFF;
        border-color: #E5E2DB;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    }

    .nav-link:hover,
    .nav-link.active {
        background: #EAF4FF;
    }
}

/* TEMPORARY/HERO BACKGROUNDS */
.temporary-section,
.hero-section {
    background:
        radial-gradient(circle at 10% 30%, rgba(20, 152, 246, 0.10), transparent 26%),
        radial-gradient(circle at 90% 70%, rgba(20, 152, 246, 0.07), transparent 29%),
        #F6F3EC;
}

.hero-shape-one {
    background: rgba(20, 152, 246, 0.055);
}

.hero-shape-two {
    border-color: rgba(20, 152, 246, 0.055);
}

.section-tag,
.hero-badge,
.section-badge {
    background: #EAF4FF;
    color: #1498F6;
    border-color: rgba(20, 152, 246, 0.22);
    box-shadow: none;
}

.temporary-content h1,
.hero-content h1,
.section-title {
    color: #0B0F14;
}

.temporary-content h1 span,
.hero-content h1 span,
.section-title span {
    color: #1498F6;
}

.temporary-content p,
.hero-description,
.section-description {
    color: #68717D;
}

.hero-feature {
    color: #4B5563;
}

.hero-feature-icon {
    color: #1498F6;
}

/* HERO BUTTONS */
.hero-primary-btn,
.about-btn,
.md-bottom-btn,
.contact-submit-btn,
.cta-primary-btn {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
    box-shadow: 0 12px 30px rgba(20, 152, 246, 0.16);
}

.hero-primary-btn:hover,
.about-btn:hover,
.md-bottom-btn:hover,
.contact-submit-btn:hover,
.cta-primary-btn:hover {
    background: #0B0F14;
    color: #1498F6;
    border-color: #1498F6;
}

.hero-secondary-btn {
    background: #FFFFFF;
    color: #0B0F14;
    border-color: #DAD7D0;
}

.hero-secondary-btn i {
    background: #F1F7FD;
    color: #1498F6;
}

.hero-secondary-btn:hover {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
}

.hero-secondary-btn:hover i {
    background: #0B0F14;
    color: #1498F6;
}

/* HERO DASHBOARD */
.hero-dashboard,
.floating-card {
    background: rgba(14, 14, 14, 0.97);
    border-color: rgba(20, 152, 246, 0.18);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        0 8px 30px rgba(20, 152, 246, 0.05);
}

.dashboard-header h4,
.floating-card strong {
    color: #111827;
}

.dashboard-small,
.floating-card span {
    color: #7A828C;
}

.dashboard-icon,
.floating-icon {
    background: #F1F7FD;
    color: #1498F6;
}

.growth-chart {
    background: #FFFFFF;
    border: 1px solid #F7F5F0;
}

.chart-lines span {
    border-color: #E5E2DB;
}

.chart-bar {
    background: linear-gradient(180deg, #64BEFF, #0B6FC2);
    box-shadow: 0 8px 15px rgba(20, 152, 246, 0.16);
}

.dashboard-stat {
    background: #EAF4FF;
    border: 1px solid rgba(20, 152, 246, 0.12);
}

.dashboard-stat span {
    color: #7A828C;
}

.dashboard-stat strong {
    color: #1498F6;
}

.hero-circle {
    background: #1498F6;
    color: #0B0F14;
    box-shadow: 0 18px 40px rgba(20, 152, 246, 0.22);
}

/* STATS */
.stats-section {
    background: #F6F3EC;
}

.stats-wrapper {
    background: #FFFFFF;
    border-color: rgba(20, 152, 246, 0.16);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.34),
        0 5px 20px rgba(20, 152, 246, 0.035);
}

.stats-wrapper::before,
.stats-wrapper::after {
    background: rgba(20, 152, 246, 0.05);
}

.stats-wrapper .col-lg-3:not(:last-child) .stat-item::after {
    background: #E5E2DB;
}

.stat-icon {
    background: #EAF4FF;
    color: #1498F6;
}

.stat-item:hover .stat-icon {
    background: #1498F6;
    color: #0B0F14;
}

.stat-item h3 {
    color: #111827;
}

.stat-item p {
    color: #737B86;
}

@media (max-width: 991px) {
    .stat-item {
        background: #FFFFFF;
        border-color: #E3E0D9;
    }
}

/* SECTION BACKGROUNDS */
.services-section,
.md-section,
.testimonials-section,
.contact-section {
    background: #FFFFFF;
}

.about-section,
.pricing-section,
.cta-section {
    background: #F6F3EC;
}

/* ALL MAIN CARDS */
.service-card,
.about-main-card,
.md-card,
.md-bottom-box,
.pricing-card,
.testimonial-card,
.contact-form-card {
    background: #FFFFFF;
    border-color: #E5E2DB;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.service-card:hover,
.md-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
    border-color: rgba(20, 152, 246, 0.42);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

/* SERVICES */
.service-card::before,
.md-card::before,
.pricing-card::before,
.testimonial-card::before {
    background: #1498F6;
}

.service-number {
    color: rgba(20, 152, 246, 0.13);
}

.service-card:hover .service-number {
    color: rgba(20, 152, 246, 0.22);
}

.service-icon,
.md-main-icon,
.pricing-icon,
.testimonial-quote {
    background: #EAF4FF;
    color: #1498F6;
}

.service-card:hover .service-icon,
.md-card:hover .md-main-icon,
.pricing-card:hover .pricing-icon,
.testimonial-card:hover .testimonial-quote {
    background: #1498F6;
    color: #0B0F14;
}

.service-card h3,
.about-card-top h4,
.about-mini-card h5,
.about-benefit h5,
.md-card h3,
.md-list-item h5,
.md-bottom-content h4,
.pricing-top h3,
.testimonial-card h5,
.client-info h5 {
    color: #111827;
}

.service-card > p,
.about-mini-card p,
.about-text,
.about-benefit p,
.md-card > p,
.pricing-top p,
.testimonial-text {
    color: #6B7280;
}

.service-list li,
.trust-item {
    color: #626B76;
}

.service-list i {
    background: rgba(20, 152, 246, 0.10);
    color: #1498F6;
}

.service-link {
    color: #1498F6;
}

.service-link:hover {
    color: #0B0F14;
}

/* ABOUT */
.about-main-card {
    border-color: rgba(20, 152, 246, 0.18);
}

.about-card-icon {
    background: #1498F6;
    color: #0B0F14;
    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.18);
}

.about-card-top span,
.about-floating-card span {
    color: #7C848E;
}

.about-mini-card,
.md-list-item {
    background: #FFFDFA;
    border-color: #E1DED6;
}

.about-mini-card:hover,
.md-list-item:hover {
    background: #1498F6;
    border-color: #1498F6;
}

.about-mini-icon,
.md-list-icon {
    background: #EAF4FF;
    color: #1498F6;
}

.about-mini-card:hover .about-mini-icon,
.md-list-item:hover .md-list-icon {
    background: #0B0F14;
    color: #1498F6;
}

.about-mini-card:hover h5,
.md-list-item:hover h5 {
    color: #0B0F14;
}

.about-mini-card:hover p,
.md-list-item:hover span {
    color: #DDEFFF;
}

.about-floating-card {
    background: #FFFFFF;
    border-color: #E5E2DB;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.40);
}

.about-floating-icon,
.about-benefit-icon {
    background: #EAF4FF;
    color: #1498F6;
}

.about-floating-card strong {
    color: #0B0F14;
}

.about-decoration-one {
    background: rgba(20, 152, 246, 0.055);
}

.about-decoration-two {
    border-color: rgba(20, 152, 246, 0.055);
}

.about-intro {
    color: #343A43;
}

.about-benefit:hover .about-benefit-icon {
    background: #1498F6;
    color: #0B0F14;
}

/* MARKETING + DEVELOPMENT */
.md-card-label {
    color: rgba(20, 152, 246, 0.10);
}

.md-card:hover .md-card-label {
    color: rgba(20, 152, 246, 0.17);
}

.md-small-title,
.md-bottom-content span {
    color: #1498F6;
}

.md-list-item span {
    color: #767E89;
}

.md-line {
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(20, 152, 246, 0.48),
        transparent
    );
}

.md-growth-circle {
    background: #1498F6;
    color: #0B0F14;
    box-shadow:
        0 20px 45px rgba(20, 152, 246, 0.20),
        0 0 0 12px rgba(20, 152, 246, 0.06);
}

.md-growth-circle:hover {
    background: #0B0F14;
    color: #1498F6;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.42),
        0 0 0 1px #1498F6,
        0 0 0 12px rgba(20, 152, 246, 0.05);
}

.md-bottom-icon {
    background: #EAF4FF;
    color: #1498F6;
}

@media (max-width: 991px) {
    .md-line {
        background: linear-gradient(
            to right,
            transparent,
            rgba(20, 152, 246, 0.48),
            transparent
        );
    }
}

/* PRICING */
.pricing-card-featured {
    border-color: #1498F6;
    box-shadow:
        0 25px 60px rgba(20, 152, 246, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.25);
}

.popular-badge {
    background: #1498F6;
    color: #0B0F14;
}

.pricing-plan-label,
.pricing-price sup {
    color: #1498F6;
}

.pricing-price strong {
    color: #0B0F14;
}

.pricing-from,
.pricing-price small {
    color: #767E89;
}

.pricing-divider,
.testimonial-client {
    border-color: #E5E2DB;
}

.pricing-features li {
    color: #626B76;
}

.pricing-features i {
    background: #EAF4FF;
    color: #1498F6;
}

.pricing-btn {
    background: #FFFFFF;
    color: #1498F6;
    border-color: rgba(20, 152, 246, 0.55);
}

.pricing-btn:hover,
.featured-btn:hover {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
}

.featured-btn {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
}

.pricing-note {
    background: #FFFFFF;
    border-color: #E5E2DB;
}

.pricing-note-icon {
    background: #EAF4FF;
    color: #1498F6;
}

.pricing-note strong {
    color: #111827;
}

.pricing-note span {
    color: #737B86;
}

/* TESTIMONIALS */
.testimonial-featured {
    border-color: rgba(20, 152, 246, 0.32);
    box-shadow: 0 18px 45px rgba(20, 152, 246, 0.06);
}

.testimonial-stars {
    color: #1498F6;
}

.client-avatar {
    background: #1498F6;
    color: #0B0F14;
}

.testimonial-card:hover .client-avatar {
    background: #0B0F14;
    color: #1498F6;
    box-shadow: 0 0 0 1px #1498F6;
}

.client-info span {
    color: #7A828C;
}

.trust-item i {
    color: #1498F6;
}

/* CTA */
.cta-wrapper {
    background:
        radial-gradient(circle at 12% 15%, rgba(20,152,246,0.12), transparent 27%),
        linear-gradient(135deg, #FFFDFA 0%, #F6F3EC 58%, #EAF4FF 100%);
    border: 1px solid rgba(20, 152, 246, 0.30);
    box-shadow:
        0 24px 60px rgba(11, 15, 20, 0.10),
        0 10px 28px rgba(20, 152, 246, 0.08);
}

.cta-glow-one,
.cta-glow-two {
    background: rgba(20, 152, 246, 0.10);
}

.cta-grid-pattern {
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(20,152,246,0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,152,246,0.28) 1px, transparent 1px);
}

.cta-badge {
    background: rgba(20, 152, 246, 0.10);
    color: #1498F6;
    border-color: rgba(20, 152, 246, 0.24);
}

.cta-content h2 {
    color: #0B0F14;
}

.cta-content h2 span {
    color: #1498F6;
}

.cta-content > p,
.cta-point {
    color: #606975;
}

.cta-point i {
    color: #1498F6;
}

.cta-action-card {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(20, 152, 246, 0.22);
    box-shadow: 0 18px 50px rgba(11, 15, 20, 0.10);
}

.cta-action-icon {
    background: #EAF4FF;
    color: #1498F6;
}

.cta-action-card:hover .cta-action-icon {
    background: #1498F6;
    color: #0B0F14;
}

.cta-action-small {
    color: #1498F6;
}

.cta-action-card h3 {
    color: #111827;
}

.cta-action-card p {
    color: #737B86;
}

.cta-secondary-link {
    color: #1498F6;
}

.cta-secondary-link:hover {
    color: #0B0F14;
}

/* CONTACT LEFT */
.contact-info-card {
    background:
        radial-gradient(circle at 85% 5%, rgba(20,152,246,0.13), transparent 28%),
        linear-gradient(145deg, #FFFDFA 0%, #F6F3EC 65%, #EAF4FF 100%);
    border: 1px solid rgba(20, 152, 246, 0.26);
    box-shadow: 0 22px 55px rgba(11, 15, 20, 0.10);
}

.contact-info-card::before,
.contact-info-card::after {
    border-color: rgba(20, 152, 246, 0.07);
    background: rgba(20, 152, 246, 0.06);
}

.contact-main-icon {
    background: #EAF4FF;
    color: #1498F6;
    border-color: rgba(20, 152, 246, 0.18);
}

.contact-info-top > span {
    color: #1498F6;
}

.contact-info-top h3 {
    color: #0B0F14;
}

.contact-info-top p {
    color: #68717D;
}

.contact-info-item {
    background: #FFFDFA;
    border-color: #E1DED6;
}

.contact-info-item:hover {
    background: #1498F6;
    border-color: #1498F6;
}

.contact-info-icon {
    background: #F1F7FD;
    color: #1498F6;
}

.contact-info-item:hover .contact-info-icon {
    background: #0B0F14;
    color: #1498F6;
}

.contact-info-item span {
    color: #7C848E;
}

.contact-info-item a,
.contact-info-item strong {
    color: #111827;
}

.contact-info-item:hover span {
    color: #DDEFFF;
}

.contact-info-item:hover a,
.contact-info-item:hover strong {
    color: #0B0F14;
}

.contact-social {
    border-color: rgba(20, 152, 246, 0.15);
}

.contact-social > span {
    color: #989898;
}

.contact-social-links a {
    background: #FFFFFF;
    color: #1498F6;
    border-color: #E1DED6;
}

.contact-social-links a:hover {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
}

/* CONTACT FORM */
.contact-form-heading > span,
.contact-input-wrap > i,
.contact-textarea-wrap > i,
.contact-form-note i {
    color: #1498F6;
}

.contact-form-heading h3,
.contact-form-group label {
    color: #111827;
}

.contact-form-heading p,
.contact-form-note {
    color: #767E89;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: #FFFFFF;
    color: #1F2937;
    border-color: #E1DED6;
}

.contact-form-card .form-control::placeholder {
    color: #5E6670;
}

.contact-form-card .form-select option {
    background: #FFFFFF;
    color: #1F2937;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background: #FFFFFF;
    border-color: #1498F6;
    color: #0B0F14;
    box-shadow: 0 0 0 4px rgba(20, 152, 246, 0.08);
}

/* CONTACT SUCCESS/ERROR ALERTS */
.contact-alert-success {
    background: #F1F7FD;
    border-color: rgba(20, 152, 246, 0.35);
    color: #8CD0FF;
}

.contact-alert-success .contact-alert-icon {
    background: #F1F7FD;
    color: #1498F6;
}

.contact-alert-error {
    background: #180B0B;
    border-color: #482020;
    color: #E39A9A;
}

.contact-alert-close:hover {
    background: #1498F6;
    color: #0B0F14;
}

/* FOOTER */
.footer-section {
    background: antiquewhite;
    border-top: 1px solid rgba(20, 152, 246, 0.15);
}

.footer-section::before {
    background: rgba(20, 152, 246, 0.10);
}

.footer-logo-icon {
    background: #1498F6;
    color: #0B0F14;
}

.footer-logo:hover .footer-logo-icon {
    background: #F7F8FA;
    color: #1498F6;
    box-shadow: 0 0 0 1px #1498F6;
}

.footer-logo-text,
.footer-widget h4 {
    color: black;
    font-weight: 700;
}

.footer-logo-text span,
.footer-widget h4::after {
    color: #1498F6;
    background: #1498F6;
}

.footer-brand p,
.footer-widget ul li a {
    color: black;
}

.footer-widget ul li a::before {
    background: #1498F6;
}

.footer-widget ul li a:hover {
    color: #1498F6;
}

.footer-social a {
    background: #151A20;
    color: #1498F6;
    border-color: #E1DED6;
}

.footer-social a:hover {
    background: #1498F6;
    color: #0B0F14;
    border-color: #1498F6;
}

.footer-contact-icon {
    background: #EAF4FF;
    color: #1498F6;
}

.footer-contact-item span {
    color: #626A74;
}

.footer-contact-item a,
.footer-contact-item strong {
    color: #525A65;
}

.footer-contact-item a:hover,
.footer-bottom-links a:hover {
    color: #1498F6;
}

.footer-bottom {
    border-color: rgba(20, 152, 246, 0.12);
}

.footer-copyright,
.footer-bottom-links a {
    color: #666E78;
}

.back-to-top {
    background: #1498F6;
    color: #0B0F14;
    box-shadow: 0 10px 25px rgba(20, 152, 246, 0.20);
}

.back-to-top:hover {
    background: #0B0F14;
    color: #1498F6;
    box-shadow: 0 0 0 1px #1498F6;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0B0F14;
}

::-webkit-scrollbar-thumb {
    background: #0B6FC2;
    border-radius: 20px;
    border: 2px solid #0B0F14;
}

::-webkit-scrollbar-thumb:hover {
    background: #1498F6;
}


/* =========================================================
   PRIVACY POLICY PAGE
========================================================= */

.privacy-page {
    background: #F6F3EC;
    color: #5E6570;
}


/* =========================================
   PRIVACY HERO
========================================= */

.privacy-hero {
    position: relative;
    padding: 155px 0 90px;
    background:
        radial-gradient(
            circle at 18% 25%,
            rgba(20, 152, 246, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(20, 152, 246, 0.06),
            transparent 25%
        ),
        #F6F3EC;

    border-bottom: 1px solid rgba(20, 152, 246, 0.1);
    overflow: hidden;
}


.privacy-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.privacy-glow-one {
    width: 320px;
    height: 320px;

    top: -160px;
    right: -100px;

    border: 1px solid rgba(20, 152, 246, 0.12);
}


.privacy-glow-two {
    width: 180px;
    height: 180px;

    left: -80px;
    bottom: -90px;

    background: rgba(20, 152, 246, 0.035);
}


.privacy-hero-content {
    position: relative;
    max-width: 850px;
    margin: auto;
    text-align: center;
    z-index: 2;
}


.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;
    margin-bottom: 21px;

    background: #EAF4FF;

    color: #1498F6;

    border: 1px solid rgba(20, 152, 246, 0.25);
    border-radius: 50px;

    font-size: 11px;
    font-weight: 600;
}


.privacy-hero h1 {
    color: #0B0F14;

    font-size: clamp(48px, 7vw, 78px);

    font-weight: 800;
    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 22px;
}


.privacy-hero h1 span {
    color: #1498F6;
}


.privacy-hero-content > p {
    max-width: 720px;

    margin: 0 auto 31px;

    color: #5F6772;

    font-size: 14px;

    line-height: 1.9;
}


.privacy-meta {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.privacy-meta-item {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;
    border-radius: 12px;
}


.privacy-meta-item > i {
    color: #1498F6;
    font-size: 12px;
}


.privacy-meta-item span {
    display: block;

    color: #666E78;

    font-size: 8px;

    margin-bottom: 2px;
}


.privacy-meta-item strong {
    display: block;

    color: #E5E2DB;

    font-size: 10px;

    font-weight: 600;
}



/* =========================================
   PRIVACY CONTENT
========================================= */

.privacy-content-section {
    padding: 90px 0 110px;
    background: #F6F3EC;
}



/* =========================================
   SIDEBAR
========================================= */

.privacy-sidebar {
    position: sticky;
    top: 110px;
}


.privacy-sidebar-header {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}


.privacy-sidebar-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #EAF4FF;

    color: #1498F6;

    border: 1px solid rgba(20, 152, 246, 0.2);

    border-radius: 12px;
}


.privacy-sidebar-header span {
    display: block;

    color: #666E78;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.privacy-sidebar-header h3 {
    color: #111827;

    font-size: 16px;

    font-weight: 700;

    margin: 2px 0 0;
}


/* Navigation */

.privacy-nav {
    display: flex;
    flex-direction: column;

    padding: 10px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 18px;
}


.privacy-nav-link {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 10px 11px;

    color: #737B86;

    border-radius: 10px;

    font-size: 10px;

    transition: all 0.3s ease;
}


.privacy-nav-link span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    flex-shrink: 0;

    background: #FFFFFF;

    color: #666E78;

    border-radius: 7px;

    font-size: 8px;

    transition: 0.3s;
}


.privacy-nav-link:hover,
.privacy-nav-link.active {
    padding-left: 15px;

    background: #EAF4FF;

    color: #1498F6;
}


.privacy-nav-link:hover span,
.privacy-nav-link.active span {
    background: #1498F6;

    color: #0B0F14;
}



/* =========================================
   SIDEBAR HELP
========================================= */

.privacy-help-box {
    margin-top: 18px;

    padding: 21px;

    background:
        linear-gradient(
            145deg,
            #111 0%,
            #F1F7FD 100%
        );

    border: 1px solid rgba(20, 152, 246, 0.2);

    border-radius: 17px;
}


.privacy-help-icon {
    width: 41px;
    height: 41px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1498F6;

    color: #0B0F14;

    border-radius: 11px;

    margin-bottom: 13px;
}


.privacy-help-box > span {
    display: block;

    color: #1498F6;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.privacy-help-box h4 {
    color: #0B0F14;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 7px;
}


.privacy-help-box p {
    color: #737B86;

    font-size: 9px;

    line-height: 1.7;

    margin-bottom: 14px;
}


.privacy-help-box a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #1498F6;

    font-size: 9px;

    font-weight: 600;
}


.privacy-help-box a:hover {
    color: #fff;
}


.privacy-help-box a i {
    font-size: 8px;

    transition: transform 0.3s ease;
}


.privacy-help-box a:hover i {
    transform: translateX(4px);
}



/* =========================================
   POLICY BLOCK
========================================= */

.privacy-policy-body {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.privacy-block {
    position: relative;

    padding: 35px 32px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 22px;

    scroll-margin-top: 110px;

    overflow: hidden;

    transition: all 0.3s ease;
}


.privacy-block:hover {
    border-color: rgba(20, 152, 246, 0.28);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}


.privacy-number {
    position: absolute;

    top: 18px;
    right: 23px;

    color: rgba(20, 152, 246, 0.11);

    font-size: 47px;

    font-weight: 800;

    line-height: 1;
}


.privacy-block-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #EAF4FF;

    color: #1498F6;

    border: 1px solid rgba(20, 152, 246, 0.16);

    border-radius: 13px;

    font-size: 16px;

    margin-bottom: 18px;

    transition: 0.3s ease;
}


.privacy-block:hover .privacy-block-icon {
    background: #1498F6;

    color: #0B0F14;

    transform: rotate(-4deg);
}


.privacy-block h2 {
    color: #111827;

    font-size: 25px;

    font-weight: 750;

    letter-spacing: -0.5px;

    margin-bottom: 15px;
}


.privacy-block h3 {
    color: #1498F6;

    font-size: 14px;

    font-weight: 700;

    margin: 25px 0 10px;
}


.privacy-block > p {
    color: #6B7280;

    font-size: 11px;

    line-height: 1.95;

    margin-bottom: 13px;
}


.privacy-block > p:last-child {
    margin-bottom: 0;
}



/* =========================================
   HIGHLIGHT
========================================= */

.privacy-highlight {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 22px;

    padding: 16px;

    background: #EAF4FF;

    border: 1px solid rgba(20, 152, 246, 0.17);

    border-radius: 13px;
}


.privacy-highlight i {
    color: #1498F6;

    margin-top: 3px;
}


.privacy-highlight p {
    color: #78C6FF;

    font-size: 10px;

    line-height: 1.7;

    margin: 0;
}



/* =========================================
   LIST
========================================= */

.privacy-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    list-style: none;

    padding: 0;

    margin: 17px 0 22px;
}


.privacy-list li {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    padding: 11px;

    background: #FFFFFF;

    border: 1px solid #222;

    border-radius: 10px;

    color: #5F6772;

    font-size: 9px;

    line-height: 1.5;
}


.privacy-list li i {
    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #EAF4FF;

    color: #1498F6;

    border-radius: 50%;

    font-size: 7px;
}



/* =========================================
   PURPOSE CARDS
========================================= */

.privacy-purpose-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 20px;
}


.privacy-purpose-card {
    padding: 17px;

    background: #FFFFFF;

    border: 1px solid #F7F5F0;

    border-radius: 13px;

    transition: all 0.3s ease;
}


.privacy-purpose-card:hover {
    background: #EAF4FF;

    border-color: rgba(20, 152, 246, 0.22);

    transform: translateY(-3px);
}


.privacy-purpose-card > i {
    color: #1498F6;

    font-size: 15px;

    margin-bottom: 11px;
}


.privacy-purpose-card h4 {
    color: #E7E3DB;

    font-size: 11px;

    font-weight: 650;

    margin-bottom: 6px;
}


.privacy-purpose-card p {
    color: #7C848E;

    font-size: 9px;

    line-height: 1.7;

    margin: 0;
}



/* =========================================
   SECURITY BOX
========================================= */

.privacy-security-box {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 22px;

    padding: 17px;

    background: linear-gradient(
        135deg,
        #EAF4FF,
        #FFFDFA
    );

    border: 1px solid rgba(20, 152, 246, 0.18);

    border-radius: 14px;
}


.privacy-security-box > div {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #1498F6;

    color: #0B0F14;

    border-radius: 12px;
}


.privacy-security-box p {
    color: #5F6772;

    font-size: 9px;

    line-height: 1.75;

    margin: 0;
}



/* =========================================
   CONTACT CARD
========================================= */

.privacy-contact-block {
    border-color: rgba(20, 152, 246, 0.23);
}


.privacy-contact-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;

    padding: 18px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 15px;
}


.privacy-contact-brand {
    display: flex;

    align-items: center;

    gap: 11px;
}


.privacy-contact-logo {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1498F6;

    color: #0B0F14;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 800;
}


.privacy-contact-brand span {
    display: block;

    color: #111827;

    font-size: 11px;

    font-weight: 700;
}


.privacy-contact-brand strong {
    display: block;

    color: #666E78;

    font-size: 8px;

    font-weight: 500;

    margin-top: 2px;
}


.privacy-contact-details {
    display: flex;

    align-items: center;

    gap: 9px;
}


.privacy-contact-details a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 10px 12px;

    background: #FFFFFF;

    color: #5E6570;

    border: 1px solid #E5E2DB;

    border-radius: 9px;

    font-size: 9px;
}


.privacy-contact-details a i {
    color: #1498F6;
}


.privacy-contact-details a:hover {
    background: #1498F6;

    color: #0B0F14;

    border-color: #1498F6;
}


.privacy-contact-details a:hover i {
    color: #0B0F14;
}



/* =========================================
   FINAL NOTE
========================================= */

.privacy-final-note {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 17px;

    background: #FFFFFF;

    border: 1px dashed #DAD7D0;

    border-radius: 13px;
}


.privacy-final-note i {
    color: #1498F6;

    margin-top: 3px;
}


.privacy-final-note p {
    color: #7C848E;

    font-size: 9px;

    line-height: 1.7;

    margin: 0;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .privacy-hero {
        padding: 130px 0 75px;
    }


    .privacy-content-section {
        padding: 70px 0 85px;
    }


    .privacy-sidebar {
        position: static;
    }


    .privacy-nav {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }


    .privacy-help-box {
        display: none;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .privacy-hero {
        padding: 115px 0 60px;
    }


    .privacy-hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .privacy-hero-content > p {
        font-size: 11px;
    }


    .privacy-meta {
        align-items: stretch;

        flex-direction: column;
    }


    .privacy-meta-item {
        justify-content: center;
    }


    .privacy-content-section {
        padding: 55px 0 70px;
    }


    .privacy-nav {
        grid-template-columns: 1fr;
    }


    .privacy-block {
        padding: 26px 20px;

        border-radius: 18px;
    }


    .privacy-number {
        font-size: 38px;

        right: 17px;
    }


    .privacy-block h2 {
        font-size: 21px;
    }


    .privacy-block > p {
        font-size: 10px;
    }


    .privacy-list,
    .privacy-purpose-grid {
        grid-template-columns: 1fr;
    }


    .privacy-contact-card {
        flex-direction: column;

        align-items: stretch;
    }


    .privacy-contact-details {
        flex-direction: column;

        align-items: stretch;
    }


    .privacy-contact-details a {
        justify-content: center;
    }

}

/* =========================================================
   TERMS & CONDITIONS PAGE
========================================================= */

.terms-page {
    background: #F6F3EC;
    color: #5E6570;
}


/* =========================================
   HERO
========================================= */

.terms-hero {
    position: relative;

    padding: 155px 0 90px;

    background:
        radial-gradient(
            circle at 18% 25%,
            rgba(20, 152, 246, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(20, 152, 246, 0.06),
            transparent 25%
        ),
        #F6F3EC;

    border-bottom: 1px solid rgba(20, 152, 246, 0.1);

    overflow: hidden;
}


.terms-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.terms-glow-one {
    width: 320px;
    height: 320px;

    top: -160px;
    right: -100px;

    border: 1px solid rgba(20, 152, 246, 0.12);
}


.terms-glow-two {
    width: 180px;
    height: 180px;

    left: -80px;
    bottom: -90px;

    background: rgba(20, 152, 246, 0.035);
}


.terms-hero-content {
    position: relative;

    max-width: 850px;

    margin: auto;

    text-align: center;

    z-index: 2;
}


.terms-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 16px;

    margin-bottom: 21px;

    background: #EAF4FF;

    color: #1498F6;

    border: 1px solid rgba(20, 152, 246, 0.25);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 600;
}


.terms-hero h1 {
    color: #0B0F14;

    font-size: clamp(48px, 7vw, 78px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 22px;
}


.terms-hero h1 span {
    color: #1498F6;
}


.terms-hero-content > p {
    max-width: 720px;

    margin: 0 auto 31px;

    color: #5F6772;

    font-size: 14px;

    line-height: 1.9;
}


.terms-meta {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


.terms-meta-item {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 15px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 12px;
}


.terms-meta-item > i {
    color: #1498F6;

    font-size: 12px;
}


.terms-meta-item span {
    display: block;

    color: #666E78;

    font-size: 8px;

    margin-bottom: 2px;
}


.terms-meta-item strong {
    display: block;

    color: #E5E2DB;

    font-size: 10px;

    font-weight: 600;
}


/* =========================================
   MAIN CONTENT
========================================= */

.terms-content-section {
    padding: 90px 0 110px;

    background: #F6F3EC;
}


/* =========================================
   SIDEBAR
========================================= */

.terms-sidebar {
    position: sticky;

    top: 110px;
}


.terms-sidebar-header {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}


.terms-sidebar-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #EAF4FF;

    color: #1498F6;

    border: 1px solid rgba(20, 152, 246, 0.2);

    border-radius: 12px;
}


.terms-sidebar-header span {
    display: block;

    color: #666E78;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.terms-sidebar-header h3 {
    color: #111827;

    font-size: 16px;

    font-weight: 700;

    margin: 2px 0 0;
}


/* =========================================
   SIDEBAR NAV
========================================= */

.terms-nav {
    display: flex;

    flex-direction: column;

    padding: 10px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 18px;
}


.terms-nav-link {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 9px 11px;

    color: #737B86;

    border-radius: 10px;

    font-size: 9px;

    transition: all 0.3s ease;
}


.terms-nav-link span {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #FFFFFF;

    color: #666E78;

    border-radius: 7px;

    font-size: 8px;

    transition: 0.3s;
}


.terms-nav-link:hover,
.terms-nav-link.active {
    padding-left: 15px;

    background: #EAF4FF;

    color: #1498F6;
}


.terms-nav-link:hover span,
.terms-nav-link.active span {
    background: #1498F6;

    color: #0B0F14;
}


/* =========================================
   HELP BOX
========================================= */

.terms-help-box {
    margin-top: 18px;

    padding: 21px;

    background:
        linear-gradient(
            145deg,
            #111 0%,
            #F1F7FD 100%
        );

    border: 1px solid rgba(20, 152, 246, 0.2);

    border-radius: 17px;
}


.terms-help-icon {
    width: 41px;
    height: 41px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1498F6;

    color: #0B0F14;

    border-radius: 11px;

    margin-bottom: 13px;
}


.terms-help-box > span {
    display: block;

    color: #1498F6;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.terms-help-box h4 {
    color: #0B0F14;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 7px;
}


.terms-help-box p {
    color: #737B86;

    font-size: 9px;

    line-height: 1.7;

    margin-bottom: 14px;
}


.terms-help-box a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #1498F6;

    font-size: 9px;

    font-weight: 600;
}


.terms-help-box a:hover {
    color: #fff;
}


/* =========================================
   TERMS BODY
========================================= */

.terms-policy-body {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.terms-block {
    position: relative;

    padding: 35px 32px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 22px;

    scroll-margin-top: 110px;

    overflow: hidden;

    transition: all 0.3s ease;
}


.terms-block:hover {
    border-color: rgba(20, 152, 246, 0.28);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}


.terms-number {
    position: absolute;

    top: 18px;
    right: 23px;

    color: rgba(20, 152, 246, 0.11);

    font-size: 47px;

    font-weight: 800;

    line-height: 1;
}


.terms-block-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #EAF4FF;

    color: #1498F6;

    border: 1px solid rgba(20, 152, 246, 0.16);

    border-radius: 13px;

    font-size: 16px;

    margin-bottom: 18px;

    transition: 0.3s ease;
}


.terms-block:hover .terms-block-icon {
    background: #1498F6;

    color: #0B0F14;

    transform: rotate(-4deg);
}


.terms-block h2 {
    color: #111827;

    font-size: 25px;

    font-weight: 750;

    letter-spacing: -0.5px;

    margin-bottom: 15px;
}


.terms-block h3 {
    color: #1498F6;

    font-size: 14px;

    font-weight: 700;

    margin: 25px 0 10px;
}


.terms-block > p {
    color: #6B7280;

    font-size: 11px;

    line-height: 1.95;

    margin-bottom: 13px;
}


.terms-block > p:last-child {
    margin-bottom: 0;
}


/* =========================================
   HIGHLIGHT
========================================= */

.terms-highlight {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 22px;

    padding: 16px;

    background: #EAF4FF;

    border: 1px solid rgba(20, 152, 246, 0.17);

    border-radius: 13px;
}


.terms-highlight i {
    color: #1498F6;

    margin-top: 3px;
}


.terms-highlight p {
    color: #78C6FF;

    font-size: 10px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   LISTS
========================================= */

.terms-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    list-style: none;

    padding: 0;

    margin: 17px 0 22px;
}


.terms-list li {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    padding: 11px;

    background: #FFFFFF;

    border: 1px solid #222;

    border-radius: 10px;

    color: #5F6772;

    font-size: 9px;

    line-height: 1.5;
}


.terms-list li i {
    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #EAF4FF;

    color: #1498F6;

    border-radius: 50%;

    font-size: 7px;
}


/* =========================================
   WARNING BOX
========================================= */

.terms-warning-box {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 22px;

    padding: 17px;

    background:
        linear-gradient(
            135deg,
            #EAF4FF,
            #FFFDFA
        );

    border: 1px solid rgba(20, 152, 246, 0.18);

    border-radius: 14px;
}


.terms-warning-box > div {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #1498F6;

    color: #0B0F14;

    border-radius: 12px;
}


.terms-warning-box p {
    color: #5F6772;

    font-size: 9px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================
   CONTACT
========================================= */

.terms-contact-block {
    border-color: rgba(20, 152, 246, 0.23);
}


.terms-contact-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;

    padding: 18px;

    background: #FFFFFF;

    border: 1px solid #E1DED6;

    border-radius: 15px;
}


.terms-contact-brand {
    display: flex;

    align-items: center;

    gap: 11px;
}


.terms-contact-logo {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #1498F6;

    color: #0B0F14;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 800;
}


.terms-contact-brand span {
    display: block;

    color: #111827;

    font-size: 11px;

    font-weight: 700;
}


.terms-contact-brand strong {
    display: block;

    color: #666E78;

    font-size: 8px;

    font-weight: 500;

    margin-top: 2px;
}


.terms-contact-details {
    display: flex;

    align-items: center;

    gap: 9px;
}


.terms-contact-details a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 10px 12px;

    background: #FFFFFF;

    color: #5E6570;

    border: 1px solid #E5E2DB;

    border-radius: 9px;

    font-size: 9px;
}


.terms-contact-details a i {
    color: #1498F6;
}


.terms-contact-details a:hover {
    background: #1498F6;

    color: #0B0F14;

    border-color: #1498F6;
}


.terms-contact-details a:hover i {
    color: #0B0F14;
}


/* =========================================
   FINAL NOTE
========================================= */

.terms-final-note {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 17px;

    background: #FFFFFF;

    border: 1px dashed #DAD7D0;

    border-radius: 13px;
}


.terms-final-note i {
    color: #1498F6;

    margin-top: 3px;
}


.terms-final-note p {
    color: #7C848E;

    font-size: 9px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .terms-hero {
        padding: 130px 0 75px;
    }


    .terms-content-section {
        padding: 70px 0 85px;
    }


    .terms-sidebar {
        position: static;
    }


    .terms-nav {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }


    .terms-help-box {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .terms-hero {
        padding: 115px 0 60px;
    }


    .terms-hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .terms-hero-content > p {
        font-size: 11px;
    }


    .terms-meta {
        align-items: stretch;

        flex-direction: column;
    }


    .terms-meta-item {
        justify-content: center;
    }


    .terms-content-section {
        padding: 55px 0 70px;
    }


    .terms-nav {
        grid-template-columns: 1fr;
    }


    .terms-block {
        padding: 26px 20px;

        border-radius: 18px;
    }


    .terms-number {
        font-size: 38px;

        right: 17px;
    }


    .terms-block h2 {
        font-size: 21px;
    }


    .terms-block > p {
        font-size: 10px;
    }


    .terms-list {
        grid-template-columns: 1fr;
    }


    .terms-contact-card {
        flex-direction: column;

        align-items: stretch;
    }


    .terms-contact-details {
        flex-direction: column;

        align-items: stretch;
    }


    .terms-contact-details a {
        justify-content: center;
    }

}

/* =========================================================
   CORE BRIDGE FINAL BRAND SAFETY OVERRIDES
   Ensures the global canvas stays off-white and core actions
   remain in the approved black + blue palette.
========================================================= */
html,
body,
.privacy-page,
.terms-page {
    background-color: #F6F3EC;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(20, 152, 246, 0.22);
    outline-offset: 3px;
}

/* =========================================
   SMS CONSENT
========================================= */

.sms-consent-box {
    padding: 22px 24px;
    background: #f7f5ef;
    border: 1px solid #e4e0d8;
    border-left: 4px solid var(--primary);
    border-radius: 14px;
}

.sms-consent-box h5 {
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sms-consent-box p {
    color: #555555;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.sms-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    cursor: pointer;
    color: var(--black);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}

.sms-consent-checkbox input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.sms-consent-checkbox strong {
    font-weight: 700;
}

@media (max-width: 575px) {
    .sms-consent-box {
        padding: 18px;
    }

    .sms-consent-box p,
    .sms-consent-checkbox {
        font-size: 11px;
    }
}