/* =========================================================
   BIG FISH SOCIAL MEDIA - GLOBAL HEADER
   ========================================================= */

.bf-header,
.bf-header * {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

.bf-header {
    --navy: #031e33;
    --navy2: #082b47;
    --blue: #1e63ad;
    --mid: #138dcc;
    --cyan: #21b8e6;
    --white: #ffffff;
    --text-light: #c5d3dd;

    position: relative;
    z-index: 9999;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.bf-header a {
    text-decoration: none;
}

.bf-header-main {
    width: 100%;
    margin: 0 !important;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bf-header-container {
    width: min(1380px, calc(100% - 50px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}


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

.bf-header-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.bf-header-logo img {
    display: block;
    width: 175px;
    max-height: 68px;
    object-fit: contain;
}


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

.bf-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 3px;
}

.bf-header-nav > a,
.bf-header-dropdown > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 35px 12px;
    color: #e6eef4 !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s ease;
}

.bf-header-nav > a:hover,
.bf-header-dropdown > a:hover {
    color: var(--cyan) !important;
}

.bf-header-nav > a:after,
.bf-header-dropdown > a:after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 26px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.bf-header-nav > a:hover:after,
.bf-header-dropdown > a:hover:after {
    transform: scaleX(1);
}


/* =========================================================
   SERVICES DROPDOWN
   ========================================================= */

.bf-header-dropdown {
    position: relative;
}

.bf-header-dropdown-arrow {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.bf-header-dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    width: 270px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: #082b47;
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: .2s ease;
}

.bf-header-dropdown:hover .bf-header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.bf-header-dropdown-menu a {
    display: block;
    padding: 13px 14px;
    border-radius: 8px;
    color: #dce8f0 !important;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.bf-header-dropdown-menu a:hover {
    color: #fff !important;
    background: rgba(33,184,230,.12);
}

.bf-header-dropdown-menu span {
    display: block;
    margin-top: 3px;
    color: #87a4b8;
    font-size: 10px;
    font-weight: 500;
}


/* =========================================================
   PHONE
   ========================================================= */

.bf-header-phone {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,.1);
}

.bf-header-phone-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(33,184,230,.13);
}

.bf-header-phone-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.bf-header-phone-text {
    display: block;
}

.bf-header-phone-label {
    display: block;
    margin-bottom: 2px;
    color: #8fa8b9;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.bf-header-phone-number {
    display: block;
    color: #fff !important;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}

.bf-header-phone-number:hover {
    color: var(--cyan) !important;
}


/* =========================================================
   QUOTE BUTTON
   ========================================================= */

.bf-header-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 45px;
    padding: 12px 19px;
    border-radius: 7px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 25px rgba(19,141,204,.2);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: .25s ease;
}

.bf-header-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(19,141,204,.3);
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.bf-mobile-toggle {
    display: none;
}

.bf-mobile-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bf-mobile-toggle-label {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    cursor: pointer;
}

.bf-mobile-toggle-label span {
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    transition: .25s ease;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.bf-mobile-menu {
    display: none;
    background: #082b47;
    border-top: 1px solid rgba(255,255,255,.08);
}

.bf-mobile-menu-inner {
    width: min(100% - 30px, 700px);
    margin: 0 auto;
    padding: 17px 0 25px;
}

.bf-mobile-menu a {
    display: block;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: #e6eef4 !important;
    font-size: 14px;
    font-weight: 700;
}

.bf-mobile-menu a:hover {
    color: var(--cyan) !important;
}

.bf-mobile-section-title {
    padding: 20px 8px 7px;
    color: #62d1ef;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bf-mobile-service {
    padding-left: 20px !important;
    color: #c6d7e2 !important;
}


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

@media(max-width:1150px) {

    .bf-header-container {
        width: min(100% - 30px, 1380px);
        min-height: 78px;
    }

    .bf-header-logo img {
        width: 155px;
        max-height: 58px;
    }

    .bf-header-nav,
    .bf-header-phone,
    .bf-header-quote {
        display: none;
    }

    .bf-mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .bf-mobile-toggle-label {
        display: flex;
    }

    .bf-mobile-toggle-input:checked
    ~ .bf-header-main
    .bf-mobile-toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .bf-mobile-toggle-input:checked
    ~ .bf-header-main
    .bf-mobile-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .bf-mobile-toggle-input:checked
    ~ .bf-header-main
    .bf-mobile-toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .bf-mobile-toggle-input:checked
    ~ .bf-mobile-menu {
        display: block;
    }
}

@media(max-width:480px) {

    .bf-header-container {
        min-height: 72px;
    }

    .bf-header-logo img {
        width: 140px;
        max-height: 52px;
    }

    .bf-mobile-toggle-label {
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   BIG FISH SOCIAL MEDIA - HOMEPAGE
   ========================================================= */

.bf-home,
.bf-home * {
    box-sizing: border-box;
}

.bf-home {
    --bf-navy: #031e33;
    --bf-navy-2: #082b47;
    --bf-blue: #1e63ad;
    --bf-mid-blue: #138dcc;
    --bf-cyan: #21b8e6;
    --bf-light-blue: #eaf7fc;
    --bf-light: #f5f8fb;
    --bf-grey: #667789;
    --bf-dark: #10202f;
    --bf-white: #ffffff;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--bf-dark);
    line-height: 1.65;
    overflow: hidden;
}

.bf-home img {
    max-width: 100%;
    display: block;
}

.bf-home a {
    text-decoration: none;
}

.bf-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.bf-section {
    padding: 95px 0;
}

.bf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--bf-mid-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.bf-eyebrow:before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--bf-blue), var(--bf-cyan));
}

.bf-title {
    margin: 0 0 18px;
    color: var(--bf-navy);
    font-size: clamp(35px, 4.2vw, 56px);
    line-height: 1.06;
    letter-spacing: -1.8px;
    font-weight: 800;
}

.bf-section-title {
    margin: 0 0 18px;
    color: var(--bf-navy);
    font-size: clamp(31px, 3.7vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.3px;
    font-weight: 800;
}

.bf-lead {
    font-size: 18px;
    color: var(--bf-grey);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.bf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 14px 27px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    transition: all .25s ease;
}

.bf-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--bf-blue), var(--bf-cyan));
    box-shadow: 0 14px 32px rgba(28,133,192,.26);
}

.bf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(28,133,192,.36);
}

.bf-btn-outline {
    color: var(--bf-navy) !important;
    border: 1.5px solid rgba(3,30,51,.18);
    background: #fff;
}

.bf-btn-outline:hover {
    border-color: var(--bf-mid-blue);
    color: var(--bf-mid-blue) !important;
}

.bf-arrow {
    font-size: 19px;
}


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

.bf-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 92% 30%, rgba(33,184,230,.16), transparent 32%),
        radial-gradient(circle at 15% 90%, rgba(30,99,173,.15), transparent 35%),
        linear-gradient(115deg,#fafdff 0%,#f6fbfe 57%,#edf8fc 100%);
}

.bf-hero:before {
    content: "";
    position: absolute;
    top: 0;
    right: -130px;
    width: 520px;
    height: 520px;
    border: 95px solid rgba(33,184,230,.06);
    border-radius: 50%;
}

.bf-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 70px;
    padding: 90px 0;
}

.bf-hero-copy {
    max-width: 660px;
}

.bf-hero .bf-title span {
    background: linear-gradient(135deg,var(--bf-blue),var(--bf-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bf-hero-text {
    max-width: 620px;
    margin: 0 0 30px;
    font-size: 19px;
    color: #516577;
}

.bf-hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.bf-hero-checks {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bf-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: #3d5264;
}

.bf-check-icon {
    display: flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    background: linear-gradient(135deg,var(--bf-blue),var(--bf-cyan));
}

.bf-hero-visual {
    position: relative;
}

.bf-hero-image-wrap {
    position: relative;
    border-radius: 26px;
    padding: 24px;
    background: linear-gradient(145deg,#fff,#eaf6fb);
    box-shadow: 0 30px 70px rgba(11,54,82,.18);
}

.bf-hero-image {
    width: 100%;
    height: auto;
    border-radius: 17px;
    object-fit: contain;
    background: #fff;
}

.bf-float-card {
    position: absolute;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(20,105,164,.09);
    box-shadow: 0 15px 40px rgba(3,30,51,.15);
    border-radius: 14px;
    padding: 15px 19px;
}

.bf-float-card strong {
    color: var(--bf-navy);
    font-size: 16px;
    display: block;
}

.bf-float-card span {
    font-size: 12px;
    color: var(--bf-grey);
}

.bf-card-one {
    left: -48px;
    bottom: 48px;
}

.bf-card-two {
    right: -35px;
    top: 45px;
}

.bf-mini-icon {
    width: 33px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 9px;
    margin-bottom: 8px;
    background: linear-gradient(135deg,var(--bf-blue),var(--bf-cyan));
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.bf-trust {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.bf-trust-inner {
    background: #fff;
    border-radius: 18px;
    padding: 26px 36px;
    box-shadow: 0 20px 45px rgba(3,30,51,.11);
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.bf-trust-item {
    padding: 4px 24px;
    border-right: 1px solid #e8eef2;
}

.bf-trust-item:last-child {
    border-right: 0;
}

.bf-trust-number {
    color: var(--bf-blue);
    font-weight: 900;
    font-size: 27px;
    line-height: 1.15;
}

.bf-trust-label {
    color: #637586;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}


/* =========================================================
   INTRO
   ========================================================= */

.bf-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.bf-intro-image {
    position: relative;
}

.bf-intro-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 55px rgba(3,30,51,.14);
}

.bf-experience {
    position: absolute;
    bottom: -27px;
    right: -20px;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background: linear-gradient(145deg,var(--bf-blue),var(--bf-cyan));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(26,142,202,.3);
}

.bf-experience strong {
    font-size: 43px;
    line-height: 1;
}

.bf-experience span {
    font-size: 12px;
    font-weight: 700;
    max-width: 110px;
    line-height: 1.3;
    margin-top: 7px;
}

.bf-intro-content p {
    color: var(--bf-grey);
    font-size: 16px;
    margin: 0 0 18px;
}

.bf-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
    margin: 28px 0 33px;
}

.bf-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #334b5f;
    font-size: 14px;
}

.bf-feature span {
    color: var(--bf-mid-blue);
}


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

.bf-services {
    background: var(--bf-light);
}

.bf-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.bf-section-heading .bf-eyebrow:before {
    display: none;
}

.bf-service-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.bf-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: var(--bf-navy);
    box-shadow: 0 17px 35px rgba(3,30,51,.10);
    aspect-ratio: 1 / 1;
}

.bf-service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .45s ease;
}

.bf-service-card:before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3,30,51,.02) 15%,
        rgba(3,30,51,.15) 48%,
        rgba(3,30,51,.94) 100%
    );
}

.bf-service-card:hover img {
    transform: scale(1.02);
}

.bf-service-content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    padding: 32px;
    width: 100%;
}

.bf-service-tag {
    display: inline-block;
    color: #bfeeff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bf-service-content h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
    margin: 0 0 10px;
}

.bf-service-content p {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 17px;
    max-width: 520px;
}

.bf-service-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #57cef1 !important;
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   WHY BIG FISH
   ========================================================= */

.bf-why {
    background: var(--bf-navy);
    position: relative;
    color: #fff;
}

.bf-why:before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    top: -380px;
    right: -230px;
    background: rgba(33,184,230,.07);
}

.bf-why .bf-section-title {
    color: #fff;
}

.bf-why .bf-lead {
    color: #b7c8d6;
    margin-left: 0;
}

.bf-why .bf-eyebrow {
    color: #54d2f5;
}

.bf-why-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.bf-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.bf-why-card {
    padding: 28px 25px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 17px;
    background: rgba(255,255,255,.055);
}

.bf-why-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--bf-blue),var(--bf-cyan));
    font-size: 20px;
}

.bf-why-card h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 18px;
}

.bf-why-card p {
    margin: 0;
    color: #aebfcd;
    font-size: 13px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.bf-process {
    background: #fff;
}

.bf-process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-top: 48px;
}

.bf-process-card {
    padding: 30px 25px;
    border: 1px solid #e5edf2;
    border-radius: 17px;
    background: #fff;
}

.bf-process-number {
    color: var(--bf-mid-blue);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 17px;
}

.bf-process-card h3 {
    color: var(--bf-navy);
    font-size: 18px;
    margin: 0 0 9px;
}

.bf-process-card p {
    margin: 0;
    color: var(--bf-grey);
    font-size: 13px;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.bf-reviews {
    background: linear-gradient(180deg,#f5f9fc,#fff);
}

.bf-review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 45px;
}

.bf-review {
    padding: 31px;
    background: #fff;
    border: 1px solid #e7eef3;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(3,30,51,.055);
}

.bf-stars {
    color: #f5ae23;
    letter-spacing: 2px;
    font-size: 17px;
    margin-bottom: 18px;
}

.bf-review-text {
    color: #506577;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 23px;
}

.bf-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #edf1f4;
    padding-top: 18px;
}

.bf-google {
    width: 37px;
    height: 37px;
    object-fit: contain;
}

.bf-review-author strong {
    display: block;
    font-size: 14px;
    color: var(--bf-navy);
}

.bf-review-author span {
    display: block;
    color: #80909d;
    font-size: 12px;
}


/* =========================================================
   LATEST ADVICE / BLOG
   ========================================================= */

.bf-blog {
    background: #fff;
}

.bf-blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 46px;
}

.bf-blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e4edf3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(3,30,51,.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.bf-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(3,30,51,.13);
}

.bf-blog-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bf-light);
}

.bf-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.bf-blog-card:hover .bf-blog-image img {
    transform: scale(1.035);
}

.bf-blog-body {
    padding: 27px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bf-blog-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--bf-mid-blue);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 11px;
    font-weight: 800;
}

.bf-blog-body h3 {
    margin: 0 0 12px;
    color: var(--bf-navy);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.bf-blog-body p {
    margin: 0 0 20px;
    color: var(--bf-grey);
    font-size: 14px;
    line-height: 1.7;
}

.bf-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--bf-mid-blue) !important;
    font-size: 14px;
    font-weight: 800;
}

.bf-blog-link:hover {
    color: var(--bf-blue) !important;
}

.bf-blog-all {
    text-align: center;
    margin-top: 38px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.bf-final-cta {
    padding: 75px 0;
    background:
        radial-gradient(circle at 8% 10%,rgba(33,184,230,.23),transparent 28%),
        linear-gradient(120deg,#082b47,#031e33);
}

.bf-final-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}

.bf-final-copy {
    max-width: 720px;
}

.bf-final-copy span {
    color: #64d7f5;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.bf-final-copy h2 {
    color: #fff;
    font-size: clamp(31px,4vw,47px);
    letter-spacing: -1px;
    line-height: 1.08;
    margin: 10px 0 13px;
}

.bf-final-copy p {
    color: #b8cad8;
    margin: 0;
    max-width: 630px;
}


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

@media (max-width:1024px) {

    .bf-hero-grid,
    .bf-intro-grid,
    .bf-why-grid {
        grid-template-columns: 1fr;
    }

    .bf-hero {
        min-height: auto;
    }

    .bf-hero-grid {
        gap: 45px;
        padding: 70px 0 95px;
    }

    .bf-hero-visual {
        max-width: 680px;
        margin: auto;
    }

    .bf-trust-inner {
        grid-template-columns: 1fr 1fr;
    }

    .bf-trust-item:nth-child(2) {
        border-right: 0;
    }

    .bf-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bf-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}


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

@media (max-width:767px) {

    .bf-container {
        width: min(100% - 30px,1180px);
    }

    .bf-section {
        padding: 68px 0;
    }

    .bf-hero-grid {
        padding: 58px 0 85px;
        gap: 37px;
    }

    .bf-title {
        font-size: 42px;
    }

    .bf-hero-text {
        font-size: 17px;
    }

    .bf-hero-actions {
        flex-direction: column;
    }

    .bf-btn {
        width: 100%;
    }

    .bf-hero-checks {
        display: grid;
        gap: 12px;
    }

    .bf-float-card {
        position: static;
        display: inline-block;
        margin-top: 12px;
        margin-right: 8px;
    }

    .bf-trust-inner {
        grid-template-columns: 1fr 1fr;
        padding: 24px 16px;
    }

    .bf-intro-grid {
        gap: 58px;
    }

    .bf-experience {
        width: 140px;
        height: 140px;
        right: 5px;
        bottom: -37px;
    }

    .bf-feature-list {
        grid-template-columns: 1fr;
    }

    .bf-service-grid,
    .bf-why-cards,
    .bf-process-grid,
    .bf-review-grid,
    .bf-blog-grid {
        grid-template-columns: 1fr;
    }

    .bf-service-content {
        padding: 25px;
    }

    .bf-final-inner {
        display: block;
    }

    .bf-final-inner .bf-btn {
        margin-top: 28px;
    }
}


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

@media (max-width:480px) {

    .bf-title {
        font-size: 37px;
    }

    .bf-section-title {
        font-size: 32px;
    }

    .bf-trust-inner {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   BIG FISH SOCIAL MEDIA - GLOBAL FOOTER
   ========================================================= */

.bf-footer,
.bf-footer * {
    box-sizing:border-box;
}

.bf-footer {
    --navy:#031e33;
    --navy2:#082b47;
    --blue:#1e63ad;
    --mid:#138dcc;
    --cyan:#21b8e6;
    --white:#ffffff;
    --text:#b6c7d3;
    --muted:#829aaa;

    margin:0;
    padding:0;
    font-family:"Inter","Segoe UI",Arial,sans-serif;
    background:var(--navy);
    color:var(--text);
}

.bf-footer a {
    text-decoration:none;
}

.bf-footer-container {
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}


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

.bf-footer-main {
    position:relative;
    padding:75px 0 55px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(33,184,230,.08),
            transparent 30%
        ),
        var(--navy);
}

.bf-footer-main:after {
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    right:-260px;
    bottom:-300px;
    border:70px solid rgba(255,255,255,.025);
    border-radius:50%;
}

.bf-footer-grid {
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.35fr 1fr .9fr 1.15fr;
    gap:55px;
}


/* =========================================================
   BRAND COLUMN
   ========================================================= */

.bf-footer-logo {
    display:inline-block;
    margin-bottom:22px;
}

.bf-footer-logo img {
    display:block;
    width:185px;
    max-width:100%;
    height:auto;
}

.bf-footer-brand p {
    max-width:340px;
    margin:0 0 21px;
    color:#aabeca;
    font-size:13px;
    line-height:1.8;
}

.bf-footer-location {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 13px;
    margin-bottom:23px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:30px;
    color:#dce8ee;
    background:rgba(255,255,255,.045);
    font-size:11px;
    font-weight:700;
}

.bf-footer-location:before {
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 0 4px rgba(33,184,230,.1);
}


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

.bf-footer-social {
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.bf-footer-social a {
    width:39px;
    height:39px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.1);
    border-radius:9px;
    color:#fff !important;
    background:rgba(255,255,255,.055);
    transition:.25s ease;
}

.bf-footer-social a:hover {
    border-color:rgba(33,184,230,.5);
    background:var(--mid);
    transform:translateY(-2px);
}

.bf-footer-social svg {
    width:17px;
    height:17px;
    fill:currentColor;
}


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

.bf-footer-title {
    position:relative;
    margin:4px 0 22px;
    padding-bottom:12px;
    color:#fff;
    font-size:15px;
    line-height:1.2;
    font-weight:800;
}

.bf-footer-title:after {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:34px;
    height:2px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--blue),var(--cyan));
}


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

.bf-footer-links {
    display:grid;
    gap:11px;
}

.bf-footer-links a {
    position:relative;
    display:inline-flex;
    align-items:center;
    width:fit-content;
    color:#aebfcb !important;
    font-size:12px;
    line-height:1.5;
    transition:.2s ease;
}

.bf-footer-links a:before {
    content:"";
    width:0;
    height:1px;
    margin-right:0;
    background:var(--cyan);
    transition:.2s ease;
}

.bf-footer-links a:hover {
    color:#fff !important;
    transform:translateX(3px);
}

.bf-footer-links a:hover:before {
    width:12px;
    margin-right:7px;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.bf-footer-contact {
    display:grid;
    gap:17px;
}

.bf-footer-contact-item {
    display:grid;
    grid-template-columns:34px 1fr;
    gap:11px;
    align-items:start;
}

.bf-footer-contact-icon {
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:#5bd0ef;
    background:rgba(33,184,230,.09);
}

.bf-footer-contact-icon svg {
    width:15px;
    height:15px;
    fill:currentColor;
}

.bf-footer-contact-content span {
    display:block;
    margin-bottom:2px;
    color:#718b9d;
    font-size:9px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.bf-footer-contact-content p,
.bf-footer-contact-content a {
    margin:0;
    color:#b8c8d2 !important;
    font-size:12px;
    line-height:1.6;
    transition:.2s ease;
}

.bf-footer-contact-content a:hover {
    color:#fff !important;
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.bf-footer-bottom {
    position:relative;
    z-index:2;
    border-top:1px solid rgba(255,255,255,.07);
    background:#021827;
}

.bf-footer-bottom-inner {
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.bf-footer-copyright {
    color:#718a9b;
    font-size:10px;
    line-height:1.6;
}

.bf-footer-bottom-links {
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:7px 19px;
}

.bf-footer-bottom-links a {
    color:#829aaa !important;
    font-size:10px;
    transition:.2s ease;
}

.bf-footer-bottom-links a:hover {
    color:#fff !important;
}


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

@media(max-width:1000px) {

    .bf-footer-grid {
        grid-template-columns:1fr 1fr;
        gap:50px 60px;
    }
}

@media(max-width:650px) {

    .bf-footer-main {
        padding:60px 0 45px;
    }

    .bf-footer-container {
        width:min(100% - 30px,1180px);
    }

    .bf-footer-grid {
        grid-template-columns:1fr;
        gap:40px;
    }

    .bf-footer-brand p {
        max-width:100%;
    }

    .bf-footer-bottom-inner {
        padding:20px 0;
        display:block;
        text-align:center;
    }

    .bf-footer-bottom-links {
        justify-content:center;
        margin-top:13px;
    }
}


html{scroll-behavior:smooth}
body{margin:0;background:#fff;color:#10202f}
img{max-width:100%;height:auto}
.bf-footer-areas{padding:0 0 34px;background:#031e33}
.bf-area-links{display:flex;flex-wrap:wrap;gap:8px 18px}
.bf-area-links span{font-size:11px;color:#aebfcb}
